Kernel 2.6 USB: backport of USB driver (USB serial) from upstream, part 4
[tomato.git] / release / src-rt / linux / linux-2.6 / drivers / usb / gadget / dummy_hcd.c
bloba5a3582ecc3e0ba018f9a7c7de46fa243e3d13c5
1 /*
2 * dummy_hcd.c -- Dummy/Loopback USB host and device emulator driver.
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
6 * Copyright (C) 2003 David Brownell
7 * Copyright (C) 2003-2005 Alan Stern
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.
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.
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
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:
30 * - Gadget driver, responding to requests (slave);
31 * - Host-side device driver, as already familiar in Linux.
33 * Having this all in one kernel can help some stages of development,
34 * bypassing some hardware (and driver) issues. UML could help too.
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>
51 #include <asm/byteorder.h>
52 #include <asm/io.h>
53 #include <asm/irq.h>
54 #include <asm/system.h>
55 #include <asm/unaligned.h>
58 #include "../core/hcd.h"
61 #define DRIVER_DESC "USB Host+Gadget Emulator"
62 #define DRIVER_VERSION "02 May 2005"
64 static const char driver_name [] = "dummy_hcd";
65 static const char driver_desc [] = "USB Host+Gadget Emulator";
67 static const char gadget_name [] = "dummy_udc";
69 MODULE_DESCRIPTION (DRIVER_DESC);
70 MODULE_AUTHOR ("David Brownell");
71 MODULE_LICENSE ("GPL");
73 /*-------------------------------------------------------------------------*/
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 already_seen : 1;
84 unsigned setup_stage : 1;
87 struct dummy_request {
88 struct list_head queue; /* ep's requests */
89 struct usb_request req;
92 static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
94 return container_of (_ep, struct dummy_ep, ep);
97 static inline struct dummy_request *usb_request_to_dummy_request
98 (struct usb_request *_req)
100 return container_of (_req, struct dummy_request, req);
103 /*-------------------------------------------------------------------------*/
106 * Every device has ep0 for control requests, plus up to 30 more endpoints,
107 * in one of two types:
109 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
110 * number can be changed. Names like "ep-a" are used for this type.
112 * - Fixed Function: in other cases. some characteristics may be mutable;
113 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
115 * Gadget drivers are responsible for not setting up conflicting endpoint
116 * configurations, illegal or unsupported packet lengths, and so on.
119 static const char ep0name [] = "ep0";
121 static const char *const ep_name [] = {
122 ep0name, /* everyone has ep0 */
124 /* act like a net2280: high speed, six configurable endpoints */
125 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
127 /* or like pxa250: fifteen fixed function endpoints */
128 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
129 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
130 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
131 "ep15in-int",
133 /* or like sa1100: two fixed function endpoints */
134 "ep1out-bulk", "ep2in-bulk",
136 #define DUMMY_ENDPOINTS ARRAY_SIZE(ep_name)
138 /*-------------------------------------------------------------------------*/
140 #define FIFO_SIZE 64
142 struct urbp {
143 struct urb *urb;
144 struct list_head urbp_list;
148 enum dummy_rh_state {
149 DUMMY_RH_RESET,
150 DUMMY_RH_SUSPENDED,
151 DUMMY_RH_RUNNING
154 struct dummy {
155 spinlock_t lock;
158 * SLAVE/GADGET side support
160 struct dummy_ep ep [DUMMY_ENDPOINTS];
161 int address;
162 struct usb_gadget gadget;
163 struct usb_gadget_driver *driver;
164 struct dummy_request fifo_req;
165 u8 fifo_buf [FIFO_SIZE];
166 u16 devstatus;
167 unsigned udc_suspended:1;
168 unsigned pullup:1;
169 unsigned active:1;
170 unsigned old_active:1;
173 * MASTER/HOST side support
175 enum dummy_rh_state rh_state;
176 struct timer_list timer;
177 u32 port_status;
178 u32 old_status;
179 unsigned resuming:1;
180 unsigned long re_timeout;
182 struct usb_device *udev;
183 struct list_head urbp_list;
186 static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
188 return (struct dummy *) (hcd->hcd_priv);
191 static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
193 return container_of((void *) dum, struct usb_hcd, hcd_priv);
196 static inline struct device *dummy_dev (struct dummy *dum)
198 return dummy_to_hcd(dum)->self.controller;
201 static inline struct device *udc_dev (struct dummy *dum)
203 return dum->gadget.dev.parent;
206 static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
208 return container_of (ep->gadget, struct dummy, gadget);
211 static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
213 return container_of (gadget, struct dummy, gadget);
216 static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
218 return container_of (dev, struct dummy, gadget.dev);
221 static struct dummy *the_controller;
223 /*-------------------------------------------------------------------------*/
225 /* SLAVE/GADGET SIDE UTILITY ROUTINES */
227 /* called with spinlock held */
228 static void nuke (struct dummy *dum, struct dummy_ep *ep)
230 while (!list_empty (&ep->queue)) {
231 struct dummy_request *req;
233 req = list_entry (ep->queue.next, struct dummy_request, queue);
234 list_del_init (&req->queue);
235 req->req.status = -ESHUTDOWN;
237 spin_unlock (&dum->lock);
238 req->req.complete (&ep->ep, &req->req);
239 spin_lock (&dum->lock);
243 /* caller must hold lock */
244 static void
245 stop_activity (struct dummy *dum)
247 struct dummy_ep *ep;
249 /* prevent any more requests */
250 dum->address = 0;
252 /* The timer is left running so that outstanding URBs can fail */
254 /* nuke any pending requests first, so driver i/o is quiesced */
255 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
256 nuke (dum, ep);
258 /* driver now does any non-usb quiescing necessary */
261 /* caller must hold lock */
262 static void
263 set_link_state (struct dummy *dum)
265 dum->active = 0;
266 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
267 dum->port_status = 0;
269 /* UDC suspend must cause a disconnect */
270 else if (!dum->pullup || dum->udc_suspended) {
271 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
272 USB_PORT_STAT_ENABLE |
273 USB_PORT_STAT_LOW_SPEED |
274 USB_PORT_STAT_HIGH_SPEED |
275 USB_PORT_STAT_SUSPEND);
276 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
277 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
278 } else {
279 dum->port_status |= USB_PORT_STAT_CONNECTION;
280 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
281 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
282 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
283 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
284 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
285 dum->rh_state != DUMMY_RH_SUSPENDED)
286 dum->active = 1;
289 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
290 dum->resuming = 0;
292 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
293 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
294 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
295 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
296 dum->driver) {
297 stop_activity (dum);
298 spin_unlock (&dum->lock);
299 dum->driver->disconnect (&dum->gadget);
300 spin_lock (&dum->lock);
302 } else if (dum->active != dum->old_active) {
303 if (dum->old_active && dum->driver->suspend) {
304 spin_unlock (&dum->lock);
305 dum->driver->suspend (&dum->gadget);
306 spin_lock (&dum->lock);
307 } else if (!dum->old_active && dum->driver->resume) {
308 spin_unlock (&dum->lock);
309 dum->driver->resume (&dum->gadget);
310 spin_lock (&dum->lock);
314 dum->old_status = dum->port_status;
315 dum->old_active = dum->active;
318 /*-------------------------------------------------------------------------*/
320 /* SLAVE/GADGET SIDE DRIVER
322 * This only tracks gadget state. All the work is done when the host
323 * side tries some (emulated) i/o operation. Real device controller
324 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
327 #define is_enabled(dum) \
328 (dum->port_status & USB_PORT_STAT_ENABLE)
330 static int
331 dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
333 struct dummy *dum;
334 struct dummy_ep *ep;
335 unsigned max;
336 int retval;
338 ep = usb_ep_to_dummy_ep (_ep);
339 if (!_ep || !desc || ep->desc || _ep->name == ep0name
340 || desc->bDescriptorType != USB_DT_ENDPOINT)
341 return -EINVAL;
342 dum = ep_to_dummy (ep);
343 if (!dum->driver || !is_enabled (dum))
344 return -ESHUTDOWN;
345 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
347 /* drivers must not request bad settings, since lower levels
348 * (hardware or its drivers) may not check. some endpoints
349 * can't do iso, many have maxpacket limitations, etc.
351 * since this "hardware" driver is here to help debugging, we
352 * have some extra sanity checks. (there could be more though,
353 * especially for "ep9out" style fixed function ones.)
355 retval = -EINVAL;
356 switch (desc->bmAttributes & 0x03) {
357 case USB_ENDPOINT_XFER_BULK:
358 if (strstr (ep->ep.name, "-iso")
359 || strstr (ep->ep.name, "-int")) {
360 goto done;
362 switch (dum->gadget.speed) {
363 case USB_SPEED_HIGH:
364 if (max == 512)
365 break;
366 /* conserve return statements */
367 default:
368 switch (max) {
369 case 8: case 16: case 32: case 64:
370 /* we'll fake any legal size */
371 break;
372 default:
373 case USB_SPEED_LOW:
374 goto done;
377 break;
378 case USB_ENDPOINT_XFER_INT:
379 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
380 goto done;
381 /* real hardware might not handle all packet sizes */
382 switch (dum->gadget.speed) {
383 case USB_SPEED_HIGH:
384 if (max <= 1024)
385 break;
386 /* save a return statement */
387 case USB_SPEED_FULL:
388 if (max <= 64)
389 break;
390 /* save a return statement */
391 default:
392 if (max <= 8)
393 break;
394 goto done;
396 break;
397 case USB_ENDPOINT_XFER_ISOC:
398 if (strstr (ep->ep.name, "-bulk")
399 || strstr (ep->ep.name, "-int"))
400 goto done;
401 /* real hardware might not handle all packet sizes */
402 switch (dum->gadget.speed) {
403 case USB_SPEED_HIGH:
404 if (max <= 1024)
405 break;
406 /* save a return statement */
407 case USB_SPEED_FULL:
408 if (max <= 1023)
409 break;
410 /* save a return statement */
411 default:
412 goto done;
414 break;
415 default:
416 /* few chips support control except on ep0 */
417 goto done;
420 _ep->maxpacket = max;
421 ep->desc = desc;
423 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
424 _ep->name,
425 desc->bEndpointAddress & 0x0f,
426 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
427 ({ char *val;
428 switch (desc->bmAttributes & 0x03) {
429 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
430 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
431 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
432 default: val = "ctrl"; break;
433 }; val; }),
434 max);
436 /* at this point real hardware should be NAKing transfers
437 * to that endpoint, until a buffer is queued to it.
439 retval = 0;
440 done:
441 return retval;
444 static int dummy_disable (struct usb_ep *_ep)
446 struct dummy_ep *ep;
447 struct dummy *dum;
448 unsigned long flags;
449 int retval;
451 ep = usb_ep_to_dummy_ep (_ep);
452 if (!_ep || !ep->desc || _ep->name == ep0name)
453 return -EINVAL;
454 dum = ep_to_dummy (ep);
456 spin_lock_irqsave (&dum->lock, flags);
457 ep->desc = NULL;
458 retval = 0;
459 nuke (dum, ep);
460 spin_unlock_irqrestore (&dum->lock, flags);
462 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
463 return retval;
466 static struct usb_request *
467 dummy_alloc_request (struct usb_ep *_ep, gfp_t mem_flags)
469 struct dummy_ep *ep;
470 struct dummy_request *req;
472 if (!_ep)
473 return NULL;
474 ep = usb_ep_to_dummy_ep (_ep);
476 req = kzalloc(sizeof(*req), mem_flags);
477 if (!req)
478 return NULL;
479 INIT_LIST_HEAD (&req->queue);
480 return &req->req;
483 static void
484 dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
486 struct dummy_ep *ep;
487 struct dummy_request *req;
489 ep = usb_ep_to_dummy_ep (_ep);
490 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
491 return;
493 req = usb_request_to_dummy_request (_req);
494 WARN_ON (!list_empty (&req->queue));
495 kfree (req);
498 static void
499 fifo_complete (struct usb_ep *ep, struct usb_request *req)
503 static int
504 dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
505 gfp_t mem_flags)
507 struct dummy_ep *ep;
508 struct dummy_request *req;
509 struct dummy *dum;
510 unsigned long flags;
512 req = usb_request_to_dummy_request (_req);
513 if (!_req || !list_empty (&req->queue) || !_req->complete)
514 return -EINVAL;
516 ep = usb_ep_to_dummy_ep (_ep);
517 if (!_ep || (!ep->desc && _ep->name != ep0name))
518 return -EINVAL;
520 dum = ep_to_dummy (ep);
521 if (!dum->driver || !is_enabled (dum))
522 return -ESHUTDOWN;
524 #if 0
525 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
526 ep, _req, _ep->name, _req->length, _req->buf);
527 #endif
529 _req->status = -EINPROGRESS;
530 _req->actual = 0;
531 spin_lock_irqsave (&dum->lock, flags);
533 /* implement an emulated single-request FIFO */
534 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
535 list_empty (&dum->fifo_req.queue) &&
536 list_empty (&ep->queue) &&
537 _req->length <= FIFO_SIZE) {
538 req = &dum->fifo_req;
539 req->req = *_req;
540 req->req.buf = dum->fifo_buf;
541 memcpy (dum->fifo_buf, _req->buf, _req->length);
542 req->req.context = dum;
543 req->req.complete = fifo_complete;
545 spin_unlock (&dum->lock);
546 _req->actual = _req->length;
547 _req->status = 0;
548 _req->complete (_ep, _req);
549 spin_lock (&dum->lock);
551 list_add_tail (&req->queue, &ep->queue);
552 spin_unlock_irqrestore (&dum->lock, flags);
554 /* real hardware would likely enable transfers here, in case
555 * it'd been left NAKing.
557 return 0;
560 static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
562 struct dummy_ep *ep;
563 struct dummy *dum;
564 int retval = -EINVAL;
565 unsigned long flags;
566 struct dummy_request *req = NULL;
568 if (!_ep || !_req)
569 return retval;
570 ep = usb_ep_to_dummy_ep (_ep);
571 dum = ep_to_dummy (ep);
573 if (!dum->driver)
574 return -ESHUTDOWN;
576 local_irq_save (flags);
577 spin_lock (&dum->lock);
578 list_for_each_entry (req, &ep->queue, queue) {
579 if (&req->req == _req) {
580 list_del_init (&req->queue);
581 _req->status = -ECONNRESET;
582 retval = 0;
583 break;
586 spin_unlock (&dum->lock);
588 if (retval == 0) {
589 dev_dbg (udc_dev(dum),
590 "dequeued req %p from %s, len %d buf %p\n",
591 req, _ep->name, _req->length, _req->buf);
592 _req->complete (_ep, _req);
594 local_irq_restore (flags);
595 return retval;
598 static int
599 dummy_set_halt (struct usb_ep *_ep, int value)
601 struct dummy_ep *ep;
602 struct dummy *dum;
604 if (!_ep)
605 return -EINVAL;
606 ep = usb_ep_to_dummy_ep (_ep);
607 dum = ep_to_dummy (ep);
608 if (!dum->driver)
609 return -ESHUTDOWN;
610 if (!value)
611 ep->halted = 0;
612 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
613 !list_empty (&ep->queue))
614 return -EAGAIN;
615 else
616 ep->halted = 1;
617 /* FIXME clear emulated data toggle too */
618 return 0;
621 static const struct usb_ep_ops dummy_ep_ops = {
622 .enable = dummy_enable,
623 .disable = dummy_disable,
625 .alloc_request = dummy_alloc_request,
626 .free_request = dummy_free_request,
628 .queue = dummy_queue,
629 .dequeue = dummy_dequeue,
631 .set_halt = dummy_set_halt,
634 /*-------------------------------------------------------------------------*/
636 /* there are both host and device side versions of this call ... */
637 static int dummy_g_get_frame (struct usb_gadget *_gadget)
639 struct timeval tv;
641 do_gettimeofday (&tv);
642 return tv.tv_usec / 1000;
645 static int dummy_wakeup (struct usb_gadget *_gadget)
647 struct dummy *dum;
649 dum = gadget_to_dummy (_gadget);
650 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
651 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
652 return -EINVAL;
653 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
654 return -ENOLINK;
655 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
656 dum->rh_state != DUMMY_RH_SUSPENDED)
657 return -EIO;
659 /* FIXME: What if the root hub is suspended but the port isn't? */
661 /* hub notices our request, issues downstream resume, etc */
662 dum->resuming = 1;
663 dum->re_timeout = jiffies + msecs_to_jiffies(20);
664 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
665 return 0;
668 static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
670 struct dummy *dum;
672 dum = gadget_to_dummy (_gadget);
673 if (value)
674 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
675 else
676 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
677 return 0;
680 static int dummy_pullup (struct usb_gadget *_gadget, int value)
682 struct dummy *dum;
683 unsigned long flags;
685 dum = gadget_to_dummy (_gadget);
686 spin_lock_irqsave (&dum->lock, flags);
687 dum->pullup = (value != 0);
688 set_link_state (dum);
689 spin_unlock_irqrestore (&dum->lock, flags);
691 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
692 return 0;
695 static const struct usb_gadget_ops dummy_ops = {
696 .get_frame = dummy_g_get_frame,
697 .wakeup = dummy_wakeup,
698 .set_selfpowered = dummy_set_selfpowered,
699 .pullup = dummy_pullup,
702 /*-------------------------------------------------------------------------*/
704 /* "function" sysfs attribute */
705 static ssize_t
706 show_function (struct device *dev, struct device_attribute *attr, char *buf)
708 struct dummy *dum = gadget_dev_to_dummy (dev);
710 if (!dum->driver || !dum->driver->function)
711 return 0;
712 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
714 static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
716 /*-------------------------------------------------------------------------*/
719 * Driver registration/unregistration.
721 * This is basically hardware-specific; there's usually only one real USB
722 * device (not host) controller since that's how USB devices are intended
723 * to work. So most implementations of these api calls will rely on the
724 * fact that only one driver will ever bind to the hardware. But curious
725 * hardware can be built with discrete components, so the gadget API doesn't
726 * require that assumption.
728 * For this emulator, it might be convenient to create a usb slave device
729 * for each driver that registers: just add to a big root hub.
733 usb_gadget_register_driver (struct usb_gadget_driver *driver)
735 struct dummy *dum = the_controller;
736 int retval, i;
738 if (!dum)
739 return -EINVAL;
740 if (dum->driver)
741 return -EBUSY;
742 if (!driver->bind || !driver->setup
743 || driver->speed == USB_SPEED_UNKNOWN)
744 return -EINVAL;
747 * SLAVE side init ... the layer above hardware, which
748 * can't enumerate without help from the driver we're binding.
751 dum->devstatus = 0;
753 INIT_LIST_HEAD (&dum->gadget.ep_list);
754 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
755 struct dummy_ep *ep = &dum->ep [i];
757 if (!ep_name [i])
758 break;
759 ep->ep.name = ep_name [i];
760 ep->ep.ops = &dummy_ep_ops;
761 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
762 ep->halted = ep->already_seen = ep->setup_stage = 0;
763 ep->ep.maxpacket = ~0;
764 ep->last_io = jiffies;
765 ep->gadget = &dum->gadget;
766 ep->desc = NULL;
767 INIT_LIST_HEAD (&ep->queue);
770 dum->gadget.ep0 = &dum->ep [0].ep;
771 dum->ep [0].ep.maxpacket = 64;
772 list_del_init (&dum->ep [0].ep.ep_list);
773 INIT_LIST_HEAD(&dum->fifo_req.queue);
775 dum->driver = driver;
776 dum->gadget.dev.driver = &driver->driver;
777 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
778 driver->driver.name);
779 if ((retval = driver->bind (&dum->gadget)) != 0)
780 goto err_bind_gadget;
782 driver->driver.bus = dum->gadget.dev.parent->bus;
783 if ((retval = driver_register (&driver->driver)) != 0)
784 goto err_register;
785 if ((retval = device_bind_driver (&dum->gadget.dev)) != 0)
786 goto err_bind_driver;
788 /* khubd will enumerate this in a while */
789 spin_lock_irq (&dum->lock);
790 dum->pullup = 1;
791 set_link_state (dum);
792 spin_unlock_irq (&dum->lock);
794 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
795 return 0;
797 err_bind_driver:
798 driver_unregister (&driver->driver);
799 err_register:
800 if (driver->unbind)
801 driver->unbind (&dum->gadget);
802 spin_lock_irq (&dum->lock);
803 dum->pullup = 0;
804 set_link_state (dum);
805 spin_unlock_irq (&dum->lock);
806 err_bind_gadget:
807 dum->driver = NULL;
808 dum->gadget.dev.driver = NULL;
809 return retval;
811 EXPORT_SYMBOL (usb_gadget_register_driver);
814 usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
816 struct dummy *dum = the_controller;
817 unsigned long flags;
819 if (!dum)
820 return -ENODEV;
821 if (!driver || driver != dum->driver || !driver->unbind)
822 return -EINVAL;
824 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
825 driver->driver.name);
827 spin_lock_irqsave (&dum->lock, flags);
828 dum->pullup = 0;
829 set_link_state (dum);
830 spin_unlock_irqrestore (&dum->lock, flags);
832 driver->unbind (&dum->gadget);
833 dum->driver = NULL;
835 device_release_driver (&dum->gadget.dev);
836 driver_unregister (&driver->driver);
838 spin_lock_irqsave (&dum->lock, flags);
839 dum->pullup = 0;
840 set_link_state (dum);
841 spin_unlock_irqrestore (&dum->lock, flags);
843 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
844 return 0;
846 EXPORT_SYMBOL (usb_gadget_unregister_driver);
848 #undef is_enabled
850 /* just declare this in any driver that really need it */
851 extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
853 int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
855 return -ENOSYS;
857 EXPORT_SYMBOL (net2280_set_fifo_mode);
860 /* The gadget structure is stored inside the hcd structure and will be
861 * released along with it. */
862 static void
863 dummy_gadget_release (struct device *dev)
865 struct dummy *dum = gadget_dev_to_dummy (dev);
867 usb_put_hcd (dummy_to_hcd (dum));
870 static int dummy_udc_probe (struct platform_device *pdev)
872 struct dummy *dum = the_controller;
873 int rc;
875 dum->gadget.name = gadget_name;
876 dum->gadget.ops = &dummy_ops;
877 dum->gadget.is_dualspeed = 1;
879 /* maybe claim OTG support, though we won't complete HNP */
880 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
882 strcpy (dum->gadget.dev.bus_id, "gadget");
883 dum->gadget.dev.parent = &pdev->dev;
884 dum->gadget.dev.release = dummy_gadget_release;
885 rc = device_register (&dum->gadget.dev);
886 if (rc < 0)
887 return rc;
889 usb_get_hcd (dummy_to_hcd (dum));
891 platform_set_drvdata (pdev, dum);
892 rc = device_create_file (&dum->gadget.dev, &dev_attr_function);
893 if (rc < 0)
894 device_unregister (&dum->gadget.dev);
895 return rc;
898 static int dummy_udc_remove (struct platform_device *pdev)
900 struct dummy *dum = platform_get_drvdata (pdev);
902 platform_set_drvdata (pdev, NULL);
903 device_remove_file (&dum->gadget.dev, &dev_attr_function);
904 device_unregister (&dum->gadget.dev);
905 return 0;
908 static int dummy_udc_suspend (struct platform_device *pdev, pm_message_t state)
910 struct dummy *dum = platform_get_drvdata(pdev);
912 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
913 spin_lock_irq (&dum->lock);
914 dum->udc_suspended = 1;
915 set_link_state (dum);
916 spin_unlock_irq (&dum->lock);
918 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
919 return 0;
922 static int dummy_udc_resume (struct platform_device *pdev)
924 struct dummy *dum = platform_get_drvdata(pdev);
926 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
927 spin_lock_irq (&dum->lock);
928 dum->udc_suspended = 0;
929 set_link_state (dum);
930 spin_unlock_irq (&dum->lock);
932 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
933 return 0;
936 static struct platform_driver dummy_udc_driver = {
937 .probe = dummy_udc_probe,
938 .remove = dummy_udc_remove,
939 .suspend = dummy_udc_suspend,
940 .resume = dummy_udc_resume,
941 .driver = {
942 .name = (char *) gadget_name,
943 .owner = THIS_MODULE,
947 /*-------------------------------------------------------------------------*/
949 /* MASTER/HOST SIDE DRIVER
951 * this uses the hcd framework to hook up to host side drivers.
952 * its root hub will only have one device, otherwise it acts like
953 * a normal host controller.
955 * when urbs are queued, they're just stuck on a list that we
956 * scan in a timer callback. that callback connects writes from
957 * the host with reads from the device, and so on, based on the
958 * usb 2.0 rules.
961 static int dummy_urb_enqueue (
962 struct usb_hcd *hcd,
963 struct urb *urb,
964 gfp_t mem_flags
966 struct dummy *dum;
967 struct urbp *urbp;
968 unsigned long flags;
969 int rc;
971 if (!urb->transfer_buffer && urb->transfer_buffer_length)
972 return -EINVAL;
974 urbp = kmalloc (sizeof *urbp, mem_flags);
975 if (!urbp)
976 return -ENOMEM;
977 urbp->urb = urb;
979 dum = hcd_to_dummy (hcd);
980 spin_lock_irqsave (&dum->lock, flags);
981 rc = usb_hcd_link_urb_to_ep(hcd, urb);
982 if (rc) {
983 kfree(urbp);
984 goto done;
987 if (!dum->udev) {
988 dum->udev = urb->dev;
989 usb_get_dev (dum->udev);
990 } else if (unlikely (dum->udev != urb->dev))
991 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
993 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
994 urb->hcpriv = urbp;
995 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
996 urb->error_count = 1; /* mark as a new urb */
998 /* kick the scheduler, it'll do the rest */
999 if (!timer_pending (&dum->timer))
1000 mod_timer (&dum->timer, jiffies + 1);
1002 spin_unlock_irqrestore (&dum->lock, flags);
1003 done:
1004 return rc;
1007 static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1009 struct dummy *dum;
1010 unsigned long flags;
1011 int rc;
1013 /* giveback happens automatically in timer callback,
1014 * so make sure the callback happens */
1015 dum = hcd_to_dummy (hcd);
1016 spin_lock_irqsave (&dum->lock, flags);
1018 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1019 if (!rc && dum->rh_state != DUMMY_RH_RUNNING &&
1020 !list_empty(&dum->urbp_list))
1021 mod_timer (&dum->timer, jiffies);
1023 spin_unlock_irqrestore (&dum->lock, flags);
1024 return rc;
1027 /* transfer up to a frame's worth; caller must own lock */
1028 static int
1029 transfer(struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit,
1030 int *status)
1032 struct dummy_request *req;
1034 top:
1035 /* if there's no request queued, the device is NAKing; return */
1036 list_for_each_entry (req, &ep->queue, queue) {
1037 unsigned host_len, dev_len, len;
1038 int is_short, to_host;
1039 int rescan = 0;
1041 /* 1..N packets of ep->ep.maxpacket each ... the last one
1042 * may be short (including zero length).
1044 * writer can send a zlp explicitly (length 0) or implicitly
1045 * (length mod maxpacket zero, and 'zero' flag); they always
1046 * terminate reads.
1048 host_len = urb->transfer_buffer_length - urb->actual_length;
1049 dev_len = req->req.length - req->req.actual;
1050 len = min (host_len, dev_len);
1052 /* FIXME update emulated data toggle too */
1054 to_host = usb_pipein (urb->pipe);
1055 if (unlikely (len == 0))
1056 is_short = 1;
1057 else {
1058 char *ubuf, *rbuf;
1060 /* not enough bandwidth left? */
1061 if (limit < ep->ep.maxpacket && limit < len)
1062 break;
1063 len = min (len, (unsigned) limit);
1064 if (len == 0)
1065 break;
1067 /* use an extra pass for the final short packet */
1068 if (len > ep->ep.maxpacket) {
1069 rescan = 1;
1070 len -= (len % ep->ep.maxpacket);
1072 is_short = (len % ep->ep.maxpacket) != 0;
1074 /* else transfer packet(s) */
1075 ubuf = urb->transfer_buffer + urb->actual_length;
1076 rbuf = req->req.buf + req->req.actual;
1077 if (to_host)
1078 memcpy (ubuf, rbuf, len);
1079 else
1080 memcpy (rbuf, ubuf, len);
1081 ep->last_io = jiffies;
1083 limit -= len;
1084 urb->actual_length += len;
1085 req->req.actual += len;
1088 /* short packets terminate, maybe with overflow/underflow.
1089 * it's only really an error to write too much.
1091 * partially filling a buffer optionally blocks queue advances
1092 * (so completion handlers can clean up the queue) but we don't
1093 * need to emulate such data-in-flight.
1095 if (is_short) {
1096 if (host_len == dev_len) {
1097 req->req.status = 0;
1098 *status = 0;
1099 } else if (to_host) {
1100 req->req.status = 0;
1101 if (dev_len > host_len)
1102 *status = -EOVERFLOW;
1103 else
1104 *status = 0;
1105 } else if (!to_host) {
1106 *status = 0;
1107 if (host_len > dev_len)
1108 req->req.status = -EOVERFLOW;
1109 else
1110 req->req.status = 0;
1113 /* many requests terminate without a short packet */
1114 } else {
1115 if (req->req.length == req->req.actual
1116 && !req->req.zero)
1117 req->req.status = 0;
1118 if (urb->transfer_buffer_length == urb->actual_length
1119 && !(urb->transfer_flags
1120 & URB_ZERO_PACKET))
1121 *status = 0;
1124 /* device side completion --> continuable */
1125 if (req->req.status != -EINPROGRESS) {
1126 list_del_init (&req->queue);
1128 spin_unlock (&dum->lock);
1129 req->req.complete (&ep->ep, &req->req);
1130 spin_lock (&dum->lock);
1132 /* requests might have been unlinked... */
1133 rescan = 1;
1136 /* host side completion --> terminate */
1137 if (*status != -EINPROGRESS)
1138 break;
1140 /* rescan to continue with any other queued i/o */
1141 if (rescan)
1142 goto top;
1144 return limit;
1147 static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1149 int limit = ep->ep.maxpacket;
1151 if (dum->gadget.speed == USB_SPEED_HIGH) {
1152 int tmp;
1154 /* high bandwidth mode */
1155 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
1156 tmp = (tmp >> 11) & 0x03;
1157 tmp *= 8 /* applies to entire frame */;
1158 limit += limit * tmp;
1160 return limit;
1163 #define is_active(dum) ((dum->port_status & \
1164 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1165 USB_PORT_STAT_SUSPEND)) \
1166 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1168 static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1170 int i;
1172 if (!is_active (dum))
1173 return NULL;
1174 if ((address & ~USB_DIR_IN) == 0)
1175 return &dum->ep [0];
1176 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1177 struct dummy_ep *ep = &dum->ep [i];
1179 if (!ep->desc)
1180 continue;
1181 if (ep->desc->bEndpointAddress == address)
1182 return ep;
1184 return NULL;
1187 #undef is_active
1189 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1190 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1191 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1192 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1193 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1194 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1196 /* drive both sides of the transfers; looks like irq handlers to
1197 * both drivers except the callbacks aren't in_irq().
1199 static void dummy_timer (unsigned long _dum)
1201 struct dummy *dum = (struct dummy *) _dum;
1202 struct urbp *urbp, *tmp;
1203 unsigned long flags;
1204 int limit, total;
1205 int i;
1207 /* simplistic model for one frame's bandwidth */
1208 switch (dum->gadget.speed) {
1209 case USB_SPEED_LOW:
1210 total = 8/*bytes*/ * 12/*packets*/;
1211 break;
1212 case USB_SPEED_FULL:
1213 total = 64/*bytes*/ * 19/*packets*/;
1214 break;
1215 case USB_SPEED_HIGH:
1216 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1217 break;
1218 default:
1219 dev_err (dummy_dev(dum), "bogus device speed\n");
1220 return;
1223 /* FIXME if HZ != 1000 this will probably misbehave ... */
1225 /* look at each urb queued by the host side driver */
1226 spin_lock_irqsave (&dum->lock, flags);
1228 if (!dum->udev) {
1229 dev_err (dummy_dev(dum),
1230 "timer fired with no URBs pending?\n");
1231 spin_unlock_irqrestore (&dum->lock, flags);
1232 return;
1235 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1236 if (!ep_name [i])
1237 break;
1238 dum->ep [i].already_seen = 0;
1241 restart:
1242 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1243 struct urb *urb;
1244 struct dummy_request *req;
1245 u8 address;
1246 struct dummy_ep *ep = NULL;
1247 int type;
1248 int status = -EINPROGRESS;
1250 urb = urbp->urb;
1251 if (urb->unlinked)
1252 goto return_urb;
1253 else if (dum->rh_state != DUMMY_RH_RUNNING)
1254 continue;
1255 type = usb_pipetype (urb->pipe);
1257 /* used up this frame's non-periodic bandwidth?
1258 * FIXME there's infinite bandwidth for control and
1259 * periodic transfers ... unrealistic.
1261 if (total <= 0 && type == PIPE_BULK)
1262 continue;
1264 /* find the gadget's ep for this request (if configured) */
1265 address = usb_pipeendpoint (urb->pipe);
1266 if (usb_pipein (urb->pipe))
1267 address |= USB_DIR_IN;
1268 ep = find_endpoint(dum, address);
1269 if (!ep) {
1270 /* set_configuration() disagreement */
1271 dev_dbg (dummy_dev(dum),
1272 "no ep configured for urb %p\n",
1273 urb);
1274 status = -EPROTO;
1275 goto return_urb;
1278 if (ep->already_seen)
1279 continue;
1280 ep->already_seen = 1;
1281 if (ep == &dum->ep [0] && urb->error_count) {
1282 ep->setup_stage = 1; /* a new urb */
1283 urb->error_count = 0;
1285 if (ep->halted && !ep->setup_stage) {
1286 /* NOTE: must not be iso! */
1287 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1288 ep->ep.name, urb);
1289 status = -EPIPE;
1290 goto return_urb;
1292 /* FIXME make sure both ends agree on maxpacket */
1294 /* handle control requests */
1295 if (ep == &dum->ep [0] && ep->setup_stage) {
1296 struct usb_ctrlrequest setup;
1297 int value = 1;
1298 struct dummy_ep *ep2;
1299 unsigned w_index;
1300 unsigned w_value;
1302 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1303 w_index = le16_to_cpu(setup.wIndex);
1304 w_value = le16_to_cpu(setup.wValue);
1305 if (le16_to_cpu(setup.wLength) !=
1306 urb->transfer_buffer_length) {
1307 status = -EOVERFLOW;
1308 goto return_urb;
1311 /* paranoia, in case of stale queued data */
1312 list_for_each_entry (req, &ep->queue, queue) {
1313 list_del_init (&req->queue);
1314 req->req.status = -EOVERFLOW;
1315 dev_dbg (udc_dev(dum), "stale req = %p\n",
1316 req);
1318 spin_unlock (&dum->lock);
1319 req->req.complete (&ep->ep, &req->req);
1320 spin_lock (&dum->lock);
1321 ep->already_seen = 0;
1322 goto restart;
1325 /* gadget driver never sees set_address or operations
1326 * on standard feature flags. some hardware doesn't
1327 * even expose them.
1329 ep->last_io = jiffies;
1330 ep->setup_stage = 0;
1331 ep->halted = 0;
1332 switch (setup.bRequest) {
1333 case USB_REQ_SET_ADDRESS:
1334 if (setup.bRequestType != Dev_Request)
1335 break;
1336 dum->address = w_value;
1337 status = 0;
1338 dev_dbg (udc_dev(dum), "set_address = %d\n",
1339 w_value);
1340 value = 0;
1341 break;
1342 case USB_REQ_SET_FEATURE:
1343 if (setup.bRequestType == Dev_Request) {
1344 value = 0;
1345 switch (w_value) {
1346 case USB_DEVICE_REMOTE_WAKEUP:
1347 break;
1348 case USB_DEVICE_B_HNP_ENABLE:
1349 dum->gadget.b_hnp_enable = 1;
1350 break;
1351 case USB_DEVICE_A_HNP_SUPPORT:
1352 dum->gadget.a_hnp_support = 1;
1353 break;
1354 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1355 dum->gadget.a_alt_hnp_support
1356 = 1;
1357 break;
1358 default:
1359 value = -EOPNOTSUPP;
1361 if (value == 0) {
1362 dum->devstatus |=
1363 (1 << w_value);
1364 status = 0;
1367 } else if (setup.bRequestType == Ep_Request) {
1368 // endpoint halt
1369 ep2 = find_endpoint (dum, w_index);
1370 if (!ep2) {
1371 value = -EOPNOTSUPP;
1372 break;
1374 ep2->halted = 1;
1375 value = 0;
1376 status = 0;
1378 break;
1379 case USB_REQ_CLEAR_FEATURE:
1380 if (setup.bRequestType == Dev_Request) {
1381 switch (w_value) {
1382 case USB_DEVICE_REMOTE_WAKEUP:
1383 dum->devstatus &= ~(1 <<
1384 USB_DEVICE_REMOTE_WAKEUP);
1385 value = 0;
1386 status = 0;
1387 break;
1388 default:
1389 value = -EOPNOTSUPP;
1390 break;
1392 } else if (setup.bRequestType == Ep_Request) {
1393 // endpoint halt
1394 ep2 = find_endpoint (dum, w_index);
1395 if (!ep2) {
1396 value = -EOPNOTSUPP;
1397 break;
1399 ep2->halted = 0;
1400 value = 0;
1401 status = 0;
1403 break;
1404 case USB_REQ_GET_STATUS:
1405 if (setup.bRequestType == Dev_InRequest
1406 || setup.bRequestType
1407 == Intf_InRequest
1408 || setup.bRequestType
1409 == Ep_InRequest
1411 char *buf;
1413 // device: remote wakeup, selfpowered
1414 // interface: nothing
1415 // endpoint: halt
1416 buf = (char *)urb->transfer_buffer;
1417 if (urb->transfer_buffer_length > 0) {
1418 if (setup.bRequestType ==
1419 Ep_InRequest) {
1420 ep2 = find_endpoint (dum, w_index);
1421 if (!ep2) {
1422 value = -EOPNOTSUPP;
1423 break;
1425 buf [0] = ep2->halted;
1426 } else if (setup.bRequestType ==
1427 Dev_InRequest) {
1428 buf [0] = (u8)
1429 dum->devstatus;
1430 } else
1431 buf [0] = 0;
1433 if (urb->transfer_buffer_length > 1)
1434 buf [1] = 0;
1435 urb->actual_length = min_t(u32, 2,
1436 urb->transfer_buffer_length);
1437 value = 0;
1438 status = 0;
1440 break;
1443 /* gadget driver handles all other requests. block
1444 * until setup() returns; no reentrancy issues etc.
1446 if (value > 0) {
1447 spin_unlock (&dum->lock);
1448 value = dum->driver->setup (&dum->gadget,
1449 &setup);
1450 spin_lock (&dum->lock);
1452 if (value >= 0) {
1453 /* no delays (max 64KB data stage) */
1454 limit = 64*1024;
1455 goto treat_control_like_bulk;
1457 /* error, see below */
1460 if (value < 0) {
1461 if (value != -EOPNOTSUPP)
1462 dev_dbg (udc_dev(dum),
1463 "setup --> %d\n",
1464 value);
1465 status = -EPIPE;
1466 urb->actual_length = 0;
1469 goto return_urb;
1472 /* non-control requests */
1473 limit = total;
1474 switch (usb_pipetype (urb->pipe)) {
1475 case PIPE_ISOCHRONOUS:
1476 /* FIXME is it urb->interval since the last xfer?
1477 * use urb->iso_frame_desc[i].
1478 * complete whether or not ep has requests queued.
1479 * report random errors, to debug drivers.
1481 limit = max (limit, periodic_bytes (dum, ep));
1482 status = -ENOSYS;
1483 break;
1485 case PIPE_INTERRUPT:
1486 /* FIXME is it urb->interval since the last xfer?
1487 * this almost certainly polls too fast.
1489 limit = max (limit, periodic_bytes (dum, ep));
1490 /* FALLTHROUGH */
1492 // case PIPE_BULK: case PIPE_CONTROL:
1493 default:
1494 treat_control_like_bulk:
1495 ep->last_io = jiffies;
1496 total = transfer(dum, urb, ep, limit, &status);
1497 break;
1500 /* incomplete transfer? */
1501 if (status == -EINPROGRESS)
1502 continue;
1504 return_urb:
1505 list_del (&urbp->urbp_list);
1506 kfree (urbp);
1507 if (ep)
1508 ep->already_seen = ep->setup_stage = 0;
1510 usb_hcd_unlink_urb_from_ep(dummy_to_hcd(dum), urb);
1511 spin_unlock (&dum->lock);
1512 urb->status = status;
1513 usb_hcd_giveback_urb(dummy_to_hcd(dum), urb, status);
1514 spin_lock (&dum->lock);
1516 goto restart;
1519 if (list_empty (&dum->urbp_list)) {
1520 usb_put_dev (dum->udev);
1521 dum->udev = NULL;
1522 } else if (dum->rh_state == DUMMY_RH_RUNNING) {
1523 /* want a 1 msec delay here */
1524 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
1527 spin_unlock_irqrestore (&dum->lock, flags);
1530 /*-------------------------------------------------------------------------*/
1532 #define PORT_C_MASK \
1533 ((USB_PORT_STAT_C_CONNECTION \
1534 | USB_PORT_STAT_C_ENABLE \
1535 | USB_PORT_STAT_C_SUSPEND \
1536 | USB_PORT_STAT_C_OVERCURRENT \
1537 | USB_PORT_STAT_C_RESET) << 16)
1539 static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1541 struct dummy *dum;
1542 unsigned long flags;
1543 int retval = 0;
1545 dum = hcd_to_dummy (hcd);
1547 spin_lock_irqsave (&dum->lock, flags);
1548 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))
1549 goto done;
1551 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1552 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1553 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1554 set_link_state (dum);
1557 if ((dum->port_status & PORT_C_MASK) != 0) {
1558 *buf = (1 << 1);
1559 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
1560 dum->port_status);
1561 retval = 1;
1562 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1563 usb_hcd_resume_root_hub (hcd);
1565 done:
1566 spin_unlock_irqrestore (&dum->lock, flags);
1567 return retval;
1570 static inline void
1571 hub_descriptor (struct usb_hub_descriptor *desc)
1573 memset (desc, 0, sizeof *desc);
1574 desc->bDescriptorType = 0x29;
1575 desc->bDescLength = 9;
1576 desc->wHubCharacteristics = cpu_to_le16(0x0001);
1577 desc->bNbrPorts = 1;
1578 desc->bitmap [0] = 0xff;
1579 desc->bitmap [1] = 0xff;
1582 static int dummy_hub_control (
1583 struct usb_hcd *hcd,
1584 u16 typeReq,
1585 u16 wValue,
1586 u16 wIndex,
1587 char *buf,
1588 u16 wLength
1590 struct dummy *dum;
1591 int retval = 0;
1592 unsigned long flags;
1594 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))
1595 return -ETIMEDOUT;
1597 dum = hcd_to_dummy (hcd);
1598 spin_lock_irqsave (&dum->lock, flags);
1599 switch (typeReq) {
1600 case ClearHubFeature:
1601 break;
1602 case ClearPortFeature:
1603 switch (wValue) {
1604 case USB_PORT_FEAT_SUSPEND:
1605 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
1606 /* 20msec resume signaling */
1607 dum->resuming = 1;
1608 dum->re_timeout = jiffies +
1609 msecs_to_jiffies(20);
1611 break;
1612 case USB_PORT_FEAT_POWER:
1613 if (dum->port_status & USB_PORT_STAT_POWER)
1614 dev_dbg (dummy_dev(dum), "power-off\n");
1615 /* FALLS THROUGH */
1616 default:
1617 dum->port_status &= ~(1 << wValue);
1618 set_link_state (dum);
1620 break;
1621 case GetHubDescriptor:
1622 hub_descriptor ((struct usb_hub_descriptor *) buf);
1623 break;
1624 case GetHubStatus:
1625 *(__le32 *) buf = __constant_cpu_to_le32 (0);
1626 break;
1627 case GetPortStatus:
1628 if (wIndex != 1)
1629 retval = -EPIPE;
1631 /* whoever resets or resumes must GetPortStatus to
1632 * complete it!!
1634 if (dum->resuming &&
1635 time_after_eq (jiffies, dum->re_timeout)) {
1636 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1637 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1639 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1640 time_after_eq (jiffies, dum->re_timeout)) {
1641 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1642 dum->port_status &= ~USB_PORT_STAT_RESET;
1643 if (dum->pullup) {
1644 dum->port_status |= USB_PORT_STAT_ENABLE;
1645 /* give it the best speed we agree on */
1646 dum->gadget.speed = dum->driver->speed;
1647 dum->gadget.ep0->maxpacket = 64;
1648 switch (dum->gadget.speed) {
1649 case USB_SPEED_HIGH:
1650 dum->port_status |=
1651 USB_PORT_STAT_HIGH_SPEED;
1652 break;
1653 case USB_SPEED_LOW:
1654 dum->gadget.ep0->maxpacket = 8;
1655 dum->port_status |=
1656 USB_PORT_STAT_LOW_SPEED;
1657 break;
1658 default:
1659 dum->gadget.speed = USB_SPEED_FULL;
1660 break;
1664 set_link_state (dum);
1665 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1666 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1667 break;
1668 case SetHubFeature:
1669 retval = -EPIPE;
1670 break;
1671 case SetPortFeature:
1672 switch (wValue) {
1673 case USB_PORT_FEAT_SUSPEND:
1674 if (dum->active) {
1675 dum->port_status |= USB_PORT_STAT_SUSPEND;
1677 /* HNP would happen here; for now we
1678 * assume b_bus_req is always true.
1680 set_link_state (dum);
1681 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1682 & dum->devstatus) != 0)
1683 dev_dbg (dummy_dev(dum),
1684 "no HNP yet!\n");
1686 break;
1687 case USB_PORT_FEAT_POWER:
1688 dum->port_status |= USB_PORT_STAT_POWER;
1689 set_link_state (dum);
1690 break;
1691 case USB_PORT_FEAT_RESET:
1692 /* if it's already enabled, disable */
1693 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1694 | USB_PORT_STAT_LOW_SPEED
1695 | USB_PORT_STAT_HIGH_SPEED);
1696 dum->devstatus = 0;
1697 /* 50msec reset signaling */
1698 dum->re_timeout = jiffies + msecs_to_jiffies(50);
1699 /* FALLS THROUGH */
1700 default:
1701 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1702 dum->port_status |= (1 << wValue);
1703 set_link_state (dum);
1706 break;
1708 default:
1709 dev_dbg (dummy_dev(dum),
1710 "hub control req%04x v%04x i%04x l%d\n",
1711 typeReq, wValue, wIndex, wLength);
1713 /* "protocol stall" on error */
1714 retval = -EPIPE;
1716 spin_unlock_irqrestore (&dum->lock, flags);
1718 if ((dum->port_status & PORT_C_MASK) != 0)
1719 usb_hcd_poll_rh_status (hcd);
1720 return retval;
1723 static int dummy_bus_suspend (struct usb_hcd *hcd)
1725 struct dummy *dum = hcd_to_dummy (hcd);
1727 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __FUNCTION__);
1729 spin_lock_irq (&dum->lock);
1730 dum->rh_state = DUMMY_RH_SUSPENDED;
1731 set_link_state (dum);
1732 hcd->state = HC_STATE_SUSPENDED;
1733 spin_unlock_irq (&dum->lock);
1734 return 0;
1737 static int dummy_bus_resume (struct usb_hcd *hcd)
1739 struct dummy *dum = hcd_to_dummy (hcd);
1740 int rc = 0;
1742 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __FUNCTION__);
1744 spin_lock_irq (&dum->lock);
1745 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
1746 rc = -ESHUTDOWN;
1747 } else {
1748 dum->rh_state = DUMMY_RH_RUNNING;
1749 set_link_state (dum);
1750 if (!list_empty(&dum->urbp_list))
1751 mod_timer (&dum->timer, jiffies);
1752 hcd->state = HC_STATE_RUNNING;
1754 spin_unlock_irq (&dum->lock);
1755 return rc;
1758 /*-------------------------------------------------------------------------*/
1760 static inline ssize_t
1761 show_urb (char *buf, size_t size, struct urb *urb)
1763 int ep = usb_pipeendpoint (urb->pipe);
1765 return snprintf (buf, size,
1766 "urb/%p %s ep%d%s%s len %d/%d\n",
1767 urb,
1768 ({ char *s;
1769 switch (urb->dev->speed) {
1770 case USB_SPEED_LOW: s = "ls"; break;
1771 case USB_SPEED_FULL: s = "fs"; break;
1772 case USB_SPEED_HIGH: s = "hs"; break;
1773 default: s = "?"; break;
1774 }; s; }),
1775 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1776 ({ char *s; \
1777 switch (usb_pipetype (urb->pipe)) { \
1778 case PIPE_CONTROL: s = ""; break; \
1779 case PIPE_BULK: s = "-bulk"; break; \
1780 case PIPE_INTERRUPT: s = "-int"; break; \
1781 default: s = "-iso"; break; \
1782 }; s;}),
1783 urb->actual_length, urb->transfer_buffer_length);
1786 static ssize_t
1787 show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
1789 struct usb_hcd *hcd = dev_get_drvdata (dev);
1790 struct dummy *dum = hcd_to_dummy (hcd);
1791 struct urbp *urbp;
1792 size_t size = 0;
1793 unsigned long flags;
1795 spin_lock_irqsave (&dum->lock, flags);
1796 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1797 size_t temp;
1799 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1800 buf += temp;
1801 size += temp;
1803 spin_unlock_irqrestore (&dum->lock, flags);
1805 return size;
1807 static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1809 static int dummy_start (struct usb_hcd *hcd)
1811 struct dummy *dum;
1813 dum = hcd_to_dummy (hcd);
1816 * MASTER side init ... we emulate a root hub that'll only ever
1817 * talk to one device (the slave side). Also appears in sysfs,
1818 * just like more familiar pci-based HCDs.
1820 spin_lock_init (&dum->lock);
1821 init_timer (&dum->timer);
1822 dum->timer.function = dummy_timer;
1823 dum->timer.data = (unsigned long) dum;
1824 dum->rh_state = DUMMY_RH_RUNNING;
1826 INIT_LIST_HEAD (&dum->urbp_list);
1828 /* only show a low-power port: just 8mA */
1829 hcd->power_budget = 8;
1830 hcd->state = HC_STATE_RUNNING;
1831 hcd->uses_new_polling = 1;
1833 #ifdef CONFIG_USB_OTG
1834 hcd->self.otg_port = 1;
1835 #endif
1837 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1838 return device_create_file (dummy_dev(dum), &dev_attr_urbs);
1841 static void dummy_stop (struct usb_hcd *hcd)
1843 struct dummy *dum;
1845 dum = hcd_to_dummy (hcd);
1847 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
1848 usb_gadget_unregister_driver (dum->driver);
1849 dev_info (dummy_dev(dum), "stopped\n");
1852 /*-------------------------------------------------------------------------*/
1854 static int dummy_h_get_frame (struct usb_hcd *hcd)
1856 return dummy_g_get_frame (NULL);
1859 static const struct hc_driver dummy_hcd = {
1860 .description = (char *) driver_name,
1861 .product_desc = "Dummy host controller",
1862 .hcd_priv_size = sizeof(struct dummy),
1864 .flags = HCD_USB2,
1866 .start = dummy_start,
1867 .stop = dummy_stop,
1869 .urb_enqueue = dummy_urb_enqueue,
1870 .urb_dequeue = dummy_urb_dequeue,
1872 .get_frame_number = dummy_h_get_frame,
1874 .hub_status_data = dummy_hub_status,
1875 .hub_control = dummy_hub_control,
1876 .bus_suspend = dummy_bus_suspend,
1877 .bus_resume = dummy_bus_resume,
1880 static int dummy_hcd_probe(struct platform_device *pdev)
1882 struct usb_hcd *hcd;
1883 int retval;
1885 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1887 hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, pdev->dev.bus_id);
1888 if (!hcd)
1889 return -ENOMEM;
1890 the_controller = hcd_to_dummy (hcd);
1892 retval = usb_add_hcd(hcd, 0, 0);
1893 if (retval != 0) {
1894 usb_put_hcd (hcd);
1895 the_controller = NULL;
1897 return retval;
1900 static int dummy_hcd_remove (struct platform_device *pdev)
1902 struct usb_hcd *hcd;
1904 hcd = platform_get_drvdata (pdev);
1905 usb_remove_hcd (hcd);
1906 usb_put_hcd (hcd);
1907 the_controller = NULL;
1908 return 0;
1911 static int dummy_hcd_suspend (struct platform_device *pdev, pm_message_t state)
1913 struct usb_hcd *hcd;
1914 struct dummy *dum;
1915 int rc = 0;
1917 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
1919 hcd = platform_get_drvdata (pdev);
1920 dum = hcd_to_dummy (hcd);
1921 if (dum->rh_state == DUMMY_RH_RUNNING) {
1922 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
1923 rc = -EBUSY;
1924 } else
1925 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1926 return rc;
1929 static int dummy_hcd_resume (struct platform_device *pdev)
1931 struct usb_hcd *hcd;
1933 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
1935 hcd = platform_get_drvdata (pdev);
1936 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1937 usb_hcd_poll_rh_status (hcd);
1938 return 0;
1941 static struct platform_driver dummy_hcd_driver = {
1942 .probe = dummy_hcd_probe,
1943 .remove = dummy_hcd_remove,
1944 .suspend = dummy_hcd_suspend,
1945 .resume = dummy_hcd_resume,
1946 .driver = {
1947 .name = (char *) driver_name,
1948 .owner = THIS_MODULE,
1952 /*-------------------------------------------------------------------------*/
1954 /* These don't need to do anything because the pdev structures are
1955 * statically allocated. */
1956 static void
1957 dummy_udc_release (struct device *dev) {}
1959 static void
1960 dummy_hcd_release (struct device *dev) {}
1962 static struct platform_device the_udc_pdev = {
1963 .name = (char *) gadget_name,
1964 .id = -1,
1965 .dev = {
1966 .release = dummy_udc_release,
1970 static struct platform_device the_hcd_pdev = {
1971 .name = (char *) driver_name,
1972 .id = -1,
1973 .dev = {
1974 .release = dummy_hcd_release,
1978 static int __init init (void)
1980 int retval;
1982 if (usb_disabled ())
1983 return -ENODEV;
1985 retval = platform_driver_register (&dummy_hcd_driver);
1986 if (retval < 0)
1987 return retval;
1989 retval = platform_driver_register (&dummy_udc_driver);
1990 if (retval < 0)
1991 goto err_register_udc_driver;
1993 retval = platform_device_register (&the_hcd_pdev);
1994 if (retval < 0)
1995 goto err_register_hcd;
1997 retval = platform_device_register (&the_udc_pdev);
1998 if (retval < 0)
1999 goto err_register_udc;
2000 return retval;
2002 err_register_udc:
2003 platform_device_unregister (&the_hcd_pdev);
2004 err_register_hcd:
2005 platform_driver_unregister (&dummy_udc_driver);
2006 err_register_udc_driver:
2007 platform_driver_unregister (&dummy_hcd_driver);
2008 return retval;
2010 module_init (init);
2012 static void __exit cleanup (void)
2014 platform_device_unregister (&the_udc_pdev);
2015 platform_device_unregister (&the_hcd_pdev);
2016 platform_driver_unregister (&dummy_udc_driver);
2017 platform_driver_unregister (&dummy_hcd_driver);
2019 module_exit (cleanup);