Lines Matching full:txp
167 static u32 xilinx_spi_fill_txfifo(struct udevice *bus, const u8 *txp, in xilinx_spi_fill_txfifo() argument
177 d = txp ? *txp++ : CONFIG_XILINX_SPI_IDLE_VAL; in xilinx_spi_fill_txfifo()
215 const unsigned char *txp = dout; in xilinx_spi_startup_block() local
224 * it sets txp to the initial value for the normal operation. in xilinx_spi_startup_block()
227 count = xilinx_spi_fill_txfifo(bus, txp, txbytes); in xilinx_spi_startup_block()
231 txp = din; in xilinx_spi_startup_block()
236 txp = dout; in xilinx_spi_startup_block()
250 const unsigned char *txp = dout; in xilinx_spi_xfer() local
282 count = xilinx_spi_fill_txfifo(bus, txp, txbytes); in xilinx_spi_xfer()
286 if (txp) in xilinx_spi_xfer()
287 txp += count; in xilinx_spi_xfer()
296 debug("txbytes:0x%x,txp:0x%p\n", txbytes, txp); in xilinx_spi_xfer()