Searched refs:total_fifo_words (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/drivers/spi/ |
H A D | spi-tegra20-slink.c | 261 unsigned total_fifo_words; in tegra_slink_calculate_curr_xfer_param() local 278 total_fifo_words = max_len/4; in tegra_slink_calculate_curr_xfer_param() 283 total_fifo_words = max_word; in tegra_slink_calculate_curr_xfer_param() 285 return total_fifo_words; in tegra_slink_calculate_curr_xfer_param() 677 unsigned total_fifo_words; in tegra_slink_start_transfer_one() local 694 total_fifo_words = tegra_slink_calculate_curr_xfer_param(spi, tspi, t); in tegra_slink_start_transfer_one() 724 if (total_fifo_words > SLINK_FIFO_DEPTH) in tegra_slink_start_transfer_one() 884 unsigned total_fifo_words; in handle_dma_based_xfer() local 947 total_fifo_words = tegra_slink_calculate_curr_xfer_param(tspi->cur_spi, in handle_dma_based_xfer() 949 if (total_fifo_words > SLINK_FIFO_DEPTH) in handle_dma_based_xfer()
|
H A D | spi-tegra114.c | 265 unsigned total_fifo_words; in tegra_spi_calculate_curr_xfer_param() local 281 total_fifo_words = (max_len + 3) / 4; in tegra_spi_calculate_curr_xfer_param() 286 total_fifo_words = max_word; in tegra_spi_calculate_curr_xfer_param() 288 return total_fifo_words; in tegra_spi_calculate_curr_xfer_param() 869 unsigned total_fifo_words; in tegra_spi_start_transfer_one() local 872 total_fifo_words = tegra_spi_calculate_curr_xfer_param(spi, tspi, t); in tegra_spi_start_transfer_one() 904 if (total_fifo_words > SPI_FIFO_DEPTH) in tegra_spi_start_transfer_one() 1165 unsigned total_fifo_words; in handle_dma_based_xfer() local 1229 total_fifo_words = tegra_spi_calculate_curr_xfer_param(tspi->cur_spi, in handle_dma_based_xfer() 1231 if (total_fifo_words > SPI_FIFO_DEPTH) in handle_dma_based_xfer()
|
H A D | spi-tegra210-quad.c | 270 unsigned int max_word, max_len, total_fifo_words; in tegra_qspi_calculate_curr_xfer_param() local 295 total_fifo_words = (max_len + 3) / 4; in tegra_qspi_calculate_curr_xfer_param() 300 total_fifo_words = max_word; in tegra_qspi_calculate_curr_xfer_param() 303 return total_fifo_words; in tegra_qspi_calculate_curr_xfer_param() 874 unsigned int total_fifo_words; in tegra_qspi_start_transfer_one() local 878 total_fifo_words = tegra_qspi_calculate_curr_xfer_param(tqspi, t); in tegra_qspi_start_transfer_one() 917 if (tqspi->use_dma && total_fifo_words > QSPI_FIFO_DEPTH) in tegra_qspi_start_transfer_one() 1371 unsigned int total_fifo_words; in handle_dma_based_xfer() local 1432 total_fifo_words = tegra_qspi_calculate_curr_xfer_param(tqspi, t); in handle_dma_based_xfer() 1433 if (total_fifo_words > QSPI_FIFO_DEPTH) in handle_dma_based_xfer()
|