stm32l4xx_hal_hcd.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /**
  2. ******************************************************************************
  3. * @file stm32l4xx_hal_hcd.h
  4. * @author MCD Application Team
  5. * @brief Header file of HCD HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification,
  12. * are permitted provided that the following conditions are met:
  13. * 1. Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  25. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  28. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  29. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  30. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. *
  33. ******************************************************************************
  34. */
  35. /* Define to prevent recursive inclusion -------------------------------------*/
  36. #ifndef __STM32L4xx_HAL_HCD_H
  37. #define __STM32L4xx_HAL_HCD_H
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. #if defined(STM32L475xx) || defined(STM32L476xx) || defined(STM32L485xx) || defined(STM32L486xx) || \
  42. defined(STM32L496xx) || defined(STM32L4A6xx) || \
  43. defined(STM32L4R5xx) || defined(STM32L4R7xx) || defined(STM32L4R9xx) || defined(STM32L4S5xx) || defined(STM32L4S7xx) || defined(STM32L4S9xx)
  44. /* Includes ------------------------------------------------------------------*/
  45. #include "stm32l4xx_ll_usb.h"
  46. /** @addtogroup STM32L4xx_HAL_Driver
  47. * @{
  48. */
  49. /** @addtogroup HCD
  50. * @{
  51. */
  52. /* Exported types ------------------------------------------------------------*/
  53. /** @defgroup HCD_Exported_Types HCD Exported Types
  54. * @{
  55. */
  56. /** @defgroup HCD_Exported_Types_Group1 HCD State Structure definition
  57. * @{
  58. */
  59. typedef enum
  60. {
  61. HAL_HCD_STATE_RESET = 0x00,
  62. HAL_HCD_STATE_READY = 0x01,
  63. HAL_HCD_STATE_ERROR = 0x02,
  64. HAL_HCD_STATE_BUSY = 0x03,
  65. HAL_HCD_STATE_TIMEOUT = 0x04
  66. } HCD_StateTypeDef;
  67. typedef USB_OTG_GlobalTypeDef HCD_TypeDef;
  68. typedef USB_OTG_CfgTypeDef HCD_InitTypeDef;
  69. typedef USB_OTG_HCTypeDef HCD_HCTypeDef ;
  70. typedef USB_OTG_URBStateTypeDef HCD_URBStateTypeDef ;
  71. typedef USB_OTG_HCStateTypeDef HCD_HCStateTypeDef ;
  72. /**
  73. * @}
  74. */
  75. /** @defgroup HCD_Exported_Types_Group2 HCD Handle Structure definition
  76. * @{
  77. */
  78. typedef struct
  79. {
  80. HCD_TypeDef *Instance; /*!< Register base address */
  81. HCD_InitTypeDef Init; /*!< HCD required parameters */
  82. HCD_HCTypeDef hc[15]; /*!< Host channels parameters */
  83. HAL_LockTypeDef Lock; /*!< HCD peripheral status */
  84. __IO HCD_StateTypeDef State; /*!< HCD communication state */
  85. void *pData; /*!< Pointer Stack Handler */
  86. } HCD_HandleTypeDef;
  87. /**
  88. * @}
  89. */
  90. /**
  91. * @}
  92. */
  93. /* Exported constants --------------------------------------------------------*/
  94. /** @defgroup HCD_Exported_Constants HCD Exported Constants
  95. * @{
  96. */
  97. /** @defgroup HCD_Speed HCD Speed
  98. * @{
  99. */
  100. #define HCD_SPEED_HIGH 0
  101. #define HCD_SPEED_LOW 2
  102. #define HCD_SPEED_FULL 3
  103. /**
  104. * @}
  105. */
  106. /** @defgroup HCD_PHY_Module HCD PHY Module
  107. * @{
  108. */
  109. #define HCD_PHY_EMBEDDED 1
  110. /**
  111. * @}
  112. */
  113. /**
  114. * @}
  115. */
  116. /* Exported macro ------------------------------------------------------------*/
  117. /** @defgroup HCD_Exported_Macros HCD Exported Macros
  118. * @brief macros to handle interrupts and specific clock configurations
  119. * @{
  120. */
  121. #define __HAL_HCD_ENABLE(__HANDLE__) USB_EnableGlobalInt ((__HANDLE__)->Instance)
  122. #define __HAL_HCD_DISABLE(__HANDLE__) USB_DisableGlobalInt ((__HANDLE__)->Instance)
  123. #define __HAL_HCD_GET_FLAG(__HANDLE__, __INTERRUPT__) ((USB_ReadInterrupts((__HANDLE__)->Instance) & (__INTERRUPT__)) == (__INTERRUPT__))
  124. #define __HAL_HCD_CLEAR_FLAG(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->GINTSTS) = (__INTERRUPT__))
  125. #define __HAL_HCD_IS_INVALID_INTERRUPT(__HANDLE__) (USB_ReadInterrupts((__HANDLE__)->Instance) == 0)
  126. #define __HAL_HCD_CLEAR_HC_INT(chnum, __INTERRUPT__) (USBx_HC(chnum)->HCINT = (__INTERRUPT__))
  127. #define __HAL_HCD_MASK_HALT_HC_INT(chnum) (USBx_HC(chnum)->HCINTMSK &= ~USB_OTG_HCINTMSK_CHHM)
  128. #define __HAL_HCD_UNMASK_HALT_HC_INT(chnum) (USBx_HC(chnum)->HCINTMSK |= USB_OTG_HCINTMSK_CHHM)
  129. #define __HAL_HCD_MASK_ACK_HC_INT(chnum) (USBx_HC(chnum)->HCINTMSK &= ~USB_OTG_HCINTMSK_ACKM)
  130. #define __HAL_HCD_UNMASK_ACK_HC_INT(chnum) (USBx_HC(chnum)->HCINTMSK |= USB_OTG_HCINTMSK_ACKM)
  131. /**
  132. * @}
  133. */
  134. /* Exported functions --------------------------------------------------------*/
  135. /** @addtogroup HCD_Exported_Functions HCD Exported Functions
  136. * @{
  137. */
  138. /* Initialization/de-initialization functions ********************************/
  139. /** @addtogroup HCD_Exported_Functions_Group1 Initialization and de-initialization functions
  140. * @{
  141. */
  142. HAL_StatusTypeDef HAL_HCD_Init(HCD_HandleTypeDef *hhcd);
  143. HAL_StatusTypeDef HAL_HCD_DeInit (HCD_HandleTypeDef *hhcd);
  144. HAL_StatusTypeDef HAL_HCD_HC_Init(HCD_HandleTypeDef *hhcd,
  145. uint8_t ch_num,
  146. uint8_t epnum,
  147. uint8_t dev_address,
  148. uint8_t speed,
  149. uint8_t ep_type,
  150. uint16_t mps);
  151. HAL_StatusTypeDef HAL_HCD_HC_Halt(HCD_HandleTypeDef *hhcd,
  152. uint8_t ch_num);
  153. void HAL_HCD_MspInit(HCD_HandleTypeDef *hhcd);
  154. void HAL_HCD_MspDeInit(HCD_HandleTypeDef *hhcd);
  155. /**
  156. * @}
  157. */
  158. /* I/O operation functions ***************************************************/
  159. /** @addtogroup HCD_Exported_Functions_Group2 Input and Output operation functions
  160. * @{
  161. */
  162. HAL_StatusTypeDef HAL_HCD_HC_SubmitRequest(HCD_HandleTypeDef *hhcd,
  163. uint8_t pipe,
  164. uint8_t direction ,
  165. uint8_t ep_type,
  166. uint8_t token,
  167. uint8_t* pbuff,
  168. uint16_t length,
  169. uint8_t do_ping);
  170. /* Non-Blocking mode: Interrupt */
  171. void HAL_HCD_IRQHandler(HCD_HandleTypeDef *hhcd);
  172. void HAL_HCD_SOF_Callback(HCD_HandleTypeDef *hhcd);
  173. void HAL_HCD_Connect_Callback(HCD_HandleTypeDef *hhcd);
  174. void HAL_HCD_Disconnect_Callback(HCD_HandleTypeDef *hhcd);
  175. void HAL_HCD_HC_NotifyURBChange_Callback(HCD_HandleTypeDef *hhcd,
  176. uint8_t chnum,
  177. HCD_URBStateTypeDef urb_state);
  178. /**
  179. * @}
  180. */
  181. /* Peripheral Control functions **********************************************/
  182. /** @addtogroup HCD_Exported_Functions_Group3 Peripheral Control functions
  183. * @{
  184. */
  185. HAL_StatusTypeDef HAL_HCD_ResetPort(HCD_HandleTypeDef *hhcd);
  186. HAL_StatusTypeDef HAL_HCD_Start(HCD_HandleTypeDef *hhcd);
  187. HAL_StatusTypeDef HAL_HCD_Stop(HCD_HandleTypeDef *hhcd);
  188. /**
  189. * @}
  190. */
  191. /* Peripheral State functions ************************************************/
  192. /** @addtogroup HCD_Exported_Functions_Group4 Peripheral State functions
  193. * @{
  194. */
  195. HCD_StateTypeDef HAL_HCD_GetState(HCD_HandleTypeDef *hhcd);
  196. HCD_URBStateTypeDef HAL_HCD_HC_GetURBState(HCD_HandleTypeDef *hhcd, uint8_t chnum);
  197. uint32_t HAL_HCD_HC_GetXferCount(HCD_HandleTypeDef *hhcd, uint8_t chnum);
  198. HCD_HCStateTypeDef HAL_HCD_HC_GetState(HCD_HandleTypeDef *hhcd, uint8_t chnum);
  199. uint32_t HAL_HCD_GetCurrentFrame(HCD_HandleTypeDef *hhcd);
  200. uint32_t HAL_HCD_GetCurrentSpeed(HCD_HandleTypeDef *hhcd);
  201. /**
  202. * @}
  203. */
  204. /**
  205. * @}
  206. */
  207. /* Private macros ------------------------------------------------------------*/
  208. /** @defgroup HCD_Private_Macros HCD Private Macros
  209. * @{
  210. */
  211. /**
  212. * @}
  213. */
  214. /**
  215. * @}
  216. */
  217. /**
  218. * @}
  219. */
  220. #endif /* STM32L475xx || STM32L476xx || STM32L485xx || STM32L486xx || */
  221. /* STM32L496xx || STM32L4A6xx || */
  222. /* STM32L4R5xx || STM32L4R7xx || STM32L4R9xx || STM32L4S5xx || STM32L4S7xx || STM32L4S9xx */
  223. #ifdef __cplusplus
  224. }
  225. #endif
  226. #endif /* __STM32L4xx_HAL_HCD_H */
  227. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/