This commit was manufactured by cvs2svn to create tag
[linux-2.6.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, 2004 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 #define DEBUG
38
39 #include <linux/config.h>
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/delay.h>
43 #include <linux/ioport.h>
44 #include <linux/sched.h>
45 #include <linux/slab.h>
46 #include <linux/smp_lock.h>
47 #include <linux/errno.h>
48 #include <linux/init.h>
49 #include <linux/timer.h>
50 #include <linux/list.h>
51 #include <linux/interrupt.h>
52 #include <linux/version.h>
53
54 #include <linux/usb.h>
55 #include <linux/usb_gadget.h>
56
57 #include <asm/byteorder.h>
58 #include <asm/io.h>
59 #include <asm/irq.h>
60 #include <asm/system.h>
61 #include <asm/unaligned.h>
62
63
64 #include "../core/hcd.h"
65
66
67 #define DRIVER_DESC     "USB Host+Gadget Emulator"
68 #define DRIVER_VERSION  "14 Mar 2004"
69
70 static const char       driver_name [] = "dummy_hcd";
71 static const char       driver_desc [] = "USB Host+Gadget Emulator";
72
73 static const char       gadget_name [] = "dummy_udc";
74
75 MODULE_DESCRIPTION (DRIVER_DESC);
76 MODULE_AUTHOR ("David Brownell");
77 MODULE_LICENSE ("GPL");
78
79 /*-------------------------------------------------------------------------*/
80
81 /* gadget side driver data structres */
82 struct dummy_ep {
83         struct list_head                queue;
84         unsigned long                   last_io;        /* jiffies timestamp */
85         struct usb_gadget               *gadget;
86         const struct usb_endpoint_descriptor *desc;
87         struct usb_ep                   ep;
88         unsigned                        halted : 1;
89         unsigned                        already_seen : 1;
90         unsigned                        setup_stage : 1;
91 };
92
93 struct dummy_request {
94         struct list_head                queue;          /* ep's requests */
95         struct usb_request              req;
96 };
97
98 /*-------------------------------------------------------------------------*/
99
100 /*
101  * Every device has ep0 for control requests, plus up to 30 more endpoints,
102  * in one of two types:
103  *
104  *   - Configurable:  direction (in/out), type (bulk, iso, etc), and endpoint
105  *     number can be changed.  Names like "ep-a" are used for this type.
106  *
107  *   - Fixed Function:  in other cases.  some characteristics may be mutable;
108  *     that'd be hardware-specific.  Names like "ep12out-bulk" are used.
109  *
110  * Gadget drivers are responsible for not setting up conflicting endpoint
111  * configurations, illegal or unsupported packet lengths, and so on.
112  */
113
114 static const char ep0name [] = "ep0";
115
116 static const char *const ep_name [] = {
117         ep0name,                                /* everyone has ep0 */
118
119         /* act like a net2280: high speed, six configurable endpoints */
120         "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
121
122         /* or like pxa250: fifteen fixed function endpoints */
123         "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
124         "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
125         "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
126                 "ep15in-int",
127
128         /* or like sa1100: two fixed function endpoints */
129         "ep1out-bulk", "ep2in-bulk",
130 };
131 #define DUMMY_ENDPOINTS (sizeof(ep_name)/sizeof(char *))
132
133 #define FIFO_SIZE               64
134
135 struct dummy {
136         spinlock_t                      lock;
137
138         /*
139          * SLAVE/GADGET side support
140          */
141         struct dummy_ep                 ep [DUMMY_ENDPOINTS];
142         int                             address;
143         struct usb_gadget               gadget;
144         struct usb_gadget_driver        *driver;
145         struct dummy_request            fifo_req;
146         u8                              fifo_buf [FIFO_SIZE];
147         u16                             devstatus;
148
149         struct hcd_dev                  *hdev;
150
151         /*
152          * MASTER/HOST side support
153          */
154         struct usb_hcd                  hcd;
155         struct platform_device          pdev;
156         struct timer_list               timer;
157         u32                             port_status;
158         int                             started;
159         struct completion               released;
160         unsigned                        resuming:1;
161         unsigned long                   re_timeout;
162 };
163
164 static struct dummy     *the_controller;
165
166 static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
167 {
168         return container_of (ep->gadget, struct dummy, gadget);
169 }
170
171 static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
172 {
173         return container_of (dev, struct dummy, gadget.dev);
174 }
175
176 /*
177  * This "hardware" may look a bit odd in diagnostics since it's got both
178  * host and device sides; and it binds different drivers to each side.
179  */
180 #define hardware        (&the_controller->pdev.dev)
181
182 /*-------------------------------------------------------------------------*/
183
184 static struct device_driver dummy_driver = {
185         .name           = (char *) driver_name,
186         .bus            = &platform_bus_type,
187 };
188
189 /*-------------------------------------------------------------------------*/
190
191 /* SLAVE/GADGET SIDE DRIVER
192  *
193  * This only tracks gadget state.  All the work is done when the host
194  * side tries some (emulated) i/o operation.  Real device controller
195  * drivers would do real i/o using dma, fifos, irqs, timers, etc.
196  */
197
198 #define is_enabled() \
199         (the_controller->port_status & USB_PORT_STAT_ENABLE)
200
201 static int
202 dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
203 {
204         struct dummy            *dum;
205         struct dummy_ep         *ep;
206         unsigned                max;
207         int                     retval;
208
209         ep = container_of (_ep, struct dummy_ep, ep);
210         if (!_ep || !desc || ep->desc || _ep->name == ep0name
211                         || desc->bDescriptorType != USB_DT_ENDPOINT)
212         if (!the_controller->driver || !is_enabled ())
213                 return -ESHUTDOWN;
214         max = desc->wMaxPacketSize & 0x3ff;
215
216         /* drivers must not request bad settings, since lower levels
217          * (hardware or its drivers) may not check.  some endpoints
218          * can't do iso, many have maxpacket limitations, etc.
219          *
220          * since this "hardware" driver is here to help debugging, we
221          * have some extra sanity checks.  (there could be more though,
222          * especially for "ep9out" style fixed function ones.)
223          */
224         dum = container_of (ep->gadget, struct dummy, gadget);
225         retval = -EINVAL;
226         switch (desc->bmAttributes & 0x03) {
227         case USB_ENDPOINT_XFER_BULK:
228                 if (strstr (ep->ep.name, "-iso")
229                                 || strstr (ep->ep.name, "-int")) {
230                         goto done;
231                 }
232                 switch (dum->gadget.speed) {
233                 case USB_SPEED_HIGH:
234                         if (max == 512)
235                                 break;
236                         /* conserve return statements */
237                 default:
238                         switch (max) {
239                         case 8: case 16: case 32: case 64:
240                                 /* we'll fake any legal size */
241                                 break;
242                         default:
243                 case USB_SPEED_LOW:
244                                 goto done;
245                         }
246                 }
247                 break;
248         case USB_ENDPOINT_XFER_INT:
249                 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
250                         goto done;
251                 /* real hardware might not handle all packet sizes */
252                 switch (dum->gadget.speed) {
253                 case USB_SPEED_HIGH:
254                         if (max <= 1024)
255                                 break;
256                         /* save a return statement */
257                 case USB_SPEED_FULL:
258                         if (max <= 64)
259                                 break;
260                         /* save a return statement */
261                 default:
262                         if (max <= 8)
263                                 break;
264                         goto done;
265                 }
266                 break;
267         case USB_ENDPOINT_XFER_ISOC:
268                 if (strstr (ep->ep.name, "-bulk")
269                                 || strstr (ep->ep.name, "-int"))
270                         goto done;
271                 /* real hardware might not handle all packet sizes */
272                 switch (dum->gadget.speed) {
273                 case USB_SPEED_HIGH:
274                         if (max <= 1024)
275                                 break;
276                         /* save a return statement */
277                 case USB_SPEED_FULL:
278                         if (max <= 1023)
279                                 break;
280                         /* save a return statement */
281                 default:
282                         goto done;
283                 }
284                 break;
285         default:
286                 /* few chips support control except on ep0 */
287                 goto done;
288         }
289
290         _ep->maxpacket = max;
291         ep->desc = desc;
292
293         dev_dbg (hardware, "enabled %s (ep%d%s-%s) maxpacket %d\n",
294                 _ep->name,
295                 desc->bEndpointAddress & 0x0f,
296                 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
297                 ({ char *val;
298                  switch (desc->bmAttributes & 0x03) {
299                  case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
300                  case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
301                  case USB_ENDPOINT_XFER_INT: val = "intr"; break;
302                  default: val = "ctrl"; break;
303                  }; val; }),
304                 max);
305
306         /* at this point real hardware should be NAKing transfers
307          * to that endpoint, until a buffer is queued to it.
308          */
309         retval = 0;
310 done:
311         return retval;
312 }
313
314 /* called with spinlock held */
315 static void nuke (struct dummy *dum, struct dummy_ep *ep)
316 {
317         while (!list_empty (&ep->queue)) {
318                 struct dummy_request    *req;
319
320                 req = list_entry (ep->queue.next, struct dummy_request, queue);
321                 list_del_init (&req->queue);
322                 req->req.status = -ESHUTDOWN;
323
324                 spin_unlock (&dum->lock);
325                 req->req.complete (&ep->ep, &req->req);
326                 spin_lock (&dum->lock);
327         }
328 }
329
330 static int dummy_disable (struct usb_ep *_ep)
331 {
332         struct dummy_ep         *ep;
333         struct dummy            *dum;
334         unsigned long           flags;
335         int                     retval;
336
337         ep = container_of (_ep, struct dummy_ep, ep);
338         if (!_ep || !ep->desc || _ep->name == ep0name)
339                 return -EINVAL;
340         dum = ep_to_dummy (ep);
341
342         spin_lock_irqsave (&dum->lock, flags);
343         ep->desc = 0;
344         retval = 0;
345         nuke (dum, ep);
346         spin_unlock_irqrestore (&dum->lock, flags);
347
348         dev_dbg (hardware, "disabled %s\n", _ep->name);
349         return retval;
350 }
351
352 static struct usb_request *
353 dummy_alloc_request (struct usb_ep *_ep, int mem_flags)
354 {
355         struct dummy_ep         *ep;
356         struct dummy_request    *req;
357
358         ep = container_of (_ep, struct dummy_ep, ep);
359         if (!_ep)
360                 return 0;
361
362         req = kmalloc (sizeof *req, mem_flags);
363         if (!req)
364                 return 0;
365         memset (req, 0, sizeof *req);
366         INIT_LIST_HEAD (&req->queue);
367         return &req->req;
368 }
369
370 static void
371 dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
372 {
373         struct dummy_ep         *ep;
374         struct dummy_request    *req;
375
376         ep = container_of (_ep, struct dummy_ep, ep);
377         if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
378                 return;
379
380         req = container_of (_req, struct dummy_request, req);
381         WARN_ON (!list_empty (&req->queue));
382         kfree (req);
383 }
384
385 static void *
386 dummy_alloc_buffer (
387         struct usb_ep *_ep,
388         unsigned bytes,
389         dma_addr_t *dma,
390         int mem_flags
391 ) {
392         char *retval;
393
394         if (!the_controller->driver)
395                 return 0;
396         retval = kmalloc (bytes, mem_flags);
397         *dma = (dma_addr_t) retval;
398         return retval;
399 }
400
401 static void
402 dummy_free_buffer (
403         struct usb_ep *_ep,
404         void *buf,
405         dma_addr_t dma,
406         unsigned bytes
407 ) {
408         if (bytes)
409                 kfree (buf);
410 }
411
412 static void
413 fifo_complete (struct usb_ep *ep, struct usb_request *req)
414 {
415 #if 0
416         dev_dbg (hardware, "fifo_complete: %d\n", req->status);
417 #endif
418 }
419
420 static int
421 dummy_queue (struct usb_ep *_ep, struct usb_request *_req, int mem_flags)
422 {
423         struct dummy_ep         *ep;
424         struct dummy_request    *req;
425         struct dummy            *dum;
426         unsigned long           flags;
427
428         req = container_of (_req, struct dummy_request, req);
429         if (!_req || !list_empty (&req->queue) || !_req->complete)
430                 return -EINVAL;
431
432         ep = container_of (_ep, struct dummy_ep, ep);
433         if (!_ep || (!ep->desc && _ep->name != ep0name))
434                 return -EINVAL;
435
436         if (!the_controller->driver || !is_enabled ())
437                 return -ESHUTDOWN;
438
439         dum = container_of (ep->gadget, struct dummy, gadget);
440
441 #if 0
442         dev_dbg (hardware, "ep %p queue req %p to %s, len %d buf %p\n",
443                         ep, _req, _ep->name, _req->length, _req->buf);
444 #endif
445
446         _req->status = -EINPROGRESS;
447         _req->actual = 0;
448         spin_lock_irqsave (&dum->lock, flags);
449
450         /* implement an emulated single-request FIFO */
451         if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
452                         list_empty (&dum->fifo_req.queue) &&
453                         list_empty (&ep->queue) &&
454                         _req->length <= FIFO_SIZE) {
455                 req = &dum->fifo_req;
456                 req->req = *_req;
457                 req->req.buf = dum->fifo_buf;
458                 memcpy (dum->fifo_buf, _req->buf, _req->length);
459                 req->req.context = dum;
460                 req->req.complete = fifo_complete;
461
462                 spin_unlock (&dum->lock);
463                 _req->actual = _req->length;
464                 _req->status = 0;
465                 _req->complete (_ep, _req);
466                 spin_lock (&dum->lock);
467         }
468         list_add_tail (&req->queue, &ep->queue);
469         spin_unlock_irqrestore (&dum->lock, flags);
470
471         /* real hardware would likely enable transfers here, in case
472          * it'd been left NAKing.
473          */
474         return 0;
475 }
476
477 static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
478 {
479         struct dummy_ep         *ep;
480         struct dummy            *dum;
481         int                     retval = -EINVAL;
482         unsigned long           flags;
483         struct dummy_request    *req = 0;
484
485         if (!the_controller->driver)
486                 return -ESHUTDOWN;
487
488         if (!_ep || !_req)
489                 return retval;
490         ep = container_of (_ep, struct dummy_ep, ep);
491         dum = container_of (ep->gadget, struct dummy, gadget);
492
493         spin_lock_irqsave (&dum->lock, flags);
494         list_for_each_entry (req, &ep->queue, queue) {
495                 if (&req->req == _req) {
496                         list_del_init (&req->queue);
497                         _req->status = -ECONNRESET;
498                         retval = 0;
499                         break;
500                 }
501         }
502         spin_unlock_irqrestore (&dum->lock, flags);
503
504         if (retval == 0) {
505                 dev_dbg (hardware, "dequeued req %p from %s, len %d buf %p\n",
506                                 req, _ep->name, _req->length, _req->buf);
507
508                 _req->complete (_ep, _req);
509         }
510         return retval;
511 }
512
513 static int
514 dummy_set_halt (struct usb_ep *_ep, int value)
515 {
516         struct dummy_ep         *ep;
517
518         if (!_ep)
519                 return -EINVAL;
520         if (!the_controller->driver)
521                 return -ESHUTDOWN;
522         ep = container_of (_ep, struct dummy_ep, ep);
523         if (!value)
524                 ep->halted = 0;
525         else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
526                         !list_empty (&ep->queue))
527                 return -EAGAIN;
528         else
529                 ep->halted = 1;
530         /* FIXME clear emulated data toggle too */
531         return 0;
532 }
533
534 static const struct usb_ep_ops dummy_ep_ops = {
535         .enable         = dummy_enable,
536         .disable        = dummy_disable,
537
538         .alloc_request  = dummy_alloc_request,
539         .free_request   = dummy_free_request,
540
541         .alloc_buffer   = dummy_alloc_buffer,
542         .free_buffer    = dummy_free_buffer,
543         /* map, unmap, ... eventually hook the "generic" dma calls */
544
545         .queue          = dummy_queue,
546         .dequeue        = dummy_dequeue,
547
548         .set_halt       = dummy_set_halt,
549 };
550
551 /*-------------------------------------------------------------------------*/
552
553 /* there are both host and device side versions of this call ... */
554 static int dummy_g_get_frame (struct usb_gadget *_gadget)
555 {
556         struct timeval  tv;
557
558         do_gettimeofday (&tv);
559         return tv.tv_usec / 1000;
560 }
561
562 static int dummy_wakeup (struct usb_gadget *_gadget)
563 {
564         struct dummy    *dum;
565
566         dum = container_of (_gadget, struct dummy, gadget);
567         if ((dum->devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) == 0
568                         || !(dum->port_status & (1 << USB_PORT_FEAT_SUSPEND)))
569                 return -EINVAL;
570
571         /* hub notices our request, issues downstream resume, etc */
572         dum->resuming = 1;
573         dum->port_status |= (1 << USB_PORT_FEAT_C_SUSPEND);
574         return 0;
575 }
576
577 static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
578 {
579         struct dummy    *dum;
580
581         dum = container_of (_gadget, struct dummy, gadget);
582         if (value)
583                 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
584         else
585                 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
586         return 0;
587 }
588
589 static const struct usb_gadget_ops dummy_ops = {
590         .get_frame      = dummy_g_get_frame,
591         .wakeup         = dummy_wakeup,
592         .set_selfpowered = dummy_set_selfpowered,
593 };
594
595 /*-------------------------------------------------------------------------*/
596
597 /* "function" sysfs attribute */
598 static ssize_t
599 show_function (struct device *_dev, char *buf)
600 {
601         struct dummy    *dum = the_controller;
602
603         if (!dum->driver->function
604                         || strlen (dum->driver->function) > PAGE_SIZE)
605                 return 0;
606         return snprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
607 }
608 DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
609
610 /*-------------------------------------------------------------------------*/
611
612 /*
613  * Driver registration/unregistration.
614  *
615  * This is basically hardware-specific; there's usually only one real USB
616  * device (not host) controller since that's how USB devices are intended
617  * to work.  So most implementations of these api calls will rely on the
618  * fact that only one driver will ever bind to the hardware.  But curious
619  * hardware can be built with discrete components, so the gadget API doesn't
620  * require that assumption.
621  *
622  * For this emulator, it might be convenient to create a usb slave device
623  * for each driver that registers:  just add to a big root hub.
624  */
625
626 static void
627 dummy_udc_release (struct device *dev)
628 {
629         struct dummy    *dum = gadget_dev_to_dummy (dev);
630
631         complete (&dum->released);
632 }
633
634 static void
635 dummy_hc_release (struct device *dev)
636 {
637         struct dummy    *dum = dev_get_drvdata (dev);
638
639         complete (&dum->released);
640 }
641
642 static int
643 dummy_register_udc (struct dummy *dum)
644 {
645         int             rc;
646
647         strcpy (dum->gadget.dev.bus_id, "udc");
648         dum->gadget.dev.parent = &dum->pdev.dev;
649         dum->gadget.dev.release = dummy_udc_release;
650
651         rc = device_register (&dum->gadget.dev);
652         if (rc == 0)
653                 device_create_file (&dum->gadget.dev, &dev_attr_function);
654         return rc;
655 }
656
657 static void
658 dummy_unregister_udc (struct dummy *dum)
659 {
660         device_remove_file (&dum->gadget.dev, &dev_attr_function);
661         init_completion (&dum->released);
662         device_unregister (&dum->gadget.dev);
663         wait_for_completion (&dum->released);
664 }
665
666 int
667 usb_gadget_register_driver (struct usb_gadget_driver *driver)
668 {
669         struct dummy    *dum = the_controller;
670         int             retval, i;
671
672         if (!dum)
673                 return -EINVAL;
674         if (dum->driver)
675                 return -EBUSY;
676         if (!driver->bind || !driver->unbind || !driver->setup
677                         || driver->speed == USB_SPEED_UNKNOWN)
678                 return -EINVAL;
679
680         /*
681          * SLAVE side init ... the layer above hardware, which
682          * can't enumerate without help from the driver we're binding.
683          */
684         dum->gadget.name = gadget_name;
685         dum->gadget.ops = &dummy_ops;
686         dum->gadget.is_dualspeed = 1;
687
688         dum->devstatus = 0;
689         dum->resuming = 0;
690
691         INIT_LIST_HEAD (&dum->gadget.ep_list);
692         for (i = 0; i < DUMMY_ENDPOINTS; i++) {
693                 struct dummy_ep *ep = &dum->ep [i];
694
695                 if (!ep_name [i])
696                         break;
697                 ep->ep.name = ep_name [i];
698                 ep->ep.ops = &dummy_ep_ops;
699                 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
700                 ep->halted = ep->already_seen = ep->setup_stage = 0;
701                 ep->ep.maxpacket = ~0;
702                 ep->last_io = jiffies;
703                 ep->gadget = &dum->gadget;
704                 ep->desc = 0;
705                 INIT_LIST_HEAD (&ep->queue);
706         }
707
708         dum->gadget.ep0 = &dum->ep [0].ep;
709         dum->ep [0].ep.maxpacket = 64;
710         list_del_init (&dum->ep [0].ep.ep_list);
711         INIT_LIST_HEAD(&dum->fifo_req.queue);
712
713         dum->driver = driver;
714         dum->gadget.dev.driver = &driver->driver;
715         dev_dbg (hardware, "binding gadget driver '%s'\n", driver->driver.name);
716         if ((retval = driver->bind (&dum->gadget)) != 0) {
717                 dum->driver = 0;
718                 dum->gadget.dev.driver = 0;
719                 return retval;
720         }
721
722         // FIXME: Check these calls for errors and re-order
723         driver->driver.bus = dum->pdev.dev.bus;
724         driver_register (&driver->driver);
725
726         device_bind_driver (&dum->gadget.dev);
727
728         /* khubd will enumerate this in a while */
729         dum->port_status |= USB_PORT_STAT_CONNECTION
730                 | (1 << USB_PORT_FEAT_C_CONNECTION);
731         return 0;
732 }
733 EXPORT_SYMBOL (usb_gadget_register_driver);
734
735 /* caller must hold lock */
736 static void
737 stop_activity (struct dummy *dum, struct usb_gadget_driver *driver)
738 {
739         struct dummy_ep *ep;
740
741         /* prevent any more requests */
742         dum->hdev = 0;
743         dum->address = 0;
744
745         /* this might not succeed ... */
746         del_timer (&dum->timer);
747
748         /* nuke any pending requests first, so driver i/o is quiesced */
749         list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
750                 nuke (dum, ep);
751
752         /* driver now does any non-usb quiescing necessary */
753         if (driver) {
754                 spin_unlock (&dum->lock);
755                 driver->disconnect (&dum->gadget);
756                 spin_lock (&dum->lock);
757         }
758 }
759
760 int
761 usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
762 {
763         struct dummy    *dum = the_controller;
764         unsigned long   flags;
765
766         if (!dum)
767                 return -ENODEV;
768         if (!driver || driver != dum->driver)
769                 return -EINVAL;
770
771         dev_dbg (hardware, "unregister gadget driver '%s'\n",
772                         driver->driver.name);
773
774         spin_lock_irqsave (&dum->lock, flags);
775         stop_activity (dum, driver);
776         dum->port_status &= ~USB_PORT_STAT_CONNECTION;
777         dum->port_status |= (1 << USB_PORT_FEAT_C_CONNECTION);
778         spin_unlock_irqrestore (&dum->lock, flags);
779
780         driver->unbind (&dum->gadget);
781         dum->driver = 0;
782
783         device_release_driver (&dum->gadget.dev);
784
785         driver_unregister (&driver->driver);
786
787         del_timer_sync (&dum->timer);
788         return 0;
789 }
790 EXPORT_SYMBOL (usb_gadget_unregister_driver);
791
792 #undef is_enabled
793
794 int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
795 {
796         return -ENOSYS;
797 }
798 EXPORT_SYMBOL (net2280_set_fifo_mode);
799
800 /*-------------------------------------------------------------------------*/
801
802 /* MASTER/HOST SIDE DRIVER
803  *
804  * this uses the hcd framework to hook up to host side drivers.
805  * its root hub will only have one device, otherwise it acts like
806  * a normal host controller.
807  *
808  * when urbs are queued, they're just stuck on a list that we
809  * scan in a timer callback.  that callback connects writes from
810  * the host with reads from the device, and so on, based on the
811  * usb 2.0 rules.
812  */
813
814 static int dummy_urb_enqueue (
815         struct usb_hcd  *hcd,
816         struct urb      *urb,
817         int             mem_flags
818 ) {
819         struct dummy    *dum;
820         unsigned long   flags;
821
822         /* patch to usb_sg_init() is in 2.5.60 */
823         BUG_ON (!urb->transfer_buffer && urb->transfer_buffer_length);
824
825         dum = container_of (hcd, struct dummy, hcd);
826         spin_lock_irqsave (&dum->lock, flags);
827
828         dum->hdev = urb->dev->hcpriv;
829         urb->hcpriv = dum;
830         if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
831                 urb->error_count = 1;           /* mark as a new urb */
832
833         /* kick the scheduler, it'll do the rest */
834         if (!timer_pending (&dum->timer))
835                 mod_timer (&dum->timer, jiffies + 1);
836
837         spin_unlock_irqrestore (&dum->lock, flags);
838         return 0;
839 }
840
841 static int dummy_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
842 {
843         /* giveback happens automatically in timer callback */
844         return 0;
845 }
846
847 static void maybe_set_status (struct urb *urb, int status)
848 {
849         spin_lock (&urb->lock);
850         if (urb->status == -EINPROGRESS)
851                 urb->status = status;
852         spin_unlock (&urb->lock);
853 }
854
855 /* transfer up to a frame's worth; caller must own lock */
856 static int
857 transfer (struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit)
858 {
859         struct dummy_request    *req;
860
861 top:
862         /* if there's no request queued, the device is NAKing; return */
863         list_for_each_entry (req, &ep->queue, queue) {
864                 unsigned        host_len, dev_len, len;
865                 int             is_short, to_host;
866                 int             rescan = 0;
867
868                 /* 1..N packets of ep->ep.maxpacket each ... the last one
869                  * may be short (including zero length).
870                  *
871                  * writer can send a zlp explicitly (length 0) or implicitly
872                  * (length mod maxpacket zero, and 'zero' flag); they always
873                  * terminate reads.
874                  */
875                 host_len = urb->transfer_buffer_length - urb->actual_length;
876                 dev_len = req->req.length - req->req.actual;
877                 len = min (host_len, dev_len);
878
879                 /* FIXME update emulated data toggle too */
880
881                 to_host = usb_pipein (urb->pipe);
882                 if (unlikely (len == 0))
883                         is_short = 1;
884                 else {
885                         char            *ubuf, *rbuf;
886
887                         /* not enough bandwidth left? */
888                         if (limit < ep->ep.maxpacket && limit < len)
889                                 break;
890                         len = min (len, (unsigned) limit);
891                         if (len == 0)
892                                 break;
893
894                         /* use an extra pass for the final short packet */
895                         if (len > ep->ep.maxpacket) {
896                                 rescan = 1;
897                                 len -= (len % ep->ep.maxpacket);
898                         }
899                         is_short = (len % ep->ep.maxpacket) != 0;
900
901                         /* else transfer packet(s) */
902                         ubuf = urb->transfer_buffer + urb->actual_length;
903                         rbuf = req->req.buf + req->req.actual;
904                         if (to_host)
905                                 memcpy (ubuf, rbuf, len);
906                         else
907                                 memcpy (rbuf, ubuf, len);
908                         ep->last_io = jiffies;
909
910                         limit -= len;
911                         urb->actual_length += len;
912                         req->req.actual += len;
913                 }
914
915                 /* short packets terminate, maybe with overflow/underflow.
916                  * it's only really an error to write too much.
917                  *
918                  * partially filling a buffer optionally blocks queue advances
919                  * (so completion handlers can clean up the queue) but we don't
920                  * need to emulate such data-in-flight.  so we only show part
921                  * of the URB_SHORT_NOT_OK effect: completion status.
922                  */
923                 if (is_short) {
924                         if (host_len == dev_len) {
925                                 req->req.status = 0;
926                                 maybe_set_status (urb, 0);
927                         } else if (to_host) {
928                                 req->req.status = 0;
929                                 if (dev_len > host_len)
930                                         maybe_set_status (urb, -EOVERFLOW);
931                                 else
932                                         maybe_set_status (urb,
933                                                 (urb->transfer_flags
934                                                         & URB_SHORT_NOT_OK)
935                                                 ? -EREMOTEIO : 0);
936                         } else if (!to_host) {
937                                 maybe_set_status (urb, 0);
938                                 if (host_len > dev_len)
939                                         req->req.status = -EOVERFLOW;
940                                 else
941                                         req->req.status = 0;
942                         }
943
944                 /* many requests terminate without a short packet */
945                 } else {
946                         if (req->req.length == req->req.actual
947                                         && !req->req.zero)
948                                 req->req.status = 0;
949                         if (urb->transfer_buffer_length == urb->actual_length
950                                         && !(urb->transfer_flags
951                                                 & URB_ZERO_PACKET)) {
952                                 maybe_set_status (urb, 0);
953                         }
954                 }
955
956                 /* device side completion --> continuable */
957                 if (req->req.status != -EINPROGRESS) {
958                         list_del_init (&req->queue);
959
960                         spin_unlock (&dum->lock);
961                         req->req.complete (&ep->ep, &req->req);
962                         spin_lock (&dum->lock);
963
964                         /* requests might have been unlinked... */
965                         rescan = 1;
966                 }
967
968                 /* host side completion --> terminate */
969                 if (urb->status != -EINPROGRESS)
970                         break;
971
972                 /* rescan to continue with any other queued i/o */
973                 if (rescan)
974                         goto top;
975         }
976         return limit;
977 }
978
979 static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
980 {
981         int     limit = ep->ep.maxpacket;
982
983         if (dum->gadget.speed == USB_SPEED_HIGH) {
984                 int     tmp;
985
986                 /* high bandwidth mode */
987                 tmp = ep->desc->wMaxPacketSize;
988                 tmp = le16_to_cpu (tmp);
989                 tmp = (tmp >> 11) & 0x03;
990                 tmp *= 8 /* applies to entire frame */;
991                 limit += limit * tmp;
992         }
993         return limit;
994 }
995
996 #define is_active(dum)  ((dum->port_status & \
997                 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
998                         USB_PORT_STAT_SUSPEND)) \
999                 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1000
1001 static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1002 {
1003         int             i;
1004
1005         if (!is_active (dum))
1006                 return NULL;
1007         if ((address & ~USB_DIR_IN) == 0)
1008                 return &dum->ep [0];
1009         for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1010                 struct dummy_ep *ep = &dum->ep [i];
1011
1012                 if (!ep->desc)
1013                         continue;
1014                 if (ep->desc->bEndpointAddress == address)
1015                         return ep;
1016         }
1017         return NULL;
1018 }
1019
1020 #undef is_active
1021
1022 #define Dev_Request     (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1023 #define Dev_InRequest   (Dev_Request | USB_DIR_IN)
1024 #define Intf_Request    (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1025 #define Intf_InRequest  (Intf_Request | USB_DIR_IN)
1026 #define Ep_Request      (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1027 #define Ep_InRequest    (Ep_Request | USB_DIR_IN)
1028
1029 /* drive both sides of the transfers; looks like irq handlers to
1030  * both drivers except the callbacks aren't in_irq().
1031  */
1032 static void dummy_timer (unsigned long _dum)
1033 {
1034         struct dummy            *dum = (struct dummy *) _dum;
1035         struct hcd_dev          *hdev = dum->hdev;
1036         struct list_head        *entry, *tmp;
1037         unsigned long           flags;
1038         int                     limit, total;
1039         int                     i;
1040
1041         if (!hdev) {
1042                 dev_err (hardware, "timer fired with device gone?\n");
1043                 return;
1044         }
1045
1046         /* simplistic model for one frame's bandwidth */
1047         switch (dum->gadget.speed) {
1048         case USB_SPEED_LOW:
1049                 total = 8/*bytes*/ * 12/*packets*/;
1050                 break;
1051         case USB_SPEED_FULL:
1052                 total = 64/*bytes*/ * 19/*packets*/;
1053                 break;
1054         case USB_SPEED_HIGH:
1055                 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1056                 break;
1057         default:
1058                 dev_err (hardware, "bogus device speed\n");
1059                 return;
1060         }
1061
1062         /* FIXME if HZ != 1000 this will probably misbehave ... */
1063
1064         /* look at each urb queued by the host side driver */
1065         spin_lock_irqsave (&dum->lock, flags);
1066         for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1067                 if (!ep_name [i])
1068                         break;
1069                 dum->ep [i].already_seen = 0;
1070         }
1071
1072 restart:
1073         list_for_each_safe (entry, tmp, &hdev->urb_list) {
1074                 struct urb              *urb;
1075                 struct dummy_request    *req;
1076                 u8                      address;
1077                 struct dummy_ep         *ep = 0;
1078                 int                     type;
1079
1080                 urb = list_entry (entry, struct urb, urb_list);
1081                 if (urb->status != -EINPROGRESS) {
1082                         /* likely it was just unlinked */
1083                         goto return_urb;
1084                 }
1085                 type = usb_pipetype (urb->pipe);
1086
1087                 /* used up this frame's non-periodic bandwidth?
1088                  * FIXME there's infinite bandwidth for control and
1089                  * periodic transfers ... unrealistic.
1090                  */
1091                 if (total <= 0 && type == PIPE_BULK)
1092                         continue;
1093
1094                 /* find the gadget's ep for this request (if configured) */
1095                 address = usb_pipeendpoint (urb->pipe);
1096                 if (usb_pipein (urb->pipe))
1097                         address |= USB_DIR_IN;
1098                 ep = find_endpoint(dum, address);
1099                 if (!ep) {
1100                         /* set_configuration() disagreement */
1101                         dev_err (hardware,
1102                                 "no ep configured for urb %p\n",
1103                                 urb);
1104                         maybe_set_status (urb, -ETIMEDOUT);
1105                         goto return_urb;
1106                 }
1107
1108                 if (ep->already_seen)
1109                         continue;
1110                 ep->already_seen = 1;
1111                 if (ep == &dum->ep [0] && urb->error_count) {
1112                         ep->setup_stage = 1;    /* a new urb */
1113                         urb->error_count = 0;
1114                 }
1115                 if (ep->halted && !ep->setup_stage) {
1116                         /* NOTE: must not be iso! */
1117                         dev_dbg (hardware, "ep %s halted, urb %p\n",
1118                                         ep->ep.name, urb);
1119                         maybe_set_status (urb, -EPIPE);
1120                         goto return_urb;
1121                 }
1122                 /* FIXME make sure both ends agree on maxpacket */
1123
1124                 /* handle control requests */
1125                 if (ep == &dum->ep [0] && ep->setup_stage) {
1126                         struct usb_ctrlrequest          setup;
1127                         int                             value = 1;
1128                         struct dummy_ep                 *ep2;
1129
1130                         setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1131                         le16_to_cpus (&setup.wIndex);
1132                         le16_to_cpus (&setup.wValue);
1133                         le16_to_cpus (&setup.wLength);
1134                         if (setup.wLength != urb->transfer_buffer_length) {
1135                                 maybe_set_status (urb, -EOVERFLOW);
1136                                 goto return_urb;
1137                         }
1138
1139                         /* paranoia, in case of stale queued data */
1140                         list_for_each_entry (req, &ep->queue, queue) {
1141                                 list_del_init (&req->queue);
1142                                 req->req.status = -EOVERFLOW;
1143                                 dev_dbg (hardware, "stale req = %p\n", req);
1144
1145                                 spin_unlock (&dum->lock);
1146                                 req->req.complete (&ep->ep, &req->req);
1147                                 spin_lock (&dum->lock);
1148                                 ep->already_seen = 0;
1149                                 goto restart;
1150                         }
1151
1152                         /* gadget driver never sees set_address or operations
1153                          * on standard feature flags.  some hardware doesn't
1154                          * even expose them.
1155                          */
1156                         ep->last_io = jiffies;
1157                         ep->setup_stage = 0;
1158                         ep->halted = 0;
1159                         switch (setup.bRequest) {
1160                         case USB_REQ_SET_ADDRESS:
1161                                 if (setup.bRequestType != Dev_Request)
1162                                         break;
1163                                 dum->address = setup.wValue;
1164                                 maybe_set_status (urb, 0);
1165                                 dev_dbg (hardware, "set_address = %d\n",
1166                                                 setup.wValue);
1167                                 value = 0;
1168                                 break;
1169                         case USB_REQ_SET_FEATURE:
1170                                 if (setup.bRequestType == Dev_Request) {
1171                                         value = 0;
1172                                         switch (setup.wValue) {
1173                                         case USB_DEVICE_REMOTE_WAKEUP:
1174                                                 break;
1175                                         default:
1176                                                 value = -EOPNOTSUPP;
1177                                         }
1178                                         if (value == 0) {
1179                                                 dum->devstatus |=
1180                                                         (1 << setup.wValue);
1181                                                 maybe_set_status (urb, 0);
1182                                         }
1183
1184                                 } else if (setup.bRequestType == Ep_Request) {
1185                                         // endpoint halt
1186                                         ep2 = find_endpoint (dum,
1187                                                         setup.wIndex);
1188                                         if (!ep2) {
1189                                                 value = -EOPNOTSUPP;
1190                                                 break;
1191                                         }
1192                                         ep2->halted = 1;
1193                                         value = 0;
1194                                         maybe_set_status (urb, 0);
1195                                 }
1196                                 break;
1197                         case USB_REQ_CLEAR_FEATURE:
1198                                 if (setup.bRequestType == Dev_Request) {
1199                                         switch (setup.wValue) {
1200                                         case USB_DEVICE_REMOTE_WAKEUP:
1201                                                 dum->devstatus &= ~(1 <<
1202                                                         USB_DEVICE_REMOTE_WAKEUP);
1203                                                 value = 0;
1204                                                 maybe_set_status (urb, 0);
1205                                                 break;
1206                                         default:
1207                                                 value = -EOPNOTSUPP;
1208                                                 break;
1209                                         }
1210                                 } else if (setup.bRequestType == Ep_Request) {
1211                                         // endpoint halt
1212                                         ep2 = find_endpoint (dum,
1213                                                         setup.wIndex);
1214                                         if (!ep2) {
1215                                                 value = -EOPNOTSUPP;
1216                                                 break;
1217                                         }
1218                                         ep2->halted = 0;
1219                                         value = 0;
1220                                         maybe_set_status (urb, 0);
1221                                 }
1222                                 break;
1223                         case USB_REQ_GET_STATUS:
1224                                 if (setup.bRequestType == Dev_InRequest
1225                                                 || setup.bRequestType
1226                                                         == Intf_InRequest
1227                                                 || setup.bRequestType
1228                                                         == Ep_InRequest
1229                                                 ) {
1230                                         char *buf;
1231
1232                                         // device: remote wakeup, selfpowered
1233                                         // interface: nothing
1234                                         // endpoint: halt
1235                                         buf = (char *)urb->transfer_buffer;
1236                                         if (urb->transfer_buffer_length > 0) {
1237                                                 if (setup.bRequestType ==
1238                                                                 Ep_InRequest) {
1239         ep2 = find_endpoint (dum, setup.wIndex);
1240         if (!ep2) {
1241                 value = -EOPNOTSUPP;
1242                 break;
1243         }
1244         buf [0] = ep2->halted;
1245                                                 } else if (setup.bRequestType ==
1246                                                                 Dev_InRequest) {
1247                                                         buf [0] = (u8)
1248                                                                 dum->devstatus;
1249                                                 } else
1250                                                         buf [0] = 0;
1251                                         }
1252                                         if (urb->transfer_buffer_length > 1)
1253                                                 buf [1] = 0;
1254                                         urb->actual_length = min (2,
1255                                                 urb->transfer_buffer_length);
1256                                         value = 0;
1257                                         maybe_set_status (urb, 0);
1258                                 }
1259                                 break;
1260                         }
1261
1262                         /* gadget driver handles all other requests.  block
1263                          * until setup() returns; no reentrancy issues etc.
1264                          */
1265                         if (value > 0) {
1266                                 spin_unlock (&dum->lock);
1267                                 value = dum->driver->setup (&dum->gadget,
1268                                                 &setup);
1269                                 spin_lock (&dum->lock);
1270
1271                                 if (value >= 0) {
1272                                         /* no delays (max 64KB data stage) */
1273                                         limit = 64*1024;
1274                                         goto treat_control_like_bulk;
1275                                 }
1276                                 /* error, see below */
1277                         }
1278
1279                         if (value < 0) {
1280                                 if (value != -EOPNOTSUPP)
1281                                         dev_dbg (hardware,
1282                                                 "setup --> %d\n",
1283                                                 value);
1284                                 maybe_set_status (urb, -EPIPE);
1285                                 urb->actual_length = 0;
1286                         }
1287
1288                         goto return_urb;
1289                 }
1290
1291                 /* non-control requests */
1292                 limit = total;
1293                 switch (usb_pipetype (urb->pipe)) {
1294                 case PIPE_ISOCHRONOUS:
1295                         /* FIXME is it urb->interval since the last xfer?
1296                          * use urb->iso_frame_desc[i].
1297                          * complete whether or not ep has requests queued.
1298                          * report random errors, to debug drivers.
1299                          */
1300                         limit = max (limit, periodic_bytes (dum, ep));
1301                         maybe_set_status (urb, -ENOSYS);
1302                         break;
1303
1304                 case PIPE_INTERRUPT:
1305                         /* FIXME is it urb->interval since the last xfer?
1306                          * this almost certainly polls too fast.
1307                          */
1308                         limit = max (limit, periodic_bytes (dum, ep));
1309                         /* FALLTHROUGH */
1310
1311                 // case PIPE_BULK:  case PIPE_CONTROL:
1312                 default:
1313                 treat_control_like_bulk:
1314                         ep->last_io = jiffies;
1315                         total = transfer (dum, urb, ep, limit);
1316                         break;
1317                 }
1318
1319                 /* incomplete transfer? */
1320                 if (urb->status == -EINPROGRESS)
1321                         continue;
1322
1323 return_urb:
1324                 urb->hcpriv = 0;
1325                 if (ep)
1326                         ep->already_seen = ep->setup_stage = 0;
1327
1328                 spin_unlock (&dum->lock);
1329                 usb_hcd_giveback_urb (&dum->hcd, urb, 0);
1330                 spin_lock (&dum->lock);
1331
1332                 goto restart;
1333         }
1334
1335         /* want a 1 msec delay here */
1336         if (!list_empty (&hdev->urb_list))
1337                 mod_timer (&dum->timer, jiffies + 1);
1338
1339         spin_unlock_irqrestore (&dum->lock, flags);
1340 }
1341
1342 /*-------------------------------------------------------------------------*/
1343
1344 #define PORT_C_MASK \
1345          ((1 << USB_PORT_FEAT_C_CONNECTION) \
1346         | (1 << USB_PORT_FEAT_C_ENABLE) \
1347         | (1 << USB_PORT_FEAT_C_SUSPEND) \
1348         | (1 << USB_PORT_FEAT_C_OVER_CURRENT) \
1349         | (1 << USB_PORT_FEAT_C_RESET))
1350
1351 static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1352 {
1353         struct dummy            *dum;
1354         unsigned long           flags;
1355         int                     retval;
1356
1357         dum = container_of (hcd, struct dummy, hcd);
1358
1359         spin_lock_irqsave (&dum->lock, flags);
1360         if (!(dum->port_status & PORT_C_MASK))
1361                 retval = 0;
1362         else {
1363                 *buf = (1 << 1);
1364                 dev_dbg (hardware, "port status 0x%08x has changes\n",
1365                         dum->port_status);
1366                 retval = 1;
1367         }
1368         spin_unlock_irqrestore (&dum->lock, flags);
1369         return retval;
1370 }
1371
1372 static inline void
1373 hub_descriptor (struct usb_hub_descriptor *desc)
1374 {
1375         memset (desc, 0, sizeof *desc);
1376         desc->bDescriptorType = 0x29;
1377         desc->bDescLength = 9;
1378         desc->wHubCharacteristics = __constant_cpu_to_le16 (0x0001);
1379         desc->bNbrPorts = 1;
1380         desc->bitmap [0] = 0xff;
1381         desc->bitmap [1] = 0xff;
1382 }
1383
1384 static int dummy_hub_control (
1385         struct usb_hcd  *hcd,
1386         u16             typeReq,
1387         u16             wValue,
1388         u16             wIndex,
1389         char            *buf,
1390         u16             wLength
1391 ) {
1392         struct dummy    *dum;
1393         int             retval = 0;
1394         unsigned long   flags;
1395
1396         dum = container_of (hcd, struct dummy, hcd);
1397         spin_lock_irqsave (&dum->lock, flags);
1398         switch (typeReq) {
1399         case ClearHubFeature:
1400                 break;
1401         case ClearPortFeature:
1402                 switch (wValue) {
1403                 case USB_PORT_FEAT_SUSPEND:
1404                         /* 20msec resume signaling */
1405                         dum->resuming = 1;
1406                         dum->re_timeout = jiffies + ((HZ * 20)/1000);
1407                         break;
1408                 case USB_PORT_FEAT_POWER:
1409                         dum->port_status = 0;
1410                         dum->resuming = 0;
1411                         stop_activity(dum, dum->driver);
1412                         break;
1413                 default:
1414                         dum->port_status &= ~(1 << wValue);
1415                 }
1416                 break;
1417         case GetHubDescriptor:
1418                 hub_descriptor ((struct usb_hub_descriptor *) buf);
1419                 break;
1420         case GetHubStatus:
1421                 *(u32 *) buf = __constant_cpu_to_le32 (0);
1422                 break;
1423         case GetPortStatus:
1424                 if (wIndex != 1)
1425                         retval = -EPIPE;
1426
1427                 /* whoever resets or resumes must GetPortStatus to
1428                  * complete it!!
1429                  */
1430                 if (dum->resuming && time_after (jiffies, dum->re_timeout)) {
1431                         dum->port_status |= (1 << USB_PORT_FEAT_C_SUSPEND);
1432                         dum->port_status &= ~(1 << USB_PORT_FEAT_SUSPEND);
1433                         dum->resuming = 0;
1434                         dum->re_timeout = 0;
1435                         if (dum->driver->resume) {
1436                                 spin_unlock (&dum->lock);
1437                                 dum->driver->resume (&dum->gadget);
1438                                 spin_lock (&dum->lock);
1439                         }
1440                 }
1441                 if ((dum->port_status & (1 << USB_PORT_FEAT_RESET)) != 0
1442                                 && time_after (jiffies, dum->re_timeout)) {
1443                         dum->port_status |= (1 << USB_PORT_FEAT_C_RESET);
1444                         dum->port_status &= ~(1 << USB_PORT_FEAT_RESET);
1445                         dum->re_timeout = 0;
1446                         if (dum->driver) {
1447                                 dum->port_status |= USB_PORT_STAT_ENABLE;
1448                                 /* give it the best speed we agree on */
1449                                 dum->gadget.speed = dum->driver->speed;
1450                                 dum->gadget.ep0->maxpacket = 64;
1451                                 switch (dum->gadget.speed) {
1452                                 case USB_SPEED_HIGH:
1453                                         dum->port_status |=
1454                                                 USB_PORT_STAT_HIGH_SPEED;
1455                                         break;
1456                                 case USB_SPEED_LOW:
1457                                         dum->gadget.ep0->maxpacket = 8;
1458                                         dum->port_status |=
1459                                                 USB_PORT_STAT_LOW_SPEED;
1460                                         break;
1461                                 default:
1462                                         dum->gadget.speed = USB_SPEED_FULL;
1463                                         break;
1464                                 }
1465                         }
1466                 }
1467                 ((u16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1468                 ((u16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1469                 break;
1470         case SetHubFeature:
1471                 retval = -EPIPE;
1472                 break;
1473         case SetPortFeature:
1474                 switch (wValue) {
1475                 case USB_PORT_FEAT_SUSPEND:
1476                         dum->port_status |= (1 << USB_PORT_FEAT_SUSPEND);
1477                         if (dum->driver->suspend) {
1478                                 spin_unlock (&dum->lock);
1479                                 dum->driver->suspend (&dum->gadget);
1480                                 spin_lock (&dum->lock);
1481                         }
1482                         break;
1483                 case USB_PORT_FEAT_RESET:
1484                         /* if it's already running, disconnect first */
1485                         if (dum->port_status & USB_PORT_STAT_ENABLE) {
1486                                 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1487                                                 | USB_PORT_STAT_LOW_SPEED
1488                                                 | USB_PORT_STAT_HIGH_SPEED);
1489                                 if (dum->driver) {
1490                                         dev_dbg (hardware, "disconnect\n");
1491                                         stop_activity (dum, dum->driver);
1492                                 }
1493
1494                                 /* FIXME test that code path! */
1495                         }
1496                         /* 50msec reset signaling */
1497                         dum->re_timeout = jiffies + ((HZ * 50)/1000);
1498                         /* FALLTHROUGH */
1499                 default:
1500                         dum->port_status |= (1 << wValue);
1501                 }
1502                 break;
1503
1504         default:
1505                 dev_dbg (hardware,
1506                         "hub control req%04x v%04x i%04x l%d\n",
1507                         typeReq, wValue, wIndex, wLength);
1508
1509                 /* "protocol stall" on error */
1510                 retval = -EPIPE;
1511         }
1512         spin_unlock_irqrestore (&dum->lock, flags);
1513         return retval;
1514 }
1515
1516
1517 /*-------------------------------------------------------------------------*/
1518
1519 static struct usb_hcd *dummy_alloc (void)
1520 {
1521         struct dummy            *dum;
1522
1523         dum = kmalloc (sizeof *dum, SLAB_KERNEL);
1524         if (dum == NULL)
1525                 return 0;
1526         memset (dum, 0, sizeof *dum);
1527         return &dum->hcd;
1528 }
1529
1530 static void dummy_free (struct usb_hcd *hcd)
1531 {
1532         struct dummy            *dum;
1533
1534         dum = container_of (hcd, struct dummy, hcd);
1535         WARN_ON (dum->driver != 0);
1536         kfree (dum);
1537 }
1538
1539 /*-------------------------------------------------------------------------*/
1540
1541 static inline ssize_t
1542 show_urb (char *buf, size_t size, struct urb *urb)
1543 {
1544         int ep = usb_pipeendpoint (urb->pipe);
1545
1546         return snprintf (buf, size,
1547                 "urb/%p %s ep%d%s%s len %d/%d\n",
1548                 urb,
1549                 ({ char *s;
1550                  switch (urb->dev->speed) {
1551                  case USB_SPEED_LOW:    s = "ls"; break;
1552                  case USB_SPEED_FULL:   s = "fs"; break;
1553                  case USB_SPEED_HIGH:   s = "hs"; break;
1554                  default:               s = "?"; break;
1555                  }; s; }),
1556                 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1557                 ({ char *s; \
1558                  switch (usb_pipetype (urb->pipe)) { \
1559                  case PIPE_CONTROL:     s = ""; break; \
1560                  case PIPE_BULK:        s = "-bulk"; break; \
1561                  case PIPE_INTERRUPT:   s = "-int"; break; \
1562                  default:               s = "-iso"; break; \
1563                 }; s;}),
1564                 urb->actual_length, urb->transfer_buffer_length);
1565 }
1566
1567 static ssize_t
1568 show_urbs (struct device *dev, char *buf)
1569 {
1570         struct dummy            *dum = dev_get_drvdata(dev);
1571         struct urb              *urb;
1572         size_t                  size = 0;
1573         unsigned long           flags;
1574
1575         spin_lock_irqsave (&dum->lock, flags);
1576         if (dum->hdev) {
1577                 list_for_each_entry (urb, &dum->hdev->urb_list, urb_list) {
1578                         size_t          temp;
1579
1580                         temp = show_urb (buf, PAGE_SIZE - size, urb);
1581                         buf += temp;
1582                         size += temp;
1583                 }
1584         }
1585         spin_unlock_irqrestore (&dum->lock, flags);
1586
1587         return size;
1588 }
1589 static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1590
1591
1592 static const struct hc_driver dummy_hcd;
1593
1594 static int dummy_start (struct usb_hcd *hcd)
1595 {
1596         struct dummy            *dum;
1597         struct usb_bus          *bus;
1598         struct usb_device       *root;
1599         int                     retval;
1600
1601         dum = container_of (hcd, struct dummy, hcd);
1602
1603         /*
1604          * MASTER side init ... we emulate a root hub that'll only ever
1605          * talk to one device (the slave side).  Also appears in sysfs,
1606          * just like more familiar pci-based HCDs.
1607          */
1608         spin_lock_init (&dum->lock);
1609
1610         retval = driver_register (&dummy_driver);
1611         if (retval < 0)
1612                 return retval;
1613
1614         dum->pdev.name = "hc";
1615         dum->pdev.dev.driver = &dummy_driver;
1616         dev_set_drvdata(&dum->pdev.dev, dum);
1617         dum->pdev.dev.release = dummy_hc_release;
1618         retval = platform_device_register (&dum->pdev);
1619         if (retval < 0) {
1620                 driver_unregister (&dummy_driver);
1621                 return retval;
1622         }
1623         dev_info (&dum->pdev.dev, "%s, driver " DRIVER_VERSION "\n",
1624                         driver_desc);
1625
1626         hcd->self.controller = &dum->pdev.dev;
1627
1628         /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1629         device_create_file (hcd->self.controller, &dev_attr_urbs);
1630
1631         init_timer (&dum->timer);
1632         dum->timer.function = dummy_timer;
1633         dum->timer.data = (unsigned long) dum;
1634
1635         /* root hub will appear as another device */
1636         dum->hcd.driver = (struct hc_driver *) &dummy_hcd;
1637         dum->hcd.description = dummy_hcd.description;
1638         dum->hcd.product_desc = "Dummy host controller";
1639
1640         bus = hcd_to_bus (&dum->hcd);
1641         bus->bus_name = dum->pdev.dev.bus_id;
1642         usb_bus_init (bus);
1643         bus->op = &usb_hcd_operations;
1644         bus->hcpriv = &dum->hcd;
1645
1646         /* FIXME don't require the pci-based buffer/alloc impls;
1647          * the "generic dma" implementation still requires them,
1648          * it's not very generic yet.
1649          */
1650         if ((retval = hcd_buffer_create (&dum->hcd)) != 0) {
1651 clean0:
1652                 init_completion (&dum->released);
1653                 platform_device_unregister (&dum->pdev);
1654                 wait_for_completion (&dum->released);
1655                 driver_unregister (&dummy_driver);
1656                 return retval;
1657         }
1658
1659         INIT_LIST_HEAD (&hcd->dev_list);
1660         usb_register_bus (bus);
1661
1662         root = usb_alloc_dev (0, bus, 0);
1663         if (!root) {
1664                 retval = -ENOMEM;
1665 clean1:
1666                 hcd_buffer_destroy (&dum->hcd);
1667                 usb_deregister_bus (bus);
1668                 goto clean0;
1669         }
1670
1671         /* root hub enters addressed state... */
1672         dum->hcd.state = USB_STATE_RUNNING;
1673         root->speed = USB_SPEED_HIGH;
1674
1675         /* ...then configured, so khubd sees us. */
1676         if ((retval = hcd_register_root (root, &dum->hcd)) != 0) {
1677                 usb_put_dev (root);
1678 clean2:
1679                 dum->hcd.state = USB_STATE_QUIESCING;
1680                 goto clean1;
1681         }
1682
1683         /* only show a low-power port: just 8mA */
1684         hub_set_power_budget (root, 8);
1685
1686         dum->started = 1;
1687
1688         if ((retval = dummy_register_udc (dum)) != 0) {
1689                 dum->started = 0;
1690                 usb_disconnect (&bus->root_hub);
1691                 goto clean2;
1692         }
1693         return 0;
1694 }
1695
1696 static void dummy_stop (struct usb_hcd *hcd)
1697 {
1698         struct dummy            *dum;
1699         struct usb_bus          *bus;
1700
1701         dum = container_of (hcd, struct dummy, hcd);
1702         if (!dum->started)
1703                 return;
1704         dum->started = 0;
1705
1706         usb_gadget_unregister_driver (dum->driver);
1707         dummy_unregister_udc (dum);
1708
1709         bus = hcd_to_bus (&dum->hcd);
1710         hcd->state = USB_STATE_QUIESCING;
1711         dev_dbg (hardware, "remove root hub\n");
1712         usb_disconnect (&bus->root_hub);
1713
1714         hcd_buffer_destroy (&dum->hcd);
1715         usb_deregister_bus (bus);
1716
1717         dev_info (hardware, "stopped\n");
1718
1719         device_remove_file (hcd->self.controller, &dev_attr_urbs);
1720         init_completion (&dum->released);
1721         platform_device_unregister (&dum->pdev);
1722         wait_for_completion (&dum->released);
1723
1724         driver_unregister (&dummy_driver);
1725 }
1726
1727 /*-------------------------------------------------------------------------*/
1728
1729 static int dummy_h_get_frame (struct usb_hcd *hcd)
1730 {
1731         return dummy_g_get_frame (0);
1732 }
1733
1734 static const struct hc_driver dummy_hcd = {
1735         .description =          (char *) driver_name,
1736         .flags =                HCD_USB2,
1737
1738         .start =                dummy_start,
1739         .stop =                 dummy_stop,
1740
1741         .hcd_alloc =            dummy_alloc,
1742         .hcd_free =             dummy_free,
1743
1744         .urb_enqueue =          dummy_urb_enqueue,
1745         .urb_dequeue =          dummy_urb_dequeue,
1746
1747         .get_frame_number =     dummy_h_get_frame,
1748
1749         .hub_status_data =      dummy_hub_status,
1750         .hub_control =          dummy_hub_control,
1751 };
1752
1753 /*-------------------------------------------------------------------------*/
1754
1755 static int __init init (void)
1756 {
1757         struct usb_hcd          *hcd;
1758         int                     value;
1759
1760         if (usb_disabled ())
1761                 return -ENODEV;
1762         if ((hcd = dummy_alloc ()) == 0)
1763                 return -ENOMEM;
1764
1765         the_controller = container_of (hcd, struct dummy, hcd);
1766         value = dummy_start (hcd);
1767
1768         if (value != 0) {
1769                 dummy_free (hcd);
1770                 the_controller = 0;
1771         }
1772         return value;
1773 }
1774 module_init (init);
1775
1776 static void __exit cleanup (void)
1777 {
1778         dummy_stop (&the_controller->hcd);
1779         dummy_free (&the_controller->hcd);
1780         the_controller = 0;
1781 }
1782 module_exit (cleanup);
1783