1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53#include <common.h>
54#include <usbdevice.h>
55
56#if 0
57#define dbg_ep0(lvl,fmt,args...) serial_printf("[%s] %s:%d: "fmt"\n",__FILE__,__FUNCTION__,__LINE__,##args)
58#else
59#define dbg_ep0(lvl,fmt,args...)
60#endif
61
62
63
64
65
66
67
68
69
70
71
72
73static int ep0_get_status (struct usb_device_instance *device,
74 struct urb *urb, int index, int requesttype)
75{
76 char *cp;
77
78 urb->actual_length = 2;
79 cp = (char*)urb->buffer;
80 cp[0] = cp[1] = 0;
81
82 switch (requesttype) {
83 case USB_REQ_RECIPIENT_DEVICE:
84 cp[0] = USB_STATUS_SELFPOWERED;
85 break;
86 case USB_REQ_RECIPIENT_INTERFACE:
87 break;
88 case USB_REQ_RECIPIENT_ENDPOINT:
89 cp[0] = usbd_endpoint_halted (device, index);
90 break;
91 case USB_REQ_RECIPIENT_OTHER:
92 urb->actual_length = 0;
93 default:
94 break;
95 }
96 dbg_ep0 (2, "%02x %02x", cp[0], cp[1]);
97 return 0;
98}
99
100
101
102
103
104
105
106
107
108
109static int ep0_get_one (struct usb_device_instance *device, struct urb *urb,
110 __u8 result)
111{
112 urb->actual_length = 1;
113 ((char *) urb->buffer)[0] = result;
114 return 0;
115}
116
117
118
119
120
121
122
123
124
125void copy_config (struct urb *urb, void *data, int max_length,
126 int max_buf)
127{
128 int available;
129 int length;
130
131
132
133
134 if (!data) {
135 dbg_ep0 (1, "data is NULL");
136 return;
137 }
138 length = max_length;
139
140 if (length > max_length) {
141 dbg_ep0 (1, "length: %d >= max_length: %d", length,
142 max_length);
143 return;
144 }
145
146
147
148 if ((available =
149 max_buf - urb->actual_length) <= 0) {
150 return;
151 }
152
153
154
155 if (length > available) {
156 length = available;
157 }
158
159
160
161 memcpy (urb->buffer + urb->actual_length, data, length);
162 urb->actual_length += length;
163
164 dbg_ep0 (3,
165 "copy_config: <- actual: %d buf: %d max_buf: %d max_length: %d available: %d",
166 urb->actual_length, urb->buffer_length, max_buf, max_length,
167 available);
168}
169
170
171
172
173
174
175
176
177
178
179
180
181
182static int ep0_get_descriptor (struct usb_device_instance *device,
183 struct urb *urb, int max, int descriptor_type,
184 int index)
185{
186 int port = 0;
187 char *cp;
188
189
190
191 if (!urb || !urb->buffer || !urb->buffer_length
192 || (urb->buffer_length < 255)) {
193 dbg_ep0 (2, "invalid urb %p", urb);
194 return -1L;
195 }
196
197
198 urb->actual_length = 0;
199 cp = (char*)urb->buffer;
200
201 dbg_ep0 (2, "%s", USBD_DEVICE_DESCRIPTORS (descriptor_type));
202
203 switch (descriptor_type) {
204 case USB_DESCRIPTOR_TYPE_DEVICE:
205 {
206 struct usb_device_descriptor *device_descriptor;
207 if (!
208 (device_descriptor =
209 usbd_device_device_descriptor (device, port))) {
210 return -1;
211 }
212
213 copy_config (urb, device_descriptor,
214 sizeof (struct usb_device_descriptor),
215 max);
216
217
218 device_descriptor =
219 (struct usb_device_descriptor *) urb->buffer;
220
221 }
222 dbg_ep0(3, "copied device configuration, actual_length: 0x%x", urb->actual_length);
223 break;
224
225 case USB_DESCRIPTOR_TYPE_CONFIGURATION:
226 {
227 struct usb_configuration_descriptor
228 *configuration_descriptor;
229 struct usb_device_descriptor *device_descriptor;
230 if (!
231 (device_descriptor =
232 usbd_device_device_descriptor (device, port))) {
233 return -1;
234 }
235
236 if (index >= device_descriptor->bNumConfigurations) {
237 dbg_ep0 (0, "index too large: %d >= %d", index,
238 device_descriptor->
239 bNumConfigurations);
240 return -1;
241 }
242
243 if (!
244 (configuration_descriptor =
245 usbd_device_configuration_descriptor (device,
246 port,
247 index))) {
248 dbg_ep0 (0,
249 "usbd_device_configuration_descriptor failed: %d",
250 index);
251 return -1;
252 }
253 dbg_ep0(0, "attempt to copy %d bytes to urb\n",cpu_to_le16(configuration_descriptor->wTotalLength));
254 copy_config (urb, configuration_descriptor,
255
256 cpu_to_le16(configuration_descriptor->wTotalLength),
257 max);
258 }
259
260 break;
261
262 case USB_DESCRIPTOR_TYPE_STRING:
263 {
264 struct usb_string_descriptor *string_descriptor;
265 if (!(string_descriptor = usbd_get_string (index))) {
266 serial_printf("Invalid string index %d\n", index);
267 return -1;
268 }
269 dbg_ep0(3, "string_descriptor: %p length %d", string_descriptor, string_descriptor->bLength);
270 copy_config (urb, string_descriptor, string_descriptor->bLength, max);
271 }
272 break;
273 case USB_DESCRIPTOR_TYPE_INTERFACE:
274 serial_printf("USB_DESCRIPTOR_TYPE_INTERFACE - error not implemented\n");
275 return -1;
276 case USB_DESCRIPTOR_TYPE_ENDPOINT:
277 serial_printf("USB_DESCRIPTOR_TYPE_ENDPOINT - error not implemented\n");
278 return -1;
279 case USB_DESCRIPTOR_TYPE_HID:
280 {
281 serial_printf("USB_DESCRIPTOR_TYPE_HID - error not implemented\n");
282 return -1;
283#if 0
284 int bNumInterface =
285 le16_to_cpu (urb->device_request.wIndex);
286 int bAlternateSetting = 0;
287 int class = 0;
288 struct usb_class_descriptor *class_descriptor;
289
290 if (!(class_descriptor =
291 usbd_device_class_descriptor_index (device,
292 port, 0,
293 bNumInterface,
294 bAlternateSetting,
295 class))
296 || class_descriptor->descriptor.hid.bDescriptorType != USB_DT_HID) {
297 dbg_ep0 (3, "[%d] interface is not HID",
298 bNumInterface);
299 return -1;
300 }
301
302 copy_config (urb, class_descriptor,
303 class_descriptor->descriptor.hid.bLength,
304 max);
305#endif
306 }
307 break;
308 case USB_DESCRIPTOR_TYPE_REPORT:
309 {
310 serial_printf("USB_DESCRIPTOR_TYPE_REPORT - error not implemented\n");
311 return -1;
312#if 0
313 int bNumInterface =
314 le16_to_cpu (urb->device_request.wIndex);
315 int bAlternateSetting = 0;
316 int class = 0;
317 struct usb_class_report_descriptor *report_descriptor;
318
319 if (!(report_descriptor =
320 usbd_device_class_report_descriptor_index
321 (device, port, 0, bNumInterface,
322 bAlternateSetting, class))
323 || report_descriptor->bDescriptorType !=
324 USB_DT_REPORT) {
325 dbg_ep0 (3, "[%d] descriptor is not REPORT",
326 bNumInterface);
327 return -1;
328 }
329
330
331 if (max - urb->actual_length > 0) {
332 int length =
333 MIN (report_descriptor->wLength,
334 max - urb->actual_length);
335 memcpy (urb->buffer + urb->actual_length,
336 &report_descriptor->bData[0], length);
337 urb->actual_length += length;
338 }
339#endif
340 }
341 break;
342 case USB_DESCRIPTOR_TYPE_DEVICE_QUALIFIER:
343 {
344
345
346
347 return -1;
348 }
349 default:
350 return -1;
351 }
352
353
354 dbg_ep0 (1, "urb: buffer: %p buffer_length: %2d actual_length: %2d tx_packetSize: %2d",
355 urb->buffer, urb->buffer_length, urb->actual_length,
356 device->bus->endpoint_array[0].tx_packetSize);
357
358
359
360
361
362
363
364
365 return 0;
366
367}
368
369
370
371
372
373
374
375
376
377
378int ep0_recv_setup (struct urb *urb)
379{
380
381
382
383 struct usb_device_request *request;
384 struct usb_device_instance *device;
385 int address;
386
387 dbg_ep0 (0, "entering ep0_recv_setup()");
388 if (!urb || !urb->device) {
389 dbg_ep0 (3, "invalid URB %p", urb);
390 return -1;
391 }
392
393 request = &urb->device_request;
394 device = urb->device;
395
396 dbg_ep0 (3, "urb: %p device: %p", urb, urb->device);
397
398
399
400
401 dbg_ep0 (2,
402 "bmRequestType:%02x bRequest:%02x wValue:%04x wIndex:%04x wLength:%04x %s",
403 request->bmRequestType, request->bRequest,
404 le16_to_cpu (request->wValue), le16_to_cpu (request->wIndex),
405 le16_to_cpu (request->wLength),
406 USBD_DEVICE_REQUESTS (request->bRequest));
407
408
409 if ((request->bmRequestType & USB_REQ_TYPE_MASK) != 0) {
410 if(device->device_state <= STATE_CONFIGURED){
411
412
413
414 return device->cdc_recv_setup(request,urb);
415 }
416 dbg_ep0 (1, "non standard request: %x",
417 request->bmRequestType & USB_REQ_TYPE_MASK);
418 return -1;
419 }
420
421 switch (device->device_state) {
422 case STATE_CREATED:
423 case STATE_ATTACHED:
424 case STATE_POWERED:
425
426
427
428
429
430
431
432
433
434 break;
435
436 case STATE_INIT:
437 case STATE_DEFAULT:
438 switch (request->bRequest) {
439 case USB_REQ_GET_STATUS:
440 case USB_REQ_GET_INTERFACE:
441 case USB_REQ_SYNCH_FRAME:
442 case USB_REQ_CLEAR_FEATURE:
443 case USB_REQ_SET_FEATURE:
444 case USB_REQ_SET_DESCRIPTOR:
445
446 case USB_REQ_SET_INTERFACE:
447 dbg_ep0 (1,
448 "request %s not allowed in DEFAULT state: %s",
449 USBD_DEVICE_REQUESTS (request->bRequest),
450 usbd_device_states[device->device_state]);
451 return -1;
452
453 case USB_REQ_SET_CONFIGURATION:
454 case USB_REQ_SET_ADDRESS:
455 case USB_REQ_GET_DESCRIPTOR:
456 case USB_REQ_GET_CONFIGURATION:
457 break;
458 }
459 case STATE_ADDRESSED:
460 case STATE_CONFIGURED:
461 break;
462 case STATE_UNKNOWN:
463 dbg_ep0 (1, "request %s not allowed in UNKNOWN state: %s",
464 USBD_DEVICE_REQUESTS (request->bRequest),
465 usbd_device_states[device->device_state]);
466 return -1;
467 }
468
469
470 if ((request->bmRequestType & USB_REQ_DIRECTION_MASK)) {
471
472 dbg_ep0 (3, "Device-to-Host");
473
474 switch (request->bRequest) {
475
476 case USB_REQ_GET_STATUS:
477 return ep0_get_status (device, urb, request->wIndex,
478 request->bmRequestType &
479 USB_REQ_RECIPIENT_MASK);
480
481 case USB_REQ_GET_DESCRIPTOR:
482 return ep0_get_descriptor (device, urb,
483 le16_to_cpu (request->wLength),
484 le16_to_cpu (request->wValue) >> 8,
485 le16_to_cpu (request->wValue) & 0xff);
486
487 case USB_REQ_GET_CONFIGURATION:
488 serial_printf("get config %d\n", device->configuration);
489 return ep0_get_one (device, urb,
490 device->configuration);
491
492 case USB_REQ_GET_INTERFACE:
493 return ep0_get_one (device, urb, device->alternate);
494
495 case USB_REQ_SYNCH_FRAME:
496 return -1;
497
498 case USB_REQ_CLEAR_FEATURE:
499 case USB_REQ_SET_FEATURE:
500 case USB_REQ_SET_ADDRESS:
501 case USB_REQ_SET_DESCRIPTOR:
502 case USB_REQ_SET_CONFIGURATION:
503 case USB_REQ_SET_INTERFACE:
504 return -1;
505 }
506 }
507
508 else {
509
510
511
512 switch (request->bRequest) {
513
514 case USB_REQ_CLEAR_FEATURE:
515 case USB_REQ_SET_FEATURE:
516 dbg_ep0 (0, "Host-to-Device");
517 switch (request->
518 bmRequestType & USB_REQ_RECIPIENT_MASK) {
519 case USB_REQ_RECIPIENT_DEVICE:
520
521
522 case USB_REQ_RECIPIENT_INTERFACE:
523 case USB_REQ_RECIPIENT_OTHER:
524 dbg_ep0 (0, "request %s not",
525 USBD_DEVICE_REQUESTS (request->bRequest));
526 default:
527 return -1;
528
529 case USB_REQ_RECIPIENT_ENDPOINT:
530 dbg_ep0 (0, "ENDPOINT: %x", le16_to_cpu (request->wValue));
531 if (le16_to_cpu (request->wValue) == USB_ENDPOINT_HALT) {
532
533
534
535 return -1;
536 } else {
537 dbg_ep0 (1, "request %s bad wValue: %04x",
538 USBD_DEVICE_REQUESTS
539 (request->bRequest),
540 le16_to_cpu (request->wValue));
541 return -1;
542 }
543 }
544
545 case USB_REQ_SET_ADDRESS:
546
547 if (device->device_state != STATE_DEFAULT) {
548 dbg_ep0 (1, "set_address: %02x state: %s",
549 le16_to_cpu (request->wValue),
550 usbd_device_states[device->device_state]);
551 return -1;
552 }
553 address = le16_to_cpu (request->wValue);
554 if ((address & 0x7f) != address) {
555 dbg_ep0 (1, "invalid address %04x %04x",
556 address, address & 0x7f);
557 return -1;
558 }
559 device->address = address;
560
561
562
563
564 return 0;
565
566 case USB_REQ_SET_DESCRIPTOR:
567 dbg_ep0 (0, "set descriptor: NOT SUPPORTED");
568 return -1;
569
570 case USB_REQ_SET_CONFIGURATION:
571
572 device->configuration = le16_to_cpu(request->wValue) & 0xff;
573
574
575 device->interface = device->alternate = 0;
576
577
578
579 return 0;
580
581 case USB_REQ_SET_INTERFACE:
582 device->interface = le16_to_cpu (request->wIndex);
583 device->alternate = le16_to_cpu (request->wValue);
584
585 serial_printf ("DEVICE_SET_INTERFACE.. event?\n");
586 return 0;
587
588 case USB_REQ_GET_STATUS:
589 case USB_REQ_GET_DESCRIPTOR:
590 case USB_REQ_GET_CONFIGURATION:
591 case USB_REQ_GET_INTERFACE:
592 case USB_REQ_SYNCH_FRAME:
593 return -1;
594 }
595 }
596 return -1;
597}
598