Lines Matching refs:value

360                                  uint64_t value, unsigned size)  in stellaris_enet_write()  argument
366 s->ris &= ~value; in stellaris_enet_write()
367 DPRINTF("IRQ ack %02" PRIx64 "/%02x\n", value, s->ris); in stellaris_enet_write()
370 if (value & SE_INT_TXER) { in stellaris_enet_write()
375 DPRINTF("IRQ mask %02" PRIx64 "/%02x\n", value, s->ris); in stellaris_enet_write()
376 s->im = value; in stellaris_enet_write()
380 s->rctl = value; in stellaris_enet_write()
381 if (value & SE_RCTL_RSTFIFO) { in stellaris_enet_write()
388 s->tctl = value; in stellaris_enet_write()
393 int framelen = value & 0xffff; in stellaris_enet_write()
403 s->tx_fifo[s->tx_fifo_len++] = value; in stellaris_enet_write()
404 s->tx_fifo[s->tx_fifo_len++] = value >> 8; in stellaris_enet_write()
405 s->tx_fifo[s->tx_fifo_len++] = value >> 16; in stellaris_enet_write()
406 s->tx_fifo[s->tx_fifo_len++] = value >> 24; in stellaris_enet_write()
414 s->conf.macaddr.a[0] = value; in stellaris_enet_write()
415 s->conf.macaddr.a[1] = value >> 8; in stellaris_enet_write()
416 s->conf.macaddr.a[2] = value >> 16; in stellaris_enet_write()
417 s->conf.macaddr.a[3] = value >> 24; in stellaris_enet_write()
420 s->conf.macaddr.a[4] = value; in stellaris_enet_write()
421 s->conf.macaddr.a[5] = value >> 8; in stellaris_enet_write()
424 s->thr = value; in stellaris_enet_write()
430 s->mctl = value & ~1; in stellaris_enet_write()
433 s->mdv = value; in stellaris_enet_write()
439 s->mtxd = value & 0xff; in stellaris_enet_write()
442 if (value & 1) { in stellaris_enet_write()
455 size * 8, offset, value); in stellaris_enet_write()