usb: gadget: coding style fix
[deliverable/linux.git] / drivers / usb / gadget / dummy_hcd.c
1 /*
2 * dummy_hcd.c -- Dummy/Loopback USB host and device emulator driver.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * Copyright (C) 2003 David Brownell
7 * Copyright (C) 2003-2005 Alan Stern
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24
25 /*
26 * This exposes a device side "USB gadget" API, driven by requests to a
27 * Linux-USB host controller driver. USB traffic is simulated; there's
28 * no need for USB hardware. Use this with two other drivers:
29 *
30 * - Gadget driver, responding to requests (slave);
31 * - Host-side device driver, as already familiar in Linux.
32 *
33 * Having this all in one kernel can help some stages of development,
34 * bypassing some hardware (and driver) issues. UML could help too.
35 */
36
37 #include <linux/module.h>
38 #include <linux/kernel.h>
39 #include <linux/delay.h>
40 #include <linux/ioport.h>
41 #include <linux/slab.h>
42 #include <linux/errno.h>
43 #include <linux/init.h>
44 #include <linux/timer.h>
45 #include <linux/list.h>
46 #include <linux/interrupt.h>
47 #include <linux/platform_device.h>
48 #include <linux/usb.h>
49 #include <linux/usb/gadget.h>
50 #include <linux/usb/hcd.h>
51
52 #include <asm/byteorder.h>
53 #include <asm/io.h>
54 #include <asm/irq.h>
55 #include <asm/system.h>
56 #include <asm/unaligned.h>
57
58
59 #define DRIVER_DESC "USB Host+Gadget Emulator"
60 #define DRIVER_VERSION "02 May 2005"
61
62 #define POWER_BUDGET 500 /* in mA; use 8 for low-power port testing */
63
64 static const char driver_name [] = "dummy_hcd";
65 static const char driver_desc [] = "USB Host+Gadget Emulator";
66
67 static const char gadget_name [] = "dummy_udc";
68
69 MODULE_DESCRIPTION (DRIVER_DESC);
70 MODULE_AUTHOR ("David Brownell");
71 MODULE_LICENSE ("GPL");
72
73 /*-------------------------------------------------------------------------*/
74
75 /* gadget side driver data structres */
76 struct dummy_ep {
77 struct list_head queue;
78 unsigned long last_io; /* jiffies timestamp */
79 struct usb_gadget *gadget;
80 const struct usb_endpoint_descriptor *desc;
81 struct usb_ep ep;
82 unsigned halted : 1;
83 unsigned wedged : 1;
84 unsigned already_seen : 1;
85 unsigned setup_stage : 1;
86 };
87
88 struct dummy_request {
89 struct list_head queue; /* ep's requests */
90 struct usb_request req;
91 };
92
93 static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
94 {
95 return container_of (_ep, struct dummy_ep, ep);
96 }
97
98 static inline struct dummy_request *usb_request_to_dummy_request
99 (struct usb_request *_req)
100 {
101 return container_of (_req, struct dummy_request, req);
102 }
103
104 /*-------------------------------------------------------------------------*/
105
106 /*
107 * Every device has ep0 for control requests, plus up to 30 more endpoints,
108 * in one of two types:
109 *
110 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
111 * number can be changed. Names like "ep-a" are used for this type.
112 *
113 * - Fixed Function: in other cases. some characteristics may be mutable;
114 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
115 *
116 * Gadget drivers are responsible for not setting up conflicting endpoint
117 * configurations, illegal or unsupported packet lengths, and so on.
118 */
119
120 static const char ep0name [] = "ep0";
121
122 static const char *const ep_name [] = {
123 ep0name, /* everyone has ep0 */
124
125 /* act like a net2280: high speed, six configurable endpoints */
126 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
127
128 /* or like pxa250: fifteen fixed function endpoints */
129 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
130 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
131 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
132 "ep15in-int",
133
134 /* or like sa1100: two fixed function endpoints */
135 "ep1out-bulk", "ep2in-bulk",
136 };
137 #define DUMMY_ENDPOINTS ARRAY_SIZE(ep_name)
138
139 /*-------------------------------------------------------------------------*/
140
141 #define FIFO_SIZE 64
142
143 struct urbp {
144 struct urb *urb;
145 struct list_head urbp_list;
146 };
147
148
149 enum dummy_rh_state {
150 DUMMY_RH_RESET,
151 DUMMY_RH_SUSPENDED,
152 DUMMY_RH_RUNNING
153 };
154
155 struct dummy {
156 spinlock_t lock;
157
158 /*
159 * SLAVE/GADGET side support
160 */
161 struct dummy_ep ep [DUMMY_ENDPOINTS];
162 int address;
163 struct usb_gadget gadget;
164 struct usb_gadget_driver *driver;
165 struct dummy_request fifo_req;
166 u8 fifo_buf [FIFO_SIZE];
167 u16 devstatus;
168 unsigned udc_suspended:1;
169 unsigned pullup:1;
170 unsigned active:1;
171 unsigned old_active:1;
172
173 /*
174 * MASTER/HOST side support
175 */
176 enum dummy_rh_state rh_state;
177 struct timer_list timer;
178 u32 port_status;
179 u32 old_status;
180 unsigned resuming:1;
181 unsigned long re_timeout;
182
183 struct usb_device *udev;
184 struct list_head urbp_list;
185 };
186
187 static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
188 {
189 return (struct dummy *) (hcd->hcd_priv);
190 }
191
192 static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
193 {
194 return container_of((void *) dum, struct usb_hcd, hcd_priv);
195 }
196
197 static inline struct device *dummy_dev (struct dummy *dum)
198 {
199 return dummy_to_hcd(dum)->self.controller;
200 }
201
202 static inline struct device *udc_dev (struct dummy *dum)
203 {
204 return dum->gadget.dev.parent;
205 }
206
207 static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
208 {
209 return container_of (ep->gadget, struct dummy, gadget);
210 }
211
212 static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
213 {
214 return container_of (gadget, struct dummy, gadget);
215 }
216
217 static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
218 {
219 return container_of (dev, struct dummy, gadget.dev);
220 }
221
222 static struct dummy *the_controller;
223
224 /*-------------------------------------------------------------------------*/
225
226 /* SLAVE/GADGET SIDE UTILITY ROUTINES */
227
228 /* called with spinlock held */
229 static void nuke (struct dummy *dum, struct dummy_ep *ep)
230 {
231 while (!list_empty (&ep->queue)) {
232 struct dummy_request *req;
233
234 req = list_entry (ep->queue.next, struct dummy_request, queue);
235 list_del_init (&req->queue);
236 req->req.status = -ESHUTDOWN;
237
238 spin_unlock (&dum->lock);
239 req->req.complete (&ep->ep, &req->req);
240 spin_lock (&dum->lock);
241 }
242 }
243
244 /* caller must hold lock */
245 static void
246 stop_activity (struct dummy *dum)
247 {
248 struct dummy_ep *ep;
249
250 /* prevent any more requests */
251 dum->address = 0;
252
253 /* The timer is left running so that outstanding URBs can fail */
254
255 /* nuke any pending requests first, so driver i/o is quiesced */
256 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
257 nuke (dum, ep);
258
259 /* driver now does any non-usb quiescing necessary */
260 }
261
262 /* caller must hold lock */
263 static void
264 set_link_state (struct dummy *dum)
265 {
266 dum->active = 0;
267 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
268 dum->port_status = 0;
269
270 /* UDC suspend must cause a disconnect */
271 else if (!dum->pullup || dum->udc_suspended) {
272 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
273 USB_PORT_STAT_ENABLE |
274 USB_PORT_STAT_LOW_SPEED |
275 USB_PORT_STAT_HIGH_SPEED |
276 USB_PORT_STAT_SUSPEND);
277 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
278 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
279 } else {
280 dum->port_status |= USB_PORT_STAT_CONNECTION;
281 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
282 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
283 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
284 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
285 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
286 dum->rh_state != DUMMY_RH_SUSPENDED)
287 dum->active = 1;
288 }
289
290 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
291 dum->resuming = 0;
292
293 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
294 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
295 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
296 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
297 dum->driver) {
298 stop_activity (dum);
299 spin_unlock (&dum->lock);
300 dum->driver->disconnect (&dum->gadget);
301 spin_lock (&dum->lock);
302 }
303 } else if (dum->active != dum->old_active) {
304 if (dum->old_active && dum->driver->suspend) {
305 spin_unlock (&dum->lock);
306 dum->driver->suspend (&dum->gadget);
307 spin_lock (&dum->lock);
308 } else if (!dum->old_active && dum->driver->resume) {
309 spin_unlock (&dum->lock);
310 dum->driver->resume (&dum->gadget);
311 spin_lock (&dum->lock);
312 }
313 }
314
315 dum->old_status = dum->port_status;
316 dum->old_active = dum->active;
317 }
318
319 /*-------------------------------------------------------------------------*/
320
321 /* SLAVE/GADGET SIDE DRIVER
322 *
323 * This only tracks gadget state. All the work is done when the host
324 * side tries some (emulated) i/o operation. Real device controller
325 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
326 */
327
328 #define is_enabled(dum) \
329 (dum->port_status & USB_PORT_STAT_ENABLE)
330
331 static int
332 dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
333 {
334 struct dummy *dum;
335 struct dummy_ep *ep;
336 unsigned max;
337 int retval;
338
339 ep = usb_ep_to_dummy_ep (_ep);
340 if (!_ep || !desc || ep->desc || _ep->name == ep0name
341 || desc->bDescriptorType != USB_DT_ENDPOINT)
342 return -EINVAL;
343 dum = ep_to_dummy (ep);
344 if (!dum->driver || !is_enabled (dum))
345 return -ESHUTDOWN;
346 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
347
348 /* drivers must not request bad settings, since lower levels
349 * (hardware or its drivers) may not check. some endpoints
350 * can't do iso, many have maxpacket limitations, etc.
351 *
352 * since this "hardware" driver is here to help debugging, we
353 * have some extra sanity checks. (there could be more though,
354 * especially for "ep9out" style fixed function ones.)
355 */
356 retval = -EINVAL;
357 switch (desc->bmAttributes & 0x03) {
358 case USB_ENDPOINT_XFER_BULK:
359 if (strstr (ep->ep.name, "-iso")
360 || strstr (ep->ep.name, "-int")) {
361 goto done;
362 }
363 switch (dum->gadget.speed) {
364 case USB_SPEED_HIGH:
365 if (max == 512)
366 break;
367 goto done;
368 case USB_SPEED_FULL:
369 if (max == 8 || max == 16 || max == 32 || max == 64)
370 /* we'll fake any legal size */
371 break;
372 /* save a return statement */
373 default:
374 goto done;
375 }
376 break;
377 case USB_ENDPOINT_XFER_INT:
378 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
379 goto done;
380 /* real hardware might not handle all packet sizes */
381 switch (dum->gadget.speed) {
382 case USB_SPEED_HIGH:
383 if (max <= 1024)
384 break;
385 /* save a return statement */
386 case USB_SPEED_FULL:
387 if (max <= 64)
388 break;
389 /* save a return statement */
390 default:
391 if (max <= 8)
392 break;
393 goto done;
394 }
395 break;
396 case USB_ENDPOINT_XFER_ISOC:
397 if (strstr (ep->ep.name, "-bulk")
398 || strstr (ep->ep.name, "-int"))
399 goto done;
400 /* real hardware might not handle all packet sizes */
401 switch (dum->gadget.speed) {
402 case USB_SPEED_HIGH:
403 if (max <= 1024)
404 break;
405 /* save a return statement */
406 case USB_SPEED_FULL:
407 if (max <= 1023)
408 break;
409 /* save a return statement */
410 default:
411 goto done;
412 }
413 break;
414 default:
415 /* few chips support control except on ep0 */
416 goto done;
417 }
418
419 _ep->maxpacket = max;
420 ep->desc = desc;
421
422 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
423 _ep->name,
424 desc->bEndpointAddress & 0x0f,
425 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
426 ({ char *val;
427 switch (desc->bmAttributes & 0x03) {
428 case USB_ENDPOINT_XFER_BULK:
429 val = "bulk";
430 break;
431 case USB_ENDPOINT_XFER_ISOC:
432 val = "iso";
433 break;
434 case USB_ENDPOINT_XFER_INT:
435 val = "intr";
436 break;
437 default:
438 val = "ctrl";
439 break;
440 }; val; }),
441 max);
442
443 /* at this point real hardware should be NAKing transfers
444 * to that endpoint, until a buffer is queued to it.
445 */
446 ep->halted = ep->wedged = 0;
447 retval = 0;
448 done:
449 return retval;
450 }
451
452 static int dummy_disable (struct usb_ep *_ep)
453 {
454 struct dummy_ep *ep;
455 struct dummy *dum;
456 unsigned long flags;
457 int retval;
458
459 ep = usb_ep_to_dummy_ep (_ep);
460 if (!_ep || !ep->desc || _ep->name == ep0name)
461 return -EINVAL;
462 dum = ep_to_dummy (ep);
463
464 spin_lock_irqsave (&dum->lock, flags);
465 ep->desc = NULL;
466 retval = 0;
467 nuke (dum, ep);
468 spin_unlock_irqrestore (&dum->lock, flags);
469
470 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
471 return retval;
472 }
473
474 static struct usb_request *
475 dummy_alloc_request (struct usb_ep *_ep, gfp_t mem_flags)
476 {
477 struct dummy_ep *ep;
478 struct dummy_request *req;
479
480 if (!_ep)
481 return NULL;
482 ep = usb_ep_to_dummy_ep (_ep);
483
484 req = kzalloc(sizeof(*req), mem_flags);
485 if (!req)
486 return NULL;
487 INIT_LIST_HEAD (&req->queue);
488 return &req->req;
489 }
490
491 static void
492 dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
493 {
494 struct dummy_ep *ep;
495 struct dummy_request *req;
496
497 ep = usb_ep_to_dummy_ep (_ep);
498 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
499 return;
500
501 req = usb_request_to_dummy_request (_req);
502 WARN_ON (!list_empty (&req->queue));
503 kfree (req);
504 }
505
506 static void
507 fifo_complete (struct usb_ep *ep, struct usb_request *req)
508 {
509 }
510
511 static int
512 dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
513 gfp_t mem_flags)
514 {
515 struct dummy_ep *ep;
516 struct dummy_request *req;
517 struct dummy *dum;
518 unsigned long flags;
519
520 req = usb_request_to_dummy_request (_req);
521 if (!_req || !list_empty (&req->queue) || !_req->complete)
522 return -EINVAL;
523
524 ep = usb_ep_to_dummy_ep (_ep);
525 if (!_ep || (!ep->desc && _ep->name != ep0name))
526 return -EINVAL;
527
528 dum = ep_to_dummy (ep);
529 if (!dum->driver || !is_enabled (dum))
530 return -ESHUTDOWN;
531
532 #if 0
533 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
534 ep, _req, _ep->name, _req->length, _req->buf);
535 #endif
536
537 _req->status = -EINPROGRESS;
538 _req->actual = 0;
539 spin_lock_irqsave (&dum->lock, flags);
540
541 /* implement an emulated single-request FIFO */
542 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
543 list_empty (&dum->fifo_req.queue) &&
544 list_empty (&ep->queue) &&
545 _req->length <= FIFO_SIZE) {
546 req = &dum->fifo_req;
547 req->req = *_req;
548 req->req.buf = dum->fifo_buf;
549 memcpy (dum->fifo_buf, _req->buf, _req->length);
550 req->req.context = dum;
551 req->req.complete = fifo_complete;
552
553 list_add_tail(&req->queue, &ep->queue);
554 spin_unlock (&dum->lock);
555 _req->actual = _req->length;
556 _req->status = 0;
557 _req->complete (_ep, _req);
558 spin_lock (&dum->lock);
559 } else
560 list_add_tail(&req->queue, &ep->queue);
561 spin_unlock_irqrestore (&dum->lock, flags);
562
563 /* real hardware would likely enable transfers here, in case
564 * it'd been left NAKing.
565 */
566 return 0;
567 }
568
569 static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
570 {
571 struct dummy_ep *ep;
572 struct dummy *dum;
573 int retval = -EINVAL;
574 unsigned long flags;
575 struct dummy_request *req = NULL;
576
577 if (!_ep || !_req)
578 return retval;
579 ep = usb_ep_to_dummy_ep (_ep);
580 dum = ep_to_dummy (ep);
581
582 if (!dum->driver)
583 return -ESHUTDOWN;
584
585 local_irq_save (flags);
586 spin_lock (&dum->lock);
587 list_for_each_entry (req, &ep->queue, queue) {
588 if (&req->req == _req) {
589 list_del_init (&req->queue);
590 _req->status = -ECONNRESET;
591 retval = 0;
592 break;
593 }
594 }
595 spin_unlock (&dum->lock);
596
597 if (retval == 0) {
598 dev_dbg (udc_dev(dum),
599 "dequeued req %p from %s, len %d buf %p\n",
600 req, _ep->name, _req->length, _req->buf);
601 _req->complete (_ep, _req);
602 }
603 local_irq_restore (flags);
604 return retval;
605 }
606
607 static int
608 dummy_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
609 {
610 struct dummy_ep *ep;
611 struct dummy *dum;
612
613 if (!_ep)
614 return -EINVAL;
615 ep = usb_ep_to_dummy_ep (_ep);
616 dum = ep_to_dummy (ep);
617 if (!dum->driver)
618 return -ESHUTDOWN;
619 if (!value)
620 ep->halted = ep->wedged = 0;
621 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
622 !list_empty (&ep->queue))
623 return -EAGAIN;
624 else {
625 ep->halted = 1;
626 if (wedged)
627 ep->wedged = 1;
628 }
629 /* FIXME clear emulated data toggle too */
630 return 0;
631 }
632
633 static int
634 dummy_set_halt(struct usb_ep *_ep, int value)
635 {
636 return dummy_set_halt_and_wedge(_ep, value, 0);
637 }
638
639 static int dummy_set_wedge(struct usb_ep *_ep)
640 {
641 if (!_ep || _ep->name == ep0name)
642 return -EINVAL;
643 return dummy_set_halt_and_wedge(_ep, 1, 1);
644 }
645
646 static const struct usb_ep_ops dummy_ep_ops = {
647 .enable = dummy_enable,
648 .disable = dummy_disable,
649
650 .alloc_request = dummy_alloc_request,
651 .free_request = dummy_free_request,
652
653 .queue = dummy_queue,
654 .dequeue = dummy_dequeue,
655
656 .set_halt = dummy_set_halt,
657 .set_wedge = dummy_set_wedge,
658 };
659
660 /*-------------------------------------------------------------------------*/
661
662 /* there are both host and device side versions of this call ... */
663 static int dummy_g_get_frame (struct usb_gadget *_gadget)
664 {
665 struct timeval tv;
666
667 do_gettimeofday (&tv);
668 return tv.tv_usec / 1000;
669 }
670
671 static int dummy_wakeup (struct usb_gadget *_gadget)
672 {
673 struct dummy *dum;
674
675 dum = gadget_to_dummy (_gadget);
676 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
677 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
678 return -EINVAL;
679 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
680 return -ENOLINK;
681 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
682 dum->rh_state != DUMMY_RH_SUSPENDED)
683 return -EIO;
684
685 /* FIXME: What if the root hub is suspended but the port isn't? */
686
687 /* hub notices our request, issues downstream resume, etc */
688 dum->resuming = 1;
689 dum->re_timeout = jiffies + msecs_to_jiffies(20);
690 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
691 return 0;
692 }
693
694 static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
695 {
696 struct dummy *dum;
697
698 dum = gadget_to_dummy (_gadget);
699 if (value)
700 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
701 else
702 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
703 return 0;
704 }
705
706 static int dummy_pullup (struct usb_gadget *_gadget, int value)
707 {
708 struct dummy *dum;
709 unsigned long flags;
710
711 dum = gadget_to_dummy (_gadget);
712 spin_lock_irqsave (&dum->lock, flags);
713 dum->pullup = (value != 0);
714 set_link_state (dum);
715 spin_unlock_irqrestore (&dum->lock, flags);
716
717 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
718 return 0;
719 }
720
721 static int dummy_udc_start(struct usb_gadget_driver *driver,
722 int (*bind)(struct usb_gadget *));
723 static int dummy_udc_stop(struct usb_gadget_driver *driver);
724
725 static const struct usb_gadget_ops dummy_ops = {
726 .get_frame = dummy_g_get_frame,
727 .wakeup = dummy_wakeup,
728 .set_selfpowered = dummy_set_selfpowered,
729 .pullup = dummy_pullup,
730 .start = dummy_udc_start,
731 .stop = dummy_udc_stop,
732 };
733
734 /*-------------------------------------------------------------------------*/
735
736 /* "function" sysfs attribute */
737 static ssize_t
738 show_function (struct device *dev, struct device_attribute *attr, char *buf)
739 {
740 struct dummy *dum = gadget_dev_to_dummy (dev);
741
742 if (!dum->driver || !dum->driver->function)
743 return 0;
744 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
745 }
746 static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
747
748 /*-------------------------------------------------------------------------*/
749
750 /*
751 * Driver registration/unregistration.
752 *
753 * This is basically hardware-specific; there's usually only one real USB
754 * device (not host) controller since that's how USB devices are intended
755 * to work. So most implementations of these api calls will rely on the
756 * fact that only one driver will ever bind to the hardware. But curious
757 * hardware can be built with discrete components, so the gadget API doesn't
758 * require that assumption.
759 *
760 * For this emulator, it might be convenient to create a usb slave device
761 * for each driver that registers: just add to a big root hub.
762 */
763
764 static int dummy_udc_start(struct usb_gadget_driver *driver,
765 int (*bind)(struct usb_gadget *))
766 {
767 struct dummy *dum = the_controller;
768 int retval, i;
769
770 if (!dum)
771 return -EINVAL;
772 if (dum->driver)
773 return -EBUSY;
774 if (!bind || !driver->setup || driver->speed == USB_SPEED_UNKNOWN)
775 return -EINVAL;
776
777 /*
778 * SLAVE side init ... the layer above hardware, which
779 * can't enumerate without help from the driver we're binding.
780 */
781
782 dum->devstatus = 0;
783
784 INIT_LIST_HEAD (&dum->gadget.ep_list);
785 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
786 struct dummy_ep *ep = &dum->ep [i];
787
788 if (!ep_name [i])
789 break;
790 ep->ep.name = ep_name [i];
791 ep->ep.ops = &dummy_ep_ops;
792 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
793 ep->halted = ep->wedged = ep->already_seen =
794 ep->setup_stage = 0;
795 ep->ep.maxpacket = ~0;
796 ep->last_io = jiffies;
797 ep->gadget = &dum->gadget;
798 ep->desc = NULL;
799 INIT_LIST_HEAD (&ep->queue);
800 }
801
802 dum->gadget.ep0 = &dum->ep [0].ep;
803 dum->ep [0].ep.maxpacket = 64;
804 list_del_init (&dum->ep [0].ep.ep_list);
805 INIT_LIST_HEAD(&dum->fifo_req.queue);
806
807 driver->driver.bus = NULL;
808 dum->driver = driver;
809 dum->gadget.dev.driver = &driver->driver;
810 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
811 driver->driver.name);
812 retval = bind(&dum->gadget);
813 if (retval) {
814 dum->driver = NULL;
815 dum->gadget.dev.driver = NULL;
816 return retval;
817 }
818
819 /* khubd will enumerate this in a while */
820 spin_lock_irq (&dum->lock);
821 dum->pullup = 1;
822 set_link_state (dum);
823 spin_unlock_irq (&dum->lock);
824
825 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
826 return 0;
827 }
828
829 static int dummy_udc_stop(struct usb_gadget_driver *driver)
830 {
831 struct dummy *dum = the_controller;
832 unsigned long flags;
833
834 if (!dum)
835 return -ENODEV;
836 if (!driver || driver != dum->driver || !driver->unbind)
837 return -EINVAL;
838
839 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
840 driver->driver.name);
841
842 spin_lock_irqsave (&dum->lock, flags);
843 dum->pullup = 0;
844 set_link_state (dum);
845 spin_unlock_irqrestore (&dum->lock, flags);
846
847 driver->unbind (&dum->gadget);
848 dum->gadget.dev.driver = NULL;
849 dum->driver = NULL;
850
851 spin_lock_irqsave (&dum->lock, flags);
852 dum->pullup = 0;
853 set_link_state (dum);
854 spin_unlock_irqrestore (&dum->lock, flags);
855
856 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
857 return 0;
858 }
859
860 #undef is_enabled
861
862 /* just declare this in any driver that really need it */
863 extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
864
865 int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
866 {
867 return -ENOSYS;
868 }
869 EXPORT_SYMBOL (net2280_set_fifo_mode);
870
871
872 /* The gadget structure is stored inside the hcd structure and will be
873 * released along with it. */
874 static void
875 dummy_gadget_release (struct device *dev)
876 {
877 struct dummy *dum = gadget_dev_to_dummy (dev);
878
879 usb_put_hcd (dummy_to_hcd (dum));
880 }
881
882 static int dummy_udc_probe (struct platform_device *pdev)
883 {
884 struct dummy *dum = the_controller;
885 int rc;
886
887 usb_get_hcd(dummy_to_hcd(dum));
888
889 dum->gadget.name = gadget_name;
890 dum->gadget.ops = &dummy_ops;
891 dum->gadget.is_dualspeed = 1;
892
893 /* maybe claim OTG support, though we won't complete HNP */
894 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
895
896 dev_set_name(&dum->gadget.dev, "gadget");
897 dum->gadget.dev.parent = &pdev->dev;
898 dum->gadget.dev.release = dummy_gadget_release;
899 rc = device_register (&dum->gadget.dev);
900 if (rc < 0) {
901 put_device(&dum->gadget.dev);
902 return rc;
903 }
904
905 rc = usb_add_gadget_udc(&pdev->dev, &dum->gadget);
906 if (rc < 0)
907 goto err_udc;
908
909 rc = device_create_file (&dum->gadget.dev, &dev_attr_function);
910 if (rc < 0)
911 goto err_dev;
912 platform_set_drvdata(pdev, dum);
913 return rc;
914
915 err_dev:
916 usb_del_gadget_udc(&dum->gadget);
917 err_udc:
918 device_unregister(&dum->gadget.dev);
919 return rc;
920 }
921
922 static int dummy_udc_remove (struct platform_device *pdev)
923 {
924 struct dummy *dum = platform_get_drvdata (pdev);
925
926 usb_del_gadget_udc(&dum->gadget);
927 platform_set_drvdata (pdev, NULL);
928 device_remove_file (&dum->gadget.dev, &dev_attr_function);
929 device_unregister (&dum->gadget.dev);
930 return 0;
931 }
932
933 static int dummy_udc_suspend (struct platform_device *pdev, pm_message_t state)
934 {
935 struct dummy *dum = platform_get_drvdata(pdev);
936
937 dev_dbg (&pdev->dev, "%s\n", __func__);
938 spin_lock_irq (&dum->lock);
939 dum->udc_suspended = 1;
940 set_link_state (dum);
941 spin_unlock_irq (&dum->lock);
942
943 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
944 return 0;
945 }
946
947 static int dummy_udc_resume (struct platform_device *pdev)
948 {
949 struct dummy *dum = platform_get_drvdata(pdev);
950
951 dev_dbg (&pdev->dev, "%s\n", __func__);
952 spin_lock_irq (&dum->lock);
953 dum->udc_suspended = 0;
954 set_link_state (dum);
955 spin_unlock_irq (&dum->lock);
956
957 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
958 return 0;
959 }
960
961 static struct platform_driver dummy_udc_driver = {
962 .probe = dummy_udc_probe,
963 .remove = dummy_udc_remove,
964 .suspend = dummy_udc_suspend,
965 .resume = dummy_udc_resume,
966 .driver = {
967 .name = (char *) gadget_name,
968 .owner = THIS_MODULE,
969 },
970 };
971
972 /*-------------------------------------------------------------------------*/
973
974 /* MASTER/HOST SIDE DRIVER
975 *
976 * this uses the hcd framework to hook up to host side drivers.
977 * its root hub will only have one device, otherwise it acts like
978 * a normal host controller.
979 *
980 * when urbs are queued, they're just stuck on a list that we
981 * scan in a timer callback. that callback connects writes from
982 * the host with reads from the device, and so on, based on the
983 * usb 2.0 rules.
984 */
985
986 static int dummy_urb_enqueue (
987 struct usb_hcd *hcd,
988 struct urb *urb,
989 gfp_t mem_flags
990 ) {
991 struct dummy *dum;
992 struct urbp *urbp;
993 unsigned long flags;
994 int rc;
995
996 if (!urb->transfer_buffer && urb->transfer_buffer_length)
997 return -EINVAL;
998
999 urbp = kmalloc (sizeof *urbp, mem_flags);
1000 if (!urbp)
1001 return -ENOMEM;
1002 urbp->urb = urb;
1003
1004 dum = hcd_to_dummy (hcd);
1005 spin_lock_irqsave (&dum->lock, flags);
1006 rc = usb_hcd_link_urb_to_ep(hcd, urb);
1007 if (rc) {
1008 kfree(urbp);
1009 goto done;
1010 }
1011
1012 if (!dum->udev) {
1013 dum->udev = urb->dev;
1014 usb_get_dev (dum->udev);
1015 } else if (unlikely (dum->udev != urb->dev))
1016 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
1017
1018 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
1019 urb->hcpriv = urbp;
1020 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
1021 urb->error_count = 1; /* mark as a new urb */
1022
1023 /* kick the scheduler, it'll do the rest */
1024 if (!timer_pending (&dum->timer))
1025 mod_timer (&dum->timer, jiffies + 1);
1026
1027 done:
1028 spin_unlock_irqrestore(&dum->lock, flags);
1029 return rc;
1030 }
1031
1032 static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1033 {
1034 struct dummy *dum;
1035 unsigned long flags;
1036 int rc;
1037
1038 /* giveback happens automatically in timer callback,
1039 * so make sure the callback happens */
1040 dum = hcd_to_dummy (hcd);
1041 spin_lock_irqsave (&dum->lock, flags);
1042
1043 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1044 if (!rc && dum->rh_state != DUMMY_RH_RUNNING &&
1045 !list_empty(&dum->urbp_list))
1046 mod_timer (&dum->timer, jiffies);
1047
1048 spin_unlock_irqrestore (&dum->lock, flags);
1049 return rc;
1050 }
1051
1052 /* transfer up to a frame's worth; caller must own lock */
1053 static int
1054 transfer(struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit,
1055 int *status)
1056 {
1057 struct dummy_request *req;
1058
1059 top:
1060 /* if there's no request queued, the device is NAKing; return */
1061 list_for_each_entry (req, &ep->queue, queue) {
1062 unsigned host_len, dev_len, len;
1063 int is_short, to_host;
1064 int rescan = 0;
1065
1066 /* 1..N packets of ep->ep.maxpacket each ... the last one
1067 * may be short (including zero length).
1068 *
1069 * writer can send a zlp explicitly (length 0) or implicitly
1070 * (length mod maxpacket zero, and 'zero' flag); they always
1071 * terminate reads.
1072 */
1073 host_len = urb->transfer_buffer_length - urb->actual_length;
1074 dev_len = req->req.length - req->req.actual;
1075 len = min (host_len, dev_len);
1076
1077 /* FIXME update emulated data toggle too */
1078
1079 to_host = usb_pipein (urb->pipe);
1080 if (unlikely (len == 0))
1081 is_short = 1;
1082 else {
1083 char *ubuf, *rbuf;
1084
1085 /* not enough bandwidth left? */
1086 if (limit < ep->ep.maxpacket && limit < len)
1087 break;
1088 len = min (len, (unsigned) limit);
1089 if (len == 0)
1090 break;
1091
1092 /* use an extra pass for the final short packet */
1093 if (len > ep->ep.maxpacket) {
1094 rescan = 1;
1095 len -= (len % ep->ep.maxpacket);
1096 }
1097 is_short = (len % ep->ep.maxpacket) != 0;
1098
1099 /* else transfer packet(s) */
1100 ubuf = urb->transfer_buffer + urb->actual_length;
1101 rbuf = req->req.buf + req->req.actual;
1102 if (to_host)
1103 memcpy (ubuf, rbuf, len);
1104 else
1105 memcpy (rbuf, ubuf, len);
1106 ep->last_io = jiffies;
1107
1108 limit -= len;
1109 urb->actual_length += len;
1110 req->req.actual += len;
1111 }
1112
1113 /* short packets terminate, maybe with overflow/underflow.
1114 * it's only really an error to write too much.
1115 *
1116 * partially filling a buffer optionally blocks queue advances
1117 * (so completion handlers can clean up the queue) but we don't
1118 * need to emulate such data-in-flight.
1119 */
1120 if (is_short) {
1121 if (host_len == dev_len) {
1122 req->req.status = 0;
1123 *status = 0;
1124 } else if (to_host) {
1125 req->req.status = 0;
1126 if (dev_len > host_len)
1127 *status = -EOVERFLOW;
1128 else
1129 *status = 0;
1130 } else if (!to_host) {
1131 *status = 0;
1132 if (host_len > dev_len)
1133 req->req.status = -EOVERFLOW;
1134 else
1135 req->req.status = 0;
1136 }
1137
1138 /* many requests terminate without a short packet */
1139 } else {
1140 if (req->req.length == req->req.actual
1141 && !req->req.zero)
1142 req->req.status = 0;
1143 if (urb->transfer_buffer_length == urb->actual_length
1144 && !(urb->transfer_flags
1145 & URB_ZERO_PACKET))
1146 *status = 0;
1147 }
1148
1149 /* device side completion --> continuable */
1150 if (req->req.status != -EINPROGRESS) {
1151 list_del_init (&req->queue);
1152
1153 spin_unlock (&dum->lock);
1154 req->req.complete (&ep->ep, &req->req);
1155 spin_lock (&dum->lock);
1156
1157 /* requests might have been unlinked... */
1158 rescan = 1;
1159 }
1160
1161 /* host side completion --> terminate */
1162 if (*status != -EINPROGRESS)
1163 break;
1164
1165 /* rescan to continue with any other queued i/o */
1166 if (rescan)
1167 goto top;
1168 }
1169 return limit;
1170 }
1171
1172 static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1173 {
1174 int limit = ep->ep.maxpacket;
1175
1176 if (dum->gadget.speed == USB_SPEED_HIGH) {
1177 int tmp;
1178
1179 /* high bandwidth mode */
1180 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
1181 tmp = (tmp >> 11) & 0x03;
1182 tmp *= 8 /* applies to entire frame */;
1183 limit += limit * tmp;
1184 }
1185 return limit;
1186 }
1187
1188 #define is_active(dum) ((dum->port_status & \
1189 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1190 USB_PORT_STAT_SUSPEND)) \
1191 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1192
1193 static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1194 {
1195 int i;
1196
1197 if (!is_active (dum))
1198 return NULL;
1199 if ((address & ~USB_DIR_IN) == 0)
1200 return &dum->ep [0];
1201 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1202 struct dummy_ep *ep = &dum->ep [i];
1203
1204 if (!ep->desc)
1205 continue;
1206 if (ep->desc->bEndpointAddress == address)
1207 return ep;
1208 }
1209 return NULL;
1210 }
1211
1212 #undef is_active
1213
1214 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1215 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1216 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1217 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1218 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1219 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1220
1221
1222 /**
1223 * handle_control_request() - handles all control transfers
1224 * @dum: pointer to dummy (the_controller)
1225 * @urb: the urb request to handle
1226 * @setup: pointer to the setup data for a USB device control
1227 * request
1228 * @status: pointer to request handling status
1229 *
1230 * Return 0 - if the request was handled
1231 * 1 - if the request wasn't handles
1232 * error code on error
1233 */
1234 static int handle_control_request(struct dummy *dum, struct urb *urb,
1235 struct usb_ctrlrequest *setup,
1236 int *status)
1237 {
1238 struct dummy_ep *ep2;
1239 int ret_val = 1;
1240 unsigned w_index;
1241 unsigned w_value;
1242
1243 w_index = le16_to_cpu(setup->wIndex);
1244 w_value = le16_to_cpu(setup->wValue);
1245 switch (setup->bRequest) {
1246 case USB_REQ_SET_ADDRESS:
1247 if (setup->bRequestType != Dev_Request)
1248 break;
1249 dum->address = w_value;
1250 *status = 0;
1251 dev_dbg(udc_dev(dum), "set_address = %d\n",
1252 w_value);
1253 ret_val = 0;
1254 break;
1255 case USB_REQ_SET_FEATURE:
1256 if (setup->bRequestType == Dev_Request) {
1257 ret_val = 0;
1258 switch (w_value) {
1259 case USB_DEVICE_REMOTE_WAKEUP:
1260 break;
1261 case USB_DEVICE_B_HNP_ENABLE:
1262 dum->gadget.b_hnp_enable = 1;
1263 break;
1264 case USB_DEVICE_A_HNP_SUPPORT:
1265 dum->gadget.a_hnp_support = 1;
1266 break;
1267 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1268 dum->gadget.a_alt_hnp_support = 1;
1269 break;
1270 default:
1271 ret_val = -EOPNOTSUPP;
1272 }
1273 if (ret_val == 0) {
1274 dum->devstatus |= (1 << w_value);
1275 *status = 0;
1276 }
1277 } else if (setup->bRequestType == Ep_Request) {
1278 /* endpoint halt */
1279 ep2 = find_endpoint(dum, w_index);
1280 if (!ep2 || ep2->ep.name == ep0name) {
1281 ret_val = -EOPNOTSUPP;
1282 break;
1283 }
1284 ep2->halted = 1;
1285 ret_val = 0;
1286 *status = 0;
1287 }
1288 break;
1289 case USB_REQ_CLEAR_FEATURE:
1290 if (setup->bRequestType == Dev_Request) {
1291 ret_val = 0;
1292 switch (w_value) {
1293 case USB_DEVICE_REMOTE_WAKEUP:
1294 w_value = USB_DEVICE_REMOTE_WAKEUP;
1295 break;
1296 default:
1297 ret_val = -EOPNOTSUPP;
1298 break;
1299 }
1300 if (ret_val == 0) {
1301 dum->devstatus &= ~(1 << w_value);
1302 *status = 0;
1303 }
1304 } else if (setup->bRequestType == Ep_Request) {
1305 /* endpoint halt */
1306 ep2 = find_endpoint(dum, w_index);
1307 if (!ep2) {
1308 ret_val = -EOPNOTSUPP;
1309 break;
1310 }
1311 if (!ep2->wedged)
1312 ep2->halted = 0;
1313 ret_val = 0;
1314 *status = 0;
1315 }
1316 break;
1317 case USB_REQ_GET_STATUS:
1318 if (setup->bRequestType == Dev_InRequest
1319 || setup->bRequestType == Intf_InRequest
1320 || setup->bRequestType == Ep_InRequest) {
1321 char *buf;
1322 /*
1323 * device: remote wakeup, selfpowered
1324 * interface: nothing
1325 * endpoint: halt
1326 */
1327 buf = (char *)urb->transfer_buffer;
1328 if (urb->transfer_buffer_length > 0) {
1329 if (setup->bRequestType == Ep_InRequest) {
1330 ep2 = find_endpoint(dum, w_index);
1331 if (!ep2) {
1332 ret_val = -EOPNOTSUPP;
1333 break;
1334 }
1335 buf[0] = ep2->halted;
1336 } else if (setup->bRequestType ==
1337 Dev_InRequest) {
1338 buf[0] = (u8)dum->devstatus;
1339 } else
1340 buf[0] = 0;
1341 }
1342 if (urb->transfer_buffer_length > 1)
1343 buf[1] = 0;
1344 urb->actual_length = min_t(u32, 2,
1345 urb->transfer_buffer_length);
1346 ret_val = 0;
1347 *status = 0;
1348 }
1349 break;
1350 }
1351 return ret_val;
1352 }
1353
1354 /* drive both sides of the transfers; looks like irq handlers to
1355 * both drivers except the callbacks aren't in_irq().
1356 */
1357 static void dummy_timer (unsigned long _dum)
1358 {
1359 struct dummy *dum = (struct dummy *) _dum;
1360 struct urbp *urbp, *tmp;
1361 unsigned long flags;
1362 int limit, total;
1363 int i;
1364
1365 /* simplistic model for one frame's bandwidth */
1366 switch (dum->gadget.speed) {
1367 case USB_SPEED_LOW:
1368 total = 8/*bytes*/ * 12/*packets*/;
1369 break;
1370 case USB_SPEED_FULL:
1371 total = 64/*bytes*/ * 19/*packets*/;
1372 break;
1373 case USB_SPEED_HIGH:
1374 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1375 break;
1376 default:
1377 dev_err (dummy_dev(dum), "bogus device speed\n");
1378 return;
1379 }
1380
1381 /* FIXME if HZ != 1000 this will probably misbehave ... */
1382
1383 /* look at each urb queued by the host side driver */
1384 spin_lock_irqsave (&dum->lock, flags);
1385
1386 if (!dum->udev) {
1387 dev_err (dummy_dev(dum),
1388 "timer fired with no URBs pending?\n");
1389 spin_unlock_irqrestore (&dum->lock, flags);
1390 return;
1391 }
1392
1393 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1394 if (!ep_name [i])
1395 break;
1396 dum->ep [i].already_seen = 0;
1397 }
1398
1399 restart:
1400 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1401 struct urb *urb;
1402 struct dummy_request *req;
1403 u8 address;
1404 struct dummy_ep *ep = NULL;
1405 int type;
1406 int status = -EINPROGRESS;
1407
1408 urb = urbp->urb;
1409 if (urb->unlinked)
1410 goto return_urb;
1411 else if (dum->rh_state != DUMMY_RH_RUNNING)
1412 continue;
1413 type = usb_pipetype (urb->pipe);
1414
1415 /* used up this frame's non-periodic bandwidth?
1416 * FIXME there's infinite bandwidth for control and
1417 * periodic transfers ... unrealistic.
1418 */
1419 if (total <= 0 && type == PIPE_BULK)
1420 continue;
1421
1422 /* find the gadget's ep for this request (if configured) */
1423 address = usb_pipeendpoint (urb->pipe);
1424 if (usb_pipein (urb->pipe))
1425 address |= USB_DIR_IN;
1426 ep = find_endpoint(dum, address);
1427 if (!ep) {
1428 /* set_configuration() disagreement */
1429 dev_dbg (dummy_dev(dum),
1430 "no ep configured for urb %p\n",
1431 urb);
1432 status = -EPROTO;
1433 goto return_urb;
1434 }
1435
1436 if (ep->already_seen)
1437 continue;
1438 ep->already_seen = 1;
1439 if (ep == &dum->ep [0] && urb->error_count) {
1440 ep->setup_stage = 1; /* a new urb */
1441 urb->error_count = 0;
1442 }
1443 if (ep->halted && !ep->setup_stage) {
1444 /* NOTE: must not be iso! */
1445 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1446 ep->ep.name, urb);
1447 status = -EPIPE;
1448 goto return_urb;
1449 }
1450 /* FIXME make sure both ends agree on maxpacket */
1451
1452 /* handle control requests */
1453 if (ep == &dum->ep [0] && ep->setup_stage) {
1454 struct usb_ctrlrequest setup;
1455 int value = 1;
1456
1457 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1458 /* paranoia, in case of stale queued data */
1459 list_for_each_entry (req, &ep->queue, queue) {
1460 list_del_init (&req->queue);
1461 req->req.status = -EOVERFLOW;
1462 dev_dbg (udc_dev(dum), "stale req = %p\n",
1463 req);
1464
1465 spin_unlock (&dum->lock);
1466 req->req.complete (&ep->ep, &req->req);
1467 spin_lock (&dum->lock);
1468 ep->already_seen = 0;
1469 goto restart;
1470 }
1471
1472 /* gadget driver never sees set_address or operations
1473 * on standard feature flags. some hardware doesn't
1474 * even expose them.
1475 */
1476 ep->last_io = jiffies;
1477 ep->setup_stage = 0;
1478 ep->halted = 0;
1479
1480 value = handle_control_request(dum, urb, &setup,
1481 &status);
1482
1483 /* gadget driver handles all other requests. block
1484 * until setup() returns; no reentrancy issues etc.
1485 */
1486 if (value > 0) {
1487 spin_unlock (&dum->lock);
1488 value = dum->driver->setup (&dum->gadget,
1489 &setup);
1490 spin_lock (&dum->lock);
1491
1492 if (value >= 0) {
1493 /* no delays (max 64KB data stage) */
1494 limit = 64*1024;
1495 goto treat_control_like_bulk;
1496 }
1497 /* error, see below */
1498 }
1499
1500 if (value < 0) {
1501 if (value != -EOPNOTSUPP)
1502 dev_dbg (udc_dev(dum),
1503 "setup --> %d\n",
1504 value);
1505 status = -EPIPE;
1506 urb->actual_length = 0;
1507 }
1508
1509 goto return_urb;
1510 }
1511
1512 /* non-control requests */
1513 limit = total;
1514 switch (usb_pipetype (urb->pipe)) {
1515 case PIPE_ISOCHRONOUS:
1516 /* FIXME is it urb->interval since the last xfer?
1517 * use urb->iso_frame_desc[i].
1518 * complete whether or not ep has requests queued.
1519 * report random errors, to debug drivers.
1520 */
1521 limit = max (limit, periodic_bytes (dum, ep));
1522 status = -ENOSYS;
1523 break;
1524
1525 case PIPE_INTERRUPT:
1526 /* FIXME is it urb->interval since the last xfer?
1527 * this almost certainly polls too fast.
1528 */
1529 limit = max (limit, periodic_bytes (dum, ep));
1530 /* FALLTHROUGH */
1531
1532 // case PIPE_BULK: case PIPE_CONTROL:
1533 default:
1534 treat_control_like_bulk:
1535 ep->last_io = jiffies;
1536 total = transfer(dum, urb, ep, limit, &status);
1537 break;
1538 }
1539
1540 /* incomplete transfer? */
1541 if (status == -EINPROGRESS)
1542 continue;
1543
1544 return_urb:
1545 list_del (&urbp->urbp_list);
1546 kfree (urbp);
1547 if (ep)
1548 ep->already_seen = ep->setup_stage = 0;
1549
1550 usb_hcd_unlink_urb_from_ep(dummy_to_hcd(dum), urb);
1551 spin_unlock (&dum->lock);
1552 usb_hcd_giveback_urb(dummy_to_hcd(dum), urb, status);
1553 spin_lock (&dum->lock);
1554
1555 goto restart;
1556 }
1557
1558 if (list_empty (&dum->urbp_list)) {
1559 usb_put_dev (dum->udev);
1560 dum->udev = NULL;
1561 } else if (dum->rh_state == DUMMY_RH_RUNNING) {
1562 /* want a 1 msec delay here */
1563 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
1564 }
1565
1566 spin_unlock_irqrestore (&dum->lock, flags);
1567 }
1568
1569 /*-------------------------------------------------------------------------*/
1570
1571 #define PORT_C_MASK \
1572 ((USB_PORT_STAT_C_CONNECTION \
1573 | USB_PORT_STAT_C_ENABLE \
1574 | USB_PORT_STAT_C_SUSPEND \
1575 | USB_PORT_STAT_C_OVERCURRENT \
1576 | USB_PORT_STAT_C_RESET) << 16)
1577
1578 static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1579 {
1580 struct dummy *dum;
1581 unsigned long flags;
1582 int retval = 0;
1583
1584 dum = hcd_to_dummy (hcd);
1585
1586 spin_lock_irqsave (&dum->lock, flags);
1587 if (!HCD_HW_ACCESSIBLE(hcd))
1588 goto done;
1589
1590 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1591 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1592 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1593 set_link_state (dum);
1594 }
1595
1596 if ((dum->port_status & PORT_C_MASK) != 0) {
1597 *buf = (1 << 1);
1598 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
1599 dum->port_status);
1600 retval = 1;
1601 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1602 usb_hcd_resume_root_hub (hcd);
1603 }
1604 done:
1605 spin_unlock_irqrestore (&dum->lock, flags);
1606 return retval;
1607 }
1608
1609 static inline void
1610 hub_descriptor (struct usb_hub_descriptor *desc)
1611 {
1612 memset (desc, 0, sizeof *desc);
1613 desc->bDescriptorType = 0x29;
1614 desc->bDescLength = 9;
1615 desc->wHubCharacteristics = cpu_to_le16(0x0001);
1616 desc->bNbrPorts = 1;
1617 desc->u.hs.DeviceRemovable[0] = 0xff;
1618 desc->u.hs.DeviceRemovable[1] = 0xff;
1619 }
1620
1621 static int dummy_hub_control (
1622 struct usb_hcd *hcd,
1623 u16 typeReq,
1624 u16 wValue,
1625 u16 wIndex,
1626 char *buf,
1627 u16 wLength
1628 ) {
1629 struct dummy *dum;
1630 int retval = 0;
1631 unsigned long flags;
1632
1633 if (!HCD_HW_ACCESSIBLE(hcd))
1634 return -ETIMEDOUT;
1635
1636 dum = hcd_to_dummy (hcd);
1637 spin_lock_irqsave (&dum->lock, flags);
1638 switch (typeReq) {
1639 case ClearHubFeature:
1640 break;
1641 case ClearPortFeature:
1642 switch (wValue) {
1643 case USB_PORT_FEAT_SUSPEND:
1644 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
1645 /* 20msec resume signaling */
1646 dum->resuming = 1;
1647 dum->re_timeout = jiffies +
1648 msecs_to_jiffies(20);
1649 }
1650 break;
1651 case USB_PORT_FEAT_POWER:
1652 if (dum->port_status & USB_PORT_STAT_POWER)
1653 dev_dbg (dummy_dev(dum), "power-off\n");
1654 /* FALLS THROUGH */
1655 default:
1656 dum->port_status &= ~(1 << wValue);
1657 set_link_state (dum);
1658 }
1659 break;
1660 case GetHubDescriptor:
1661 hub_descriptor ((struct usb_hub_descriptor *) buf);
1662 break;
1663 case GetHubStatus:
1664 *(__le32 *) buf = cpu_to_le32 (0);
1665 break;
1666 case GetPortStatus:
1667 if (wIndex != 1)
1668 retval = -EPIPE;
1669
1670 /* whoever resets or resumes must GetPortStatus to
1671 * complete it!!
1672 */
1673 if (dum->resuming &&
1674 time_after_eq (jiffies, dum->re_timeout)) {
1675 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1676 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1677 }
1678 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1679 time_after_eq (jiffies, dum->re_timeout)) {
1680 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1681 dum->port_status &= ~USB_PORT_STAT_RESET;
1682 if (dum->pullup) {
1683 dum->port_status |= USB_PORT_STAT_ENABLE;
1684 /* give it the best speed we agree on */
1685 dum->gadget.speed = dum->driver->speed;
1686 dum->gadget.ep0->maxpacket = 64;
1687 switch (dum->gadget.speed) {
1688 case USB_SPEED_HIGH:
1689 dum->port_status |=
1690 USB_PORT_STAT_HIGH_SPEED;
1691 break;
1692 case USB_SPEED_LOW:
1693 dum->gadget.ep0->maxpacket = 8;
1694 dum->port_status |=
1695 USB_PORT_STAT_LOW_SPEED;
1696 break;
1697 default:
1698 dum->gadget.speed = USB_SPEED_FULL;
1699 break;
1700 }
1701 }
1702 }
1703 set_link_state (dum);
1704 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1705 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1706 break;
1707 case SetHubFeature:
1708 retval = -EPIPE;
1709 break;
1710 case SetPortFeature:
1711 switch (wValue) {
1712 case USB_PORT_FEAT_SUSPEND:
1713 if (dum->active) {
1714 dum->port_status |= USB_PORT_STAT_SUSPEND;
1715
1716 /* HNP would happen here; for now we
1717 * assume b_bus_req is always true.
1718 */
1719 set_link_state (dum);
1720 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1721 & dum->devstatus) != 0)
1722 dev_dbg (dummy_dev(dum),
1723 "no HNP yet!\n");
1724 }
1725 break;
1726 case USB_PORT_FEAT_POWER:
1727 dum->port_status |= USB_PORT_STAT_POWER;
1728 set_link_state (dum);
1729 break;
1730 case USB_PORT_FEAT_RESET:
1731 /* if it's already enabled, disable */
1732 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1733 | USB_PORT_STAT_LOW_SPEED
1734 | USB_PORT_STAT_HIGH_SPEED);
1735 dum->devstatus = 0;
1736 /* 50msec reset signaling */
1737 dum->re_timeout = jiffies + msecs_to_jiffies(50);
1738 /* FALLS THROUGH */
1739 default:
1740 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1741 dum->port_status |= (1 << wValue);
1742 set_link_state (dum);
1743 }
1744 }
1745 break;
1746
1747 default:
1748 dev_dbg (dummy_dev(dum),
1749 "hub control req%04x v%04x i%04x l%d\n",
1750 typeReq, wValue, wIndex, wLength);
1751
1752 /* "protocol stall" on error */
1753 retval = -EPIPE;
1754 }
1755 spin_unlock_irqrestore (&dum->lock, flags);
1756
1757 if ((dum->port_status & PORT_C_MASK) != 0)
1758 usb_hcd_poll_rh_status (hcd);
1759 return retval;
1760 }
1761
1762 static int dummy_bus_suspend (struct usb_hcd *hcd)
1763 {
1764 struct dummy *dum = hcd_to_dummy (hcd);
1765
1766 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __func__);
1767
1768 spin_lock_irq (&dum->lock);
1769 dum->rh_state = DUMMY_RH_SUSPENDED;
1770 set_link_state (dum);
1771 hcd->state = HC_STATE_SUSPENDED;
1772 spin_unlock_irq (&dum->lock);
1773 return 0;
1774 }
1775
1776 static int dummy_bus_resume (struct usb_hcd *hcd)
1777 {
1778 struct dummy *dum = hcd_to_dummy (hcd);
1779 int rc = 0;
1780
1781 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __func__);
1782
1783 spin_lock_irq (&dum->lock);
1784 if (!HCD_HW_ACCESSIBLE(hcd)) {
1785 rc = -ESHUTDOWN;
1786 } else {
1787 dum->rh_state = DUMMY_RH_RUNNING;
1788 set_link_state (dum);
1789 if (!list_empty(&dum->urbp_list))
1790 mod_timer (&dum->timer, jiffies);
1791 hcd->state = HC_STATE_RUNNING;
1792 }
1793 spin_unlock_irq (&dum->lock);
1794 return rc;
1795 }
1796
1797 /*-------------------------------------------------------------------------*/
1798
1799 static inline ssize_t
1800 show_urb (char *buf, size_t size, struct urb *urb)
1801 {
1802 int ep = usb_pipeendpoint (urb->pipe);
1803
1804 return snprintf (buf, size,
1805 "urb/%p %s ep%d%s%s len %d/%d\n",
1806 urb,
1807 ({ char *s;
1808 switch (urb->dev->speed) {
1809 case USB_SPEED_LOW:
1810 s = "ls";
1811 break;
1812 case USB_SPEED_FULL:
1813 s = "fs";
1814 break;
1815 case USB_SPEED_HIGH:
1816 s = "hs";
1817 break;
1818 default:
1819 s = "?";
1820 break;
1821 }; s; }),
1822 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1823 ({ char *s; \
1824 switch (usb_pipetype (urb->pipe)) { \
1825 case PIPE_CONTROL: \
1826 s = ""; \
1827 break; \
1828 case PIPE_BULK: \
1829 s = "-bulk"; \
1830 break; \
1831 case PIPE_INTERRUPT: \
1832 s = "-int"; \
1833 break; \
1834 default: \
1835 s = "-iso"; \
1836 break; \
1837 }; s;}),
1838 urb->actual_length, urb->transfer_buffer_length);
1839 }
1840
1841 static ssize_t
1842 show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
1843 {
1844 struct usb_hcd *hcd = dev_get_drvdata (dev);
1845 struct dummy *dum = hcd_to_dummy (hcd);
1846 struct urbp *urbp;
1847 size_t size = 0;
1848 unsigned long flags;
1849
1850 spin_lock_irqsave (&dum->lock, flags);
1851 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1852 size_t temp;
1853
1854 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1855 buf += temp;
1856 size += temp;
1857 }
1858 spin_unlock_irqrestore (&dum->lock, flags);
1859
1860 return size;
1861 }
1862 static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1863
1864 static int dummy_start (struct usb_hcd *hcd)
1865 {
1866 struct dummy *dum;
1867
1868 dum = hcd_to_dummy (hcd);
1869
1870 /*
1871 * MASTER side init ... we emulate a root hub that'll only ever
1872 * talk to one device (the slave side). Also appears in sysfs,
1873 * just like more familiar pci-based HCDs.
1874 */
1875 spin_lock_init (&dum->lock);
1876 init_timer (&dum->timer);
1877 dum->timer.function = dummy_timer;
1878 dum->timer.data = (unsigned long) dum;
1879 dum->rh_state = DUMMY_RH_RUNNING;
1880
1881 INIT_LIST_HEAD (&dum->urbp_list);
1882
1883 hcd->power_budget = POWER_BUDGET;
1884 hcd->state = HC_STATE_RUNNING;
1885 hcd->uses_new_polling = 1;
1886
1887 #ifdef CONFIG_USB_OTG
1888 hcd->self.otg_port = 1;
1889 #endif
1890
1891 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1892 return device_create_file (dummy_dev(dum), &dev_attr_urbs);
1893 }
1894
1895 static void dummy_stop (struct usb_hcd *hcd)
1896 {
1897 struct dummy *dum;
1898
1899 dum = hcd_to_dummy (hcd);
1900
1901 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
1902 dev_info (dummy_dev(dum), "stopped\n");
1903 }
1904
1905 /*-------------------------------------------------------------------------*/
1906
1907 static int dummy_h_get_frame (struct usb_hcd *hcd)
1908 {
1909 return dummy_g_get_frame (NULL);
1910 }
1911
1912 static const struct hc_driver dummy_hcd = {
1913 .description = (char *) driver_name,
1914 .product_desc = "Dummy host controller",
1915 .hcd_priv_size = sizeof(struct dummy),
1916
1917 .flags = HCD_USB2,
1918
1919 .start = dummy_start,
1920 .stop = dummy_stop,
1921
1922 .urb_enqueue = dummy_urb_enqueue,
1923 .urb_dequeue = dummy_urb_dequeue,
1924
1925 .get_frame_number = dummy_h_get_frame,
1926
1927 .hub_status_data = dummy_hub_status,
1928 .hub_control = dummy_hub_control,
1929 .bus_suspend = dummy_bus_suspend,
1930 .bus_resume = dummy_bus_resume,
1931 };
1932
1933 static int dummy_hcd_probe(struct platform_device *pdev)
1934 {
1935 struct usb_hcd *hcd;
1936 int retval;
1937
1938 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1939
1940 hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev));
1941 if (!hcd)
1942 return -ENOMEM;
1943 the_controller = hcd_to_dummy (hcd);
1944 hcd->has_tt = 1;
1945
1946 retval = usb_add_hcd(hcd, 0, 0);
1947 if (retval != 0) {
1948 usb_put_hcd (hcd);
1949 the_controller = NULL;
1950 }
1951 return retval;
1952 }
1953
1954 static int dummy_hcd_remove (struct platform_device *pdev)
1955 {
1956 struct usb_hcd *hcd;
1957
1958 hcd = platform_get_drvdata (pdev);
1959 usb_remove_hcd (hcd);
1960 usb_put_hcd (hcd);
1961 the_controller = NULL;
1962 return 0;
1963 }
1964
1965 static int dummy_hcd_suspend (struct platform_device *pdev, pm_message_t state)
1966 {
1967 struct usb_hcd *hcd;
1968 struct dummy *dum;
1969 int rc = 0;
1970
1971 dev_dbg (&pdev->dev, "%s\n", __func__);
1972
1973 hcd = platform_get_drvdata (pdev);
1974 dum = hcd_to_dummy (hcd);
1975 if (dum->rh_state == DUMMY_RH_RUNNING) {
1976 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
1977 rc = -EBUSY;
1978 } else
1979 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1980 return rc;
1981 }
1982
1983 static int dummy_hcd_resume (struct platform_device *pdev)
1984 {
1985 struct usb_hcd *hcd;
1986
1987 dev_dbg (&pdev->dev, "%s\n", __func__);
1988
1989 hcd = platform_get_drvdata (pdev);
1990 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1991 usb_hcd_poll_rh_status (hcd);
1992 return 0;
1993 }
1994
1995 static struct platform_driver dummy_hcd_driver = {
1996 .probe = dummy_hcd_probe,
1997 .remove = dummy_hcd_remove,
1998 .suspend = dummy_hcd_suspend,
1999 .resume = dummy_hcd_resume,
2000 .driver = {
2001 .name = (char *) driver_name,
2002 .owner = THIS_MODULE,
2003 },
2004 };
2005
2006 /*-------------------------------------------------------------------------*/
2007
2008 static struct platform_device *the_udc_pdev;
2009 static struct platform_device *the_hcd_pdev;
2010
2011 static int __init init (void)
2012 {
2013 int retval = -ENOMEM;
2014
2015 if (usb_disabled ())
2016 return -ENODEV;
2017
2018 the_hcd_pdev = platform_device_alloc(driver_name, -1);
2019 if (!the_hcd_pdev)
2020 return retval;
2021 the_udc_pdev = platform_device_alloc(gadget_name, -1);
2022 if (!the_udc_pdev)
2023 goto err_alloc_udc;
2024
2025 retval = platform_driver_register(&dummy_hcd_driver);
2026 if (retval < 0)
2027 goto err_register_hcd_driver;
2028 retval = platform_driver_register(&dummy_udc_driver);
2029 if (retval < 0)
2030 goto err_register_udc_driver;
2031
2032 retval = platform_device_add(the_hcd_pdev);
2033 if (retval < 0)
2034 goto err_add_hcd;
2035 if (!the_controller) {
2036 /*
2037 * The hcd was added successfully but its probe function failed
2038 * for some reason.
2039 */
2040 retval = -EINVAL;
2041 goto err_add_udc;
2042 }
2043 retval = platform_device_add(the_udc_pdev);
2044 if (retval < 0)
2045 goto err_add_udc;
2046 if (!platform_get_drvdata(the_udc_pdev)) {
2047 /*
2048 * The udc was added successfully but its probe function failed
2049 * for some reason.
2050 */
2051 retval = -EINVAL;
2052 goto err_probe_udc;
2053 }
2054 return retval;
2055
2056 err_probe_udc:
2057 platform_device_del(the_udc_pdev);
2058 err_add_udc:
2059 platform_device_del(the_hcd_pdev);
2060 err_add_hcd:
2061 platform_driver_unregister(&dummy_udc_driver);
2062 err_register_udc_driver:
2063 platform_driver_unregister(&dummy_hcd_driver);
2064 err_register_hcd_driver:
2065 platform_device_put(the_udc_pdev);
2066 err_alloc_udc:
2067 platform_device_put(the_hcd_pdev);
2068 return retval;
2069 }
2070 module_init (init);
2071
2072 static void __exit cleanup (void)
2073 {
2074 platform_device_unregister(the_udc_pdev);
2075 platform_device_unregister(the_hcd_pdev);
2076 platform_driver_unregister(&dummy_udc_driver);
2077 platform_driver_unregister(&dummy_hcd_driver);
2078 }
2079 module_exit (cleanup);
This page took 0.08188 seconds and 5 git commands to generate.