Home
last modified time | relevance | path

Searched refs:hdma (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/drivers/video/
Dvideo_stm32_dcmi.c98 DMA_HandleTypeDef *hdma = arg; in dmci_dma_callback() local
106 HAL_DMA_IRQHandler(hdma); in dmci_dma_callback()
109 void HAL_DMA_ErrorCallback(DMA_HandleTypeDef *hdma) in HAL_DMA_ErrorCallback() argument
135 static DMA_HandleTypeDef hdma; in stm32_dma_init() local
138 dma_cfg.user_data = &hdma; in stm32_dma_init()
152 hdma.Init.Request = DMA_REQUEST_DCMI; in stm32_dma_init()
153 hdma.Init.Direction = DMA_PERIPH_TO_MEMORY; in stm32_dma_init()
154 hdma.Init.PeriphInc = DMA_PINC_DISABLE; in stm32_dma_init()
155 hdma.Init.MemInc = DMA_MINC_ENABLE; in stm32_dma_init()
156 hdma.Init.PeriphDataAlignment = DMA_PDATAALIGN_WORD; in stm32_dma_init()
[all …]
/Zephyr-latest/drivers/flash/
Dflash_stm32_qspi.c779 DMA_HandleTypeDef *hdma = arg; in qspi_dma_callback() local
788 HAL_DMA_IRQHandler(hdma); in qspi_dma_callback()
792 __weak HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() argument
797 __weak HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort_IT() argument
1348 static DMA_HandleTypeDef hdma; in flash_stm32_qspi_init() local
1356 dma_cfg.user_data = &hdma; in flash_stm32_qspi_init()
1372 hdma.Init.PeriphDataAlignment = table_p_size[index]; in flash_stm32_qspi_init()
1373 hdma.Init.MemDataAlignment = table_m_size[index]; in flash_stm32_qspi_init()
1374 hdma.Init.PeriphInc = DMA_PINC_DISABLE; in flash_stm32_qspi_init()
1375 hdma.Init.MemInc = DMA_MINC_ENABLE; in flash_stm32_qspi_init()
[all …]
Dflash_stm32_ospi.c1582 __weak HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort_IT() argument
1588 __weak HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() argument
1599 DMA_HandleTypeDef *hdma = arg; in ospi_dma_callback() local
1607 HAL_DMA_IRQHandler(hdma); in ospi_dma_callback()
2146 static DMA_HandleTypeDef hdma; in flash_stm32_ospi_init() local
2154 dma_cfg.user_data = &hdma; in flash_stm32_ospi_init()
2176 hdma.Init.BlkHWRequest = DMA_BREQ_SINGLE_BURST; in flash_stm32_ospi_init()
2177 hdma.Init.SrcInc = DMA_SINC_FIXED; in flash_stm32_ospi_init()
2178 hdma.Init.DestInc = DMA_DINC_INCREMENTED; in flash_stm32_ospi_init()
2179 hdma.Init.SrcDataWidth = table_src_size[index]; in flash_stm32_ospi_init()
[all …]
Dflash_stm32_xspi.c1418 __weak HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort_IT() argument
1424 __weak HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() argument
1435 DMA_HandleTypeDef *hdma = arg; in xspi_dma_callback() local
1443 HAL_DMA_IRQHandler(hdma); in xspi_dma_callback()
1936 static int flash_stm32_xspi_dma_init(DMA_HandleTypeDef *hdma, struct stream *dma_stream) in flash_stm32_xspi_dma_init() argument
1953 dma_stream->cfg.user_data = hdma; in flash_stm32_xspi_dma_init()
1971 hdma->Init.SrcDataWidth = DMA_SRC_DATAWIDTH_WORD; /* Fixed value */ in flash_stm32_xspi_dma_init()
1972 hdma->Init.DestDataWidth = DMA_DEST_DATAWIDTH_WORD; /* Fixed value */ in flash_stm32_xspi_dma_init()
1973 hdma->Init.SrcInc = (dma_stream->src_addr_increment) in flash_stm32_xspi_dma_init()
1976 hdma->Init.DestInc = (dma_stream->dst_addr_increment) in flash_stm32_xspi_dma_init()
[all …]
/Zephyr-latest/drivers/disk/
Dsdmmc_stm32.c190 DMA_HandleTypeDef *hdma = arg; in stm32_sdmmc_dma_cb() local
197 HAL_DMA_IRQHandler(hdma); in stm32_sdmmc_dma_cb()