Lines Matching refs:data
113 * data formats
247 u32 data;
249 data = zynq_qspi_read(xqspi, ZYNQ_QSPI_RXD_OFFSET);
252 memcpy(xqspi->rxbuf, ((u8 *)&data) + 4 - size, size);
271 u32 data;
274 data = 0xffffffff;
275 memcpy(&data, xqspi->txbuf, size);
278 data = 0;
282 zynq_qspi_write(xqspi, offset[size - 1], data);
468 * On TX empty interrupt this function reads the received data from RX FIFO and
469 * fills the TX FIFO if there is any data remaining to be transferred.
490 /* Read out the data from the RX FIFO */
493 /* There is more data to send */
534 op->dummy.buswidth, op->data.buswidth);
592 if (op->data.nbytes) {
594 if (op->data.dir == SPI_MEM_DATA_OUT) {
595 xqspi->txbuf = (u8 *)op->data.buf.out;
596 xqspi->tx_bytes = op->data.nbytes;
598 xqspi->rx_bytes = op->data.nbytes;
601 xqspi->rxbuf = (u8 *)op->data.buf.in;
602 xqspi->rx_bytes = op->data.nbytes;
603 xqspi->tx_bytes = op->data.nbytes;
627 * This function initializes the driver data structures and the hardware.