Home
last modified time | relevance | path

Searched refs:majorLoopCounts (Results 1 – 10 of 10) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/flexio/mculcd/
Dfsl_flexio_mculcd_edma.c209 uint32_t majorLoopCounts; in FLEXIO_MCULCD_EDMAConfig() local
220 majorLoopCounts = handle->remainingCount / handle->minorLoopBytes; in FLEXIO_MCULCD_EDMAConfig()
225 majorLoopCounts--; in FLEXIO_MCULCD_EDMAConfig()
228 if (majorLoopCounts > EDMA_MAX_MAJOR_COUNT) in FLEXIO_MCULCD_EDMAConfig()
230 majorLoopCounts = EDMA_MAX_MAJOR_COUNT; in FLEXIO_MCULCD_EDMAConfig()
233 transferCount = majorLoopCounts * handle->minorLoopBytes; in FLEXIO_MCULCD_EDMAConfig()
244 xferConfig.majorLoopCounts = majorLoopCounts; in FLEXIO_MCULCD_EDMAConfig()
269 xferConfig.majorLoopCounts = majorLoopCounts; in FLEXIO_MCULCD_EDMAConfig()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/dspi/
Dfsl_dspi_edma.c447 transferConfigA.majorLoopCounts = handle->remainingReceiveByteCount; in DSPI_MasterTransferEDMA()
453 transferConfigA.majorLoopCounts = handle->remainingReceiveByteCount / 2U; in DSPI_MasterTransferEDMA()
555 transferConfigB.majorLoopCounts = 1; in DSPI_MasterTransferEDMA()
601 transferConfigB.majorLoopCounts = handle->remainingSendByteCount - 1U; in DSPI_MasterTransferEDMA()
607 transferConfigB.majorLoopCounts = (handle->remainingSendByteCount / 2U) - 1U; in DSPI_MasterTransferEDMA()
686 transferConfigB.majorLoopCounts = 1; in DSPI_MasterTransferEDMA()
722 transferConfigB.majorLoopCounts = handle->remainingSendByteCount - 2U; in DSPI_MasterTransferEDMA()
728 transferConfigB.majorLoopCounts = handle->remainingSendByteCount + 1U; in DSPI_MasterTransferEDMA()
737 transferConfigB.majorLoopCounts = handle->remainingSendByteCount / 2U - 2U; in DSPI_MasterTransferEDMA()
743 transferConfigB.majorLoopCounts = handle->remainingSendByteCount / 2U + 1U; in DSPI_MasterTransferEDMA()
[all …]
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/lpspi/
Dfsl_lpspi_edma.c408 transferConfigRx.majorLoopCounts = handle->readRegRemainingTimes; in LPSPI_MasterTransferEDMALite()
471 transferConfigTx.majorLoopCounts = 1; in LPSPI_MasterTransferEDMALite()
498 transferConfigTx.majorLoopCounts = 1; in LPSPI_MasterTransferEDMALite()
559 transferConfigTx.majorLoopCounts = handle->writeRegRemainingTimes; in LPSPI_MasterTransferEDMALite()
936 transferConfigRx.majorLoopCounts = handle->readRegRemainingTimes; in LPSPI_SlaveTransferEDMA()
991 transferConfigTx.majorLoopCounts = 1; in LPSPI_SlaveTransferEDMA()
1040 transferConfigTx.majorLoopCounts = handle->writeRegRemainingTimes; in LPSPI_SlaveTransferEDMA()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/lpi2c/
Dfsl_lpi2c_edma.c335 transferConfig.majorLoopCounts = transfer->dataSize; in LPI2C_MasterTransferEDMA()
366 transferConfig.majorLoopCounts = transfer->dataSize; in LPI2C_MasterTransferEDMA()
394 transferConfig.majorLoopCounts = 1; in LPI2C_MasterTransferEDMA()
418 transferConfig.majorLoopCounts = commandCount; in LPI2C_MasterTransferEDMA()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/i2c/
Dfsl_i2c_edma.c367 transfer_config.majorLoopCounts = (handle->transfer.dataSize - 1U); in I2C_MasterTransferEDMAConfig()
378 transfer_config.majorLoopCounts = (handle->transfer.dataSize - 1U); in I2C_MasterTransferEDMAConfig()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/dma3/
Dfsl_edma.c519 tcd->CITER = (uint16_t)config->majorLoopCounts; in EDMA_TcdSetTransferConfig()
521 tcd->BITER = (uint16_t)config->majorLoopCounts; in EDMA_TcdSetTransferConfig()
945 config->majorLoopCounts = transferBytes / bytesEachRequest; in EDMA_PrepareTransferConfig()
Dfsl_edma.h190 uint32_t majorLoopCounts; /*!< Major loop iteration count. */ member
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/edma/
Dfsl_edma.h179 uint32_t majorLoopCounts; /*!< Major loop iteration count. */ member
Dfsl_edma.c520 tcd->CITER = (uint16_t)config->majorLoopCounts; in EDMA_TcdSetTransferConfig()
522 tcd->BITER = (uint16_t)config->majorLoopCounts; in EDMA_TcdSetTransferConfig()
1028 config->majorLoopCounts = transferBytes / bytesEachRequest; in EDMA_PrepareTransferConfig()
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/flexio/spi/
Dfsl_flexio_spi_edma.c222 xferConfig.majorLoopCounts = (xfer->dataSize / xferConfig.minorLoopBytes); in FLEXIO_SPI_EDMAConfig()