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 8.4KB

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