usb_descriptors.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 "tusb.h"
  26. #include "usb_descriptors.h"
  27. #include "class/cdc/cdc.h"
  28. #include "class/cdc/cdc_device.h"
  29. #include "class/msc/msc.h"
  30. /* A combination of interfaces must have a unique product id, since PC will save device driver after the first plug.
  31. * Same VID/PID with different interface e.g MSC (first), then CDC (later) will possibly cause system error on PC.
  32. *
  33. * Auto ProductID layout's Bitmap:
  34. * [MSB] HID | MSC | CDC [LSB]
  35. */
  36. #define _PID_MAP(itf, n) ( (CFG_TUD_##itf) << (n) )
  37. #define USB_PID (0x4000 | _PID_MAP(CDC, 0) | _PID_MAP(MSC, 1) | _PID_MAP(HID, 2) | \
  38. _PID_MAP(MIDI, 3) | _PID_MAP(VENDOR, 4) )
  39. #define USB_VID 0xCafe
  40. #define USB_BCD 0x0200
  41. //--------------------------------------------------------------------+
  42. // Device Descriptors
  43. //--------------------------------------------------------------------+
  44. tusb_desc_device_t const desc_device =
  45. {
  46. .bLength = sizeof(tusb_desc_device_t),
  47. .bDescriptorType = TUSB_DESC_DEVICE,
  48. .bcdUSB = USB_BCD,
  49. .bDeviceClass = 0x00,
  50. .bDeviceSubClass = 0x00,
  51. .bDeviceProtocol = 0x00,
  52. .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
  53. // Use Interface Association Descriptor (IAD) for CDC
  54. // As required by USB Specs IAD's subclass must be common class (2) and protocol must be IAD (1)
  55. .bDeviceClass = TUSB_CLASS_MISC,
  56. .bDeviceSubClass = MISC_SUBCLASS_COMMON,
  57. .bDeviceProtocol = MISC_PROTOCOL_IAD,
  58. .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
  59. .idVendor = USB_VID,
  60. .idProduct = USB_PID,
  61. .bcdDevice = 0x0100,
  62. .iManufacturer = 0x01,
  63. .iProduct = 0x02,
  64. .iSerialNumber = 0x03,
  65. .bNumConfigurations = 0x01
  66. };
  67. // Invoked when received GET DEVICE DESCRIPTOR
  68. // Application return pointer to descriptor
  69. uint8_t const * tud_descriptor_device_cb(void)
  70. {
  71. return (uint8_t const *) &desc_device;
  72. }
  73. //--------------------------------------------------------------------+
  74. // HID Report Descriptor
  75. //--------------------------------------------------------------------+
  76. uint8_t const desc_hid_report[] =
  77. {
  78. TUD_HID_REPORT_DESC_KEYBOARD(HID_REPORT_ID(REPORT_ID_KEYBOARD)),
  79. // TUD_HID_REPORT_DESC_KEYBOARD(),
  80. };
  81. // Invoked when received GET HID REPORT DESCRIPTOR
  82. // Application return pointer to descriptor
  83. // Descriptor contents must exist long enough for transfer to complete
  84. uint8_t const * tud_hid_descriptor_report_cb(uint8_t instance)
  85. {
  86. (void) instance;
  87. return desc_hid_report;
  88. }
  89. //--------------------------------------------------------------------+
  90. // Configuration Descriptor
  91. //--------------------------------------------------------------------+
  92. enum
  93. {
  94. ITF_NUM_HID = 0,
  95. ITF_NUM_CDC,
  96. ITF_NUM_CDC_DATA,
  97. ITF_NUM_MSC,
  98. ITF_NUM_TOTAL
  99. };
  100. #define EPNUM_HID 0x84
  101. #define EPNUM_CDC_NOTIF 0x81
  102. #define EPNUM_CDC_OUT 0x02
  103. #define EPNUM_CDC_IN 0x82
  104. #define EPNUM_MSC_OUT 0x03
  105. #define EPNUM_MSC_IN 0x83
  106. #if 1
  107. #define CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_CDC_DESC_LEN + TUD_MSC_DESC_LEN + TUD_HID_DESC_LEN)
  108. #else
  109. #define CONFIG_TOTAL_LEN (TUD_CONFIG_DESC_LEN + TUD_HID_DESC_LEN + TUD_CDC_DESC_LEN)
  110. #endif
  111. // full speed configuration
  112. uint8_t const desc_fs_configuration[] =
  113. {
  114. // Config number, interface count, string index, total length, attribute, power in mA
  115. TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, 0x00, 100),
  116. //TUD_CONFIG_DESCRIPTOR(1, ITF_NUM_TOTAL, 0, CONFIG_TOTAL_LEN, TUSB_DESC_CONFIG_ATT_REMOTE_WAKEUP, 100),
  117. // Interface number, string index, protocol, report descriptor len, EP In address, size & polling interval
  118. TUD_HID_DESCRIPTOR(ITF_NUM_HID, 6, HID_ITF_PROTOCOL_NONE, sizeof(desc_hid_report), EPNUM_HID, CFG_TUD_HID_EP_BUFSIZE, 10),
  119. // Interface number, string index, EP notification address and size, EP data address (out, in) and size.
  120. TUD_CDC_DESCRIPTOR(ITF_NUM_CDC, 4, EPNUM_CDC_NOTIF, 8, EPNUM_CDC_OUT, EPNUM_CDC_IN, 64),
  121. // Interface number, string index, EP Out & EP In address, EP size
  122. TUD_MSC_DESCRIPTOR(ITF_NUM_MSC, 5, EPNUM_MSC_OUT, EPNUM_MSC_IN, 64),
  123. };
  124. // Invoked when received GET CONFIGURATION DESCRIPTOR
  125. // Application return pointer to descriptor
  126. // Descriptor contents must exist long enough for transfer to complete
  127. uint8_t const * tud_descriptor_configuration_cb(uint8_t index)
  128. {
  129. (void) index; // for multiple configurations
  130. #if TUD_OPT_HIGH_SPEED
  131. // Although we are highspeed, host may be fullspeed.
  132. return (tud_speed_get() == TUSB_SPEED_HIGH) ? desc_hs_configuration : desc_fs_configuration;
  133. #else
  134. return desc_fs_configuration;
  135. #endif
  136. }
  137. //--------------------------------------------------------------------+
  138. // String Descriptors
  139. //--------------------------------------------------------------------+
  140. // array of pointer to string descriptors
  141. char const* string_desc_arr [] =
  142. {
  143. (const char[]) { 0x09, 0x04 }, // 0: is supported language is English (0x0409)
  144. "Danielinux", // 1: Manufacturer
  145. "Password Vault", // 2: Product
  146. "052023", // 3: Serials, should use chip ID
  147. "Command CDC", // 4: CDC Interface
  148. "Virtual MSC", // 5: MSC Interface
  149. "Virtual Keyboard" // 6: HID (Keyboard)
  150. };
  151. static uint16_t _desc_str[32];
  152. // Invoked when received GET STRING DESCRIPTOR request
  153. // Application return pointer to descriptor, whose contents must exist long enough for transfer to complete
  154. uint16_t const* tud_descriptor_string_cb(uint8_t index, uint16_t langid)
  155. {
  156. (void) langid;
  157. uint8_t chr_count;
  158. if ( index == 0)
  159. {
  160. memcpy(&_desc_str[1], string_desc_arr[0], 2);
  161. chr_count = 1;
  162. }else
  163. {
  164. // Note: the 0xEE index string is a Microsoft OS 1.0 Descriptors.
  165. // https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/microsoft-defined-usb-descriptors
  166. if ( !(index < sizeof(string_desc_arr)/sizeof(string_desc_arr[0])) ) return NULL;
  167. const char* str = string_desc_arr[index];
  168. // Cap at max char
  169. chr_count = strlen(str);
  170. if ( chr_count > 31 ) chr_count = 31;
  171. // Convert ASCII string into UTF-16
  172. for(uint8_t i=0; i<chr_count; i++)
  173. {
  174. _desc_str[1+i] = str[i];
  175. }
  176. }
  177. // first byte is length (including header), second byte is string type
  178. _desc_str[0] = (TUSB_DESC_STRING << 8 ) | (2*chr_count + 2);
  179. return _desc_str;
  180. }