Home
last modified time | relevance | path

Searched refs:control (Results 1 – 9 of 9) sorted by relevance

/hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/driverlib/
Dudma.c152 void uDMASetChannelControl(volatile uDMAControlTableEntry *pChannelControlStruct, uint32_t control) in uDMASetChannelControl() argument
159 pChannelControlStruct->control = ((pChannelControlStruct->control & in uDMASetChannelControl()
162 control); in uDMASetChannelControl()
177 uint32_t control; in uDMASetChannelTransfer() local
192 control = (pChannelControlStruct->control & ~(UDMA_XFER_SIZE_M | UDMA_MODE_M)); in uDMASetChannelTransfer()
212 control |= mode | ((transferSize - 1) << UDMA_XFER_SIZE_S); in uDMASetChannelTransfer()
215 incValue = (control & UDMA_SRC_INC_M); in uDMASetChannelTransfer()
232 incValue = control & UDMA_DST_INC_M; in uDMASetChannelTransfer()
267 pChannelControlStruct->control = control; in uDMASetChannelTransfer()
277 uint32_t control; in uDMAGetChannelSize() local
[all …]
Dudma.h79 volatile uint32_t control; //!< The channel control mode. member
611 …oid uDMASetChannelControl(volatile uDMAControlTableEntry *pChannelControlStruct, uint32_t control);
/hal_ti-latest/simplelink/source/ti/devices/msp432p4xx/driverlib/
Ddma.c315 void DMA_setChannelControl(uint32_t channelStructIndex, uint32_t control) in DMA_setChannelControl() argument
341 pCtl[channelStructIndex].control = ((pCtl[channelStructIndex].control in DMA_setChannelControl()
344 | UDMA_CHCTL_NXTUSEBURST)) | control); in DMA_setChannelControl()
351 uint32_t control; in DMA_setChannelTransfer() local
379 control = (controlTable[channelStructIndex].control in DMA_setChannelTransfer()
398 control |= mode | ((transferSize - 1) << 4); in DMA_setChannelTransfer()
403 increment = (control & UDMA_CHCTL_SRCINC_M); in DMA_setChannelTransfer()
426 increment = control & UDMA_CHCTL_DSTINC_M; in DMA_setChannelTransfer()
466 controlTable[channelStructIndex].control = control; in DMA_setChannelTransfer()
520 controlTable[channelNum].control = (UDMA_CHCTL_DSTINC_32 in DMA_setChannelScatterGather()
[all …]
Ddma.h79 volatile uint32_t control; member
653 uint32_t control);
Drom.h697 uint32_t control))ROM_DMATABLE[14])
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/cryptoutils/aes/
DAESCommonLPF3.c281 uint32_t control; in AESCommonLPF3_configInputDMA() local
292 control = UDMA_DST_INC_NONE | UDMA_SIZE_8 | UDMA_SRC_INC_8 | UDMA_ARB_16; in AESCommonLPF3_configInputDMA()
297 control = UDMA_DST_INC_NONE | UDMA_SIZE_16 | UDMA_SRC_INC_16 | UDMA_ARB_8; in AESCommonLPF3_configInputDMA()
303 control = UDMA_DST_INC_NONE | UDMA_SIZE_32 | UDMA_SRC_INC_32 | UDMA_ARB_4; in AESCommonLPF3_configInputDMA()
311 uDMASetChannelControl(dmaPriControlTableEntryChA, control); in AESCommonLPF3_configInputDMA()
356 uint32_t control; in AESCommonLPF3_configOutputDMA() local
367 control = UDMA_SRC_INC_NONE | UDMA_SIZE_8 | UDMA_DST_INC_8 | UDMA_ARB_16; in AESCommonLPF3_configOutputDMA()
372 control = UDMA_SRC_INC_NONE | UDMA_SIZE_16 | UDMA_DST_INC_16 | UDMA_ARB_8; in AESCommonLPF3_configOutputDMA()
378 control = UDMA_SRC_INC_NONE | UDMA_SIZE_32 | UDMA_DST_INC_32 | UDMA_ARB_4; in AESCommonLPF3_configOutputDMA()
386 uDMASetChannelControl(dmaPriControlTableEntryChB, control); in AESCommonLPF3_configOutputDMA()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/dma/
Ddma.ld23 /* Device has 8 DMA channels => the alt. control table is at offset 0x80 */
/hal_ti-latest/simplelink/source/ti/drivers/power/
DPowerCC32XX.h370 uint32_t control; member
/hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/cmsis/core/
Dcmsis_gcc.h248 __STATIC_FORCEINLINE void __set_CONTROL(uint32_t control) in __set_CONTROL() argument
250 __ASM volatile ("MSR control, %0" : : "r" (control) : "memory"); in __set_CONTROL()
260 __STATIC_FORCEINLINE void __TZ_set_CONTROL_NS(uint32_t control) in __TZ_set_CONTROL_NS() argument
262 __ASM volatile ("MSR control_ns, %0" : : "r" (control) : "memory"); in __TZ_set_CONTROL_NS()