Searched refs:channel_descriptor (Results 1 – 2 of 2) sorted by relevance
59 const struct SI32_DMADESC_A_Struct *channel_descriptor = &channel_descriptors[channel]; in dma_si32_isr_handler() local73 __ASSERT(channel_descriptor->CONFIG.TMD == 0, "Result of success: TMD set to zero"); in dma_si32_isr_handler()74 __ASSERT(channel_descriptor->CONFIG.NCOUNT == 0, in dma_si32_isr_handler()76 (void)channel_descriptor; in dma_si32_isr_handler()133 struct SI32_DMADESC_A_Struct *channel_descriptor; in dma_si32_config() local152 channel_descriptor = &channel_descriptors[channel]; in dma_si32_config()230 channel_descriptor->CONFIG.SRCSIZE = 0b10; in dma_si32_config()231 channel_descriptor->CONFIG.DSTSIZE = 0b10; in dma_si32_config()232 channel_descriptor->CONFIG.RPOWER = in dma_si32_config()236 channel_descriptor->CONFIG.SRCSIZE = 0b01; in dma_si32_config()[all …]
268 static void assert_dma_settings_common(struct SI32_DMADESC_A_Struct *channel_descriptor) in assert_dma_settings_common() argument270 ARG_UNUSED(channel_descriptor); in assert_dma_settings_common()272 __ASSERT(channel_descriptor->CONFIG.SRCSIZE == 2, in assert_dma_settings_common()274 __ASSERT(channel_descriptor->CONFIG.DSTSIZE == 2, in assert_dma_settings_common()276 __ASSERT(channel_descriptor->CONFIG.RPOWER == 2, in assert_dma_settings_common()280 static void assert_dma_settings_channel_rx(struct SI32_DMADESC_A_Struct *channel_descriptor) in assert_dma_settings_channel_rx() argument282 ARG_UNUSED(channel_descriptor); in assert_dma_settings_channel_rx()284 assert_dma_settings_common(channel_descriptor); in assert_dma_settings_channel_rx()286 __ASSERT(channel_descriptor->SRCEND.U32 == (uintptr_t)&SI32_AES_0->DATAFIFO, in assert_dma_settings_channel_rx()288 __ASSERT(channel_descriptor->CONFIG.DSTAIMD == 0b10, in assert_dma_settings_channel_rx()[all …]