No Description
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.

usb_descriptors.c 9.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * The MIT License (MIT)
  3. *
  4. * Copyright (c) 2019 Ha Thach (tinyusb.org)
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. *
  24. */
  25. #include "pico/unique_id.h"
  26. #include "tusb.h"
  27. #include "config.h"
  28. #include "usb_descriptors.h"
  29. /*
  30. * A combination of interfaces must have a unique product id,
  31. * since PC will save device driver after the first plug.
  32. * Same VID/PID with different interface e.g MSC (first),
  33. * then CDC (later) will possibly cause system error on PC.
  34. *
  35. * Auto ProductID layout's Bitmap:
  36. * [MSB] HID | MSC | CDC [LSB]
  37. */
  38. #define _PID_MAP(itf, n) ((CFG_TUD_##itf) << (n))
  39. #define USB_PID (0x4200 | _PID_MAP(CDC, 0) | _PID_MAP(MSC, 1) \
  40. | _PID_MAP(HID, 2) | _PID_MAP(MIDI, 3) | _PID_MAP(VENDOR, 4) )
  41. #define USB_VID 0xCafe
  42. #define USB_BCD 0x0200
  43. //--------------------------------------------------------------------+
  44. // Device Descriptors
  45. //--------------------------------------------------------------------+
  46. tusb_desc_device_t const desc_device =
  47. {
  48. .bLength = sizeof(tusb_desc_device_t),
  49. .bDescriptorType = TUSB_DESC_DEVICE,
  50. .bcdUSB = USB_BCD,
  51. /*
  52. * Use Interface Association Descriptor (IAD) for CDC
  53. * As required by USB Specs IAD's subclass must be common class (2)
  54. * and protocol must be IAD (1)
  55. */
  56. .bDeviceClass = TUSB_CLASS_MISC,
  57. .bDeviceSubClass = MISC_SUBCLASS_COMMON,
  58. .bDeviceProtocol = MISC_PROTOCOL_IAD,
  59. .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
  60. .idVendor = USB_VID,
  61. .idProduct = USB_PID,
  62. .bcdDevice = 0x0100,
  63. .iManufacturer = 0x01,
  64. .iProduct = 0x02,
  65. .iSerialNumber = 0x03,
  66. .bNumConfigurations = 0x01
  67. };
  68. // Invoked when received GET DEVICE DESCRIPTOR
  69. // Application return pointer to descriptor
  70. uint8_t const * tud_descriptor_device_cb(void) {
  71. return (uint8_t const *) &desc_device;
  72. }
  73. //--------------------------------------------------------------------+
  74. // HID Report Descriptor
  75. //--------------------------------------------------------------------+
  76. uint8_t const desc_hid_report[] = {
  77. TUD_HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(REPORT_ID_KEYBOARD )),
  78. TUD_HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(REPORT_ID_MOUSE )),
  79. TUD_HID_REPORT_DESC_CONSUMER( HID_REPORT_ID(REPORT_ID_CONSUMER_CONTROL )),
  80. TUD_HID_REPORT_DESC_GAMEPAD ( HID_REPORT_ID(REPORT_ID_GAMEPAD ))
  81. };
  82. // Invoked when received GET HID REPORT DESCRIPTOR
  83. // Application return pointer to descriptor
  84. // Descriptor contents must exist long enough for transfer to complete
  85. uint8_t const * tud_hid_descriptor_report_cb(uint8_t instance) {
  86. (void) instance;
  87. return desc_hid_report;
  88. }
  89. //--------------------------------------------------------------------+
  90. // Configuration Descriptor
  91. //--------------------------------------------------------------------+
  92. enum {
  93. ITF_NUM_CDC = 0,
  94. ITF_NUM_CDC_DATA,
  95. ITF_NUM_HID,
  96. ITF_NUM_MSC,
  97. ITF_NUM_TOTAL
  98. };
  99. #define CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_CDC_DESC_LEN + TUD_HID_DESC_LEN + TUD_MSC_DESC_LEN)
  100. #define EPNUM_HID 0x81
  101. #define EPNUM_CDC_NOTIF 0x82
  102. #define EPNUM_CDC_OUT 0x02
  103. #define EPNUM_CDC_IN 0x83
  104. #define EPNUM_MSC_OUT 0x03
  105. #define EPNUM_MSC_IN 0x84
  106. uint8_t const desc_configuration[] = {
  107. // Config number, interface count, string index, total length, attribute, power in mA
  108. TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
  109. // Interface number, string index, EP notification address and size, EP data address (out, in) and size.
  110. TUD_CDC_DESCRIPTOR(ITF_NUM_CDC, 4, EPNUM_CDC_NOTIF, 8, EPNUM_CDC_OUT, EPNUM_CDC_IN, 64),
  111. // Interface number, string index, protocol, report descriptor len, EP In address, size & polling interval
  112. TUD_HID_DESCRIPTOR(ITF_NUM_HID, 5, HID_ITF_PROTOCOL_NONE, sizeof(desc_hid_report), EPNUM_HID, CFG_TUD_HID_EP_BUFSIZE, 5),
  113. // Interface number, string index, EP Out & EP In address, EP size
  114. TUD_MSC_DESCRIPTOR(ITF_NUM_MSC, 6, EPNUM_MSC_OUT, EPNUM_MSC_IN, 64),
  115. };
  116. #if TUD_OPT_HIGH_SPEED
  117. // Per USB specs: high speed capable device must report device_qualifier and other_speed_configuration
  118. // other speed configuration
  119. uint8_t desc_other_speed_config[CONFIG_TOTAL_LEN];
  120. // device qualifier is mostly similar to device descriptor since we don't change configuration based on speed
  121. tusb_desc_device_qualifier_t const desc_device_qualifier = {
  122. .bLength = sizeof(tusb_desc_device_qualifier_t),
  123. .bDescriptorType = TUSB_DESC_DEVICE_QUALIFIER,
  124. .bcdUSB = USB_BCD,
  125. .bDeviceClass = TUSB_CLASS_MISC,
  126. .bDeviceSubClass = MISC_SUBCLASS_COMMON,
  127. .bDeviceProtocol = MISC_PROTOCOL_IAD,
  128. .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
  129. .bNumConfigurations = 0x01,
  130. .bReserved = 0x00
  131. };
  132. // Invoked when received GET DEVICE QUALIFIER DESCRIPTOR request
  133. // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete.
  134. // device_qualifier descriptor describes information about a high-speed capable device that would
  135. // change if the device were operating at the other speed. If not highspeed capable stall this request.
  136. uint8_t const* tud_descriptor_device_qualifier_cb(void) {
  137. return (uint8_t const*) &desc_device_qualifier;
  138. }
  139. // Invoked when received GET OTHER SEED CONFIGURATION DESCRIPTOR request
  140. // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete
  141. // Configuration descriptor in the other speed e.g if high speed then this is for full speed and vice versa
  142. uint8_t const* tud_descriptor_other_speed_configuration_cb(uint8_t index) {
  143. (void) index; // for multiple configurations
  144. // other speed config is basically configuration with type = OHER_SPEED_CONFIG
  145. memcpy(desc_other_speed_config, desc_configuration, CONFIG_TOTAL_LEN);
  146. desc_other_speed_config[1] = TUSB_DESC_OTHER_SPEED_CONFIG;
  147. // this example use the same configuration for both high and full speed mode
  148. return desc_other_speed_config;
  149. }
  150. #endif // highspeed
  151. // Invoked when received GET CONFIGURATION DESCRIPTOR
  152. // Application return pointer to descriptor
  153. // Descriptor contents must exist long enough for transfer to complete
  154. uint8_t const * tud_descriptor_configuration_cb(uint8_t index) {
  155. (void) index; // for multiple configurations
  156. // This example use the same configuration for both high and full speed mode
  157. return desc_configuration;
  158. }
  159. //--------------------------------------------------------------------+
  160. // String Descriptors
  161. //--------------------------------------------------------------------+
  162. char string_pico_serial[2 * PICO_UNIQUE_BOARD_ID_SIZE_BYTES + 1];
  163. void usb_descriptor_init_id(void) {
  164. pico_get_unique_board_id_string(string_pico_serial, sizeof(string_pico_serial));
  165. }
  166. // array of pointer to string descriptors
  167. char const* string_desc_arr [] = {
  168. (const char[]) { 0x09, 0x04 }, // 0: is supported language is English (0x0409)
  169. "xythobuz", // 1: Manufacturer
  170. "Trackball", // 2: Product
  171. string_pico_serial, // 3: Serials, should use chip ID
  172. "Debug Serial", // 4: CDC Interface
  173. "Input Device", // 5: HID Interface
  174. "Debug Memory", // 6: MSC Interface
  175. };
  176. static uint16_t _desc_str[32];
  177. // Invoked when received GET STRING DESCRIPTOR request
  178. // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete
  179. uint16_t const* tud_descriptor_string_cb(uint8_t index, uint16_t langid) {
  180. (void) langid;
  181. uint8_t chr_count;
  182. if ( index == 0) {
  183. memcpy(&_desc_str[1], string_desc_arr[0], 2);
  184. chr_count = 1;
  185. } else {
  186. // Note: the 0xEE index string is a Microsoft OS 1.0 Descriptors.
  187. // https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/microsoft-defined-usb-descriptors
  188. if ( !(index < sizeof(string_desc_arr)/sizeof(string_desc_arr[0])) ) return NULL;
  189. const char* str = string_desc_arr[index];
  190. // Cap at max char
  191. chr_count = strlen(str);
  192. if ( chr_count > 31 ) chr_count = 31;
  193. // Convert ASCII string into UTF-16
  194. for(uint8_t i=0; i<chr_count; i++) {
  195. _desc_str[1+i] = str[i];
  196. }
  197. }
  198. // first byte is length (including header), second byte is string type
  199. _desc_str[0] = (TUSB_DESC_STRING << 8 ) | (2*chr_count + 2);
  200. return _desc_str;
  201. }