usb_ch9.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /*
  2. * Copyright (c) 2020 PHYTEC Messtechnik GmbH
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief USB Chapter 9 structures and definitions
  9. *
  10. * This file contains the USB Chapter 9 structures definitions
  11. * and follows, with few exceptions, the USB Specification 2.0.
  12. */
  13. #include <version.h>
  14. #include <sys/util.h>
  15. #ifndef ZEPHYR_INCLUDE_USB_CH9_H_
  16. #define ZEPHYR_INCLUDE_USB_CH9_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. struct usb_req_type_field {
  21. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  22. uint8_t recipient : 5;
  23. uint8_t type : 2;
  24. uint8_t direction : 1;
  25. #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  26. uint8_t direction : 1;
  27. uint8_t type : 2;
  28. uint8_t recipient : 5;
  29. #endif
  30. } __packed;
  31. /** USB Setup Data packet defined in spec. Table 9-2 */
  32. struct usb_setup_packet {
  33. union {
  34. uint8_t bmRequestType;
  35. struct usb_req_type_field RequestType;
  36. };
  37. uint8_t bRequest;
  38. uint16_t wValue;
  39. uint16_t wIndex;
  40. uint16_t wLength;
  41. };
  42. /** USB Setup packet RequestType Direction values (from Table 9-2) */
  43. #define USB_REQTYPE_DIR_TO_DEVICE 0
  44. #define USB_REQTYPE_DIR_TO_HOST 1
  45. /** USB Setup packet RequestType Type values (from Table 9-2) */
  46. #define USB_REQTYPE_TYPE_STANDARD 0
  47. #define USB_REQTYPE_TYPE_CLASS 1
  48. #define USB_REQTYPE_TYPE_VENDOR 2
  49. #define USB_REQTYPE_TYPE_RESERVED 3
  50. /** USB Setup packet RequestType Recipient values (from Table 9-2) */
  51. #define USB_REQTYPE_RECIPIENT_DEVICE 0
  52. #define USB_REQTYPE_RECIPIENT_INTERFACE 1
  53. #define USB_REQTYPE_RECIPIENT_ENDPOINT 2
  54. #define USB_REQTYPE_RECIPIENT_OTHER 3
  55. /** Get data transfer direction from bmRequestType */
  56. #define USB_REQTYPE_GET_DIR(bmRequestType) (((bmRequestType) >> 7) & 0x01U)
  57. /** Get request type from bmRequestType */
  58. #define USB_REQTYPE_GET_TYPE(bmRequestType) (((bmRequestType) >> 5) & 0x03U)
  59. /** Get request recipient from bmRequestType */
  60. #define USB_REQTYPE_GET_RECIPIENT(bmRequestType) ((bmRequestType) & 0x1FU)
  61. /**
  62. * @brief Check if request transfer direction is to host.
  63. *
  64. * @param setup Pointer to USB Setup packet
  65. * @return true If transfer direction is to host
  66. */
  67. static inline bool usb_reqtype_is_to_host(struct usb_setup_packet *setup)
  68. {
  69. return setup->RequestType.direction == USB_REQTYPE_DIR_TO_HOST;
  70. }
  71. /**
  72. * @brief Check if request transfer direction is to device.
  73. *
  74. * @param setup Pointer to USB Setup packet
  75. * @return true If transfer direction is to device
  76. */
  77. static inline bool usb_reqtype_is_to_device(struct usb_setup_packet *setup)
  78. {
  79. return setup->RequestType.direction == USB_REQTYPE_DIR_TO_DEVICE;
  80. }
  81. /** USB Standard Request Codes defined in spec. Table 9-4 */
  82. #define USB_SREQ_GET_STATUS 0x00
  83. #define USB_SREQ_CLEAR_FEATURE 0x01
  84. #define USB_SREQ_SET_FEATURE 0x03
  85. #define USB_SREQ_SET_ADDRESS 0x05
  86. #define USB_SREQ_GET_DESCRIPTOR 0x06
  87. #define USB_SREQ_SET_DESCRIPTOR 0x07
  88. #define USB_SREQ_GET_CONFIGURATION 0x08
  89. #define USB_SREQ_SET_CONFIGURATION 0x09
  90. #define USB_SREQ_GET_INTERFACE 0x0A
  91. #define USB_SREQ_SET_INTERFACE 0x0B
  92. #define USB_SREQ_SYNCH_FRAME 0x0C
  93. /** Descriptor Types defined in spec. Table 9-5 */
  94. #define USB_DESC_DEVICE 1
  95. #define USB_DESC_CONFIGURATION 2
  96. #define USB_DESC_STRING 3
  97. #define USB_DESC_INTERFACE 4
  98. #define USB_DESC_ENDPOINT 5
  99. #define USB_DESC_DEVICE_QUALIFIER 6
  100. #define USB_DESC_OTHER_SPEED 7
  101. #define USB_DESC_INTERFACE_POWER 8
  102. /** Additional Descriptor Types defined in USB 3 spec. Table 9-5 */
  103. #define USB_DESC_OTG 9
  104. #define USB_DESC_DEBUG 10
  105. #define USB_DESC_INTERFACE_ASSOC 11
  106. #define USB_DESC_BOS 15
  107. #define USB_DESC_DEVICE_CAPABILITY 16
  108. /** Class-Specific Descriptor Types as defined by
  109. * USB Common Class Specification
  110. */
  111. #define USB_DESC_CS_DEVICE 0x21
  112. #define USB_DESC_CS_CONFIGURATION 0x22
  113. #define USB_DESC_CS_STRING 0x23
  114. #define USB_DESC_CS_INTERFACE 0x24
  115. #define USB_DESC_CS_ENDPOINT 0x25
  116. /** USB Standard Feature Selectors defined in spec. Table 9-6 */
  117. #define USB_SFS_ENDPOINT_HALT 0x00
  118. #define USB_SFS_REMOTE_WAKEUP 0x01
  119. #define USB_SFS_TEST_MODE 0x02
  120. /** Bits used for GetStatus response defined in spec. Figure 9-4 */
  121. #define USB_GET_STATUS_SELF_POWERED BIT(0)
  122. #define USB_GET_STATUS_REMOTE_WAKEUP BIT(1)
  123. /** Header of an USB descriptor */
  124. struct usb_desc_header {
  125. uint8_t bLength;
  126. uint8_t bDescriptorType;
  127. } __packed;
  128. /** USB Standard Device Descriptor defined in spec. Table 9-8 */
  129. struct usb_device_descriptor {
  130. uint8_t bLength;
  131. uint8_t bDescriptorType;
  132. uint16_t bcdUSB;
  133. uint8_t bDeviceClass;
  134. uint8_t bDeviceSubClass;
  135. uint8_t bDeviceProtocol;
  136. uint8_t bMaxPacketSize0;
  137. uint16_t idVendor;
  138. uint16_t idProduct;
  139. uint16_t bcdDevice;
  140. uint8_t iManufacturer;
  141. uint8_t iProduct;
  142. uint8_t iSerialNumber;
  143. uint8_t bNumConfigurations;
  144. } __packed;
  145. /** USB Standard Configuration Descriptor defined in spec. Table 9-10 */
  146. struct usb_cfg_descriptor {
  147. uint8_t bLength;
  148. uint8_t bDescriptorType;
  149. uint16_t wTotalLength;
  150. uint8_t bNumInterfaces;
  151. uint8_t bConfigurationValue;
  152. uint8_t iConfiguration;
  153. uint8_t bmAttributes;
  154. uint8_t bMaxPower;
  155. } __packed;
  156. /** USB Standard Interface Descriptor defined in spec. Table 9-12 */
  157. struct usb_if_descriptor {
  158. uint8_t bLength;
  159. uint8_t bDescriptorType;
  160. uint8_t bInterfaceNumber;
  161. uint8_t bAlternateSetting;
  162. uint8_t bNumEndpoints;
  163. uint8_t bInterfaceClass;
  164. uint8_t bInterfaceSubClass;
  165. uint8_t bInterfaceProtocol;
  166. uint8_t iInterface;
  167. } __packed;
  168. /** USB Standard Endpoint Descriptor defined in spec. Table 9-13 */
  169. struct usb_ep_descriptor {
  170. uint8_t bLength;
  171. uint8_t bDescriptorType;
  172. uint8_t bEndpointAddress;
  173. uint8_t bmAttributes;
  174. uint16_t wMaxPacketSize;
  175. uint8_t bInterval;
  176. } __packed;
  177. /** USB Unicode (UTF16LE) String Descriptor defined in spec. Table 9-15 */
  178. struct usb_string_descriptor {
  179. uint8_t bLength;
  180. uint8_t bDescriptorType;
  181. uint16_t bString;
  182. } __packed;
  183. /** USB Association Descriptor defined in USB 3 spec. Table 9-16 */
  184. struct usb_association_descriptor {
  185. uint8_t bLength;
  186. uint8_t bDescriptorType;
  187. uint8_t bFirstInterface;
  188. uint8_t bInterfaceCount;
  189. uint8_t bFunctionClass;
  190. uint8_t bFunctionSubClass;
  191. uint8_t bFunctionProtocol;
  192. uint8_t iFunction;
  193. } __packed;
  194. /** USB Standard Configuration Descriptor Characteristics from Table 9-10 */
  195. #define USB_SCD_RESERVED BIT(7)
  196. #define USB_SCD_SELF_POWERED BIT(6)
  197. #define USB_SCD_REMOTE_WAKEUP BIT(5)
  198. #define USB_SCD_ATTRIBUTES (USB_SCD_RESERVED | \
  199. COND_CODE_1(CONFIG_USB_SELF_POWERED, \
  200. (USB_SCD_SELF_POWERED), (0)) | \
  201. COND_CODE_1(CONFIG_USB_DEVICE_REMOTE_WAKEUP, \
  202. (USB_SCD_REMOTE_WAKEUP), (0)))
  203. /** USB Defined Base Class Codes from https://www.usb.org/defined-class-codes */
  204. #define USB_BCC_AUDIO 0x01
  205. #define USB_BCC_CDC_CONTROL 0x02
  206. #define USB_BCC_HID 0x03
  207. #define USB_BCC_MASS_STORAGE 0x08
  208. #define USB_BCC_CDC_DATA 0x0A
  209. #define USB_BCC_VIDEO 0x0E
  210. #define USB_BCC_WIRELESS_CONTROLLER 0xE0
  211. #define USB_BCC_MISCELLANEOUS 0xEF
  212. #define USB_BCC_APPLICATION 0xFE
  213. #define USB_BCC_VENDOR 0xFF
  214. /** USB Specification Release Numbers (bcdUSB Descriptor field) */
  215. #define USB_SRN_1_1 0x0110
  216. #define USB_SRN_2_0 0x0200
  217. #define USB_SRN_2_1 0x0210
  218. #define USB_DEC_TO_BCD(dec) ((((dec) / 10) << 4) | ((dec) % 10))
  219. /** USB Device release number (bcdDevice Descriptor field) */
  220. #define USB_BCD_DRN (USB_DEC_TO_BCD(KERNEL_VERSION_MAJOR) << 8 | \
  221. USB_DEC_TO_BCD(KERNEL_VERSION_MINOR))
  222. /** Macro to obtain descriptor type from USB_SREQ_GET_DESCRIPTOR request */
  223. #define USB_GET_DESCRIPTOR_TYPE(wValue) ((uint8_t)((wValue) >> 8))
  224. /** Macro to obtain descriptor index from USB_SREQ_GET_DESCRIPTOR request */
  225. #define USB_GET_DESCRIPTOR_INDEX(wValue) ((uint8_t)(wValue))
  226. /** USB Control Endpoints OUT and IN Address */
  227. #define USB_CONTROL_EP_OUT 0
  228. #define USB_CONTROL_EP_IN 0x80
  229. /** USB Control Endpoints maximum packet size (MPS) */
  230. #define USB_CONTROL_EP_MPS 64
  231. #ifdef __cplusplus
  232. }
  233. #endif
  234. #endif /* ZEPHYR_INCLUDE_USB_CH9_H_ */