usb.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /*
  2. * Copyright (c) 2020 Actions Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief useful constants and macros for the USB controller
  9. *
  10. * This file contains useful constants and macros for the USB controller.
  11. */
  12. #ifndef __USB_H__
  13. #define __USB_H__
  14. /*
  15. * USB directions
  16. *
  17. * This bit flag is used in endpoint descriptors' bEndpointAddress field.
  18. * It's also one of three fields in control requests bRequestType.
  19. */
  20. #define USB_DIR_OUT 0x00 /* to device */
  21. #define USB_DIR_IN 0x80 /* to host */
  22. /*
  23. * NOTE: USB types, recipients, Standard requests, feature flags are also
  24. * defined in usb/usbstruct.h (with device names), it is more reasonable
  25. * to place here.
  26. */
  27. /*
  28. * USB types, the second of three bRequestType fields
  29. */
  30. #define USB_TYPE_MASK (0x03 << 5)
  31. #define USB_TYPE_STANDARD (0x00 << 5)
  32. #define USB_TYPE_CLASS (0x01 << 5)
  33. #define USB_TYPE_VENDOR (0x02 << 5)
  34. #define USB_TYPE_RESERVED (0x03 << 5)
  35. /*
  36. * USB recipients, the third of three bRequestType fields
  37. */
  38. #define USB_RECIP_MASK 0x1f
  39. #define USB_RECIP_DEVICE 0x00
  40. #define USB_RECIP_INTERFACE 0x01
  41. #define USB_RECIP_ENDPOINT 0x02
  42. #define USB_RECIP_OTHER 0x03
  43. /* From Wireless USB 1.0 */
  44. #define USB_RECIP_PORT 0x04
  45. #define USB_RECIP_RPIPE 0x05
  46. /*
  47. * Standard requests, for the bRequest field of a SETUP packet.
  48. *
  49. * These are qualified by the bRequestType field, so that for example
  50. * TYPE_CLASS or TYPE_VENDOR specific feature flags could be retrieved
  51. * by a GET_STATUS request.
  52. */
  53. #define USB_REQ_GET_STATUS 0x00
  54. #define USB_REQ_CLEAR_FEATURE 0x01
  55. #define USB_REQ_SET_FEATURE 0x03
  56. #define USB_REQ_SET_ADDRESS 0x05
  57. #define USB_REQ_GET_DESCRIPTOR 0x06
  58. #define USB_REQ_SET_DESCRIPTOR 0x07
  59. #define USB_REQ_GET_CONFIGURATION 0x08
  60. #define USB_REQ_SET_CONFIGURATION 0x09
  61. #define USB_REQ_GET_INTERFACE 0x0A
  62. #define USB_REQ_SET_INTERFACE 0x0B
  63. #define USB_REQ_SYNCH_FRAME 0x0C
  64. #define USB_REQ_SET_SEL 0x30
  65. #define USB_REQ_SET_ISOCH_DELAY 0x31
  66. #define USB_REQ_SET_ENCRYPTION 0x0D /* Wireless USB */
  67. #define USB_REQ_GET_ENCRYPTION 0x0E
  68. #define USB_REQ_RPIPE_ABORT 0x0E
  69. #define USB_REQ_SET_HANDSHAKE 0x0F
  70. #define USB_REQ_RPIPE_RESET 0x0F
  71. #define USB_REQ_GET_HANDSHAKE 0x10
  72. #define USB_REQ_SET_CONNECTION 0x11
  73. #define USB_REQ_SET_SECURITY_DATA 0x12
  74. #define USB_REQ_GET_SECURITY_DATA 0x13
  75. #define USB_REQ_SET_WUSB_DATA 0x14
  76. #define USB_REQ_LOOPBACK_DATA_WRITE 0x15
  77. #define USB_REQ_LOOPBACK_DATA_READ 0x16
  78. #define USB_REQ_SET_INTERFACE_DS 0x17
  79. /* The Link Power Management (LPM) ECN defines USB_REQ_TEST_AND_SET command,
  80. * used by hubs to put ports into a new L1 suspend state, except that it
  81. * forgot to define its number ...
  82. */
  83. /*
  84. * USB feature flags are written using USB_REQ_{CLEAR,SET}_FEATURE, and
  85. * are read as a bit array returned by USB_REQ_GET_STATUS. (So there
  86. * are at most sixteen features of each type.) Hubs may also support a
  87. * new USB_REQ_TEST_AND_SET_FEATURE to put ports into L1 suspend.
  88. */
  89. #define USB_DEVICE_SELF_POWERED 0 /* (read only) */
  90. #define USB_DEVICE_REMOTE_WAKEUP 1 /* dev may initiate wakeup */
  91. #define USB_DEVICE_TEST_MODE 2 /* (wired high speed only) */
  92. #define USB_DEVICE_BATTERY 2 /* (wireless) */
  93. #define USB_DEVICE_B_HNP_ENABLE 3 /* (otg) dev may initiate HNP */
  94. #define USB_DEVICE_WUSB_DEVICE 3 /* (wireless)*/
  95. #define USB_DEVICE_A_HNP_SUPPORT 4 /* (otg) RH port supports HNP */
  96. #define USB_DEVICE_A_ALT_HNP_SUPPORT 5 /* (otg) other RH port does */
  97. #define USB_DEVICE_DEBUG_MODE 6 /* (special devices only) */
  98. #define USB_ENDPOINT_HALT 0 /* IN/OUT will STALL */
  99. /*
  100. * Test Mode Selectors
  101. * See USB 2.0 spec Table 9-7
  102. */
  103. #define TEST_J 1
  104. #define TEST_K 2
  105. #define TEST_SE0_NAK 3
  106. #define TEST_PACKET 4
  107. #define TEST_FORCE_EN 5
  108. /** setup packet definitions */
  109. struct usb_setup_packet {
  110. uint8_t bmRequestType; /**< characteristics of the specific request */
  111. uint8_t bRequest; /**< specific request */
  112. uint16_t wValue; /**< request specific parameter */
  113. uint16_t wIndex; /**< request specific parameter */
  114. uint16_t wLength; /**< length of data transferred in data phase */
  115. } __packed;
  116. #define USB_REQ_DIR_IN(bmRequestType) (bmRequestType & USB_DIR_IN)
  117. /*
  118. * Endpoints
  119. */
  120. #define USB_EP_NUM_MASK 0x07 /* in bEndpointAddress */
  121. #define USB_EP_DIR_MASK 0x80
  122. /* Default USB control EP */
  123. #define USB_CONTROL_OUT_EP0 0
  124. #define USB_CONTROL_IN_EP0 0x80
  125. /* For compatibility */
  126. #define USB_EP_DIR_IN USB_DIR_IN
  127. #define USB_EP_DIR_OUT USB_DIR_OUT
  128. /* Convert from endpoint address to hardware endpoint index */
  129. #define USB_EP_ADDR2IDX(ep) ((ep) & USB_EP_NUM_MASK)
  130. /* Get direction from endpoint address */
  131. #define USB_EP_ADDR2DIR(ep) ((ep) & USB_EP_DIR_MASK)
  132. /* Convert from hardware endpoint index and direction to endpoint address */
  133. #define USB_EP_IDX2ADDR(idx, dir) ((idx) | ((dir) & USB_EP_DIR_MASK))
  134. /* If endpoint direction is out */
  135. #define USB_EP_DIR_IS_OUT(ep) (USB_EP_ADDR2DIR(ep) == USB_EP_DIR_OUT)
  136. /* If endpoint direction is in */
  137. #define USB_EP_DIR_IS_IN(ep) (USB_EP_ADDR2DIR(ep) == USB_EP_DIR_IN)
  138. static inline uint8_t usb_endpoint_num(const uint8_t ep)
  139. {
  140. return ep & USB_EP_NUM_MASK;
  141. }
  142. static inline bool usb_ep_dir_in(const uint8_t ep)
  143. {
  144. return ((ep & USB_EP_DIR_MASK) == USB_EP_DIR_IN);
  145. }
  146. static inline bool usb_ep_dir_out(const uint8_t ep)
  147. {
  148. return ((ep & USB_EP_DIR_MASK) == USB_EP_DIR_OUT);
  149. }
  150. #define USB_EP_TYPE_MASK 0x03 /* in bmAttributes */
  151. enum usb_ep_type {
  152. USB_EP_CONTROL = 0, /* Control type endpoint */
  153. USB_EP_ISOCHRONOUS, /* Isochronous type endpoint */
  154. USB_EP_BULK, /* Bulk type endpoint */
  155. USB_EP_INTERRUPT /* Interrupt type endpoint */
  156. };
  157. /* The USB 3.0 spec redefines bits 5:4 of bmAttributes as interrupt ep type. */
  158. #define USB_EP_INTRTYPE 0x30
  159. #define USB_EP_INTR_PERIODIC (0 << 4)
  160. #define USB_EP_INTR_NOTIFICATION (1 << 4)
  161. #define USB_EP_SYNCTYPE 0x0c
  162. #define USB_EP_SYNC_NONE (0 << 2)
  163. #define USB_EP_SYNC_ASYNC (1 << 2)
  164. #define USB_EP_SYNC_ADAPTIVE (2 << 2)
  165. #define USB_EP_SYNC_SYNC (3 << 2)
  166. #define USB_EP_USAGE_MASK 0x30
  167. #define USB_EP_USAGE_DATA 0x00
  168. #define USB_EP_USAGE_FEEDBACK 0x10
  169. #define USB_EP_USAGE_IMPLICIT_FB 0x20 /* Implicit feedback Data endpoint */
  170. static inline enum usb_ep_type usb_endpoint_type(uint8_t bmAttributes)
  171. {
  172. return bmAttributes & USB_EP_TYPE_MASK;
  173. }
  174. static inline int usb_endpoint_xfer_bulk(uint8_t bmAttributes)
  175. {
  176. return ((bmAttributes & USB_EP_TYPE_MASK) == USB_EP_BULK);
  177. }
  178. static inline int usb_endpoint_xfer_control(uint8_t bmAttributes)
  179. {
  180. return ((bmAttributes & USB_EP_TYPE_MASK) == USB_EP_CONTROL);
  181. }
  182. static inline int usb_endpoint_xfer_int(uint8_t bmAttributes)
  183. {
  184. return ((bmAttributes & USB_EP_TYPE_MASK) == USB_EP_INTERRUPT);
  185. }
  186. static inline int usb_endpoint_xfer_isoc(uint8_t bmAttributes)
  187. {
  188. return ((bmAttributes & USB_EP_TYPE_MASK) == USB_EP_ISOCHRONOUS);
  189. }
  190. /*
  191. * USB endpoint max packet size.
  192. */
  193. #define USB_MAX_FS_BULK_MPS 64 /**< full speed MPS for bulk EP */
  194. #define USB_MAX_FS_INTR_MPS 64 /**< full speed MPS for interrupt EP */
  195. #define USB_MAX_FS_ISOC_MPS 1023 /**< full speed MPS for isochronous EP */
  196. #define USB_MAX_HS_BULK_MPS 512 /**< high speed MPS for bulk EP */
  197. #define USB_MAX_HS_INTR_MPS 1024 /**< high speed MPS for interrupt EP */
  198. #define USB_MAX_HS_ISOC_MPS 1024 /**< high speed MPS for isochronous EP */
  199. #define MAX_PACKET_SIZE0 64 /**< maximum packet size for EP 0 */
  200. #define USB_MAX_CTRL_MPS MAX_PACKET_SIZE0 /* alias */
  201. enum usb_device_state {
  202. /* NOTATTACHED isn't in the USB spec, and this state acts
  203. * the same as ATTACHED ... but it's clearer this way.
  204. */
  205. USB_STATE_NOTATTACHED = 0,
  206. /* chapter 9 and authentication (wireless) device states */
  207. USB_STATE_ATTACHED,
  208. USB_STATE_POWERED, /* wired */
  209. USB_STATE_RECONNECTING, /* auth */
  210. USB_STATE_UNAUTHENTICATED, /* auth */
  211. USB_STATE_DEFAULT, /* limited function */
  212. USB_STATE_ADDRESS,
  213. USB_STATE_CONFIGURED, /* most functions */
  214. USB_STATE_SUSPENDED
  215. /* NOTE: there are actually four different SUSPENDED
  216. * states, returning to POWERED, DEFAULT, ADDRESS, or
  217. * CONFIGURED respectively when SOF tokens flow again.
  218. * At this level there's no difference between L1 and L2
  219. * suspend states. (L2 being original USB 1.1 suspend.)
  220. */
  221. };
  222. /*
  223. * USB Device Speed
  224. */
  225. enum usb_device_speed {
  226. USB_SPEED_UNKNOWN = 0, /* enumerating */
  227. USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
  228. USB_SPEED_HIGH, /* usb 2.0 */
  229. USB_SPEED_WIRELESS, /* wireless (usb 2.5) */
  230. USB_SPEED_SUPER, /* usb 3.0 */
  231. };
  232. #endif /* __USB_H__ */