dma_stm32.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2021 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_DMA_STM32_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_DMA_STM32_H_
  8. /* @brief linked_channel value to inform zephyr dma driver that
  9. * DMA channel will be handled by HAL
  10. */
  11. #define STM32_DMA_HAL_OVERRIDE 0x7F
  12. /* macro for dma slot (only for dma-v1 or dma-v2 types) */
  13. #if DT_HAS_COMPAT_STATUS_OKAY(st_stm32_dma_v2bis)
  14. #define STM32_DMA_SLOT(id, dir, slot) 0
  15. #else
  16. #define STM32_DMA_SLOT(id, dir, slot) DT_INST_DMAS_CELL_BY_NAME(id, dir, slot)
  17. #endif
  18. #if DT_HAS_COMPAT_STATUS_OKAY(st_stm32_dma_v2) || \
  19. DT_HAS_COMPAT_STATUS_OKAY(st_stm32_dma_v2bis) || \
  20. DT_HAS_COMPAT_STATUS_OKAY(st_stm32_dmamux)
  21. #define STM32_DMA_FEATURES(id, dir) 0
  22. #else
  23. #define STM32_DMA_FEATURES(id, dir) \
  24. DT_INST_DMAS_CELL_BY_NAME(id, dir, features)
  25. #endif
  26. #define STM32_DMA_CTLR(id, dir) \
  27. DT_INST_DMAS_CTLR_BY_NAME(id, dir)
  28. #define STM32_DMA_CHANNEL_CONFIG(id, dir) \
  29. DT_INST_DMAS_CELL_BY_NAME(id, dir, channel_config)
  30. /* macros for channel-config */
  31. /* direction defined on bits 6-7 */
  32. /* 0 -> MEM_TO_MEM, 1 -> MEM_TO_PERIPH, 2 -> PERIPH_TO_MEM */
  33. #define STM32_DMA_CONFIG_DIRECTION(config) ((config >> 6) & 0x3)
  34. /* periph increment defined on bit 9 as true/false */
  35. #define STM32_DMA_CONFIG_PERIPHERAL_ADDR_INC(config) ((config >> 9) & 0x1)
  36. /* mem increment defined on bit 10 as true/false */
  37. #define STM32_DMA_CONFIG_MEMORY_ADDR_INC(config) ((config >> 10) & 0x1)
  38. /* perih data size defined on bits 11-12 */
  39. /* 0 -> 1 byte, 1 -> 2 bytes, 2 -> 4 bytes */
  40. #define STM32_DMA_CONFIG_PERIPHERAL_DATA_SIZE(config) \
  41. (1 << ((config >> 11) & 0x3))
  42. /* memory data size defined on bits 13, 14 */
  43. /* 0 -> 1 byte, 1 -> 2 bytes, 2 -> 4 bytes */
  44. #define STM32_DMA_CONFIG_MEMORY_DATA_SIZE(config) \
  45. (1 << ((config >> 13) & 0x3))
  46. /* priority increment offset defined on bit 15 */
  47. #define STM32_DMA_CONFIG_PERIPHERAL_INC_FIXED(config) ((config >> 15) & 0x1)
  48. /* priority defined on bits 16-17 as 0, 1, 2, 3 */
  49. #define STM32_DMA_CONFIG_PRIORITY(config) ((config >> 16) & 0x3)
  50. /* macro for features (only for dma-v1) */
  51. #if DT_HAS_COMPAT_STATUS_OKAY(st_stm32_dma_v1)
  52. #define STM32_DMA_FEATURES_FIFO_THRESHOLD(features) (features & 0x3)
  53. #else
  54. #define STM32_DMA_FEATURES_FIFO_THRESHOLD(features) 0
  55. #endif
  56. #endif /* ZEPHYR_INCLUDE_DRIVERS_DMA_STM32_H_ */