Lines Matching refs:size
445 * @size: Number of bytes to be copied from data to RX buffer
448 ulong data, u8 size)
450 memcpy(xqspi->rxbuf, &data, size);
451 xqspi->rxbuf += size;
452 xqspi->bytes_to_receive -= size;
613 * @size: Number of bytes to be copied from TX buffer to TX FIFO
615 static void zynqmp_qspi_filltxfifo(struct zynqmp_qspi *xqspi, int size)
619 while ((xqspi->bytes_to_transfer > 0) && (count < size) && (xqspi->txbuf)) {
640 * @size: Number of bytes to be copied from RX buffer to RX FIFO
642 static void zynqmp_qspi_readrxfifo(struct zynqmp_qspi *xqspi, u32 size)
647 while ((count < size) && (xqspi->bytes_to_receive > 0)) {