Lines Matching refs:n_bytes
113 int n_bytes; member
145 spi->rx_len -= spi->n_bytes; in mchp_corespi_read_fifo()
150 if (spi->n_bytes == 4) in mchp_corespi_read_fifo()
152 else if (spi->n_bytes == 2) in mchp_corespi_read_fifo()
157 spi->rx_buf += spi->n_bytes; in mchp_corespi_read_fifo()
227 if (spi->n_bytes == 4) in mchp_corespi_write_fifo()
229 else if (spi->n_bytes == 2) in mchp_corespi_write_fifo()
236 spi->tx_buf += spi->n_bytes; in mchp_corespi_write_fifo()
240 spi->tx_len -= i * spi->n_bytes; in mchp_corespi_write_fifo()
497 spi->n_bytes = roundup_pow_of_two(DIV_ROUND_UP(xfer->bits_per_word, BITS_PER_BYTE)); in mchp_corespi_transfer_one()
506 int fifo_max = DIV_ROUND_UP(min(spi->tx_len, FIFO_DEPTH), spi->n_bytes); in mchp_corespi_transfer_one()