Home
last modified time | relevance | path

Searched refs:rx_byte (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/hw/ssi/
H A Dbcm2835_spi.c90 uint8_t tx_byte, rx_byte; in bcm2835_spi_flush_tx_fifo() local
94 rx_byte = ssi_transfer(s->bus, tx_byte); in bcm2835_spi_flush_tx_fifo()
95 fifo8_push(&s->rx_fifo, rx_byte); in bcm2835_spi_flush_tx_fifo()
H A Dibex_spi_host.c294 uint8_t rx_byte = 0; in ibex_spi_host_read() local
327 rx_byte = fifo8_pop(&s->rx_fifo); in ibex_spi_host_read()
328 rc |= rx_byte << (i * 8); in ibex_spi_host_read()
H A Dpnv_spi.c197 uint8_t rx_byte; in transfer() local
216 rx_byte = (rx >> (8 * (s->transfer_len - 1) - i * 8)) & 0xFF; in transfer()
218 fifo8_push(&s->rx_fifo, rx_byte); in transfer()