stm32l1xx_hal_dma.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /**
  2. ******************************************************************************
  3. * @file stm32l1xx_hal_dma.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 5-September-2014
  7. * @brief Header file of DMA HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
  12. *
  13. * Redistribution and use in source and binary forms, with or without modification,
  14. * are permitted provided that the following conditions are met:
  15. * 1. Redistributions of source code must retain the above copyright notice,
  16. * this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and/or other materials provided with the distribution.
  20. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. ******************************************************************************
  36. */
  37. /* Define to prevent recursive inclusion -------------------------------------*/
  38. #ifndef __STM32L1xx_HAL_DMA_H
  39. #define __STM32L1xx_HAL_DMA_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32l1xx_hal_def.h"
  45. /** @addtogroup STM32L1xx_HAL_Driver
  46. * @{
  47. */
  48. /** @addtogroup DMA
  49. * @{
  50. */
  51. /* Exported types ------------------------------------------------------------*/
  52. /** @defgroup DMA_Exported_Types DMA Exported Types
  53. * @{
  54. */
  55. /**
  56. * @brief DMA Configuration Structure definition
  57. */
  58. typedef struct
  59. {
  60. uint32_t Direction; /*!< Specifies if the data will be transferred from memory to peripheral,
  61. from memory to memory or from peripheral to memory.
  62. This parameter can be a value of @ref DMA_Data_transfer_direction */
  63. uint32_t PeriphInc; /*!< Specifies whether the Peripheral address register should be incremented or not.
  64. This parameter can be a value of @ref DMA_Peripheral_incremented_mode */
  65. uint32_t MemInc; /*!< Specifies whether the memory address register should be incremented or not.
  66. This parameter can be a value of @ref DMA_Memory_incremented_mode */
  67. uint32_t PeriphDataAlignment; /*!< Specifies the Peripheral data width.
  68. This parameter can be a value of @ref DMA_Peripheral_data_size */
  69. uint32_t MemDataAlignment; /*!< Specifies the Memory data width.
  70. This parameter can be a value of @ref DMA_Memory_data_size */
  71. uint32_t Mode; /*!< Specifies the operation mode of the DMAy Channelx.
  72. This parameter can be a value of @ref DMA_mode
  73. @note The circular buffer mode cannot be used if the memory-to-memory
  74. data transfer is configured on the selected Channel */
  75. uint32_t Priority; /*!< Specifies the software priority for the DMAy Channelx.
  76. This parameter can be a value of @ref DMA_Priority_level */
  77. } DMA_InitTypeDef;
  78. /**
  79. * @brief DMA Configuration enumeration values definition
  80. */
  81. typedef enum
  82. {
  83. DMA_MODE = 0, /*!< Control related DMA mode Parameter in DMA_InitTypeDef */
  84. DMA_PRIORITY = 1, /*!< Control related priority level Parameter in DMA_InitTypeDef */
  85. } DMA_ControlTypeDef;
  86. /**
  87. * @brief HAL DMA State structures definition
  88. */
  89. typedef enum
  90. {
  91. HAL_DMA_STATE_RESET = 0x00, /*!< DMA not yet initialized or disabled */
  92. HAL_DMA_STATE_READY = 0x01, /*!< DMA process success and ready for use */
  93. HAL_DMA_STATE_READY_HALF = 0x11, /*!< DMA Half process success */
  94. HAL_DMA_STATE_BUSY = 0x02, /*!< DMA process is ongoing */
  95. HAL_DMA_STATE_TIMEOUT = 0x03, /*!< DMA timeout state */
  96. HAL_DMA_STATE_ERROR = 0x04, /*!< DMA error state */
  97. }HAL_DMA_StateTypeDef;
  98. /**
  99. * @brief HAL DMA Error Code structure definition
  100. */
  101. typedef enum
  102. {
  103. HAL_DMA_FULL_TRANSFER = 0x00, /*!< Full transfer */
  104. HAL_DMA_HALF_TRANSFER = 0x01, /*!< Half Transfer */
  105. }HAL_DMA_LevelCompleteTypeDef;
  106. /**
  107. * @brief DMA handle Structure definition
  108. */
  109. typedef struct __DMA_HandleTypeDef
  110. {
  111. DMA_Channel_TypeDef *Instance; /*!< Register base address */
  112. DMA_InitTypeDef Init; /*!< DMA communication parameters */
  113. HAL_LockTypeDef Lock; /*!< DMA locking object */
  114. HAL_DMA_StateTypeDef State; /*!< DMA transfer state */
  115. void *Parent; /*!< Parent object state */
  116. void (* XferCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer complete callback */
  117. void (* XferHalfCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA Half transfer complete callback */
  118. void (* XferErrorCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer error callback */
  119. __IO uint32_t ErrorCode; /*!< DMA Error code */
  120. } DMA_HandleTypeDef;
  121. /**
  122. * @}
  123. */
  124. /* Exported constants --------------------------------------------------------*/
  125. /** @defgroup DMA_Exported_Constants DMA Exported Constants
  126. * @{
  127. */
  128. /** @defgroup DMA_Error_Code DMA_Error_Code
  129. * @{
  130. */
  131. #define HAL_DMA_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
  132. #define HAL_DMA_ERROR_TE ((uint32_t)0x00000001) /*!< Transfer error */
  133. #define HAL_DMA_ERROR_TIMEOUT ((uint32_t)0x00000020) /*!< Timeout error */
  134. /**
  135. * @}
  136. */
  137. /** @defgroup DMA_Data_transfer_direction DMA_Data_transfer_direction
  138. * @{
  139. */
  140. #define DMA_PERIPH_TO_MEMORY ((uint32_t)0x00000000) /*!< Peripheral to memory direction */
  141. #define DMA_MEMORY_TO_PERIPH ((uint32_t)DMA_CCR_DIR) /*!< Memory to peripheral direction */
  142. #define DMA_MEMORY_TO_MEMORY ((uint32_t)(DMA_CCR_MEM2MEM)) /*!< Memory to memory direction */
  143. #define IS_DMA_DIRECTION(DIRECTION) (((DIRECTION) == DMA_PERIPH_TO_MEMORY ) || \
  144. ((DIRECTION) == DMA_MEMORY_TO_PERIPH) || \
  145. ((DIRECTION) == DMA_MEMORY_TO_MEMORY))
  146. /**
  147. * @}
  148. */
  149. /** @defgroup DMA_Data_buffer_size DMA_Data_buffer_size
  150. * @{
  151. */
  152. #define IS_DMA_BUFFER_SIZE(SIZE) (((SIZE) >= 0x1) && ((SIZE) < 0x10000))
  153. /**
  154. * @}
  155. */
  156. /** @defgroup DMA_Peripheral_incremented_mode DMA_Peripheral_incremented_mode
  157. * @{
  158. */
  159. #define DMA_PINC_ENABLE ((uint32_t)DMA_CCR_PINC) /*!< Peripheral increment mode Enable */
  160. #define DMA_PINC_DISABLE ((uint32_t)0x00000000) /*!< Peripheral increment mode Disable */
  161. #define IS_DMA_PERIPHERAL_INC_STATE(STATE) (((STATE) == DMA_PINC_ENABLE) || \
  162. ((STATE) == DMA_PINC_DISABLE))
  163. /**
  164. * @}
  165. */
  166. /** @defgroup DMA_Memory_incremented_mode DMA_Memory_incremented_mode
  167. * @{
  168. */
  169. #define DMA_MINC_ENABLE ((uint32_t)DMA_CCR_MINC) /*!< Memory increment mode Enable */
  170. #define DMA_MINC_DISABLE ((uint32_t)0x00000000) /*!< Memory increment mode Disable */
  171. #define IS_DMA_MEMORY_INC_STATE(STATE) (((STATE) == DMA_MINC_ENABLE) || \
  172. ((STATE) == DMA_MINC_DISABLE))
  173. /**
  174. * @}
  175. */
  176. /** @defgroup DMA_Peripheral_data_size DMA_Peripheral_data_size
  177. * @{
  178. */
  179. #define DMA_PDATAALIGN_BYTE ((uint32_t)0x00000000) /*!< Peripheral data alignment : Byte */
  180. #define DMA_PDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_PSIZE_0) /*!< Peripheral data alignment : HalfWord */
  181. #define DMA_PDATAALIGN_WORD ((uint32_t)DMA_CCR_PSIZE_1) /*!< Peripheral data alignment : Word */
  182. #define IS_DMA_PERIPHERAL_DATA_SIZE(SIZE) (((SIZE) == DMA_PDATAALIGN_BYTE) || \
  183. ((SIZE) == DMA_PDATAALIGN_HALFWORD) || \
  184. ((SIZE) == DMA_PDATAALIGN_WORD))
  185. /**
  186. * @}
  187. */
  188. /** @defgroup DMA_Memory_data_size DMA_Memory_data_size
  189. * @{
  190. */
  191. #define DMA_MDATAALIGN_BYTE ((uint32_t)0x00000000) /*!< Memory data alignment : Byte */
  192. #define DMA_MDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_MSIZE_0) /*!< Memory data alignment : HalfWord */
  193. #define DMA_MDATAALIGN_WORD ((uint32_t)DMA_CCR_MSIZE_1) /*!< Memory data alignment : Word */
  194. #define IS_DMA_MEMORY_DATA_SIZE(SIZE) (((SIZE) == DMA_MDATAALIGN_BYTE) || \
  195. ((SIZE) == DMA_MDATAALIGN_HALFWORD) || \
  196. ((SIZE) == DMA_MDATAALIGN_WORD ))
  197. /**
  198. * @}
  199. */
  200. /** @defgroup DMA_mode DMA_mode
  201. * @{
  202. */
  203. #define DMA_NORMAL ((uint32_t)0x00000000) /*!< Normal Mode */
  204. #define DMA_CIRCULAR ((uint32_t)DMA_CCR_CIRC) /*!< Circular Mode */
  205. #define IS_DMA_MODE(MODE) (((MODE) == DMA_NORMAL ) || \
  206. ((MODE) == DMA_CIRCULAR))
  207. /**
  208. * @}
  209. */
  210. /** @defgroup DMA_Priority_level DMA_Priority_level
  211. * @{
  212. */
  213. #define DMA_PRIORITY_LOW ((uint32_t)0x00000000) /*!< Priority level : Low */
  214. #define DMA_PRIORITY_MEDIUM ((uint32_t)DMA_CCR_PL_0) /*!< Priority level : Medium */
  215. #define DMA_PRIORITY_HIGH ((uint32_t)DMA_CCR_PL_1) /*!< Priority level : High */
  216. #define DMA_PRIORITY_VERY_HIGH ((uint32_t)DMA_CCR_PL) /*!< Priority level : Very_High */
  217. #define IS_DMA_PRIORITY(PRIORITY) (((PRIORITY) == DMA_PRIORITY_LOW ) || \
  218. ((PRIORITY) == DMA_PRIORITY_MEDIUM) || \
  219. ((PRIORITY) == DMA_PRIORITY_HIGH) || \
  220. ((PRIORITY) == DMA_PRIORITY_VERY_HIGH))
  221. /**
  222. * @}
  223. */
  224. /** @defgroup DMA_interrupt_enable_definitions DMA_interrupt_enable_definitions
  225. * @{
  226. */
  227. #define DMA_IT_TC ((uint32_t)DMA_CCR_TCIE)
  228. #define DMA_IT_HT ((uint32_t)DMA_CCR_HTIE)
  229. #define DMA_IT_TE ((uint32_t)DMA_CCR_TEIE)
  230. /**
  231. * @}
  232. */
  233. /** @defgroup DMA_flag_definitions DMA_flag_definitions
  234. * @{
  235. */
  236. #define DMA_FLAG_GL1 ((uint32_t)0x00000001)
  237. #define DMA_FLAG_TC1 ((uint32_t)0x00000002)
  238. #define DMA_FLAG_HT1 ((uint32_t)0x00000004)
  239. #define DMA_FLAG_TE1 ((uint32_t)0x00000008)
  240. #define DMA_FLAG_GL2 ((uint32_t)0x00000010)
  241. #define DMA_FLAG_TC2 ((uint32_t)0x00000020)
  242. #define DMA_FLAG_HT2 ((uint32_t)0x00000040)
  243. #define DMA_FLAG_TE2 ((uint32_t)0x00000080)
  244. #define DMA_FLAG_GL3 ((uint32_t)0x00000100)
  245. #define DMA_FLAG_TC3 ((uint32_t)0x00000200)
  246. #define DMA_FLAG_HT3 ((uint32_t)0x00000400)
  247. #define DMA_FLAG_TE3 ((uint32_t)0x00000800)
  248. #define DMA_FLAG_GL4 ((uint32_t)0x00001000)
  249. #define DMA_FLAG_TC4 ((uint32_t)0x00002000)
  250. #define DMA_FLAG_HT4 ((uint32_t)0x00004000)
  251. #define DMA_FLAG_TE4 ((uint32_t)0x00008000)
  252. #define DMA_FLAG_GL5 ((uint32_t)0x00010000)
  253. #define DMA_FLAG_TC5 ((uint32_t)0x00020000)
  254. #define DMA_FLAG_HT5 ((uint32_t)0x00040000)
  255. #define DMA_FLAG_TE5 ((uint32_t)0x00080000)
  256. #define DMA_FLAG_GL6 ((uint32_t)0x00100000)
  257. #define DMA_FLAG_TC6 ((uint32_t)0x00200000)
  258. #define DMA_FLAG_HT6 ((uint32_t)0x00400000)
  259. #define DMA_FLAG_TE6 ((uint32_t)0x00800000)
  260. #define DMA_FLAG_GL7 ((uint32_t)0x01000000)
  261. #define DMA_FLAG_TC7 ((uint32_t)0x02000000)
  262. #define DMA_FLAG_HT7 ((uint32_t)0x04000000)
  263. #define DMA_FLAG_TE7 ((uint32_t)0x08000000)
  264. /**
  265. * @}
  266. */
  267. /**
  268. * @}
  269. */
  270. /* Exported macros -----------------------------------------------------------*/
  271. /** @defgroup DMA_Exported_macros DMA Exported Macros
  272. * @{
  273. */
  274. /** @brief Reset DMA handle state
  275. * @param __HANDLE__: DMA handle.
  276. * @retval None
  277. */
  278. #define __HAL_DMA_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DMA_STATE_RESET)
  279. /**
  280. * @brief Enable the specified DMA Channel.
  281. * @param __HANDLE__: DMA handle
  282. * @retval None.
  283. */
  284. #define __HAL_DMA_ENABLE(__HANDLE__) (SET_BIT((__HANDLE__)->Instance->CCR, DMA_CCR_EN))
  285. /**
  286. * @brief Disable the specified DMA Channel.
  287. * @param __HANDLE__: DMA handle
  288. * @retval None.
  289. */
  290. #define __HAL_DMA_DISABLE(__HANDLE__) (CLEAR_BIT((__HANDLE__)->Instance->CCR, DMA_CCR_EN))
  291. /* Interrupt & Flag management */
  292. /**
  293. * @brief Enables the specified DMA Channel interrupts.
  294. * @param __HANDLE__: DMA handle
  295. * @param __INTERRUPT__: specifies the DMA interrupt sources to be enabled or disabled.
  296. * This parameter can be any combination of the following values:
  297. * @arg DMA_IT_TC: Transfer complete interrupt mask
  298. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  299. * @arg DMA_IT_TE: Transfer error interrupt mask
  300. * @retval None
  301. */
  302. #define __HAL_DMA_ENABLE_IT(__HANDLE__, __INTERRUPT__) (SET_BIT((__HANDLE__)->Instance->CCR, (__INTERRUPT__)))
  303. /**
  304. * @brief Disables the specified DMA Channel interrupts.
  305. * @param __HANDLE__: DMA handle
  306. * @param __INTERRUPT__: specifies the DMA interrupt sources to be enabled or disabled.
  307. * This parameter can be any combination of the following values:
  308. * @arg DMA_IT_TC: Transfer complete interrupt mask
  309. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  310. * @arg DMA_IT_TE: Transfer error interrupt mask
  311. * @retval None
  312. */
  313. #define __HAL_DMA_DISABLE_IT(__HANDLE__, __INTERRUPT__) (CLEAR_BIT((__HANDLE__)->Instance->CCR , (__INTERRUPT__)))
  314. /**
  315. * @brief Checks whether the specified DMA Channel interrupt has occurred or not.
  316. * @param __HANDLE__: DMA handle
  317. * @param __INTERRUPT__: specifies the DMA interrupt source to check.
  318. * This parameter can be one of the following values:
  319. * @arg DMA_IT_TC: Transfer complete interrupt mask
  320. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  321. * @arg DMA_IT_TE: Transfer error interrupt mask
  322. * @retval The state of DMA_IT (SET or RESET).
  323. */
  324. #define __HAL_DMA_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CCR & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  325. /**
  326. * @}
  327. */
  328. /* Include DMA HAL Extension module */
  329. #include "stm32l1xx_hal_dma_ex.h"
  330. /* Exported functions --------------------------------------------------------*/
  331. /** @addtogroup DMA_Exported_Functions
  332. * @{
  333. */
  334. /* Initialization and de-initialization functions *****************************/
  335. HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma);
  336. HAL_StatusTypeDef HAL_DMA_DeInit (DMA_HandleTypeDef *hdma);
  337. /* IO operation functions *****************************************************/
  338. HAL_StatusTypeDef HAL_DMA_Start (DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength);
  339. HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength);
  340. HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma);
  341. HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *hdma, uint32_t CompleteLevel, uint32_t Timeout);
  342. void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma);
  343. /* Peripheral State and Error functions ***************************************/
  344. HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *hdma);
  345. uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *hdma);
  346. /**
  347. * @}
  348. */
  349. /**
  350. * @}
  351. */
  352. /**
  353. * @}
  354. */
  355. #ifdef __cplusplus
  356. }
  357. #endif
  358. #endif /* __STM32L1xx_HAL_DMA_H */
  359. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/