You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

484 lines
18 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f7xx_hal_i2s.h
  4. * @author MCD Application Team
  5. * @version V1.2.2
  6. * @date 14-April-2017
  7. * @brief Header file of I2S HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2017 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 __STM32F7xx_HAL_I2S_H
  39. #define __STM32F7xx_HAL_I2S_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32f7xx_hal_def.h"
  45. /** @addtogroup STM32F7xx_HAL_Driver
  46. * @{
  47. */
  48. /** @addtogroup I2S
  49. * @{
  50. */
  51. /* Exported types ------------------------------------------------------------*/
  52. /** @defgroup I2S_Exported_Types I2S Exported Types
  53. * @{
  54. */
  55. /**
  56. * @brief I2S Init structure definition
  57. */
  58. typedef struct
  59. {
  60. uint32_t Mode; /*!< Specifies the I2S operating mode.
  61. This parameter can be a value of @ref I2S_Mode */
  62. uint32_t Standard; /*!< Specifies the standard used for the I2S communication.
  63. This parameter can be a value of @ref I2S_Standard */
  64. uint32_t DataFormat; /*!< Specifies the data format for the I2S communication.
  65. This parameter can be a value of @ref I2S_Data_Format */
  66. uint32_t MCLKOutput; /*!< Specifies whether the I2S MCLK output is enabled or not.
  67. This parameter can be a value of @ref I2S_MCLK_Output */
  68. uint32_t AudioFreq; /*!< Specifies the frequency selected for the I2S communication.
  69. This parameter can be a value of @ref I2S_Audio_Frequency */
  70. uint32_t CPOL; /*!< Specifies the idle state of the I2S clock.
  71. This parameter can be a value of @ref I2S_Clock_Polarity */
  72. uint32_t ClockSource; /*!< Specifies the I2S Clock Source.
  73. This parameter can be a value of @ref I2S_Clock_Source */
  74. }I2S_InitTypeDef;
  75. /**
  76. * @brief HAL State structures definition
  77. */
  78. typedef enum
  79. {
  80. HAL_I2S_STATE_RESET = 0x00U, /*!< I2S not yet initialized or disabled */
  81. HAL_I2S_STATE_READY = 0x01U, /*!< I2S initialized and ready for use */
  82. HAL_I2S_STATE_BUSY = 0x02U, /*!< I2S internal process is ongoing */
  83. HAL_I2S_STATE_BUSY_TX = 0x03U, /*!< Data Transmission process is ongoing */
  84. HAL_I2S_STATE_BUSY_RX = 0x04U, /*!< Data Reception process is ongoing */
  85. HAL_I2S_STATE_BUSY_TX_RX = 0x05U, /*!< Data Transmission and Reception process is ongoing */
  86. HAL_I2S_STATE_TIMEOUT = 0x06U, /*!< I2S timeout state */
  87. HAL_I2S_STATE_ERROR = 0x07U /*!< I2S error state */
  88. }HAL_I2S_StateTypeDef;
  89. /**
  90. * @brief I2S handle Structure definition
  91. */
  92. typedef struct
  93. {
  94. SPI_TypeDef *Instance; /* I2S registers base address */
  95. I2S_InitTypeDef Init; /* I2S communication parameters */
  96. uint16_t *pTxBuffPtr; /* Pointer to I2S Tx transfer buffer */
  97. __IO uint16_t TxXferSize; /* I2S Tx transfer size */
  98. __IO uint16_t TxXferCount; /* I2S Tx transfer Counter */
  99. uint16_t *pRxBuffPtr; /* Pointer to I2S Rx transfer buffer */
  100. __IO uint16_t RxXferSize; /* I2S Rx transfer size */
  101. __IO uint16_t RxXferCount; /* I2S Rx transfer counter
  102. (This field is initialized at the
  103. same value as transfer size at the
  104. beginning of the transfer and
  105. decremented when a sample is received.
  106. NbSamplesReceived = RxBufferSize-RxBufferCount) */
  107. DMA_HandleTypeDef *hdmatx; /* I2S Tx DMA handle parameters */
  108. DMA_HandleTypeDef *hdmarx; /* I2S Rx DMA handle parameters */
  109. __IO HAL_LockTypeDef Lock; /* I2S locking object */
  110. __IO HAL_I2S_StateTypeDef State; /* I2S communication state */
  111. __IO uint32_t ErrorCode; /* I2S Error code */
  112. }I2S_HandleTypeDef;
  113. /**
  114. * @}
  115. */
  116. /* Exported constants --------------------------------------------------------*/
  117. /** @defgroup I2S_Exported_Constants I2S Exported Constants
  118. * @{
  119. */
  120. /** @defgroup I2S_Error_Defintion I2S_Error_Defintion
  121. *@brief I2S Error Code
  122. * @{
  123. */
  124. #define HAL_I2S_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */
  125. #define HAL_I2S_ERROR_TIMEOUT ((uint32_t)0x00000001U) /*!< Timeout error */
  126. #define HAL_I2S_ERROR_OVR ((uint32_t)0x00000002U) /*!< OVR error */
  127. #define HAL_I2S_ERROR_UDR ((uint32_t)0x00000004U) /*!< UDR error */
  128. #define HAL_I2S_ERROR_DMA ((uint32_t)0x00000008U) /*!< DMA transfer error */
  129. #define HAL_I2S_ERROR_UNKNOW ((uint32_t)0x00000010U) /*!< Unknow Error error */
  130. /**
  131. * @}
  132. */
  133. /** @defgroup I2S_Clock_Source I2S Clock Source
  134. * @{
  135. */
  136. #define I2S_CLOCK_EXTERNAL ((uint32_t)0x00000001U)
  137. #define I2S_CLOCK_PLL ((uint32_t)0x00000002U)
  138. /**
  139. * @}
  140. */
  141. /** @defgroup I2S_Mode I2S Mode
  142. * @{
  143. */
  144. #define I2S_MODE_SLAVE_TX ((uint32_t)0x00000000U)
  145. #define I2S_MODE_SLAVE_RX ((uint32_t)0x00000100U)
  146. #define I2S_MODE_MASTER_TX ((uint32_t)0x00000200U)
  147. #define I2S_MODE_MASTER_RX ((uint32_t)0x00000300U)
  148. /**
  149. * @}
  150. */
  151. /** @defgroup I2S_Standard I2S Standard
  152. * @{
  153. */
  154. #define I2S_STANDARD_PHILIPS ((uint32_t)0x00000000U)
  155. #define I2S_STANDARD_MSB ((uint32_t)0x00000010U)
  156. #define I2S_STANDARD_LSB ((uint32_t)0x00000020U)
  157. #define I2S_STANDARD_PCM_SHORT ((uint32_t)0x00000030U)
  158. #define I2S_STANDARD_PCM_LONG ((uint32_t)0x000000B0U)
  159. /**
  160. * @}
  161. */
  162. /** @defgroup I2S_Data_Format I2S Data Format
  163. * @{
  164. */
  165. #define I2S_DATAFORMAT_16B ((uint32_t)0x00000000U)
  166. #define I2S_DATAFORMAT_16B_EXTENDED ((uint32_t)0x00000001U)
  167. #define I2S_DATAFORMAT_24B ((uint32_t)0x00000003U)
  168. #define I2S_DATAFORMAT_32B ((uint32_t)0x00000005U)
  169. /**
  170. * @}
  171. */
  172. /** @defgroup I2S_MCLK_Output I2S Mclk Output
  173. * @{
  174. */
  175. #define I2S_MCLKOUTPUT_ENABLE ((uint32_t)SPI_I2SPR_MCKOE)
  176. #define I2S_MCLKOUTPUT_DISABLE ((uint32_t)0x00000000U)
  177. /**
  178. * @}
  179. */
  180. /** @defgroup I2S_Audio_Frequency I2S Audio Frequency
  181. * @{
  182. */
  183. #define I2S_AUDIOFREQ_192K ((uint32_t)192000U)
  184. #define I2S_AUDIOFREQ_96K ((uint32_t)96000U)
  185. #define I2S_AUDIOFREQ_48K ((uint32_t)48000U)
  186. #define I2S_AUDIOFREQ_44K ((uint32_t)44100U)
  187. #define I2S_AUDIOFREQ_32K ((uint32_t)32000U)
  188. #define I2S_AUDIOFREQ_22K ((uint32_t)22050U)
  189. #define I2S_AUDIOFREQ_16K ((uint32_t)16000U)
  190. #define I2S_AUDIOFREQ_11K ((uint32_t)11025U)
  191. #define I2S_AUDIOFREQ_8K ((uint32_t)8000U)
  192. #define I2S_AUDIOFREQ_DEFAULT ((uint32_t)2U)
  193. /**
  194. * @}
  195. */
  196. /** @defgroup I2S_Clock_Polarity I2S Clock Polarity
  197. * @{
  198. */
  199. #define I2S_CPOL_LOW ((uint32_t)0x00000000U)
  200. #define I2S_CPOL_HIGH ((uint32_t)SPI_I2SCFGR_CKPOL)
  201. /**
  202. * @}
  203. */
  204. /** @defgroup I2S_Interrupts_Definition I2S Interrupts Definition
  205. * @{
  206. */
  207. #define I2S_IT_TXE SPI_CR2_TXEIE
  208. #define I2S_IT_RXNE SPI_CR2_RXNEIE
  209. #define I2S_IT_ERR SPI_CR2_ERRIE
  210. /**
  211. * @}
  212. */
  213. /** @defgroup I2S_Flags_Definition I2S Flags Definition
  214. * @{
  215. */
  216. #define I2S_FLAG_TXE SPI_SR_TXE
  217. #define I2S_FLAG_RXNE SPI_SR_RXNE
  218. #define I2S_FLAG_UDR SPI_SR_UDR
  219. #define I2S_FLAG_OVR SPI_SR_OVR
  220. #define I2S_FLAG_FRE SPI_SR_FRE
  221. #define I2S_FLAG_CHSIDE SPI_SR_CHSIDE
  222. #define I2S_FLAG_BSY SPI_SR_BSY
  223. /**
  224. * @}
  225. */
  226. /**
  227. * @}
  228. */
  229. /* Exported macros -----------------------------------------------------------*/
  230. /** @defgroup I2S_Exported_Macros I2S Exported Macros
  231. * @{
  232. */
  233. /** @brief Reset I2S handle state
  234. * @param __HANDLE__: specifies the I2S handle.
  235. * @retval None
  236. */
  237. #define __HAL_I2S_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2S_STATE_RESET)
  238. /** @brief Enable or disable the specified SPI peripheral (in I2S mode).
  239. * @param __HANDLE__: specifies the I2S Handle.
  240. * @retval None
  241. */
  242. #define __HAL_I2S_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->I2SCFGR |= SPI_I2SCFGR_I2SE)
  243. #define __HAL_I2S_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->I2SCFGR &= ~SPI_I2SCFGR_I2SE)
  244. /** @brief Enable or disable the specified I2S interrupts.
  245. * @param __HANDLE__: specifies the I2S Handle.
  246. * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
  247. * This parameter can be one of the following values:
  248. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  249. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  250. * @arg I2S_IT_ERR: Error interrupt enable
  251. * @retval None
  252. */
  253. #define __HAL_I2S_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 |= (__INTERRUPT__))
  254. #define __HAL_I2S_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 &= ~(__INTERRUPT__))
  255. /** @brief Checks if the specified I2S interrupt source is enabled or disabled.
  256. * @param __HANDLE__: specifies the I2S Handle.
  257. * This parameter can be I2S where x: 1, 2, or 3 to select the I2S peripheral.
  258. * @param __INTERRUPT__: specifies the I2S interrupt source to check.
  259. * This parameter can be one of the following values:
  260. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  261. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  262. * @arg I2S_IT_ERR: Error interrupt enable
  263. * @retval The new state of __IT__ (TRUE or FALSE).
  264. */
  265. #define __HAL_I2S_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  266. /** @brief Checks whether the specified I2S flag is set or not.
  267. * @param __HANDLE__: specifies the I2S Handle.
  268. * @param __FLAG__: specifies the flag to check.
  269. * This parameter can be one of the following values:
  270. * @arg I2S_FLAG_RXNE: Receive buffer not empty flag
  271. * @arg I2S_FLAG_TXE: Transmit buffer empty flag
  272. * @arg I2S_FLAG_UDR: Underrun flag
  273. * @arg I2S_FLAG_OVR: Overrun flag
  274. * @arg I2S_FLAG_FRE: Frame error flag
  275. * @arg I2S_FLAG_CHSIDE: Channel Side flag
  276. * @arg I2S_FLAG_BSY: Busy flag
  277. * @retval The new state of __FLAG__ (TRUE or FALSE).
  278. */
  279. #define __HAL_I2S_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
  280. /** @brief Clears the I2S OVR pending flag.
  281. * @param __HANDLE__: specifies the I2S Handle.
  282. * @retval None
  283. */
  284. #define __HAL_I2S_CLEAR_OVRFLAG(__HANDLE__) \
  285. do{ \
  286. __IO uint32_t tmpreg; \
  287. tmpreg = (__HANDLE__)->Instance->DR; \
  288. tmpreg = (__HANDLE__)->Instance->SR; \
  289. UNUSED(tmpreg); \
  290. } while(0)
  291. /** @brief Clears the I2S UDR pending flag.
  292. * @param __HANDLE__: specifies the I2S Handle.
  293. * @retval None
  294. */
  295. #define __HAL_I2S_CLEAR_UDRFLAG(__HANDLE__) \
  296. do{ \
  297. __IO uint32_t tmpreg; \
  298. tmpreg = (__HANDLE__)->Instance->SR; \
  299. UNUSED(tmpreg); \
  300. } while(0)
  301. /**
  302. * @}
  303. */
  304. /* Exported functions --------------------------------------------------------*/
  305. /** @addtogroup I2S_Exported_Functions I2S Exported Functions
  306. * @{
  307. */
  308. /** @addtogroup I2S_Exported_Functions_Group1 Initialization and de-initialization functions
  309. * @{
  310. */
  311. /* Initialization and de-initialization functions *****************************/
  312. HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s);
  313. HAL_StatusTypeDef HAL_I2S_DeInit (I2S_HandleTypeDef *hi2s);
  314. void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s);
  315. void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s);
  316. /**
  317. * @}
  318. */
  319. /** @addtogroup I2S_Exported_Functions_Group2 Input and Output operation functions
  320. * @{
  321. */
  322. /* I/O operation functions ***************************************************/
  323. /* Blocking mode: Polling */
  324. HAL_StatusTypeDef HAL_I2S_Transmit(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  325. HAL_StatusTypeDef HAL_I2S_Receive(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  326. /* Non-Blocking mode: Interrupt */
  327. HAL_StatusTypeDef HAL_I2S_Transmit_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  328. HAL_StatusTypeDef HAL_I2S_Receive_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  329. void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s);
  330. /* Non-Blocking mode: DMA */
  331. HAL_StatusTypeDef HAL_I2S_Transmit_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  332. HAL_StatusTypeDef HAL_I2S_Receive_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  333. HAL_StatusTypeDef HAL_I2S_DMAPause(I2S_HandleTypeDef *hi2s);
  334. HAL_StatusTypeDef HAL_I2S_DMAResume(I2S_HandleTypeDef *hi2s);
  335. HAL_StatusTypeDef HAL_I2S_DMAStop(I2S_HandleTypeDef *hi2s);
  336. /* Callbacks used in non blocking modes (Interrupt and DMA) *******************/
  337. void HAL_I2S_TxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  338. void HAL_I2S_TxCpltCallback(I2S_HandleTypeDef *hi2s);
  339. void HAL_I2S_RxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  340. void HAL_I2S_RxCpltCallback(I2S_HandleTypeDef *hi2s);
  341. void HAL_I2S_ErrorCallback(I2S_HandleTypeDef *hi2s);
  342. /**
  343. * @}
  344. */
  345. /** @addtogroup I2S_Exported_Functions_Group3 Peripheral State and Errors functions
  346. * @{
  347. */
  348. /* Peripheral Control and State functions ************************************/
  349. HAL_I2S_StateTypeDef HAL_I2S_GetState(I2S_HandleTypeDef *hi2s);
  350. uint32_t HAL_I2S_GetError(I2S_HandleTypeDef *hi2s);
  351. /**
  352. * @}
  353. */
  354. /**
  355. * @}
  356. */
  357. /* Private types -------------------------------------------------------------*/
  358. /* Private variables ---------------------------------------------------------*/
  359. /* Private constants ---------------------------------------------------------*/
  360. /** @defgroup I2S_Private_Constants I2S Private Constants
  361. * @{
  362. */
  363. /**
  364. * @}
  365. */
  366. /* Private macros ------------------------------------------------------------*/
  367. /** @defgroup I2S_Private_Macros I2S Private Macros
  368. * @{
  369. */
  370. #define IS_I2S_CLOCKSOURCE(CLOCK) (((CLOCK) == I2S_CLOCK_EXTERNAL) || \
  371. ((CLOCK) == I2S_CLOCK_PLL))
  372. #define IS_I2S_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_TX) || \
  373. ((MODE) == I2S_MODE_SLAVE_RX) || \
  374. ((MODE) == I2S_MODE_MASTER_TX)|| \
  375. ((MODE) == I2S_MODE_MASTER_RX))
  376. #define IS_I2S_STANDARD(STANDARD) (((STANDARD) == I2S_STANDARD_PHILIPS) || \
  377. ((STANDARD) == I2S_STANDARD_MSB) || \
  378. ((STANDARD) == I2S_STANDARD_LSB) || \
  379. ((STANDARD) == I2S_STANDARD_PCM_SHORT) || \
  380. ((STANDARD) == I2S_STANDARD_PCM_LONG))
  381. #define IS_I2S_DATA_FORMAT(FORMAT) (((FORMAT) == I2S_DATAFORMAT_16B) || \
  382. ((FORMAT) == I2S_DATAFORMAT_16B_EXTENDED) || \
  383. ((FORMAT) == I2S_DATAFORMAT_24B) || \
  384. ((FORMAT) == I2S_DATAFORMAT_32B))
  385. #define IS_I2S_MCLK_OUTPUT(OUTPUT) (((OUTPUT) == I2S_MCLKOUTPUT_ENABLE) || \
  386. ((OUTPUT) == I2S_MCLKOUTPUT_DISABLE))
  387. #define IS_I2S_AUDIO_FREQ(FREQ) ((((FREQ) >= I2S_AUDIOFREQ_8K) && \
  388. ((FREQ) <= I2S_AUDIOFREQ_192K)) || \
  389. ((FREQ) == I2S_AUDIOFREQ_DEFAULT))
  390. #define IS_I2S_CPOL(CPOL) (((CPOL) == I2S_CPOL_LOW) || \
  391. ((CPOL) == I2S_CPOL_HIGH))
  392. /**
  393. * @}
  394. */
  395. /**
  396. * @}
  397. */
  398. /**
  399. * @}
  400. */
  401. #ifdef __cplusplus
  402. }
  403. #endif
  404. #endif /* __STM32F7xx_HAL_I2S_H */
  405. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/