Home
last modified time | relevance | path

Searched refs:tx_fifo_len (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/hw/ssi/
H A Dpl022.c54 if (s->tx_fifo_len == 0) in pl022_update()
56 if (s->tx_fifo_len != 8) in pl022_update()
62 if (s->tx_fifo_len) in pl022_update()
67 if (s->tx_fifo_len <= 4) in pl022_update()
85 DPRINTF("Maybe xfer %d/%d\n", s->tx_fifo_len, s->rx_fifo_len); in pl022_xfer()
86 i = (s->tx_fifo_head - s->tx_fifo_len) & 7; in pl022_xfer()
100 while (s->tx_fifo_len && s->rx_fifo_len < 8) { in pl022_xfer()
111 s->tx_fifo_len--; in pl022_xfer()
182 if (s->tx_fifo_len < 8) { in pl022_write()
186 s->tx_fifo_len++; in pl022_write()
[all …]
/openbmc/qemu/hw/net/
H A Dstellaris_enet.c74 uint32_t tx_fifo_len; member
124 if (s->tx_fifo_len > ARRAY_SIZE(s->tx_fifo)) { in stellaris_enet_post_load()
147 VMSTATE_UINT32(tx_fifo_len, stellaris_enet_state),
187 return s->tx_fifo_len >= framelen; in stellaris_txpacket_complete()
196 (s->tx_fifo_len >= 4 * (s->thr * 8 + 1))); in stellaris_tx_thr_reached()
221 s->tx_fifo_len = 0; in stellaris_enet_send()
371 s->tx_fifo_len = 0; in stellaris_enet_write()
391 if (s->tx_fifo_len == 0) { in stellaris_enet_write()
402 if (s->tx_fifo_len + 4 <= ARRAY_SIZE(s->tx_fifo)) { in stellaris_enet_write()
403 s->tx_fifo[s->tx_fifo_len++] = value; in stellaris_enet_write()
[all …]
H A Dsmc91c111.c55 int tx_fifo_len; member
84 VMSTATE_INT32(tx_fifo_len, smc91c111_state),
146 if (s->tx_fifo_len == 0) in smc91c111_update()
279 if (s->tx_fifo_len == 0) in smc91c111_do_tx()
281 for (i = 0; i < s->tx_fifo_len; i++) { in smc91c111_do_tx()
333 s->tx_fifo_len = 0; in smc91c111_do_tx()
351 if (s->tx_fifo_len == NUM_PACKETS) in smc91c111_queue_tx()
353 s->tx_fifo[s->tx_fifo_len++] = packet; in smc91c111_queue_tx()
362 s->tx_fifo_len = 0; in smc91c111_reset()
514 s->tx_fifo_len = 0; in smc91c111_writeb()
[all …]
/openbmc/qemu/include/hw/ssi/
H A Dpl022.h45 int tx_fifo_len; member
/openbmc/linux/Documentation/networking/device_drivers/ethernet/neterion/
H A Ds2io.rst93 c. tx_fifo_len
/openbmc/linux/drivers/net/ethernet/neterion/
H A Ds2io.c451 static unsigned int tx_fifo_len[MAX_TX_FIFOS] = variable
458 module_param_array(tx_fifo_len, uint, NULL, 0);
7774 tx_cfg->fifo_len = tx_fifo_len[i]; in s2io_init_nic()