]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Output/pjrcUSB/arm/usb_desc.c
7a8e49715e8f6e30ca5a264b872d84e5ce34a3b7
[kiibohd-controller.git] / Output / pjrcUSB / arm / usb_desc.c
1 /* Teensyduino Core Library
2  * http://www.pjrc.com/teensy/
3  * Copyright (c) 2013 PJRC.COM, LLC.
4  * Modified by Jacob Alexander (2013-2015)
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * 1. The above copyright notice and this permission notice shall be
15  * included in all copies or substantial portions of the Software.
16  *
17  * 2. If the Software is incorporated into a build system that allows
18  * selection among a list of target devices, then similar target
19  * devices manufactured by PJRC.COM must be included in the list of
20  * target devices and selectable in the same manner.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
26  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
27  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29  * SOFTWARE.
30  */
31
32 // ----- Includes -----
33
34 // Local Includes
35 #include "usb_desc.h"
36
37 // Generated Includes
38 #include <kll_defs.h>
39
40
41
42 // ----- Macros -----
43
44 #define LSB(n) ((n) & 255)
45 #define MSB(n) (((n) >> 8) & 255)
46
47
48
49 // ----- USB Device Descriptor -----
50
51 // USB Device Descriptor.  The USB host reads this first, to learn
52 // what type of device is connected.
53 static uint8_t device_descriptor[] = {
54         18,                                     // bLength
55         1,                                      // bDescriptorType
56         0x00, 0x02,                             // bcdUSB
57         DEVICE_CLASS,                           // bDeviceClass
58         DEVICE_SUBCLASS,                        // bDeviceSubClass
59         DEVICE_PROTOCOL,                        // bDeviceProtocol
60         EP0_SIZE,                               // bMaxPacketSize0
61         LSB(VENDOR_ID), MSB(VENDOR_ID),         // idVendor
62         LSB(PRODUCT_ID), MSB(PRODUCT_ID),       // idProduct
63         0x00, 0x01,                             // bcdDevice
64         1,                                      // iManufacturer
65         2,                                      // iProduct
66         3,                                      // iSerialNumber
67         1                                       // bNumConfigurations
68 };
69
70 // USB Device Qualifier Descriptor
71 static uint8_t device_qualifier_descriptor[] = {
72         0                                       // Indicate only single speed
73         /* Device qualifier example (used for specifying multiple USB speeds)
74         10,                                     // bLength
75         6,                                      // bDescriptorType
76         0x00, 0x02,                             // bcdUSB
77         DEVICE_CLASS,                           // bDeviceClass
78         DEVICE_SUBCLASS,                        // bDeviceSubClass
79         DEVICE_PROTOCOL,                        // bDeviceProtocol
80         EP0_SIZE,                               // bMaxPacketSize0
81         0,                                      // bNumOtherSpeedConfigurations
82         0                                       // bReserved
83         */
84 };
85
86 // USB Debug Descriptor
87 // XXX Not sure of exact use, lsusb requests it
88 static uint8_t usb_debug_descriptor[] = {
89         0
90 };
91
92 // XXX
93 // These descriptors must NOT be "const", because the USB DMA
94 // has trouble accessing flash memory with enough bandwidth
95 // while the processor is executing from flash.
96 // XXX
97
98
99
100 // ----- USB HID Report Descriptsors -----
101
102 // Each HID interface needs a special report descriptor that tells
103 // the meaning and format of the data.
104
105 // Keyboard Protocol 1, HID 1.11 spec, Appendix B, page 59-60
106 static uint8_t keyboard_report_desc[] = {
107         // Keyboard Collection
108         0x05, 0x01,          // Usage Page (Generic Desktop),
109         0x09, 0x06,          // Usage (Keyboard),
110         0xA1, 0x01,          // Collection (Application) - Keyboard,
111
112         // Modifier Byte
113         0x75, 0x01,          //   Report Size (1),
114         0x95, 0x08,          //   Report Count (8),
115         0x05, 0x07,          //   Usage Page (Key Codes),
116         0x19, 0xE0,          //   Usage Minimum (224),
117         0x29, 0xE7,          //   Usage Maximum (231),
118         0x15, 0x00,          //   Logical Minimum (0),
119         0x25, 0x01,          //   Logical Maximum (1),
120         0x81, 0x02,          //   Input (Data, Variable, Absolute),
121
122         // Reserved Byte
123         0x75, 0x08,          //   Report Size (8),
124         0x95, 0x01,          //   Report Count (1),
125         0x81, 0x03,          //   Output (Constant),
126
127         // LED Report
128         0x75, 0x01,          //   Report Size (1),
129         0x95, 0x05,          //   Report Count (5),
130         0x05, 0x08,          //   Usage Page (LEDs),
131         0x19, 0x01,          //   Usage Minimum (1),
132         0x29, 0x05,          //   Usage Maximum (5),
133         0x91, 0x02,          //   Output (Data, Variable, Absolute),
134
135         // LED Report Padding
136         0x75, 0x03,          //   Report Size (3),
137         0x95, 0x01,          //   Report Count (1),
138         0x91, 0x03,          //   Output (Constant),
139
140         // Normal Keys
141         0x75, 0x08,          //   Report Size (8),
142         0x95, 0x06,          //   Report Count (6),
143         0x15, 0x00,          //   Logical Minimum (0),
144         0x25, 0x7F,          //   Logical Maximum(104),
145         0x05, 0x07,          //   Usage Page (Key Codes),
146         0x19, 0x00,          //   Usage Minimum (0),
147         0x29, 0x7F,          //   Usage Maximum (104),
148         0x81, 0x00,          //   Input (Data, Array),
149         0xc0,                // End Collection - Keyboard
150 };
151
152 // Keyboard Protocol 1, HID 1.11 spec, Appendix B, page 59-60
153 static uint8_t nkro_keyboard_report_desc[] = {
154         // Keyboard Collection
155         0x05, 0x01,          // Usage Page (Generic Desktop),
156         0x09, 0x06,          // Usage (Keyboard),
157         0xA1, 0x01,          // Collection (Application) - Keyboard,
158
159         // LED Report
160         0x85, 0x01,          //   Report ID (1),
161         0x75, 0x01,          //   Report Size (1),
162         0x95, 0x05,          //   Report Count (5),
163         0x05, 0x08,          //   Usage Page (LEDs),
164         0x19, 0x01,          //   Usage Minimum (1),
165         0x29, 0x05,          //   Usage Maximum (5),
166         0x91, 0x02,          //   Output (Data, Variable, Absolute),
167
168         // LED Report Padding
169         0x75, 0x03,          //   Report Size (3),
170         0x95, 0x01,          //   Report Count (1),
171         0x91, 0x03,          //   Output (Constant),
172
173         // Normal Keys - Using an NKRO Bitmap
174         //
175         // NOTES:
176         // Supports all keys defined by the spec, except 1-3 which define error events
177         //  and 0 which is "no keys pressed"
178         // See http://www.usb.org/developers/hidpage/Hut1_12v2.pdf Chapter 10
179         // Or Macros/PartialMap/usb_hid.h
180         //
181         // 50 (ISO \ due to \ bug) and 156 (Clear due to Delete bug) must be excluded
182         //  due to a Linux bug with bitmaps (not useful anyways)
183         // 165-175 are reserved/unused as well as 222-223 and 232-65535
184         //
185         // Compatibility Notes:
186         //  - Using a second endpoint for a boot mode device helps with compatibility
187         //  - DO NOT use Padding in the descriptor for bitfields
188         //    (Mac OSX silently fails... Windows/Linux work correctly)
189         //  - DO NOT use Report IDs, Windows 8.1 will not update keyboard correctly (modifiers disappear)
190         //    (all other OSs, including OSX work fine...)
191         //    (you can use them *iff* you only have 1 per collection)
192         //  - Mac OSX and Windows 8.1 are extremely picky about padding
193         //
194         // Packing of bitmaps are as follows:
195         //   4-49  :  6 bytes (0x04-0x31) ( 46 bits + 2 padding bits for 6 bytes total)
196         //  51-155 : 14 bytes (0x33-0x9B) (105 bits + 6 padding bits for 15 bytes total)
197         // 157-164 :  1 byte  (0x9D-0xA4) (  8 bits)
198         // 176-221 :  6 bytes (0xB0-0xDD) ( 46 bits + 2 padding bits for 6 bytes total)
199         // 224-231 :  1 byte  (0xE0-0xE7) (  8 bits)
200
201         // Modifier Byte
202         0x75, 0x01,          //   Report Size (1),
203         0x95, 0x08,          //   Report Count (8),
204         0x15, 0x00,          //   Logical Minimum (0),
205         0x25, 0x01,          //   Logical Maximum (1),
206         0x05, 0x07,          //   Usage Page (Key Codes),
207         0x19, 0xE0,          //   Usage Minimum (224),
208         0x29, 0xE7,          //   Usage Maximum (231),
209         0x81, 0x02,          //   Input (Data, Variable, Absolute),
210
211         // 4-49 (6 bytes/46 bits) - MainKeys
212         0x75, 0x01,          //   Report Size (1),
213         0x95, 0x2E,          //   Report Count (46),
214         0x15, 0x00,          //   Logical Minimum (0),
215         0x25, 0x01,          //   Logical Maximum (1),
216         0x05, 0x07,          //   Usage Page (Key Codes),
217         0x19, 0x04,          //   Usage Minimum (4),
218         0x29, 0x31,          //   Usage Maximum (49),
219         0x81, 0x02,          //   Input (Data, Variable, Absolute, Bitfield),
220
221         // Padding (2 bits)
222         0x75, 0x02,          //   Report Size (2),
223         0x95, 0x01,          //   Report Count (1),
224         0x81, 0x03,          //   Input (Constant),
225
226         // 51-155 (14 bytes/105 bits) - SecondaryKeys
227         0x75, 0x01,          //   Report Size (1),
228         0x95, 0x69,          //   Report Count (105),
229         0x15, 0x00,          //   Logical Minimum (0),
230         0x25, 0x01,          //   Logical Maximum (1),
231         0x05, 0x07,          //   Usage Page (Key Codes),
232         0x19, 0x33,          //   Usage Minimum (51),
233         0x29, 0x9B,          //   Usage Maximum (155),
234         0x81, 0x02,          //   Input (Data, Variable, Absolute, Bitfield),
235
236         // Padding (7 bits)
237         0x75, 0x07,          //   Report Size (7),
238         0x95, 0x01,          //   Report Count (1),
239         0x81, 0x03,          //   Input (Constant),
240
241         // 157-164 (1 byte/8 bits) - TertiaryKeys
242         0x75, 0x01,          //   Report Size (1),
243         0x95, 0x08,          //   Report Count (8),
244         0x15, 0x00,          //   Logical Minimum (0),
245         0x25, 0x01,          //   Logical Maximum (1),
246         0x05, 0x07,          //   Usage Page (Key Codes),
247         0x19, 0x9D,          //   Usage Minimum (157),
248         0x29, 0xA4,          //   Usage Maximum (164),
249         0x81, 0x02,          //   Input (Data, Variable, Absolute, Bitfield),
250
251         // 176-221 (6 bytes/46 bits) - QuartiaryKeys
252         0x75, 0x01,          //   Report Size (1),
253         0x95, 0x2E,          //   Report Count (46),
254         0x15, 0x00,          //   Logical Minimum (0),
255         0x25, 0x01,          //   Logical Maximum (1),
256         0x05, 0x07,          //   Usage Page (Key Codes),
257         0x19, 0xB0,          //   Usage Minimum (176),
258         0x29, 0xDD,          //   Usage Maximum (221),
259         0x81, 0x02,          //   Input (Data, Variable, Absolute, Bitfield),
260
261         // Padding (2 bits)
262         0x75, 0x02,          //   Report Size (2),
263         0x95, 0x01,          //   Report Count (1),
264         0x81, 0x03,          //   Input (Constant),
265         0xc0,                // End Collection - Keyboard
266 };
267
268 // System Control and Consumer Control
269 static uint8_t sys_ctrl_report_desc[] = {
270         // System Control Collection (8 bits)
271         //
272         // NOTES:
273         // Not bothering with NKRO for this table. If there's need, I can implement it. -HaaTa
274         // Using a 1KRO scheme
275         0x05, 0x01,          // Usage Page (Generic Desktop),
276         0x09, 0x80,          // Usage (System Control),
277         0xA1, 0x01,          // Collection (Application),
278         0x85, 0x02,          //   Report ID (2),
279         0x75, 0x08,          //   Report Size (8),
280         0x95, 0x01,          //   Report Count (1),
281         0x16, 0x81, 0x00,    //   Logical Minimum (129),
282         0x26, 0xB7, 0x00,    //   Logical Maximum (183),
283         0x19, 0x81,          //   Usage Minimum (129),
284         0x29, 0xB7,          //   Usage Maximum (183),
285         0x81, 0x00,          //   Input (Data, Array),
286         0xc0,                // End Collection - System Control
287
288         // Consumer Control Collection - Media Keys (16 bits)
289         //
290         // NOTES:
291         // Not bothering with NKRO for this table. If there's a need, I can implement it. -HaaTa
292         // Using a 1KRO scheme
293         0x05, 0x0c,          // Usage Page (Consumer),
294         0x09, 0x01,          // Usage (Consumer Control),
295         0xA1, 0x01,          // Collection (Application),
296         0x85, 0x03,          //   Report ID (3),
297         0x75, 0x10,          //   Report Size (16),
298         0x95, 0x01,          //   Report Count (1),
299         0x16, 0x01, 0x00,    //   Logical Minimum (1),
300         0x26, 0x9C, 0x02,    //   Logical Maximum (668),
301         0x05, 0x0C,          //   Usage Page (Consumer),
302         0x19, 0x01,          //   Usage Minimum (1),
303         0x2A, 0x9C, 0x02,    //   Usage Maximum (668),
304         0x81, 0x00,          //   Input (Data, Array),
305         0xc0,                // End Collection - Consumer Control
306 };
307
308 // Mouse Protocol 1, HID 1.11 spec, Appendix B, page 59-60, with wheel extension
309 static uint8_t mouse_report_desc[] = {
310         0x05, 0x01,        // Usage Page (Generic Desktop)
311         0x09, 0x02,        // Usage (Mouse)
312         0xa1, 0x01,        // Collection (Application)
313         0x09, 0x02,        //   Usage (Mouse)
314         0xa1, 0x02,        //   Collection (Logical)
315         0x09, 0x01,        //     Usage (Pointer)
316
317         // Buttons (5 bits)
318         0xa1, 0x00,        //     Collection (Physical) - Buttons
319         0x05, 0x09,        //       Usage Page (Button)
320         0x19, 0x01,        //       Usage Minimum (Button 1)
321         0x29, 0x05,        //       Usage Maximum (Button 5)
322         0x15, 0x00,        //       Logical Minimum (0)
323         0x25, 0x01,        //       Logical Maximum (1)
324         0x75, 0x01,        //       Report Size (1)
325         0x95, 0x05,        //       Report Count (5)
326         0x81, 0x02,        //       Input (Data,Var,Abs)
327
328         // Padding (3 bits)
329         0x75, 0x03,        //       Report Size (3)
330         0x95, 0x01,        //       Report Count (1)
331         0x81, 0x03,        //       Input (Cnst,Var,Abs)
332
333         // Pointer (16 bits)
334         0x05, 0x01,        //       Usage PAGE (Generic Desktop)
335         0x09, 0x30,        //       Usage (X)
336         0x09, 0x31,        //       Usage (Y)
337         0x15, 0x81,        //       Logical Minimum (-127)
338         0x25, 0x7f,        //       Logical Maximum (127)
339         0x75, 0x08,        //       Report Size (8)
340         0x95, 0x02,        //       Report Count (2)
341         0x81, 0x06,        //       Input (Data,Var,Rel)
342
343         // Vertical Wheel
344         // - Multiplier (2 bits)
345         0xa1, 0x02,        //       Collection (Logical)
346         0x09, 0x48,        //         Usage (Resolution Multiplier)
347         0x15, 0x00,        //         Logical Minimum (0)
348         0x25, 0x01,        //         Logical Maximum (1)
349         0x35, 0x01,        //         Physical Minimum (1)
350         0x45, 0x04,        //         Physical Maximum (4)
351         0x75, 0x02,        //         Report Size (2)
352         0x95, 0x01,        //         Report Count (1)
353         0xa4,              //         Push
354         0xb1, 0x02,        //         Feature (Data,Var,Abs)
355         // - Device (8 bits)
356         0x09, 0x38,        //         Usage (Wheel)
357         0x15, 0x81,        //         Logical Minimum (-127)
358         0x25, 0x7f,        //         Logical Maximum (127)
359         0x35, 0x00,        //         Physical Minimum (0)        - reset physical
360         0x45, 0x00,        //         Physical Maximum (0)
361         0x75, 0x08,        //         Report Size (8)
362         0x81, 0x06,        //         Input (Data,Var,Rel)
363         0xc0,              //       End Collection - Vertical Wheel
364
365         // Horizontal Wheel
366         // - Multiplier (2 bits)
367         0xa1, 0x02,        //       Collection (Logical)
368         0x09, 0x48,        //         Usage (Resolution Multiplier)
369         0xb4,              //         Pop
370         0xb1, 0x02,        //         Feature (Data,Var,Abs)
371         // - Padding (4 bits)
372         0x35, 0x00,        //         Physical Minimum (0)        - reset physical
373         0x45, 0x00,        //         Physical Maximum (0)
374         0x75, 0x04,        //         Report Size (4)
375         0xb1, 0x03,        //         Feature (Cnst,Var,Abs)
376         // - Device (8 bits)
377         0x05, 0x0c,        //         Usage Page (Consumer Devices)
378         0x0a, 0x38, 0x02,  //         Usage (AC Pan)
379         0x15, 0x81,        //         Logical Minimum (-127)
380         0x25, 0x7f,        //         Logical Maximum (127)
381         0x75, 0x08,        //         Report Size (8)
382         0x81, 0x06,        //         Input (Data,Var,Rel)
383         0xc0,              //       End Collection - Horizontal Wheel
384
385         0xc0,              //     End Collection - Buttons
386         0xc0,              //   End Collection - Mouse Logical
387         0xc0               // End Collection - Mouse Application
388 };
389
390 // Joystick Protocol, HID 1.11 spec, Apendix D, page 64-65
391 static uint8_t joystick_report_desc[] = {
392         0x05, 0x01,                     // Usage Page (Generic Desktop)
393         0x09, 0x04,                     // Usage (Joystick)
394         0xA1, 0x01,                     // Collection (Application)
395         0x15, 0x00,                     // Logical Minimum (0)
396         0x25, 0x01,                     // Logical Maximum (1)
397         0x75, 0x01,                     // Report Size (1)
398         0x95, 0x20,                     // Report Count (32)
399         0x05, 0x09,                     // Usage Page (Button)
400         0x19, 0x01,                     // Usage Minimum (Button #1)
401         0x29, 0x20,                     // Usage Maximum (Button #32)
402         0x81, 0x02,                     // Input (variable,absolute)
403         0x15, 0x00,                     // Logical Minimum (0)
404         0x25, 0x07,                     // Logical Maximum (7)
405         0x35, 0x00,                     // Physical Minimum (0)
406         0x46, 0x3B, 0x01,               // Physical Maximum (315)
407         0x75, 0x04,                     // Report Size (4)
408         0x95, 0x01,                     // Report Count (1)
409         0x65, 0x14,                     // Unit (20)
410         0x05, 0x01,                     // Usage Page (Generic Desktop)
411         0x09, 0x39,                     // Usage (Hat switch)
412         0x81, 0x42,                     // Input (variable,absolute,null_state)
413         0x05, 0x01,                     // Usage Page (Generic Desktop)
414         0x09, 0x01,                     // Usage (Pointer)
415         0xA1, 0x00,                     // Collection ()
416         0x15, 0x00,                     //   Logical Minimum (0)
417         0x26, 0xFF, 0x03,               //   Logical Maximum (1023)
418         0x75, 0x0A,                     //   Report Size (10)
419         0x95, 0x04,                     //   Report Count (4)
420         0x09, 0x30,                     //   Usage (X)
421         0x09, 0x31,                     //   Usage (Y)
422         0x09, 0x32,                     //   Usage (Z)
423         0x09, 0x35,                     //   Usage (Rz)
424         0x81, 0x02,                     //   Input (variable,absolute)
425         0xC0,                           // End Collection
426         0x15, 0x00,                     // Logical Minimum (0)
427         0x26, 0xFF, 0x03,               // Logical Maximum (1023)
428         0x75, 0x0A,                     // Report Size (10)
429         0x95, 0x02,                     // Report Count (2)
430         0x09, 0x36,                     // Usage (Slider)
431         0x09, 0x36,                     // Usage (Slider)
432         0x81, 0x02,                     // Input (variable,absolute)
433         0xC0                            // End Collection
434 };
435
436
437
438 // ----- USB Configuration -----
439
440 // USB Configuration Descriptor.  This huge descriptor tells all
441 // of the devices capbilities.
442 static uint8_t config_descriptor[CONFIG_DESC_SIZE] = {
443 // --- Configuration ---
444 // - 9 bytes -
445         // configuration descriptor, USB spec 9.6.3, page 264-266, Table 9-10
446         9,                                      // bLength;
447         2,                                      // bDescriptorType;
448         LSB(CONFIG_DESC_SIZE),                  // wTotalLength
449         MSB(CONFIG_DESC_SIZE),
450         NUM_INTERFACE,                          // bNumInterfaces
451         1,                                      // bConfigurationValue
452         0,                                      // iConfiguration
453         0xA0,                                   // bmAttributes
454         250,                                    // bMaxPower
455
456 // --- Keyboard HID --- Boot Mode Keyboard Interface
457 // - 9 bytes -
458         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
459         9,                                      // bLength
460         4,                                      // bDescriptorType
461         KEYBOARD_INTERFACE,                     // bInterfaceNumber
462         0,                                      // bAlternateSetting
463         1,                                      // bNumEndpoints
464         0x03,                                   // bInterfaceClass (0x03 = HID)
465         0x01,                                   // bInterfaceSubClass (0x00 = Non-Boot, 0x01 = Boot)
466         0x01,                                   // bInterfaceProtocol (0x01 = Keyboard)
467         KEYBOARD_INTERFACE + 4,                 // iInterface
468 // - 9 bytes -
469         // HID interface descriptor, HID 1.11 spec, section 6.2.1
470         9,                                      // bLength
471         0x21,                                   // bDescriptorType
472         0x11, 0x01,                             // bcdHID
473         KeyboardLocale_define,                  // bCountryCode
474         1,                                      // bNumDescriptors
475         0x22,                                   // bDescriptorType
476         LSB(sizeof(keyboard_report_desc)),      // wDescriptorLength
477         MSB(sizeof(keyboard_report_desc)),
478 // - 7 bytes -
479         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
480         7,                                      // bLength
481         5,                                      // bDescriptorType
482         KEYBOARD_ENDPOINT | 0x80,               // bEndpointAddress
483         0x03,                                   // bmAttributes (0x03=intr)
484         KEYBOARD_SIZE, 0,                       // wMaxPacketSize
485         KEYBOARD_INTERVAL,                      // bInterval
486
487 // --- NKRO Keyboard HID --- OS Mode Keyboard Interface
488 // - 9 bytes -
489         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
490         9,                                      // bLength
491         4,                                      // bDescriptorType
492         NKRO_KEYBOARD_INTERFACE,                // bInterfaceNumber
493         0,                                      // bAlternateSetting
494         1,                                      // bNumEndpoints
495         0x03,                                   // bInterfaceClass (0x03 = HID)
496         0x00,                                   // bInterfaceSubClass (0x00 = Non-Boot, 0x01 = Boot)
497         0x01,                                   // bInterfaceProtocol (0x01 = Keyboard)
498         NKRO_KEYBOARD_INTERFACE + 4,            // iInterface
499 // - 9 bytes -
500         // HID interface descriptor, HID 1.11 spec, section 6.2.1
501         9,                                      // bLength
502         0x21,                                   // bDescriptorType
503         0x11, 0x01,                             // bcdHID
504         KeyboardLocale_define,                  // bCountryCode
505         1,                                      // bNumDescriptors
506         0x22,                                   // bDescriptorType
507         LSB(sizeof(nkro_keyboard_report_desc)), // wDescriptorLength
508         MSB(sizeof(nkro_keyboard_report_desc)),
509 // - 7 bytes -
510         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
511         7,                                      // bLength
512         5,                                      // bDescriptorType
513         NKRO_KEYBOARD_ENDPOINT | 0x80,          // bEndpointAddress
514         0x03,                                   // bmAttributes (0x03=intr)
515         NKRO_KEYBOARD_SIZE, 0,                  // wMaxPacketSize
516         NKRO_KEYBOARD_INTERVAL,                 // bInterval
517
518 // --- Serial CDC --- CDC IAD Descriptor
519 // - 8 bytes -
520         // interface association descriptor, USB ECN, Table 9-Z
521         8,                                      // bLength
522         11,                                     // bDescriptorType
523         CDC_STATUS_INTERFACE,                   // bFirstInterface
524         2,                                      // bInterfaceCount
525         0x02,                                   // bFunctionClass
526         0x02,                                   // bFunctionSubClass
527         0x01,                                   // bFunctionProtocol
528         CDC_STATUS_INTERFACE + 4,               // iFunction
529
530 // --- Serial CDC --- CDC Data Interface
531 // - 9 bytes -
532         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
533         9,                                      // bLength
534         4,                                      // bDescriptorType
535         CDC_STATUS_INTERFACE,                   // bInterfaceNumber
536         0,                                      // bAlternateSetting
537         1,                                      // bNumEndpoints
538         0x02,                                   // bInterfaceClass
539         0x02,                                   // bInterfaceSubClass
540         0x01,                                   // bInterfaceProtocol
541         CDC_STATUS_INTERFACE + 4,               // iInterface
542 // - 5 bytes -
543         // CDC Header Functional Descriptor, CDC Spec 5.2.3.1, Table 26
544         5,                                      // bFunctionLength
545         0x24,                                   // bDescriptorType
546         0x00,                                   // bDescriptorSubtype
547         0x10, 0x01,                             // bcdCDC
548 // - 5 bytes -
549         // Call Management Functional Descriptor, CDC Spec 5.2.3.2, Table 27
550         5,                                      // bFunctionLength
551         0x24,                                   // bDescriptorType
552         0x01,                                   // bDescriptorSubtype
553         0x01,                                   // bmCapabilities
554         CDC_DATA_INTERFACE,                     // bDataInterface
555 // - 4 bytes -
556         // Abstract Control Management Functional Descriptor, CDC Spec 5.2.3.3, Table 28
557         4,                                      // bFunctionLength
558         0x24,                                   // bDescriptorType
559         0x02,                                   // bDescriptorSubtype
560         0x06,                                   // bmCapabilities
561 // - 5 bytes -
562         // Union Functional Descriptor, CDC Spec 5.2.3.8, Table 33
563         5,                                      // bFunctionLength
564         0x24,                                   // bDescriptorType
565         0x06,                                   // bDescriptorSubtype
566         CDC_STATUS_INTERFACE,                   // bMasterInterface
567         CDC_DATA_INTERFACE,                     // bSlaveInterface0
568 // - 7 bytes -
569         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
570         7,                                      // bLength
571         5,                                      // bDescriptorType
572         CDC_ACM_ENDPOINT | 0x80,                // bEndpointAddress
573         0x03,                                   // bmAttributes (0x03=intr)
574         CDC_ACM_SIZE, 0,                        // wMaxPacketSize
575         64,                                     // bInterval
576 // - 9 bytes -
577         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
578         9,                                      // bLength
579         4,                                      // bDescriptorType
580         CDC_DATA_INTERFACE,                     // bInterfaceNumber
581         0,                                      // bAlternateSetting
582         2,                                      // bNumEndpoints
583         0x0A,                                   // bInterfaceClass
584         0x00,                                   // bInterfaceSubClass
585         0x00,                                   // bInterfaceProtocol
586         CDC_DATA_INTERFACE + 4,                 // iInterface
587 // - 7 bytes -
588         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
589         7,                                      // bLength
590         5,                                      // bDescriptorType
591         CDC_RX_ENDPOINT,                        // bEndpointAddress
592         0x02,                                   // bmAttributes (0x02=bulk)
593         CDC_RX_SIZE, 0,                         // wMaxPacketSize
594         0,                                      // bInterval
595 // - 7 bytes -
596         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
597         7,                                      // bLength
598         5,                                      // bDescriptorType
599         CDC_TX_ENDPOINT | 0x80,                 // bEndpointAddress
600         0x02,                                   // bmAttributes (0x02=bulk)
601         CDC_TX_SIZE, 0,                         // wMaxPacketSize
602         0,                                      // bInterval
603
604 // --- Mouse Interface ---
605 // - 9 bytes -
606         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
607         9,                                      // bLength
608         4,                                      // bDescriptorType
609         MOUSE_INTERFACE,                        // bInterfaceNumber
610         0,                                      // bAlternateSetting
611         1,                                      // bNumEndpoints
612         0x03,                                   // bInterfaceClass (0x03 = HID)
613         0x00,                                   // bInterfaceSubClass (0x01 = Boot)
614         0x02,                                   // bInterfaceProtocol (0x02 = Mouse)
615         MOUSE_INTERFACE + 4,                    // iInterface
616 // - 9 bytes -
617         // HID interface descriptor, HID 1.11 spec, section 6.2.1
618         9,                                      // bLength
619         0x21,                                   // bDescriptorType
620         0x11, 0x01,                             // bcdHID
621         0,                                      // bCountryCode
622         1,                                      // bNumDescriptors
623         0x22,                                   // bDescriptorType
624         LSB(sizeof(mouse_report_desc)),         // wDescriptorLength
625         MSB(sizeof(mouse_report_desc)),
626 // - 7 bytes -
627         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
628         7,                                      // bLength
629         5,                                      // bDescriptorType
630         MOUSE_ENDPOINT | 0x80,                  // bEndpointAddress
631         0x03,                                   // bmAttributes (0x03=intr)
632         MOUSE_SIZE, 0,                          // wMaxPacketSize
633         MOUSE_INTERVAL,                         // bInterval
634
635 // --- Joystick Interface ---
636 // - 9 bytes -
637         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
638         9,                                      // bLength
639         4,                                      // bDescriptorType
640         JOYSTICK_INTERFACE,                     // bInterfaceNumber
641         0,                                      // bAlternateSetting
642         1,                                      // bNumEndpoints
643         0x03,                                   // bInterfaceClass (0x03 = HID)
644         0x00,                                   // bInterfaceSubClass
645         0x00,                                   // bInterfaceProtocol
646         JOYSTICK_INTERFACE + 4,                 // iInterface
647 // - 9 bytes -
648         // HID interface descriptor, HID 1.11 spec, section 6.2.1
649         9,                                      // bLength
650         0x21,                                   // bDescriptorType
651         0x11, 0x01,                             // bcdHID
652         0,                                      // bCountryCode
653         1,                                      // bNumDescriptors
654         0x22,                                   // bDescriptorType
655         LSB(sizeof(joystick_report_desc)),      // wDescriptorLength
656         MSB(sizeof(joystick_report_desc)),
657 // - 7 bytes -
658         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
659         7,                                      // bLength
660         5,                                      // bDescriptorType
661         JOYSTICK_ENDPOINT | 0x80,               // bEndpointAddress
662         0x03,                                   // bmAttributes (0x03=intr)
663         JOYSTICK_SIZE, 0,                       // wMaxPacketSize
664         JOYSTICK_INTERVAL,                      // bInterval
665
666 // --- System/Consumer Control ---
667 // - 9 bytes -
668         // interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
669         9,                                      // bLength
670         4,                                      // bDescriptorType
671         SYS_CTRL_INTERFACE,                     // bInterfaceNumber
672         0,                                      // bAlternateSetting
673         1,                                      // bNumEndpoints
674         0x03,                                   // bInterfaceClass (0x03 = HID)
675         0x01,                                   // bInterfaceSubClass (0x00 = Non-Boot, 0x01 = Boot)
676         0x00,                                   // bInterfaceProtocol (0x00 = None)
677         SYS_CTRL_INTERFACE + 4,                 // iInterface
678 // - 9 bytes -
679         // HID interface descriptor, HID 1.11 spec, section 6.2.1
680         9,                                      // bLength
681         0x21,                                   // bDescriptorType
682         0x11, 0x01,                             // bcdHID
683         KeyboardLocale_define,                  // bCountryCode
684         1,                                      // bNumDescriptors
685         0x22,                                   // bDescriptorType
686         LSB(sizeof(sys_ctrl_report_desc)),      // wDescriptorLength
687         MSB(sizeof(sys_ctrl_report_desc)),
688 // - 7 bytes -
689         // endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
690         7,                                      // bLength
691         5,                                      // bDescriptorType
692         SYS_CTRL_ENDPOINT | 0x80,               // bEndpointAddress
693         0x03,                                   // bmAttributes (0x03=intr)
694         SYS_CTRL_SIZE, 0,                       // wMaxPacketSize
695         SYS_CTRL_INTERVAL,                      // bInterval
696 };
697
698
699
700 // ----- String Descriptors -----
701
702 // The descriptors above can provide human readable strings,
703 // referenced by index numbers.  These descriptors are the
704 // actual string data
705
706 struct usb_string_descriptor_struct {
707         uint8_t bLength;
708         uint8_t bDescriptorType;
709         uint16_t wString[];
710 };
711
712 extern struct usb_string_descriptor_struct usb_string_manufacturer_name
713         __attribute__ ((weak, alias("usb_string_manufacturer_name_default")));
714 extern struct usb_string_descriptor_struct usb_string_product_name
715         __attribute__ ((weak, alias("usb_string_product_name_default")));
716 extern struct usb_string_descriptor_struct usb_string_serial_number
717         __attribute__ ((weak, alias("usb_string_serial_number_default")));
718
719 struct usb_string_descriptor_struct string0 = {
720         4,
721         3,
722         {0x0409}
723 };
724
725 #define usb_string_descriptor(name, str) \
726         struct usb_string_descriptor_struct name = { \
727                 sizeof(str), \
728                 3, \
729                 {str} \
730         }
731
732 usb_string_descriptor( usb_string_manufacturer_name_default, STR_MANUFACTURER );
733 usb_string_descriptor( usb_string_product_name_default, STR_PRODUCT );
734 usb_string_descriptor( usb_string_serial_number_default, STR_SERIAL );
735 usb_string_descriptor( usb_string_keyboard_name, KEYBOARD_NAME );
736 usb_string_descriptor( usb_string_nkro_keyboard_name, NKRO_KEYBOARD_NAME );
737 usb_string_descriptor( usb_string_cdc_status_name, CDC_STATUS_NAME );
738 usb_string_descriptor( usb_string_cdc_data_name, CDC_DATA_NAME );
739 usb_string_descriptor( usb_string_mouse_name, MOUSE_NAME );
740 usb_string_descriptor( usb_string_joystick_name, JOYSTICK_NAME );
741 usb_string_descriptor( usb_string_sys_ctrl_name, SYS_CTRL_NAME );
742
743
744
745 // ----- Descriptors List -----
746
747 // This table provides access to all the descriptor data above.
748
749 const usb_descriptor_list_t usb_descriptor_list[] = {
750         //wValue, wIndex, address,          length
751         {0x0100, 0x0000, device_descriptor, sizeof(device_descriptor)},
752         {0x0200, 0x0000, config_descriptor, sizeof(config_descriptor)},
753         {0x0600, 0x0000, device_qualifier_descriptor, sizeof(device_qualifier_descriptor)},
754         {0x0A00, 0x0000, usb_debug_descriptor, sizeof(usb_debug_descriptor)},
755
756         {0x2200, KEYBOARD_INTERFACE, keyboard_report_desc, sizeof(keyboard_report_desc)},
757         {0x2100, KEYBOARD_INTERFACE, config_descriptor + KEYBOARD_DESC_OFFSET, 9},
758
759         {0x2200, NKRO_KEYBOARD_INTERFACE, nkro_keyboard_report_desc, sizeof(nkro_keyboard_report_desc)},
760         {0x2100, NKRO_KEYBOARD_INTERFACE, config_descriptor + NKRO_KEYBOARD_DESC_OFFSET, 9},
761
762         {0x2200, MOUSE_INTERFACE, mouse_report_desc, sizeof(mouse_report_desc)},
763         {0x2100, MOUSE_INTERFACE, config_descriptor + MOUSE_DESC_OFFSET, 9},
764
765         {0x2200, JOYSTICK_INTERFACE, joystick_report_desc, sizeof(joystick_report_desc)},
766         {0x2100, JOYSTICK_INTERFACE, config_descriptor + JOYSTICK_DESC_OFFSET, 9},
767
768         {0x2200, SYS_CTRL_INTERFACE, sys_ctrl_report_desc, sizeof(sys_ctrl_report_desc)},
769         {0x2100, SYS_CTRL_INTERFACE, config_descriptor + SYS_CTRL_DESC_OFFSET, 9},
770
771 #define iInterfaceString(num, var) \
772         {0x0300 + 4 + num, 0x409, (const uint8_t *)&var, 0 }
773
774         {0x0300, 0x0000, (const uint8_t *)&string0, 0},
775         {0x0301, 0x0409, (const uint8_t *)&usb_string_manufacturer_name, 0},
776         {0x0302, 0x0409, (const uint8_t *)&usb_string_product_name, 0},
777         {0x0303, 0x0409, (const uint8_t *)&usb_string_serial_number, 0},
778         iInterfaceString( KEYBOARD_INTERFACE, usb_string_keyboard_name ),
779         iInterfaceString( NKRO_KEYBOARD_INTERFACE, usb_string_nkro_keyboard_name ),
780         iInterfaceString( CDC_STATUS_INTERFACE, usb_string_cdc_status_name ),
781         iInterfaceString( CDC_DATA_INTERFACE, usb_string_cdc_data_name ),
782         iInterfaceString( MOUSE_INTERFACE, usb_string_mouse_name ),
783         iInterfaceString( JOYSTICK_INTERFACE, usb_string_joystick_name ),
784         iInterfaceString( SYS_CTRL_INTERFACE, usb_string_sys_ctrl_name ),
785         {0, 0, NULL, 0}
786 };
787
788
789
790 // ----- Endpoint Configuration -----
791
792 // See usb_desc.h for Endpoint configuration
793 // 0x00 = not used
794 // 0x19 = Recieve only
795 // 0x15 = Transmit only
796 // 0x1D = Transmit & Recieve
797 //
798 const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
799 {
800 #if (defined(ENDPOINT1_CONFIG) && NUM_ENDPOINTS >= 1)
801         ENDPOINT1_CONFIG,
802 #elif (NUM_ENDPOINTS >= 1)
803         ENDPOINT_UNUSED,
804 #endif
805 #if (defined(ENDPOINT2_CONFIG) && NUM_ENDPOINTS >= 2)
806         ENDPOINT2_CONFIG,
807 #elif (NUM_ENDPOINTS >= 2)
808         ENDPOINT_UNUSED,
809 #endif
810 #if (defined(ENDPOINT3_CONFIG) && NUM_ENDPOINTS >= 3)
811         ENDPOINT3_CONFIG,
812 #elif (NUM_ENDPOINTS >= 3)
813         ENDPOINT_UNUSED,
814 #endif
815 #if (defined(ENDPOINT4_CONFIG) && NUM_ENDPOINTS >= 4)
816         ENDPOINT4_CONFIG,
817 #elif (NUM_ENDPOINTS >= 4)
818         ENDPOINT_UNUSED,
819 #endif
820 #if (defined(ENDPOINT5_CONFIG) && NUM_ENDPOINTS >= 5)
821         ENDPOINT5_CONFIG,
822 #elif (NUM_ENDPOINTS >= 5)
823         ENDPOINT_UNUSED,
824 #endif
825 #if (defined(ENDPOINT6_CONFIG) && NUM_ENDPOINTS >= 6)
826         ENDPOINT6_CONFIG,
827 #elif (NUM_ENDPOINTS >= 6)
828         ENDPOINT_UNUSED,
829 #endif
830 #if (defined(ENDPOINT7_CONFIG) && NUM_ENDPOINTS >= 7)
831         ENDPOINT7_CONFIG,
832 #elif (NUM_ENDPOINTS >= 7)
833         ENDPOINT_UNUSED,
834 #endif
835 #if (defined(ENDPOINT8_CONFIG) && NUM_ENDPOINTS >= 8)
836         ENDPOINT8_CONFIG,
837 #elif (NUM_ENDPOINTS >= 8)
838         ENDPOINT_UNUSED,
839 #endif
840 #if (defined(ENDPOINT9_CONFIG) && NUM_ENDPOINTS >= 9)
841         ENDPOINT9_CONFIG,
842 #elif (NUM_ENDPOINTS >= 9)
843         ENDPOINT_UNUSED,
844 #endif
845 #if (defined(ENDPOINT10_CONFIG) && NUM_ENDPOINTS >= 10)
846         ENDPOINT10_CONFIG,
847 #elif (NUM_ENDPOINTS >= 10)
848         ENDPOINT_UNUSED,
849 #endif
850 #if (defined(ENDPOINT11_CONFIG) && NUM_ENDPOINTS >= 11)
851         ENDPOINT11_CONFIG,
852 #elif (NUM_ENDPOINTS >= 11)
853         ENDPOINT_UNUSED,
854 #endif
855 #if (defined(ENDPOINT12_CONFIG) && NUM_ENDPOINTS >= 12)
856         ENDPOINT12_CONFIG,
857 #elif (NUM_ENDPOINTS >= 12)
858         ENDPOINT_UNUSED,
859 #endif
860 #if (defined(ENDPOINT13_CONFIG) && NUM_ENDPOINTS >= 13)
861         ENDPOINT13_CONFIG,
862 #elif (NUM_ENDPOINTS >= 13)
863         ENDPOINT_UNUSED,
864 #endif
865 #if (defined(ENDPOINT14_CONFIG) && NUM_ENDPOINTS >= 14)
866         ENDPOINT14_CONFIG,
867 #elif (NUM_ENDPOINTS >= 14)
868         ENDPOINT_UNUSED,
869 #endif
870 #if (defined(ENDPOINT15_CONFIG) && NUM_ENDPOINTS >= 15)
871         ENDPOINT15_CONFIG,
872 #elif (NUM_ENDPOINTS >= 15)
873         ENDPOINT_UNUSED,
874 #endif
875 };
876
877