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.
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>
54 #include <linux/usb.h>
55 #include <linux/usb_gadget.h>
57 #include <asm/byteorder.h>
60 #include <asm/system.h>
61 #include <asm/unaligned.h>
64 #include "../core/hcd.h"
67 #define DRIVER_DESC "USB Host+Gadget Emulator"
68 #define DRIVER_VERSION "02 May 2005"
70 static const char driver_name [] = "dummy_hcd";
71 static const char driver_desc [] = "USB Host+Gadget Emulator";
73 static const char gadget_name [] = "dummy_udc";
75 MODULE_DESCRIPTION (DRIVER_DESC);
76 MODULE_AUTHOR ("David Brownell");
77 MODULE_LICENSE ("GPL");
79 /*-------------------------------------------------------------------------*/
81 /* gadget side driver data structres */
83 struct list_head queue;
84 unsigned long last_io; /* jiffies timestamp */
85 struct usb_gadget *gadget;
86 const struct usb_endpoint_descriptor *desc;
89 unsigned already_seen : 1;
90 unsigned setup_stage : 1;
93 struct dummy_request {
94 struct list_head queue; /* ep's requests */
95 struct usb_request req;
98 static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
100 return container_of (_ep, struct dummy_ep, ep);
103 static inline struct dummy_request *usb_request_to_dummy_request
104 (struct usb_request *_req)
106 return container_of (_req, struct dummy_request, req);
109 /*-------------------------------------------------------------------------*/
112 * Every device has ep0 for control requests, plus up to 30 more endpoints,
113 * in one of two types:
115 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
116 * number can be changed. Names like "ep-a" are used for this type.
118 * - Fixed Function: in other cases. some characteristics may be mutable;
119 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
121 * Gadget drivers are responsible for not setting up conflicting endpoint
122 * configurations, illegal or unsupported packet lengths, and so on.
125 static const char ep0name [] = "ep0";
127 static const char *const ep_name [] = {
128 ep0name, /* everyone has ep0 */
130 /* act like a net2280: high speed, six configurable endpoints */
131 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
133 /* or like pxa250: fifteen fixed function endpoints */
134 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
135 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
136 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
139 /* or like sa1100: two fixed function endpoints */
140 "ep1out-bulk", "ep2in-bulk",
142 #define DUMMY_ENDPOINTS (sizeof(ep_name)/sizeof(char *))
144 /*-------------------------------------------------------------------------*/
150 struct list_head urbp_list;
154 enum dummy_rh_state {
164 * SLAVE/GADGET side support
166 struct dummy_ep ep [DUMMY_ENDPOINTS];
168 struct usb_gadget gadget;
169 struct usb_gadget_driver *driver;
170 struct dummy_request fifo_req;
171 u8 fifo_buf [FIFO_SIZE];
173 unsigned udc_suspended:1;
176 unsigned old_active:1;
179 * MASTER/HOST side support
181 enum dummy_rh_state rh_state;
182 struct timer_list timer;
186 unsigned long re_timeout;
188 struct usb_device *udev;
189 struct list_head urbp_list;
192 static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
194 return (struct dummy *) (hcd->hcd_priv);
197 static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
199 return container_of((void *) dum, struct usb_hcd, hcd_priv);
202 static inline struct device *dummy_dev (struct dummy *dum)
204 return dummy_to_hcd(dum)->self.controller;
207 static inline struct device *udc_dev (struct dummy *dum)
209 return dum->gadget.dev.parent;
212 static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
214 return container_of (ep->gadget, struct dummy, gadget);
217 static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
219 return container_of (gadget, struct dummy, gadget);
222 static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
224 return container_of (dev, struct dummy, gadget.dev);
227 static struct dummy *the_controller;
229 /*-------------------------------------------------------------------------*/
231 /* SLAVE/GADGET SIDE UTILITY ROUTINES */
233 /* called with spinlock held */
234 static void nuke (struct dummy *dum, struct dummy_ep *ep)
236 while (!list_empty (&ep->queue)) {
237 struct dummy_request *req;
239 req = list_entry (ep->queue.next, struct dummy_request, queue);
240 list_del_init (&req->queue);
241 req->req.status = -ESHUTDOWN;
243 spin_unlock (&dum->lock);
244 req->req.complete (&ep->ep, &req->req);
245 spin_lock (&dum->lock);
249 /* caller must hold lock */
251 stop_activity (struct dummy *dum)
255 /* prevent any more requests */
258 /* The timer is left running so that outstanding URBs can fail */
260 /* nuke any pending requests first, so driver i/o is quiesced */
261 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
264 /* driver now does any non-usb quiescing necessary */
267 /* caller must hold lock */
269 set_link_state (struct dummy *dum)
272 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
273 dum->port_status = 0;
275 /* UDC suspend must cause a disconnect */
276 else if (!dum->pullup || dum->udc_suspended) {
277 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
278 USB_PORT_STAT_ENABLE |
279 USB_PORT_STAT_LOW_SPEED |
280 USB_PORT_STAT_HIGH_SPEED |
281 USB_PORT_STAT_SUSPEND);
282 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
283 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
285 dum->port_status |= USB_PORT_STAT_CONNECTION;
286 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
287 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
288 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
289 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
290 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
291 dum->rh_state != DUMMY_RH_SUSPENDED)
295 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
298 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
299 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
300 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
301 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
304 spin_unlock (&dum->lock);
305 dum->driver->disconnect (&dum->gadget);
306 spin_lock (&dum->lock);
308 } else if (dum->active != dum->old_active) {
309 if (dum->old_active && dum->driver->suspend) {
310 spin_unlock (&dum->lock);
311 dum->driver->suspend (&dum->gadget);
312 spin_lock (&dum->lock);
313 } else if (!dum->old_active && dum->driver->resume) {
314 spin_unlock (&dum->lock);
315 dum->driver->resume (&dum->gadget);
316 spin_lock (&dum->lock);
320 dum->old_status = dum->port_status;
321 dum->old_active = dum->active;
324 /*-------------------------------------------------------------------------*/
326 /* SLAVE/GADGET SIDE DRIVER
328 * This only tracks gadget state. All the work is done when the host
329 * side tries some (emulated) i/o operation. Real device controller
330 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
333 #define is_enabled(dum) \
334 (dum->port_status & USB_PORT_STAT_ENABLE)
337 dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
344 ep = usb_ep_to_dummy_ep (_ep);
345 if (!_ep || !desc || ep->desc || _ep->name == ep0name
346 || desc->bDescriptorType != USB_DT_ENDPOINT)
348 dum = ep_to_dummy (ep);
349 if (!dum->driver || !is_enabled (dum))
351 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
353 /* drivers must not request bad settings, since lower levels
354 * (hardware or its drivers) may not check. some endpoints
355 * can't do iso, many have maxpacket limitations, etc.
357 * since this "hardware" driver is here to help debugging, we
358 * have some extra sanity checks. (there could be more though,
359 * especially for "ep9out" style fixed function ones.)
362 switch (desc->bmAttributes & 0x03) {
363 case USB_ENDPOINT_XFER_BULK:
364 if (strstr (ep->ep.name, "-iso")
365 || strstr (ep->ep.name, "-int")) {
368 switch (dum->gadget.speed) {
372 /* conserve return statements */
375 case 8: case 16: case 32: case 64:
376 /* we'll fake any legal size */
384 case USB_ENDPOINT_XFER_INT:
385 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
387 /* real hardware might not handle all packet sizes */
388 switch (dum->gadget.speed) {
392 /* save a return statement */
396 /* save a return statement */
403 case USB_ENDPOINT_XFER_ISOC:
404 if (strstr (ep->ep.name, "-bulk")
405 || strstr (ep->ep.name, "-int"))
407 /* real hardware might not handle all packet sizes */
408 switch (dum->gadget.speed) {
412 /* save a return statement */
416 /* save a return statement */
422 /* few chips support control except on ep0 */
426 _ep->maxpacket = max;
429 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
431 desc->bEndpointAddress & 0x0f,
432 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
434 switch (desc->bmAttributes & 0x03) {
435 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
436 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
437 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
438 default: val = "ctrl"; break;
442 /* at this point real hardware should be NAKing transfers
443 * to that endpoint, until a buffer is queued to it.
450 static int dummy_disable (struct usb_ep *_ep)
457 ep = usb_ep_to_dummy_ep (_ep);
458 if (!_ep || !ep->desc || _ep->name == ep0name)
460 dum = ep_to_dummy (ep);
462 spin_lock_irqsave (&dum->lock, flags);
466 spin_unlock_irqrestore (&dum->lock, flags);
468 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
472 static struct usb_request *
473 dummy_alloc_request (struct usb_ep *_ep, int mem_flags)
476 struct dummy_request *req;
480 ep = usb_ep_to_dummy_ep (_ep);
482 req = kmalloc (sizeof *req, mem_flags);
485 memset (req, 0, sizeof *req);
486 INIT_LIST_HEAD (&req->queue);
491 dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
494 struct dummy_request *req;
496 ep = usb_ep_to_dummy_ep (_ep);
497 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
500 req = usb_request_to_dummy_request (_req);
501 WARN_ON (!list_empty (&req->queue));
516 ep = usb_ep_to_dummy_ep (_ep);
517 dum = ep_to_dummy (ep);
521 retval = kmalloc (bytes, mem_flags);
522 *dma = (dma_addr_t) retval;
538 fifo_complete (struct usb_ep *ep, struct usb_request *req)
543 dummy_queue (struct usb_ep *_ep, struct usb_request *_req, int mem_flags)
546 struct dummy_request *req;
550 req = usb_request_to_dummy_request (_req);
551 if (!_req || !list_empty (&req->queue) || !_req->complete)
554 ep = usb_ep_to_dummy_ep (_ep);
555 if (!_ep || (!ep->desc && _ep->name != ep0name))
558 dum = ep_to_dummy (ep);
559 if (!dum->driver || !is_enabled (dum))
563 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
564 ep, _req, _ep->name, _req->length, _req->buf);
567 _req->status = -EINPROGRESS;
569 spin_lock_irqsave (&dum->lock, flags);
571 /* implement an emulated single-request FIFO */
572 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
573 list_empty (&dum->fifo_req.queue) &&
574 list_empty (&ep->queue) &&
575 _req->length <= FIFO_SIZE) {
576 req = &dum->fifo_req;
578 req->req.buf = dum->fifo_buf;
579 memcpy (dum->fifo_buf, _req->buf, _req->length);
580 req->req.context = dum;
581 req->req.complete = fifo_complete;
583 spin_unlock (&dum->lock);
584 _req->actual = _req->length;
586 _req->complete (_ep, _req);
587 spin_lock (&dum->lock);
589 list_add_tail (&req->queue, &ep->queue);
590 spin_unlock_irqrestore (&dum->lock, flags);
592 /* real hardware would likely enable transfers here, in case
593 * it'd been left NAKing.
598 static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
602 int retval = -EINVAL;
604 struct dummy_request *req = NULL;
608 ep = usb_ep_to_dummy_ep (_ep);
609 dum = ep_to_dummy (ep);
614 spin_lock_irqsave (&dum->lock, flags);
615 list_for_each_entry (req, &ep->queue, queue) {
616 if (&req->req == _req) {
617 list_del_init (&req->queue);
618 _req->status = -ECONNRESET;
623 spin_unlock_irqrestore (&dum->lock, flags);
626 dev_dbg (udc_dev(dum),
627 "dequeued req %p from %s, len %d buf %p\n",
628 req, _ep->name, _req->length, _req->buf);
629 _req->complete (_ep, _req);
635 dummy_set_halt (struct usb_ep *_ep, int value)
642 ep = usb_ep_to_dummy_ep (_ep);
643 dum = ep_to_dummy (ep);
648 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
649 !list_empty (&ep->queue))
653 /* FIXME clear emulated data toggle too */
657 static const struct usb_ep_ops dummy_ep_ops = {
658 .enable = dummy_enable,
659 .disable = dummy_disable,
661 .alloc_request = dummy_alloc_request,
662 .free_request = dummy_free_request,
664 .alloc_buffer = dummy_alloc_buffer,
665 .free_buffer = dummy_free_buffer,
666 /* map, unmap, ... eventually hook the "generic" dma calls */
668 .queue = dummy_queue,
669 .dequeue = dummy_dequeue,
671 .set_halt = dummy_set_halt,
674 /*-------------------------------------------------------------------------*/
676 /* there are both host and device side versions of this call ... */
677 static int dummy_g_get_frame (struct usb_gadget *_gadget)
681 do_gettimeofday (&tv);
682 return tv.tv_usec / 1000;
685 static int dummy_wakeup (struct usb_gadget *_gadget)
689 dum = gadget_to_dummy (_gadget);
690 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
691 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
693 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
695 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
696 dum->rh_state != DUMMY_RH_SUSPENDED)
699 /* FIXME: What if the root hub is suspended but the port isn't? */
701 /* hub notices our request, issues downstream resume, etc */
703 dum->re_timeout = jiffies + msecs_to_jiffies(20);
704 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
708 static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
712 dum = gadget_to_dummy (_gadget);
714 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
716 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
720 static int dummy_pullup (struct usb_gadget *_gadget, int value)
725 dum = gadget_to_dummy (_gadget);
726 spin_lock_irqsave (&dum->lock, flags);
727 dum->pullup = (value != 0);
728 set_link_state (dum);
729 spin_unlock_irqrestore (&dum->lock, flags);
731 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
735 static const struct usb_gadget_ops dummy_ops = {
736 .get_frame = dummy_g_get_frame,
737 .wakeup = dummy_wakeup,
738 .set_selfpowered = dummy_set_selfpowered,
739 .pullup = dummy_pullup,
742 /*-------------------------------------------------------------------------*/
744 /* "function" sysfs attribute */
746 show_function (struct device *dev, struct device_attribute *attr, char *buf)
748 struct dummy *dum = gadget_dev_to_dummy (dev);
750 if (!dum->driver || !dum->driver->function)
752 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
754 static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
756 /*-------------------------------------------------------------------------*/
759 * Driver registration/unregistration.
761 * This is basically hardware-specific; there's usually only one real USB
762 * device (not host) controller since that's how USB devices are intended
763 * to work. So most implementations of these api calls will rely on the
764 * fact that only one driver will ever bind to the hardware. But curious
765 * hardware can be built with discrete components, so the gadget API doesn't
766 * require that assumption.
768 * For this emulator, it might be convenient to create a usb slave device
769 * for each driver that registers: just add to a big root hub.
773 usb_gadget_register_driver (struct usb_gadget_driver *driver)
775 struct dummy *dum = the_controller;
782 if (!driver->bind || !driver->unbind || !driver->setup
783 || driver->speed == USB_SPEED_UNKNOWN)
787 * SLAVE side init ... the layer above hardware, which
788 * can't enumerate without help from the driver we're binding.
793 INIT_LIST_HEAD (&dum->gadget.ep_list);
794 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
795 struct dummy_ep *ep = &dum->ep [i];
799 ep->ep.name = ep_name [i];
800 ep->ep.ops = &dummy_ep_ops;
801 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
802 ep->halted = ep->already_seen = ep->setup_stage = 0;
803 ep->ep.maxpacket = ~0;
804 ep->last_io = jiffies;
805 ep->gadget = &dum->gadget;
807 INIT_LIST_HEAD (&ep->queue);
810 dum->gadget.ep0 = &dum->ep [0].ep;
811 dum->ep [0].ep.maxpacket = 64;
812 list_del_init (&dum->ep [0].ep.ep_list);
813 INIT_LIST_HEAD(&dum->fifo_req.queue);
815 dum->driver = driver;
816 dum->gadget.dev.driver = &driver->driver;
817 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
818 driver->driver.name);
819 if ((retval = driver->bind (&dum->gadget)) != 0) {
821 dum->gadget.dev.driver = NULL;
825 driver->driver.bus = dum->gadget.dev.parent->bus;
826 driver_register (&driver->driver);
827 device_bind_driver (&dum->gadget.dev);
829 /* khubd will enumerate this in a while */
830 spin_lock_irq (&dum->lock);
832 set_link_state (dum);
833 spin_unlock_irq (&dum->lock);
835 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
838 EXPORT_SYMBOL (usb_gadget_register_driver);
841 usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
843 struct dummy *dum = the_controller;
848 if (!driver || driver != dum->driver)
851 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
852 driver->driver.name);
854 spin_lock_irqsave (&dum->lock, flags);
856 set_link_state (dum);
857 spin_unlock_irqrestore (&dum->lock, flags);
859 driver->unbind (&dum->gadget);
862 device_release_driver (&dum->gadget.dev);
863 driver_unregister (&driver->driver);
865 spin_lock_irqsave (&dum->lock, flags);
867 set_link_state (dum);
868 spin_unlock_irqrestore (&dum->lock, flags);
870 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
873 EXPORT_SYMBOL (usb_gadget_unregister_driver);
877 /* just declare this in any driver that really need it */
878 extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
880 int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
884 EXPORT_SYMBOL (net2280_set_fifo_mode);
887 /* The gadget structure is stored inside the hcd structure and will be
888 * released along with it. */
890 dummy_gadget_release (struct device *dev)
892 #if 0 /* usb_bus_put isn't EXPORTed! */
893 struct dummy *dum = gadget_dev_to_dummy (dev);
895 usb_bus_put (&dummy_to_hcd (dum)->self);
899 static int dummy_udc_probe (struct device *dev)
901 struct dummy *dum = the_controller;
904 dum->gadget.name = gadget_name;
905 dum->gadget.ops = &dummy_ops;
906 dum->gadget.is_dualspeed = 1;
908 /* maybe claim OTG support, though we won't complete HNP */
909 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
911 strcpy (dum->gadget.dev.bus_id, "gadget");
912 dum->gadget.dev.parent = dev;
913 dum->gadget.dev.release = dummy_gadget_release;
914 rc = device_register (&dum->gadget.dev);
918 #if 0 /* usb_bus_get isn't EXPORTed! */
919 usb_bus_get (&dummy_to_hcd (dum)->self);
922 dev_set_drvdata (dev, dum);
923 device_create_file (&dum->gadget.dev, &dev_attr_function);
927 static int dummy_udc_remove (struct device *dev)
929 struct dummy *dum = dev_get_drvdata (dev);
931 dev_set_drvdata (dev, NULL);
932 device_remove_file (&dum->gadget.dev, &dev_attr_function);
933 device_unregister (&dum->gadget.dev);
937 static int dummy_udc_suspend (struct device *dev, pm_message_t state,
940 struct dummy *dum = dev_get_drvdata(dev);
942 if (level != SUSPEND_DISABLE)
945 dev_dbg (dev, "%s\n", __FUNCTION__);
946 spin_lock_irq (&dum->lock);
947 dum->udc_suspended = 1;
948 set_link_state (dum);
949 spin_unlock_irq (&dum->lock);
951 dev->power.power_state = state;
952 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
956 static int dummy_udc_resume (struct device *dev, u32 level)
958 struct dummy *dum = dev_get_drvdata(dev);
960 if (level != RESUME_ENABLE)
963 dev_dbg (dev, "%s\n", __FUNCTION__);
964 spin_lock_irq (&dum->lock);
965 dum->udc_suspended = 0;
966 set_link_state (dum);
967 spin_unlock_irq (&dum->lock);
969 dev->power.power_state = PMSG_ON;
970 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
974 static struct device_driver dummy_udc_driver = {
975 .name = (char *) gadget_name,
976 .bus = &platform_bus_type,
977 .probe = dummy_udc_probe,
978 .remove = dummy_udc_remove,
979 .suspend = dummy_udc_suspend,
980 .resume = dummy_udc_resume,
983 /*-------------------------------------------------------------------------*/
985 /* MASTER/HOST SIDE DRIVER
987 * this uses the hcd framework to hook up to host side drivers.
988 * its root hub will only have one device, otherwise it acts like
989 * a normal host controller.
991 * when urbs are queued, they're just stuck on a list that we
992 * scan in a timer callback. that callback connects writes from
993 * the host with reads from the device, and so on, based on the
997 static int dummy_urb_enqueue (
999 struct usb_host_endpoint *ep,
1005 unsigned long flags;
1007 if (!urb->transfer_buffer && urb->transfer_buffer_length)
1010 urbp = kmalloc (sizeof *urbp, mem_flags);
1015 dum = hcd_to_dummy (hcd);
1016 spin_lock_irqsave (&dum->lock, flags);
1019 dum->udev = urb->dev;
1020 usb_get_dev (dum->udev);
1021 } else if (unlikely (dum->udev != urb->dev))
1022 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
1024 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
1026 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
1027 urb->error_count = 1; /* mark as a new urb */
1029 /* kick the scheduler, it'll do the rest */
1030 if (!timer_pending (&dum->timer))
1031 mod_timer (&dum->timer, jiffies + 1);
1033 spin_unlock_irqrestore (&dum->lock, flags);
1037 static int dummy_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
1040 unsigned long flags;
1042 /* giveback happens automatically in timer callback,
1043 * so make sure the callback happens */
1044 dum = hcd_to_dummy (hcd);
1045 spin_lock_irqsave (&dum->lock, flags);
1046 if (dum->rh_state != DUMMY_RH_RUNNING && !list_empty(&dum->urbp_list))
1047 mod_timer (&dum->timer, jiffies);
1048 spin_unlock_irqrestore (&dum->lock, flags);
1052 static void maybe_set_status (struct urb *urb, int status)
1054 spin_lock (&urb->lock);
1055 if (urb->status == -EINPROGRESS)
1056 urb->status = status;
1057 spin_unlock (&urb->lock);
1060 /* transfer up to a frame's worth; caller must own lock */
1062 transfer (struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit)
1064 struct dummy_request *req;
1067 /* if there's no request queued, the device is NAKing; return */
1068 list_for_each_entry (req, &ep->queue, queue) {
1069 unsigned host_len, dev_len, len;
1070 int is_short, to_host;
1073 /* 1..N packets of ep->ep.maxpacket each ... the last one
1074 * may be short (including zero length).
1076 * writer can send a zlp explicitly (length 0) or implicitly
1077 * (length mod maxpacket zero, and 'zero' flag); they always
1080 host_len = urb->transfer_buffer_length - urb->actual_length;
1081 dev_len = req->req.length - req->req.actual;
1082 len = min (host_len, dev_len);
1084 /* FIXME update emulated data toggle too */
1086 to_host = usb_pipein (urb->pipe);
1087 if (unlikely (len == 0))
1092 /* not enough bandwidth left? */
1093 if (limit < ep->ep.maxpacket && limit < len)
1095 len = min (len, (unsigned) limit);
1099 /* use an extra pass for the final short packet */
1100 if (len > ep->ep.maxpacket) {
1102 len -= (len % ep->ep.maxpacket);
1104 is_short = (len % ep->ep.maxpacket) != 0;
1106 /* else transfer packet(s) */
1107 ubuf = urb->transfer_buffer + urb->actual_length;
1108 rbuf = req->req.buf + req->req.actual;
1110 memcpy (ubuf, rbuf, len);
1112 memcpy (rbuf, ubuf, len);
1113 ep->last_io = jiffies;
1116 urb->actual_length += len;
1117 req->req.actual += len;
1120 /* short packets terminate, maybe with overflow/underflow.
1121 * it's only really an error to write too much.
1123 * partially filling a buffer optionally blocks queue advances
1124 * (so completion handlers can clean up the queue) but we don't
1125 * need to emulate such data-in-flight. so we only show part
1126 * of the URB_SHORT_NOT_OK effect: completion status.
1129 if (host_len == dev_len) {
1130 req->req.status = 0;
1131 maybe_set_status (urb, 0);
1132 } else if (to_host) {
1133 req->req.status = 0;
1134 if (dev_len > host_len)
1135 maybe_set_status (urb, -EOVERFLOW);
1137 maybe_set_status (urb,
1138 (urb->transfer_flags
1141 } else if (!to_host) {
1142 maybe_set_status (urb, 0);
1143 if (host_len > dev_len)
1144 req->req.status = -EOVERFLOW;
1146 req->req.status = 0;
1149 /* many requests terminate without a short packet */
1151 if (req->req.length == req->req.actual
1153 req->req.status = 0;
1154 if (urb->transfer_buffer_length == urb->actual_length
1155 && !(urb->transfer_flags
1156 & URB_ZERO_PACKET)) {
1157 maybe_set_status (urb, 0);
1161 /* device side completion --> continuable */
1162 if (req->req.status != -EINPROGRESS) {
1163 list_del_init (&req->queue);
1165 spin_unlock (&dum->lock);
1166 req->req.complete (&ep->ep, &req->req);
1167 spin_lock (&dum->lock);
1169 /* requests might have been unlinked... */
1173 /* host side completion --> terminate */
1174 if (urb->status != -EINPROGRESS)
1177 /* rescan to continue with any other queued i/o */
1184 static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1186 int limit = ep->ep.maxpacket;
1188 if (dum->gadget.speed == USB_SPEED_HIGH) {
1191 /* high bandwidth mode */
1192 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
1193 tmp = (tmp >> 11) & 0x03;
1194 tmp *= 8 /* applies to entire frame */;
1195 limit += limit * tmp;
1200 #define is_active(dum) ((dum->port_status & \
1201 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1202 USB_PORT_STAT_SUSPEND)) \
1203 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1205 static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1209 if (!is_active (dum))
1211 if ((address & ~USB_DIR_IN) == 0)
1212 return &dum->ep [0];
1213 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1214 struct dummy_ep *ep = &dum->ep [i];
1218 if (ep->desc->bEndpointAddress == address)
1226 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1227 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1228 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1229 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1230 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1231 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1233 /* drive both sides of the transfers; looks like irq handlers to
1234 * both drivers except the callbacks aren't in_irq().
1236 static void dummy_timer (unsigned long _dum)
1238 struct dummy *dum = (struct dummy *) _dum;
1239 struct urbp *urbp, *tmp;
1240 unsigned long flags;
1244 /* simplistic model for one frame's bandwidth */
1245 switch (dum->gadget.speed) {
1247 total = 8/*bytes*/ * 12/*packets*/;
1249 case USB_SPEED_FULL:
1250 total = 64/*bytes*/ * 19/*packets*/;
1252 case USB_SPEED_HIGH:
1253 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1256 dev_err (dummy_dev(dum), "bogus device speed\n");
1260 /* FIXME if HZ != 1000 this will probably misbehave ... */
1262 /* look at each urb queued by the host side driver */
1263 spin_lock_irqsave (&dum->lock, flags);
1266 dev_err (dummy_dev(dum),
1267 "timer fired with no URBs pending?\n");
1268 spin_unlock_irqrestore (&dum->lock, flags);
1272 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1275 dum->ep [i].already_seen = 0;
1279 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1281 struct dummy_request *req;
1283 struct dummy_ep *ep = NULL;
1287 if (urb->status != -EINPROGRESS) {
1288 /* likely it was just unlinked */
1290 } else if (dum->rh_state != DUMMY_RH_RUNNING)
1292 type = usb_pipetype (urb->pipe);
1294 /* used up this frame's non-periodic bandwidth?
1295 * FIXME there's infinite bandwidth for control and
1296 * periodic transfers ... unrealistic.
1298 if (total <= 0 && type == PIPE_BULK)
1301 /* find the gadget's ep for this request (if configured) */
1302 address = usb_pipeendpoint (urb->pipe);
1303 if (usb_pipein (urb->pipe))
1304 address |= USB_DIR_IN;
1305 ep = find_endpoint(dum, address);
1307 /* set_configuration() disagreement */
1308 dev_dbg (dummy_dev(dum),
1309 "no ep configured for urb %p\n",
1311 maybe_set_status (urb, -EPROTO);
1315 if (ep->already_seen)
1317 ep->already_seen = 1;
1318 if (ep == &dum->ep [0] && urb->error_count) {
1319 ep->setup_stage = 1; /* a new urb */
1320 urb->error_count = 0;
1322 if (ep->halted && !ep->setup_stage) {
1323 /* NOTE: must not be iso! */
1324 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1326 maybe_set_status (urb, -EPIPE);
1329 /* FIXME make sure both ends agree on maxpacket */
1331 /* handle control requests */
1332 if (ep == &dum->ep [0] && ep->setup_stage) {
1333 struct usb_ctrlrequest setup;
1335 struct dummy_ep *ep2;
1339 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1340 w_index = le16_to_cpu(setup.wIndex);
1341 w_value = le16_to_cpu(setup.wValue);
1342 if (le16_to_cpu(setup.wLength) !=
1343 urb->transfer_buffer_length) {
1344 maybe_set_status (urb, -EOVERFLOW);
1348 /* paranoia, in case of stale queued data */
1349 list_for_each_entry (req, &ep->queue, queue) {
1350 list_del_init (&req->queue);
1351 req->req.status = -EOVERFLOW;
1352 dev_dbg (udc_dev(dum), "stale req = %p\n",
1355 spin_unlock (&dum->lock);
1356 req->req.complete (&ep->ep, &req->req);
1357 spin_lock (&dum->lock);
1358 ep->already_seen = 0;
1362 /* gadget driver never sees set_address or operations
1363 * on standard feature flags. some hardware doesn't
1366 ep->last_io = jiffies;
1367 ep->setup_stage = 0;
1369 switch (setup.bRequest) {
1370 case USB_REQ_SET_ADDRESS:
1371 if (setup.bRequestType != Dev_Request)
1373 dum->address = w_value;
1374 maybe_set_status (urb, 0);
1375 dev_dbg (udc_dev(dum), "set_address = %d\n",
1379 case USB_REQ_SET_FEATURE:
1380 if (setup.bRequestType == Dev_Request) {
1383 case USB_DEVICE_REMOTE_WAKEUP:
1385 case USB_DEVICE_B_HNP_ENABLE:
1386 dum->gadget.b_hnp_enable = 1;
1388 case USB_DEVICE_A_HNP_SUPPORT:
1389 dum->gadget.a_hnp_support = 1;
1391 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1392 dum->gadget.a_alt_hnp_support
1396 value = -EOPNOTSUPP;
1401 maybe_set_status (urb, 0);
1404 } else if (setup.bRequestType == Ep_Request) {
1406 ep2 = find_endpoint (dum, w_index);
1408 value = -EOPNOTSUPP;
1413 maybe_set_status (urb, 0);
1416 case USB_REQ_CLEAR_FEATURE:
1417 if (setup.bRequestType == Dev_Request) {
1419 case USB_DEVICE_REMOTE_WAKEUP:
1420 dum->devstatus &= ~(1 <<
1421 USB_DEVICE_REMOTE_WAKEUP);
1423 maybe_set_status (urb, 0);
1426 value = -EOPNOTSUPP;
1429 } else if (setup.bRequestType == Ep_Request) {
1431 ep2 = find_endpoint (dum, w_index);
1433 value = -EOPNOTSUPP;
1438 maybe_set_status (urb, 0);
1441 case USB_REQ_GET_STATUS:
1442 if (setup.bRequestType == Dev_InRequest
1443 || setup.bRequestType
1445 || setup.bRequestType
1450 // device: remote wakeup, selfpowered
1451 // interface: nothing
1453 buf = (char *)urb->transfer_buffer;
1454 if (urb->transfer_buffer_length > 0) {
1455 if (setup.bRequestType ==
1457 ep2 = find_endpoint (dum, w_index);
1459 value = -EOPNOTSUPP;
1462 buf [0] = ep2->halted;
1463 } else if (setup.bRequestType ==
1470 if (urb->transfer_buffer_length > 1)
1472 urb->actual_length = min (2,
1473 urb->transfer_buffer_length);
1475 maybe_set_status (urb, 0);
1480 /* gadget driver handles all other requests. block
1481 * until setup() returns; no reentrancy issues etc.
1484 spin_unlock (&dum->lock);
1485 value = dum->driver->setup (&dum->gadget,
1487 spin_lock (&dum->lock);
1490 /* no delays (max 64KB data stage) */
1492 goto treat_control_like_bulk;
1494 /* error, see below */
1498 if (value != -EOPNOTSUPP)
1499 dev_dbg (udc_dev(dum),
1502 maybe_set_status (urb, -EPIPE);
1503 urb->actual_length = 0;
1509 /* non-control requests */
1511 switch (usb_pipetype (urb->pipe)) {
1512 case PIPE_ISOCHRONOUS:
1513 /* FIXME is it urb->interval since the last xfer?
1514 * use urb->iso_frame_desc[i].
1515 * complete whether or not ep has requests queued.
1516 * report random errors, to debug drivers.
1518 limit = max (limit, periodic_bytes (dum, ep));
1519 maybe_set_status (urb, -ENOSYS);
1522 case PIPE_INTERRUPT:
1523 /* FIXME is it urb->interval since the last xfer?
1524 * this almost certainly polls too fast.
1526 limit = max (limit, periodic_bytes (dum, ep));
1529 // case PIPE_BULK: case PIPE_CONTROL:
1531 treat_control_like_bulk:
1532 ep->last_io = jiffies;
1533 total = transfer (dum, urb, ep, limit);
1537 /* incomplete transfer? */
1538 if (urb->status == -EINPROGRESS)
1543 list_del (&urbp->urbp_list);
1546 ep->already_seen = ep->setup_stage = 0;
1548 spin_unlock (&dum->lock);
1549 usb_hcd_giveback_urb (dummy_to_hcd(dum), urb, NULL);
1550 spin_lock (&dum->lock);
1555 if (list_empty (&dum->urbp_list)) {
1556 usb_put_dev (dum->udev);
1558 } else if (dum->rh_state == DUMMY_RH_RUNNING) {
1559 /* want a 1 msec delay here */
1560 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
1563 spin_unlock_irqrestore (&dum->lock, flags);
1566 /*-------------------------------------------------------------------------*/
1568 #define PORT_C_MASK \
1569 ((USB_PORT_STAT_C_CONNECTION \
1570 | USB_PORT_STAT_C_ENABLE \
1571 | USB_PORT_STAT_C_SUSPEND \
1572 | USB_PORT_STAT_C_OVERCURRENT \
1573 | USB_PORT_STAT_C_RESET) << 16)
1575 static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1578 unsigned long flags;
1581 dum = hcd_to_dummy (hcd);
1583 spin_lock_irqsave (&dum->lock, flags);
1584 if (hcd->state != HC_STATE_RUNNING)
1587 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1588 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1589 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1590 set_link_state (dum);
1593 if ((dum->port_status & PORT_C_MASK) != 0) {
1595 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
1598 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1599 usb_hcd_resume_root_hub (hcd);
1602 spin_unlock_irqrestore (&dum->lock, flags);
1607 hub_descriptor (struct usb_hub_descriptor *desc)
1609 memset (desc, 0, sizeof *desc);
1610 desc->bDescriptorType = 0x29;
1611 desc->bDescLength = 9;
1612 desc->wHubCharacteristics = (__force __u16)
1613 (__constant_cpu_to_le16 (0x0001));
1614 desc->bNbrPorts = 1;
1615 desc->bitmap [0] = 0xff;
1616 desc->bitmap [1] = 0xff;
1619 static int dummy_hub_control (
1620 struct usb_hcd *hcd,
1629 unsigned long flags;
1631 if (hcd->state != HC_STATE_RUNNING)
1634 dum = hcd_to_dummy (hcd);
1635 spin_lock_irqsave (&dum->lock, flags);
1637 case ClearHubFeature:
1639 case ClearPortFeature:
1641 case USB_PORT_FEAT_SUSPEND:
1642 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
1643 /* 20msec resume signaling */
1645 dum->re_timeout = jiffies +
1646 msecs_to_jiffies(20);
1649 case USB_PORT_FEAT_POWER:
1650 if (dum->port_status & USB_PORT_STAT_POWER)
1651 dev_dbg (dummy_dev(dum), "power-off\n");
1654 dum->port_status &= ~(1 << wValue);
1655 set_link_state (dum);
1658 case GetHubDescriptor:
1659 hub_descriptor ((struct usb_hub_descriptor *) buf);
1662 *(__le32 *) buf = __constant_cpu_to_le32 (0);
1668 /* whoever resets or resumes must GetPortStatus to
1671 if (dum->resuming &&
1672 time_after_eq (jiffies, dum->re_timeout)) {
1673 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1674 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1676 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1677 time_after_eq (jiffies, dum->re_timeout)) {
1678 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1679 dum->port_status &= ~USB_PORT_STAT_RESET;
1681 dum->port_status |= USB_PORT_STAT_ENABLE;
1682 /* give it the best speed we agree on */
1683 dum->gadget.speed = dum->driver->speed;
1684 dum->gadget.ep0->maxpacket = 64;
1685 switch (dum->gadget.speed) {
1686 case USB_SPEED_HIGH:
1688 USB_PORT_STAT_HIGH_SPEED;
1691 dum->gadget.ep0->maxpacket = 8;
1693 USB_PORT_STAT_LOW_SPEED;
1696 dum->gadget.speed = USB_SPEED_FULL;
1701 set_link_state (dum);
1702 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1703 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1708 case SetPortFeature:
1710 case USB_PORT_FEAT_SUSPEND:
1712 dum->port_status |= USB_PORT_STAT_SUSPEND;
1714 /* HNP would happen here; for now we
1715 * assume b_bus_req is always true.
1717 set_link_state (dum);
1718 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1719 & dum->devstatus) != 0)
1720 dev_dbg (dummy_dev(dum),
1724 case USB_PORT_FEAT_POWER:
1725 dum->port_status |= USB_PORT_STAT_POWER;
1726 set_link_state (dum);
1728 case USB_PORT_FEAT_RESET:
1729 /* if it's already enabled, disable */
1730 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1731 | USB_PORT_STAT_LOW_SPEED
1732 | USB_PORT_STAT_HIGH_SPEED);
1734 /* 50msec reset signaling */
1735 dum->re_timeout = jiffies + msecs_to_jiffies(50);
1738 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1739 dum->port_status |= (1 << wValue);
1740 set_link_state (dum);
1746 dev_dbg (dummy_dev(dum),
1747 "hub control req%04x v%04x i%04x l%d\n",
1748 typeReq, wValue, wIndex, wLength);
1750 /* "protocol stall" on error */
1753 spin_unlock_irqrestore (&dum->lock, flags);
1755 if ((dum->port_status & PORT_C_MASK) != 0)
1756 usb_hcd_poll_rh_status (hcd);
1760 static int dummy_hub_suspend (struct usb_hcd *hcd)
1762 struct dummy *dum = hcd_to_dummy (hcd);
1764 spin_lock_irq (&dum->lock);
1765 dum->rh_state = DUMMY_RH_SUSPENDED;
1766 set_link_state (dum);
1767 spin_unlock_irq (&dum->lock);
1771 static int dummy_hub_resume (struct usb_hcd *hcd)
1773 struct dummy *dum = hcd_to_dummy (hcd);
1775 spin_lock_irq (&dum->lock);
1776 dum->rh_state = DUMMY_RH_RUNNING;
1777 set_link_state (dum);
1778 if (!list_empty(&dum->urbp_list))
1779 mod_timer (&dum->timer, jiffies);
1780 spin_unlock_irq (&dum->lock);
1784 /*-------------------------------------------------------------------------*/
1786 static inline ssize_t
1787 show_urb (char *buf, size_t size, struct urb *urb)
1789 int ep = usb_pipeendpoint (urb->pipe);
1791 return snprintf (buf, size,
1792 "urb/%p %s ep%d%s%s len %d/%d\n",
1795 switch (urb->dev->speed) {
1796 case USB_SPEED_LOW: s = "ls"; break;
1797 case USB_SPEED_FULL: s = "fs"; break;
1798 case USB_SPEED_HIGH: s = "hs"; break;
1799 default: s = "?"; break;
1801 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1803 switch (usb_pipetype (urb->pipe)) { \
1804 case PIPE_CONTROL: s = ""; break; \
1805 case PIPE_BULK: s = "-bulk"; break; \
1806 case PIPE_INTERRUPT: s = "-int"; break; \
1807 default: s = "-iso"; break; \
1809 urb->actual_length, urb->transfer_buffer_length);
1813 show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
1815 struct usb_hcd *hcd = dev_get_drvdata (dev);
1816 struct dummy *dum = hcd_to_dummy (hcd);
1819 unsigned long flags;
1821 spin_lock_irqsave (&dum->lock, flags);
1822 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1825 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1829 spin_unlock_irqrestore (&dum->lock, flags);
1833 static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1835 static int dummy_start (struct usb_hcd *hcd)
1839 dum = hcd_to_dummy (hcd);
1842 * MASTER side init ... we emulate a root hub that'll only ever
1843 * talk to one device (the slave side). Also appears in sysfs,
1844 * just like more familiar pci-based HCDs.
1846 spin_lock_init (&dum->lock);
1847 init_timer (&dum->timer);
1848 dum->timer.function = dummy_timer;
1849 dum->timer.data = (unsigned long) dum;
1850 dum->rh_state = DUMMY_RH_RUNNING;
1852 INIT_LIST_HEAD (&dum->urbp_list);
1854 /* only show a low-power port: just 8mA */
1855 hcd->power_budget = 8;
1856 hcd->state = HC_STATE_RUNNING;
1857 hcd->uses_new_polling = 1;
1859 #ifdef CONFIG_USB_OTG
1860 hcd->self.otg_port = 1;
1863 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1864 device_create_file (dummy_dev(dum), &dev_attr_urbs);
1868 static void dummy_stop (struct usb_hcd *hcd)
1872 dum = hcd_to_dummy (hcd);
1874 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
1875 usb_gadget_unregister_driver (dum->driver);
1876 dev_info (dummy_dev(dum), "stopped\n");
1879 /*-------------------------------------------------------------------------*/
1881 static int dummy_h_get_frame (struct usb_hcd *hcd)
1883 return dummy_g_get_frame (NULL);
1886 static const struct hc_driver dummy_hcd = {
1887 .description = (char *) driver_name,
1888 .product_desc = "Dummy host controller",
1889 .hcd_priv_size = sizeof(struct dummy),
1893 .start = dummy_start,
1896 .urb_enqueue = dummy_urb_enqueue,
1897 .urb_dequeue = dummy_urb_dequeue,
1899 .get_frame_number = dummy_h_get_frame,
1901 .hub_status_data = dummy_hub_status,
1902 .hub_control = dummy_hub_control,
1903 .hub_suspend = dummy_hub_suspend,
1904 .hub_resume = dummy_hub_resume,
1907 static int dummy_hcd_probe (struct device *dev)
1909 struct usb_hcd *hcd;
1912 dev_info (dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1914 hcd = usb_create_hcd (&dummy_hcd, dev, dev->bus_id);
1917 the_controller = hcd_to_dummy (hcd);
1919 retval = usb_add_hcd(hcd, 0, 0);
1922 the_controller = NULL;
1927 static int dummy_hcd_remove (struct device *dev)
1929 struct usb_hcd *hcd;
1931 hcd = dev_get_drvdata (dev);
1932 usb_remove_hcd (hcd);
1934 the_controller = NULL;
1938 static int dummy_hcd_suspend (struct device *dev, pm_message_t state,
1941 struct usb_hcd *hcd;
1943 if (level != SUSPEND_DISABLE)
1946 dev_dbg (dev, "%s\n", __FUNCTION__);
1947 hcd = dev_get_drvdata (dev);
1949 #ifndef CONFIG_USB_SUSPEND
1950 /* Otherwise this would never happen */
1951 usb_lock_device (hcd->self.root_hub);
1952 dummy_hub_suspend (hcd);
1953 usb_unlock_device (hcd->self.root_hub);
1956 hcd->state = HC_STATE_SUSPENDED;
1960 static int dummy_hcd_resume (struct device *dev, u32 level)
1962 struct usb_hcd *hcd;
1964 if (level != RESUME_ENABLE)
1967 dev_dbg (dev, "%s\n", __FUNCTION__);
1968 hcd = dev_get_drvdata (dev);
1969 hcd->state = HC_STATE_RUNNING;
1971 #ifndef CONFIG_USB_SUSPEND
1972 /* Otherwise this would never happen */
1973 usb_lock_device (hcd->self.root_hub);
1974 dummy_hub_resume (hcd);
1975 usb_unlock_device (hcd->self.root_hub);
1978 usb_hcd_poll_rh_status (hcd);
1982 static struct device_driver dummy_hcd_driver = {
1983 .name = (char *) driver_name,
1984 .bus = &platform_bus_type,
1985 .probe = dummy_hcd_probe,
1986 .remove = dummy_hcd_remove,
1987 .suspend = dummy_hcd_suspend,
1988 .resume = dummy_hcd_resume,
1991 /*-------------------------------------------------------------------------*/
1993 /* These don't need to do anything because the pdev structures are
1994 * statically allocated. */
1996 dummy_udc_release (struct device *dev) {}
1999 dummy_hcd_release (struct device *dev) {}
2001 static struct platform_device the_udc_pdev = {
2002 .name = (char *) gadget_name,
2005 .release = dummy_udc_release,
2009 static struct platform_device the_hcd_pdev = {
2010 .name = (char *) driver_name,
2013 .release = dummy_hcd_release,
2017 static int __init init (void)
2021 if (usb_disabled ())
2024 retval = driver_register (&dummy_hcd_driver);
2028 retval = driver_register (&dummy_udc_driver);
2030 goto err_register_udc_driver;
2032 retval = platform_device_register (&the_hcd_pdev);
2034 goto err_register_hcd;
2036 retval = platform_device_register (&the_udc_pdev);
2038 goto err_register_udc;
2042 platform_device_unregister (&the_hcd_pdev);
2044 driver_unregister (&dummy_udc_driver);
2045 err_register_udc_driver:
2046 driver_unregister (&dummy_hcd_driver);
2051 static void __exit cleanup (void)
2053 platform_device_unregister (&the_udc_pdev);
2054 platform_device_unregister (&the_hcd_pdev);
2055 driver_unregister (&dummy_udc_driver);
2056 driver_unregister (&dummy_hcd_driver);
2058 module_exit (cleanup);