Home
last modified time | relevance | path

Searched refs:tx_fifo_len (Results 1 – 4 of 4) 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),
147 if (s->tx_fifo_len == 0) in smc91c111_update()
280 if (s->tx_fifo_len == 0) in smc91c111_do_tx()
282 for (i = 0; i < s->tx_fifo_len; i++) { in smc91c111_do_tx()
334 s->tx_fifo_len = 0; in smc91c111_do_tx()
352 if (s->tx_fifo_len == NUM_PACKETS) in smc91c111_queue_tx()
354 s->tx_fifo[s->tx_fifo_len++] = packet; in smc91c111_queue_tx()
363 s->tx_fifo_len = 0; in smc91c111_reset()
515 s->tx_fifo_len = 0; in smc91c111_writeb()
[all …]
/openbmc/qemu/include/hw/ssi/
H A Dpl022.h45 int tx_fifo_len; member