usb_hc.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* usb_hc.h - USB host controller driver interface */
  2. /*
  3. * Copyright (c) 2020 Actions Corporation.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief USB host controller APIs
  10. *
  11. * This file contains the USB host controller APIs. All host controller
  12. * drivers should implement the APIs described in this file.
  13. */
  14. #ifndef __USB_HC_H__
  15. #define __USB_HC_H__
  16. #include <device.h>
  17. #include <drivers/usb/usb.h>
  18. /*
  19. * Hub request types
  20. */
  21. #define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
  22. #define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
  23. /*
  24. * Hub Class feature numbers
  25. */
  26. #define C_HUB_LOCAL_POWER 0
  27. #define C_HUB_OVER_CURRENT 1
  28. /*
  29. * Port feature numbers
  30. */
  31. #define USB_PORT_FEAT_CONNECTION 0
  32. #define USB_PORT_FEAT_ENABLE 1
  33. #define USB_PORT_FEAT_SUSPEND 2
  34. #define USB_PORT_FEAT_OVER_CURRENT 3
  35. #define USB_PORT_FEAT_RESET 4
  36. #define USB_PORT_FEAT_POWER 8
  37. #define USB_PORT_FEAT_LOWSPEED 9
  38. #define USB_PORT_FEAT_HIGHSPEED 10
  39. #define USB_PORT_FEAT_C_CONNECTION 16
  40. #define USB_PORT_FEAT_C_ENABLE 17
  41. #define USB_PORT_FEAT_C_SUSPEND 18
  42. #define USB_PORT_FEAT_C_OVER_CURRENT 19
  43. #define USB_PORT_FEAT_C_RESET 20
  44. #define USB_PORT_FEAT_TEST 21
  45. /*
  46. * Changes to Port feature numbers for Super speed,
  47. * from USB 3.0 spec Table 10-8
  48. */
  49. #define USB_SS_PORT_FEAT_U1_TIMEOUT 23
  50. #define USB_SS_PORT_FEAT_U2_TIMEOUT 24
  51. #define USB_SS_PORT_FEAT_C_LINK_STATE 25
  52. #define USB_SS_PORT_FEAT_C_CONFIG_ERROR 26
  53. #define USB_SS_PORT_FEAT_BH_RESET 28
  54. #define USB_SS_PORT_FEAT_C_BH_RESET 29
  55. /* wPortStatus bits */
  56. #define USB_PORT_STAT_CONNECTION 0x0001
  57. #define USB_PORT_STAT_ENABLE 0x0002
  58. #define USB_PORT_STAT_SUSPEND 0x0004
  59. #define USB_PORT_STAT_OVERCURRENT 0x0008
  60. #define USB_PORT_STAT_RESET 0x0010
  61. #define USB_PORT_STAT_POWER 0x0100
  62. #define USB_PORT_STAT_LOW_SPEED 0x0200
  63. #define USB_PORT_STAT_HIGH_SPEED 0x0400 /* support for EHCI */
  64. #define USB_PORT_STAT_SUPER_SPEED 0x0600 /* faking support to XHCI */
  65. #define USB_PORT_STAT_SPEED_MASK \
  66. (USB_PORT_STAT_LOW_SPEED | USB_PORT_STAT_HIGH_SPEED)
  67. /*
  68. * Changes to wPortStatus bit field in USB 3.0
  69. * See USB 3.0 spec Table 10-11
  70. */
  71. #define USB_SS_PORT_STAT_LINK_STATE 0x01e0
  72. #define USB_SS_PORT_STAT_POWER 0x0200
  73. #define USB_SS_PORT_STAT_SPEED 0x1c00
  74. #define USB_SS_PORT_STAT_SPEED_5GBPS 0x0000
  75. /* wPortChange bits */
  76. #define USB_PORT_STAT_C_CONNECTION 0x0001
  77. #define USB_PORT_STAT_C_ENABLE 0x0002
  78. #define USB_PORT_STAT_C_SUSPEND 0x0004
  79. #define USB_PORT_STAT_C_OVERCURRENT 0x0008
  80. #define USB_PORT_STAT_C_RESET 0x0010
  81. /*
  82. * Changes to wPortChange bit fields in USB 3.0
  83. * See USB 3.0 spec Table 10-12
  84. */
  85. #define USB_SS_PORT_STAT_C_BH_RESET 0x0020
  86. #define USB_SS_PORT_STAT_C_LINK_STATE 0x0040
  87. #define USB_SS_PORT_STAT_C_CONFIG_ERROR 0x0080
  88. /* wHubCharacteristics (masks) */
  89. #define HUB_CHAR_LPSM 0x0003
  90. #define HUB_CHAR_COMPOUND 0x0004
  91. #define HUB_CHAR_OCPM 0x0018
  92. /*
  93. * Hub Status & Hub Change bit masks
  94. */
  95. #define HUB_STATUS_LOCAL_POWER 0x0001
  96. #define HUB_STATUS_OVERCURRENT 0x0002
  97. #define HUB_CHANGE_LOCAL_POWER 0x0001
  98. #define HUB_CHANGE_OVERCURRENT 0x0002
  99. /* Mask for wIndex in get/set port feature */
  100. #define USB_HUB_PORT_MASK 0xf
  101. /*
  102. * Hub Port status
  103. */
  104. struct usb_port_status {
  105. unsigned short wPortStatus;
  106. unsigned short wPortChange;
  107. } __packed;
  108. /*
  109. * Hub status
  110. */
  111. struct usb_hub_status {
  112. unsigned short wHubStatus;
  113. unsigned short wHubChange;
  114. } __packed;
  115. /*
  116. *class requests for USB 2.0 hub
  117. */
  118. #define ClearHubFeature (0x2000 | USB_REQ_CLEAR_FEATURE)
  119. #define ClearPortFeature (0x2300 | USB_REQ_CLEAR_FEATURE)
  120. #define GetHubDescriptor (0xa000 | USB_REQ_GET_DESCRIPTOR)
  121. #define GetHubStatus (0xa000 | USB_REQ_GET_STATUS)
  122. #define GetPortStatus (0xa300 | USB_REQ_GET_STATUS)
  123. #define SetHubFeature (0x2000 | USB_REQ_SET_FEATURE)
  124. #define SetPortFeature (0x2300 | USB_REQ_SET_FEATURE)
  125. /**
  126. * USB Endpoint Configuration.
  127. */
  128. struct usb_hc_ep_cfg_data {
  129. /** The number associated with the EP in the device
  130. * configuration structure
  131. * IN EP = 0x80 | \<endpoint number\>
  132. * OUT EP = 0x00 | \<endpoint number\>
  133. */
  134. uint8_t ep_addr;
  135. uint16_t ep_mps; /** Endpoint max packet size */
  136. enum usb_ep_type ep_type; /** Endpoint type */
  137. };
  138. struct usb_request;
  139. typedef void (*usb_complete_t)(struct usb_request *);
  140. struct usb_request {
  141. uint8_t ep;
  142. enum usb_ep_type ep_type;
  143. uint8_t *buf; /* (in) associated data buffer */
  144. uint32_t len; /* (in) data buffer length */
  145. uint32_t actual; /* (return) actual transfer length */
  146. uint8_t *setup_packet; /* (in) setup packet (control only) */
  147. /*
  148. * case -EBUSY: init state
  149. * case 0: transfer OK
  150. * case -EIO: transfer error
  151. * case -EPIPE: endpoint stall
  152. * case -ECONNRESET: transfer cancelled or timeout
  153. * case -ENODEV: endpoint disabled or device disconnected
  154. */
  155. int status; /* check status before actual */
  156. void *context; /* (in) context for completion */
  157. usb_complete_t complete; /* (in) completion routine */
  158. };
  159. /**
  160. * @brief configure endpoint
  161. *
  162. * Function to configure an endpoint. usb_hc_ep_cfg_data structure provides
  163. * the endpoint configuration parameters: endpoint address, endpoint maximum
  164. * packet size and endpoint type.
  165. *
  166. * @param[in] cfg Endpoint config
  167. *
  168. * @return 0 on success, negative errno code on fail.
  169. */
  170. int usb_hc_ep_configure(const struct usb_hc_ep_cfg_data * const cfg);
  171. /**
  172. * @brief enable the selected endpoint
  173. *
  174. * Function to enable the selected endpoint. Upon success interrupts are
  175. * enabled for the corresponding endpoint and the endpoint is ready for
  176. * transmitting/receiving data.
  177. *
  178. * @param[in] ep Endpoint address corresponding to the one
  179. * listed in the device configuration table
  180. *
  181. * @return 0 on success, negative errno code on fail.
  182. */
  183. int usb_hc_ep_enable(const uint8_t ep);
  184. /**
  185. * @brief disable the selected endpoint
  186. *
  187. * Function to disable the selected endpoint. Upon success interrupts are
  188. * disabled for the corresponding endpoint and the endpoint is no longer able
  189. * for transmitting/receiving data.
  190. *
  191. * @param[in] ep Endpoint address corresponding to the one
  192. * listed in the device configuration table
  193. *
  194. * @return 0 on success, negative errno code on fail.
  195. */
  196. int usb_hc_ep_disable(const uint8_t ep);
  197. /**
  198. * @brief flush the selected endpoint
  199. *
  200. * @param[in] ep Endpoint address corresponding to the one
  201. * listed in the device configuration table
  202. *
  203. * @return 0 on success, negative errno code on fail.
  204. */
  205. int usb_hc_ep_flush(const uint8_t ep);
  206. /**
  207. * @brief reset the selected endpoint
  208. *
  209. * @param[in] ep Endpoint address corresponding to the one
  210. * listed in the device configuration table
  211. *
  212. * @return 0 on success, negative errno code on fail.
  213. */
  214. int usb_hc_ep_reset(const uint8_t ep);
  215. /**
  216. * @brief set USB device address
  217. *
  218. * @param[in] addr device address
  219. *
  220. * @return 0 on success, negative errno code on fail.
  221. */
  222. int usb_hc_set_address(const uint8_t addr);
  223. /**
  224. * @brief control transfer for root-hub
  225. *
  226. * This function should never be blocked and could be called in interrupt
  227. * context.
  228. *
  229. * @return >=0 on success, negative errno code on fail.
  230. */
  231. int usb_hc_root_control(void *buf, int len, struct usb_setup_packet *setup,
  232. int timeout);
  233. /**
  234. * @brief start transfer for non-root-hub device
  235. *
  236. * This function should never be blocked and could be called in interrupt
  237. * context.
  238. *
  239. * @return =0 on success, negative errno code on fail.
  240. */
  241. int usb_hc_submit_urb(struct usb_request *urb);
  242. /**
  243. * @brief cancel transfer for non-root-hub device
  244. *
  245. * This function should never be blocked and could be called in interrupt
  246. * context.
  247. *
  248. * @return =0 on success, negative errno code on fail.
  249. */
  250. int usb_hc_cancel_urb(struct usb_request *urb);
  251. /**
  252. * @brief reset the USB host controller
  253. *
  254. * @return 0 on success, negative errno code on fail.
  255. */
  256. int usb_hc_reset(void);
  257. /**
  258. * @brief enable the USB host controller
  259. *
  260. * @return 0 on success, negative errno code on fail.
  261. */
  262. int usb_hc_enable(void);
  263. /**
  264. * @brief disable the USB host controller
  265. *
  266. * @return 0 on success, negative errno code on fail.
  267. */
  268. int usb_hc_disable(void);
  269. /**
  270. * @brief USB host controller FIFO control
  271. *
  272. * @return >=0 on success, negative errno code on fail.
  273. */
  274. int usb_hc_fifo_control(bool enable);
  275. #endif /* __USB_HC_H__ */