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/module.h>
40 #include <linux/kernel.h>
41 #include <linux/delay.h>
42 #include <linux/ioport.h>
43 #include <linux/slab.h>
44 #include <linux/errno.h>
45 #include <linux/init.h>
46 #include <linux/timer.h>
47 #include <linux/list.h>
48 #include <linux/interrupt.h>
49 #include <linux/platform_device.h>
50 #include <linux/usb.h>
51 #include <linux/usb_gadget.h>
53 #include <asm/byteorder.h>
56 #include <asm/system.h>
57 #include <asm/unaligned.h>
60 #include "../core/hcd.h"
63 #define DRIVER_DESC "USB Host+Gadget Emulator"
64 #define DRIVER_VERSION "02 May 2005"
66 static const char driver_name [] = "dummy_hcd";
67 static const char driver_desc [] = "USB Host+Gadget Emulator";
69 static const char gadget_name [] = "dummy_udc";
71 MODULE_DESCRIPTION (DRIVER_DESC);
72 MODULE_AUTHOR ("David Brownell");
73 MODULE_LICENSE ("GPL");
75 /*-------------------------------------------------------------------------*/
77 /* gadget side driver data structres */
79 struct list_head queue;
80 unsigned long last_io; /* jiffies timestamp */
81 struct usb_gadget *gadget;
82 const struct usb_endpoint_descriptor *desc;
85 unsigned already_seen : 1;
86 unsigned setup_stage : 1;
89 struct dummy_request {
90 struct list_head queue; /* ep's requests */
91 struct usb_request req;
94 static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
96 return container_of (_ep, struct dummy_ep, ep);
99 static inline struct dummy_request *usb_request_to_dummy_request
100 (struct usb_request *_req)
102 return container_of (_req, struct dummy_request, req);
105 /*-------------------------------------------------------------------------*/
108 * Every device has ep0 for control requests, plus up to 30 more endpoints,
109 * in one of two types:
111 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
112 * number can be changed. Names like "ep-a" are used for this type.
114 * - Fixed Function: in other cases. some characteristics may be mutable;
115 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
117 * Gadget drivers are responsible for not setting up conflicting endpoint
118 * configurations, illegal or unsupported packet lengths, and so on.
121 static const char ep0name [] = "ep0";
123 static const char *const ep_name [] = {
124 ep0name, /* everyone has ep0 */
126 /* act like a net2280: high speed, six configurable endpoints */
127 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
129 /* or like pxa250: fifteen fixed function endpoints */
130 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
131 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
132 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
135 /* or like sa1100: two fixed function endpoints */
136 "ep1out-bulk", "ep2in-bulk",
138 #define DUMMY_ENDPOINTS ARRAY_SIZE(ep_name)
140 /*-------------------------------------------------------------------------*/
146 struct list_head urbp_list;
150 enum dummy_rh_state {
160 * SLAVE/GADGET side support
162 struct dummy_ep ep [DUMMY_ENDPOINTS];
164 struct usb_gadget gadget;
165 struct usb_gadget_driver *driver;
166 struct dummy_request fifo_req;
167 u8 fifo_buf [FIFO_SIZE];
169 unsigned udc_suspended:1;
172 unsigned old_active:1;
175 * MASTER/HOST side support
177 enum dummy_rh_state rh_state;
178 struct timer_list timer;
182 unsigned long re_timeout;
184 struct usb_device *udev;
185 struct list_head urbp_list;
188 static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
190 return (struct dummy *) (hcd->hcd_priv);
193 static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
195 return container_of((void *) dum, struct usb_hcd, hcd_priv);
198 static inline struct device *dummy_dev (struct dummy *dum)
200 return dummy_to_hcd(dum)->self.controller;
203 static inline struct device *udc_dev (struct dummy *dum)
205 return dum->gadget.dev.parent;
208 static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
210 return container_of (ep->gadget, struct dummy, gadget);
213 static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
215 return container_of (gadget, struct dummy, gadget);
218 static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
220 return container_of (dev, struct dummy, gadget.dev);
223 static struct dummy *the_controller;
225 /*-------------------------------------------------------------------------*/
227 /* SLAVE/GADGET SIDE UTILITY ROUTINES */
229 /* called with spinlock held */
230 static void nuke (struct dummy *dum, struct dummy_ep *ep)
232 while (!list_empty (&ep->queue)) {
233 struct dummy_request *req;
235 req = list_entry (ep->queue.next, struct dummy_request, queue);
236 list_del_init (&req->queue);
237 req->req.status = -ESHUTDOWN;
239 spin_unlock (&dum->lock);
240 req->req.complete (&ep->ep, &req->req);
241 spin_lock (&dum->lock);
245 /* caller must hold lock */
247 stop_activity (struct dummy *dum)
251 /* prevent any more requests */
254 /* The timer is left running so that outstanding URBs can fail */
256 /* nuke any pending requests first, so driver i/o is quiesced */
257 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
260 /* driver now does any non-usb quiescing necessary */
263 /* caller must hold lock */
265 set_link_state (struct dummy *dum)
268 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
269 dum->port_status = 0;
271 /* UDC suspend must cause a disconnect */
272 else if (!dum->pullup || dum->udc_suspended) {
273 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
274 USB_PORT_STAT_ENABLE |
275 USB_PORT_STAT_LOW_SPEED |
276 USB_PORT_STAT_HIGH_SPEED |
277 USB_PORT_STAT_SUSPEND);
278 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
279 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
281 dum->port_status |= USB_PORT_STAT_CONNECTION;
282 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
283 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
284 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
285 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
286 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
287 dum->rh_state != DUMMY_RH_SUSPENDED)
291 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
294 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
295 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
296 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
297 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
300 spin_unlock (&dum->lock);
301 dum->driver->disconnect (&dum->gadget);
302 spin_lock (&dum->lock);
304 } else if (dum->active != dum->old_active) {
305 if (dum->old_active && dum->driver->suspend) {
306 spin_unlock (&dum->lock);
307 dum->driver->suspend (&dum->gadget);
308 spin_lock (&dum->lock);
309 } else if (!dum->old_active && dum->driver->resume) {
310 spin_unlock (&dum->lock);
311 dum->driver->resume (&dum->gadget);
312 spin_lock (&dum->lock);
316 dum->old_status = dum->port_status;
317 dum->old_active = dum->active;
320 /*-------------------------------------------------------------------------*/
322 /* SLAVE/GADGET SIDE DRIVER
324 * This only tracks gadget state. All the work is done when the host
325 * side tries some (emulated) i/o operation. Real device controller
326 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
329 #define is_enabled(dum) \
330 (dum->port_status & USB_PORT_STAT_ENABLE)
333 dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
340 ep = usb_ep_to_dummy_ep (_ep);
341 if (!_ep || !desc || ep->desc || _ep->name == ep0name
342 || desc->bDescriptorType != USB_DT_ENDPOINT)
344 dum = ep_to_dummy (ep);
345 if (!dum->driver || !is_enabled (dum))
347 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
349 /* drivers must not request bad settings, since lower levels
350 * (hardware or its drivers) may not check. some endpoints
351 * can't do iso, many have maxpacket limitations, etc.
353 * since this "hardware" driver is here to help debugging, we
354 * have some extra sanity checks. (there could be more though,
355 * especially for "ep9out" style fixed function ones.)
358 switch (desc->bmAttributes & 0x03) {
359 case USB_ENDPOINT_XFER_BULK:
360 if (strstr (ep->ep.name, "-iso")
361 || strstr (ep->ep.name, "-int")) {
364 switch (dum->gadget.speed) {
368 /* conserve return statements */
371 case 8: case 16: case 32: case 64:
372 /* we'll fake any legal size */
380 case USB_ENDPOINT_XFER_INT:
381 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
383 /* real hardware might not handle all packet sizes */
384 switch (dum->gadget.speed) {
388 /* save a return statement */
392 /* save a return statement */
399 case USB_ENDPOINT_XFER_ISOC:
400 if (strstr (ep->ep.name, "-bulk")
401 || strstr (ep->ep.name, "-int"))
403 /* real hardware might not handle all packet sizes */
404 switch (dum->gadget.speed) {
408 /* save a return statement */
412 /* save a return statement */
418 /* few chips support control except on ep0 */
422 _ep->maxpacket = max;
425 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
427 desc->bEndpointAddress & 0x0f,
428 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
430 switch (desc->bmAttributes & 0x03) {
431 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
432 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
433 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
434 default: val = "ctrl"; break;
438 /* at this point real hardware should be NAKing transfers
439 * to that endpoint, until a buffer is queued to it.
446 static int dummy_disable (struct usb_ep *_ep)
453 ep = usb_ep_to_dummy_ep (_ep);
454 if (!_ep || !ep->desc || _ep->name == ep0name)
456 dum = ep_to_dummy (ep);
458 spin_lock_irqsave (&dum->lock, flags);
462 spin_unlock_irqrestore (&dum->lock, flags);
464 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
468 static struct usb_request *
469 dummy_alloc_request (struct usb_ep *_ep, gfp_t mem_flags)
472 struct dummy_request *req;
476 ep = usb_ep_to_dummy_ep (_ep);
478 req = kzalloc(sizeof(*req), mem_flags);
481 INIT_LIST_HEAD (&req->queue);
486 dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
489 struct dummy_request *req;
491 ep = usb_ep_to_dummy_ep (_ep);
492 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
495 req = usb_request_to_dummy_request (_req);
496 WARN_ON (!list_empty (&req->queue));
501 fifo_complete (struct usb_ep *ep, struct usb_request *req)
506 dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
510 struct dummy_request *req;
514 req = usb_request_to_dummy_request (_req);
515 if (!_req || !list_empty (&req->queue) || !_req->complete)
518 ep = usb_ep_to_dummy_ep (_ep);
519 if (!_ep || (!ep->desc && _ep->name != ep0name))
522 dum = ep_to_dummy (ep);
523 if (!dum->driver || !is_enabled (dum))
527 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
528 ep, _req, _ep->name, _req->length, _req->buf);
531 _req->status = -EINPROGRESS;
533 spin_lock_irqsave (&dum->lock, flags);
535 /* implement an emulated single-request FIFO */
536 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
537 list_empty (&dum->fifo_req.queue) &&
538 list_empty (&ep->queue) &&
539 _req->length <= FIFO_SIZE) {
540 req = &dum->fifo_req;
542 req->req.buf = dum->fifo_buf;
543 memcpy (dum->fifo_buf, _req->buf, _req->length);
544 req->req.context = dum;
545 req->req.complete = fifo_complete;
547 spin_unlock (&dum->lock);
548 _req->actual = _req->length;
550 _req->complete (_ep, _req);
551 spin_lock (&dum->lock);
553 list_add_tail (&req->queue, &ep->queue);
554 spin_unlock_irqrestore (&dum->lock, flags);
556 /* real hardware would likely enable transfers here, in case
557 * it'd been left NAKing.
562 static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
566 int retval = -EINVAL;
568 struct dummy_request *req = NULL;
572 ep = usb_ep_to_dummy_ep (_ep);
573 dum = ep_to_dummy (ep);
578 local_irq_save (flags);
579 spin_lock (&dum->lock);
580 list_for_each_entry (req, &ep->queue, queue) {
581 if (&req->req == _req) {
582 list_del_init (&req->queue);
583 _req->status = -ECONNRESET;
588 spin_unlock (&dum->lock);
591 dev_dbg (udc_dev(dum),
592 "dequeued req %p from %s, len %d buf %p\n",
593 req, _ep->name, _req->length, _req->buf);
594 _req->complete (_ep, _req);
596 local_irq_restore (flags);
601 dummy_set_halt (struct usb_ep *_ep, int value)
608 ep = usb_ep_to_dummy_ep (_ep);
609 dum = ep_to_dummy (ep);
614 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
615 !list_empty (&ep->queue))
619 /* FIXME clear emulated data toggle too */
623 static const struct usb_ep_ops dummy_ep_ops = {
624 .enable = dummy_enable,
625 .disable = dummy_disable,
627 .alloc_request = dummy_alloc_request,
628 .free_request = dummy_free_request,
630 .queue = dummy_queue,
631 .dequeue = dummy_dequeue,
633 .set_halt = dummy_set_halt,
636 /*-------------------------------------------------------------------------*/
638 /* there are both host and device side versions of this call ... */
639 static int dummy_g_get_frame (struct usb_gadget *_gadget)
643 do_gettimeofday (&tv);
644 return tv.tv_usec / 1000;
647 static int dummy_wakeup (struct usb_gadget *_gadget)
651 dum = gadget_to_dummy (_gadget);
652 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
653 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
655 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
657 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
658 dum->rh_state != DUMMY_RH_SUSPENDED)
661 /* FIXME: What if the root hub is suspended but the port isn't? */
663 /* hub notices our request, issues downstream resume, etc */
665 dum->re_timeout = jiffies + msecs_to_jiffies(20);
666 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
670 static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
674 dum = gadget_to_dummy (_gadget);
676 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
678 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
682 static int dummy_pullup (struct usb_gadget *_gadget, int value)
687 dum = gadget_to_dummy (_gadget);
688 spin_lock_irqsave (&dum->lock, flags);
689 dum->pullup = (value != 0);
690 set_link_state (dum);
691 spin_unlock_irqrestore (&dum->lock, flags);
693 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
697 static const struct usb_gadget_ops dummy_ops = {
698 .get_frame = dummy_g_get_frame,
699 .wakeup = dummy_wakeup,
700 .set_selfpowered = dummy_set_selfpowered,
701 .pullup = dummy_pullup,
704 /*-------------------------------------------------------------------------*/
706 /* "function" sysfs attribute */
708 show_function (struct device *dev, struct device_attribute *attr, char *buf)
710 struct dummy *dum = gadget_dev_to_dummy (dev);
712 if (!dum->driver || !dum->driver->function)
714 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
716 static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
718 /*-------------------------------------------------------------------------*/
721 * Driver registration/unregistration.
723 * This is basically hardware-specific; there's usually only one real USB
724 * device (not host) controller since that's how USB devices are intended
725 * to work. So most implementations of these api calls will rely on the
726 * fact that only one driver will ever bind to the hardware. But curious
727 * hardware can be built with discrete components, so the gadget API doesn't
728 * require that assumption.
730 * For this emulator, it might be convenient to create a usb slave device
731 * for each driver that registers: just add to a big root hub.
735 usb_gadget_register_driver (struct usb_gadget_driver *driver)
737 struct dummy *dum = the_controller;
744 if (!driver->bind || !driver->setup
745 || driver->speed == USB_SPEED_UNKNOWN)
749 * SLAVE side init ... the layer above hardware, which
750 * can't enumerate without help from the driver we're binding.
755 INIT_LIST_HEAD (&dum->gadget.ep_list);
756 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
757 struct dummy_ep *ep = &dum->ep [i];
761 ep->ep.name = ep_name [i];
762 ep->ep.ops = &dummy_ep_ops;
763 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
764 ep->halted = ep->already_seen = ep->setup_stage = 0;
765 ep->ep.maxpacket = ~0;
766 ep->last_io = jiffies;
767 ep->gadget = &dum->gadget;
769 INIT_LIST_HEAD (&ep->queue);
772 dum->gadget.ep0 = &dum->ep [0].ep;
773 dum->ep [0].ep.maxpacket = 64;
774 list_del_init (&dum->ep [0].ep.ep_list);
775 INIT_LIST_HEAD(&dum->fifo_req.queue);
777 dum->driver = driver;
778 dum->gadget.dev.driver = &driver->driver;
779 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
780 driver->driver.name);
781 if ((retval = driver->bind (&dum->gadget)) != 0)
782 goto err_bind_gadget;
784 driver->driver.bus = dum->gadget.dev.parent->bus;
785 if ((retval = driver_register (&driver->driver)) != 0)
787 if ((retval = device_bind_driver (&dum->gadget.dev)) != 0)
788 goto err_bind_driver;
790 /* khubd will enumerate this in a while */
791 spin_lock_irq (&dum->lock);
793 set_link_state (dum);
794 spin_unlock_irq (&dum->lock);
796 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
800 driver_unregister (&driver->driver);
803 driver->unbind (&dum->gadget);
804 spin_lock_irq (&dum->lock);
806 set_link_state (dum);
807 spin_unlock_irq (&dum->lock);
810 dum->gadget.dev.driver = NULL;
813 EXPORT_SYMBOL (usb_gadget_register_driver);
816 usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
818 struct dummy *dum = the_controller;
823 if (!driver || driver != dum->driver || !driver->unbind)
826 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
827 driver->driver.name);
829 spin_lock_irqsave (&dum->lock, flags);
831 set_link_state (dum);
832 spin_unlock_irqrestore (&dum->lock, flags);
834 driver->unbind (&dum->gadget);
837 device_release_driver (&dum->gadget.dev);
838 driver_unregister (&driver->driver);
840 spin_lock_irqsave (&dum->lock, flags);
842 set_link_state (dum);
843 spin_unlock_irqrestore (&dum->lock, flags);
845 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
848 EXPORT_SYMBOL (usb_gadget_unregister_driver);
852 /* just declare this in any driver that really need it */
853 extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
855 int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
859 EXPORT_SYMBOL (net2280_set_fifo_mode);
862 /* The gadget structure is stored inside the hcd structure and will be
863 * released along with it. */
865 dummy_gadget_release (struct device *dev)
867 struct dummy *dum = gadget_dev_to_dummy (dev);
869 usb_put_hcd (dummy_to_hcd (dum));
872 static int dummy_udc_probe (struct platform_device *pdev)
874 struct dummy *dum = the_controller;
877 dum->gadget.name = gadget_name;
878 dum->gadget.ops = &dummy_ops;
879 dum->gadget.is_dualspeed = 1;
881 /* maybe claim OTG support, though we won't complete HNP */
882 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
884 strcpy (dum->gadget.dev.bus_id, "gadget");
885 dum->gadget.dev.parent = &pdev->dev;
886 dum->gadget.dev.release = dummy_gadget_release;
887 rc = device_register (&dum->gadget.dev);
891 usb_get_hcd (dummy_to_hcd (dum));
893 platform_set_drvdata (pdev, dum);
894 rc = device_create_file (&dum->gadget.dev, &dev_attr_function);
896 device_unregister (&dum->gadget.dev);
900 static int dummy_udc_remove (struct platform_device *pdev)
902 struct dummy *dum = platform_get_drvdata (pdev);
904 platform_set_drvdata (pdev, NULL);
905 device_remove_file (&dum->gadget.dev, &dev_attr_function);
906 device_unregister (&dum->gadget.dev);
910 static int dummy_udc_suspend (struct platform_device *pdev, pm_message_t state)
912 struct dummy *dum = platform_get_drvdata(pdev);
914 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
915 spin_lock_irq (&dum->lock);
916 dum->udc_suspended = 1;
917 set_link_state (dum);
918 spin_unlock_irq (&dum->lock);
920 pdev->dev.power.power_state = state;
921 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
925 static int dummy_udc_resume (struct platform_device *pdev)
927 struct dummy *dum = platform_get_drvdata(pdev);
929 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
930 spin_lock_irq (&dum->lock);
931 dum->udc_suspended = 0;
932 set_link_state (dum);
933 spin_unlock_irq (&dum->lock);
935 pdev->dev.power.power_state = PMSG_ON;
936 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
940 static struct platform_driver dummy_udc_driver = {
941 .probe = dummy_udc_probe,
942 .remove = dummy_udc_remove,
943 .suspend = dummy_udc_suspend,
944 .resume = dummy_udc_resume,
946 .name = (char *) gadget_name,
947 .owner = THIS_MODULE,
951 /*-------------------------------------------------------------------------*/
953 /* MASTER/HOST SIDE DRIVER
955 * this uses the hcd framework to hook up to host side drivers.
956 * its root hub will only have one device, otherwise it acts like
957 * a normal host controller.
959 * when urbs are queued, they're just stuck on a list that we
960 * scan in a timer callback. that callback connects writes from
961 * the host with reads from the device, and so on, based on the
965 static int dummy_urb_enqueue (
967 struct usb_host_endpoint *ep,
975 if (!urb->transfer_buffer && urb->transfer_buffer_length)
978 urbp = kmalloc (sizeof *urbp, mem_flags);
983 dum = hcd_to_dummy (hcd);
984 spin_lock_irqsave (&dum->lock, flags);
987 dum->udev = urb->dev;
988 usb_get_dev (dum->udev);
989 } else if (unlikely (dum->udev != urb->dev))
990 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
992 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
994 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
995 urb->error_count = 1; /* mark as a new urb */
997 /* kick the scheduler, it'll do the rest */
998 if (!timer_pending (&dum->timer))
999 mod_timer (&dum->timer, jiffies + 1);
1001 spin_unlock_irqrestore (&dum->lock, flags);
1005 static int dummy_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
1008 unsigned long flags;
1010 /* giveback happens automatically in timer callback,
1011 * so make sure the callback happens */
1012 dum = hcd_to_dummy (hcd);
1013 spin_lock_irqsave (&dum->lock, flags);
1014 if (dum->rh_state != DUMMY_RH_RUNNING && !list_empty(&dum->urbp_list))
1015 mod_timer (&dum->timer, jiffies);
1016 spin_unlock_irqrestore (&dum->lock, flags);
1020 static void maybe_set_status (struct urb *urb, int status)
1022 spin_lock (&urb->lock);
1023 if (urb->status == -EINPROGRESS)
1024 urb->status = status;
1025 spin_unlock (&urb->lock);
1028 /* transfer up to a frame's worth; caller must own lock */
1030 transfer (struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit)
1032 struct dummy_request *req;
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;
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
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))
1060 /* not enough bandwidth left? */
1061 if (limit < ep->ep.maxpacket && limit < len)
1063 len = min (len, (unsigned) limit);
1067 /* use an extra pass for the final short packet */
1068 if (len > ep->ep.maxpacket) {
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;
1078 memcpy (ubuf, rbuf, len);
1080 memcpy (rbuf, ubuf, len);
1081 ep->last_io = jiffies;
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. so we only show part
1094 * of the URB_SHORT_NOT_OK effect: completion status.
1097 if (host_len == dev_len) {
1098 req->req.status = 0;
1099 maybe_set_status (urb, 0);
1100 } else if (to_host) {
1101 req->req.status = 0;
1102 if (dev_len > host_len)
1103 maybe_set_status (urb, -EOVERFLOW);
1105 maybe_set_status (urb,
1106 (urb->transfer_flags
1109 } else if (!to_host) {
1110 maybe_set_status (urb, 0);
1111 if (host_len > dev_len)
1112 req->req.status = -EOVERFLOW;
1114 req->req.status = 0;
1117 /* many requests terminate without a short packet */
1119 if (req->req.length == req->req.actual
1121 req->req.status = 0;
1122 if (urb->transfer_buffer_length == urb->actual_length
1123 && !(urb->transfer_flags
1124 & URB_ZERO_PACKET)) {
1125 maybe_set_status (urb, 0);
1129 /* device side completion --> continuable */
1130 if (req->req.status != -EINPROGRESS) {
1131 list_del_init (&req->queue);
1133 spin_unlock (&dum->lock);
1134 req->req.complete (&ep->ep, &req->req);
1135 spin_lock (&dum->lock);
1137 /* requests might have been unlinked... */
1141 /* host side completion --> terminate */
1142 if (urb->status != -EINPROGRESS)
1145 /* rescan to continue with any other queued i/o */
1152 static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1154 int limit = ep->ep.maxpacket;
1156 if (dum->gadget.speed == USB_SPEED_HIGH) {
1159 /* high bandwidth mode */
1160 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
1161 tmp = (tmp >> 11) & 0x03;
1162 tmp *= 8 /* applies to entire frame */;
1163 limit += limit * tmp;
1168 #define is_active(dum) ((dum->port_status & \
1169 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1170 USB_PORT_STAT_SUSPEND)) \
1171 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1173 static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1177 if (!is_active (dum))
1179 if ((address & ~USB_DIR_IN) == 0)
1180 return &dum->ep [0];
1181 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1182 struct dummy_ep *ep = &dum->ep [i];
1186 if (ep->desc->bEndpointAddress == address)
1194 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1195 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1196 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1197 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1198 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1199 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1201 /* drive both sides of the transfers; looks like irq handlers to
1202 * both drivers except the callbacks aren't in_irq().
1204 static void dummy_timer (unsigned long _dum)
1206 struct dummy *dum = (struct dummy *) _dum;
1207 struct urbp *urbp, *tmp;
1208 unsigned long flags;
1212 /* simplistic model for one frame's bandwidth */
1213 switch (dum->gadget.speed) {
1215 total = 8/*bytes*/ * 12/*packets*/;
1217 case USB_SPEED_FULL:
1218 total = 64/*bytes*/ * 19/*packets*/;
1220 case USB_SPEED_HIGH:
1221 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1224 dev_err (dummy_dev(dum), "bogus device speed\n");
1228 /* FIXME if HZ != 1000 this will probably misbehave ... */
1230 /* look at each urb queued by the host side driver */
1231 spin_lock_irqsave (&dum->lock, flags);
1234 dev_err (dummy_dev(dum),
1235 "timer fired with no URBs pending?\n");
1236 spin_unlock_irqrestore (&dum->lock, flags);
1240 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1243 dum->ep [i].already_seen = 0;
1247 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1249 struct dummy_request *req;
1251 struct dummy_ep *ep = NULL;
1255 if (urb->status != -EINPROGRESS) {
1256 /* likely it was just unlinked */
1258 } else if (dum->rh_state != DUMMY_RH_RUNNING)
1260 type = usb_pipetype (urb->pipe);
1262 /* used up this frame's non-periodic bandwidth?
1263 * FIXME there's infinite bandwidth for control and
1264 * periodic transfers ... unrealistic.
1266 if (total <= 0 && type == PIPE_BULK)
1269 /* find the gadget's ep for this request (if configured) */
1270 address = usb_pipeendpoint (urb->pipe);
1271 if (usb_pipein (urb->pipe))
1272 address |= USB_DIR_IN;
1273 ep = find_endpoint(dum, address);
1275 /* set_configuration() disagreement */
1276 dev_dbg (dummy_dev(dum),
1277 "no ep configured for urb %p\n",
1279 maybe_set_status (urb, -EPROTO);
1283 if (ep->already_seen)
1285 ep->already_seen = 1;
1286 if (ep == &dum->ep [0] && urb->error_count) {
1287 ep->setup_stage = 1; /* a new urb */
1288 urb->error_count = 0;
1290 if (ep->halted && !ep->setup_stage) {
1291 /* NOTE: must not be iso! */
1292 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1294 maybe_set_status (urb, -EPIPE);
1297 /* FIXME make sure both ends agree on maxpacket */
1299 /* handle control requests */
1300 if (ep == &dum->ep [0] && ep->setup_stage) {
1301 struct usb_ctrlrequest setup;
1303 struct dummy_ep *ep2;
1307 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1308 w_index = le16_to_cpu(setup.wIndex);
1309 w_value = le16_to_cpu(setup.wValue);
1310 if (le16_to_cpu(setup.wLength) !=
1311 urb->transfer_buffer_length) {
1312 maybe_set_status (urb, -EOVERFLOW);
1316 /* paranoia, in case of stale queued data */
1317 list_for_each_entry (req, &ep->queue, queue) {
1318 list_del_init (&req->queue);
1319 req->req.status = -EOVERFLOW;
1320 dev_dbg (udc_dev(dum), "stale req = %p\n",
1323 spin_unlock (&dum->lock);
1324 req->req.complete (&ep->ep, &req->req);
1325 spin_lock (&dum->lock);
1326 ep->already_seen = 0;
1330 /* gadget driver never sees set_address or operations
1331 * on standard feature flags. some hardware doesn't
1334 ep->last_io = jiffies;
1335 ep->setup_stage = 0;
1337 switch (setup.bRequest) {
1338 case USB_REQ_SET_ADDRESS:
1339 if (setup.bRequestType != Dev_Request)
1341 dum->address = w_value;
1342 maybe_set_status (urb, 0);
1343 dev_dbg (udc_dev(dum), "set_address = %d\n",
1347 case USB_REQ_SET_FEATURE:
1348 if (setup.bRequestType == Dev_Request) {
1351 case USB_DEVICE_REMOTE_WAKEUP:
1353 case USB_DEVICE_B_HNP_ENABLE:
1354 dum->gadget.b_hnp_enable = 1;
1356 case USB_DEVICE_A_HNP_SUPPORT:
1357 dum->gadget.a_hnp_support = 1;
1359 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1360 dum->gadget.a_alt_hnp_support
1364 value = -EOPNOTSUPP;
1369 maybe_set_status (urb, 0);
1372 } else if (setup.bRequestType == Ep_Request) {
1374 ep2 = find_endpoint (dum, w_index);
1376 value = -EOPNOTSUPP;
1381 maybe_set_status (urb, 0);
1384 case USB_REQ_CLEAR_FEATURE:
1385 if (setup.bRequestType == Dev_Request) {
1387 case USB_DEVICE_REMOTE_WAKEUP:
1388 dum->devstatus &= ~(1 <<
1389 USB_DEVICE_REMOTE_WAKEUP);
1391 maybe_set_status (urb, 0);
1394 value = -EOPNOTSUPP;
1397 } else if (setup.bRequestType == Ep_Request) {
1399 ep2 = find_endpoint (dum, w_index);
1401 value = -EOPNOTSUPP;
1406 maybe_set_status (urb, 0);
1409 case USB_REQ_GET_STATUS:
1410 if (setup.bRequestType == Dev_InRequest
1411 || setup.bRequestType
1413 || setup.bRequestType
1418 // device: remote wakeup, selfpowered
1419 // interface: nothing
1421 buf = (char *)urb->transfer_buffer;
1422 if (urb->transfer_buffer_length > 0) {
1423 if (setup.bRequestType ==
1425 ep2 = find_endpoint (dum, w_index);
1427 value = -EOPNOTSUPP;
1430 buf [0] = ep2->halted;
1431 } else if (setup.bRequestType ==
1438 if (urb->transfer_buffer_length > 1)
1440 urb->actual_length = min (2,
1441 urb->transfer_buffer_length);
1443 maybe_set_status (urb, 0);
1448 /* gadget driver handles all other requests. block
1449 * until setup() returns; no reentrancy issues etc.
1452 spin_unlock (&dum->lock);
1453 value = dum->driver->setup (&dum->gadget,
1455 spin_lock (&dum->lock);
1458 /* no delays (max 64KB data stage) */
1460 goto treat_control_like_bulk;
1462 /* error, see below */
1466 if (value != -EOPNOTSUPP)
1467 dev_dbg (udc_dev(dum),
1470 maybe_set_status (urb, -EPIPE);
1471 urb->actual_length = 0;
1477 /* non-control requests */
1479 switch (usb_pipetype (urb->pipe)) {
1480 case PIPE_ISOCHRONOUS:
1481 /* FIXME is it urb->interval since the last xfer?
1482 * use urb->iso_frame_desc[i].
1483 * complete whether or not ep has requests queued.
1484 * report random errors, to debug drivers.
1486 limit = max (limit, periodic_bytes (dum, ep));
1487 maybe_set_status (urb, -ENOSYS);
1490 case PIPE_INTERRUPT:
1491 /* FIXME is it urb->interval since the last xfer?
1492 * this almost certainly polls too fast.
1494 limit = max (limit, periodic_bytes (dum, ep));
1497 // case PIPE_BULK: case PIPE_CONTROL:
1499 treat_control_like_bulk:
1500 ep->last_io = jiffies;
1501 total = transfer (dum, urb, ep, limit);
1505 /* incomplete transfer? */
1506 if (urb->status == -EINPROGRESS)
1511 list_del (&urbp->urbp_list);
1514 ep->already_seen = ep->setup_stage = 0;
1516 spin_unlock (&dum->lock);
1517 usb_hcd_giveback_urb (dummy_to_hcd(dum), urb);
1518 spin_lock (&dum->lock);
1523 if (list_empty (&dum->urbp_list)) {
1524 usb_put_dev (dum->udev);
1526 } else if (dum->rh_state == DUMMY_RH_RUNNING) {
1527 /* want a 1 msec delay here */
1528 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
1531 spin_unlock_irqrestore (&dum->lock, flags);
1534 /*-------------------------------------------------------------------------*/
1536 #define PORT_C_MASK \
1537 ((USB_PORT_STAT_C_CONNECTION \
1538 | USB_PORT_STAT_C_ENABLE \
1539 | USB_PORT_STAT_C_SUSPEND \
1540 | USB_PORT_STAT_C_OVERCURRENT \
1541 | USB_PORT_STAT_C_RESET) << 16)
1543 static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1546 unsigned long flags;
1549 dum = hcd_to_dummy (hcd);
1551 spin_lock_irqsave (&dum->lock, flags);
1552 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))
1555 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1556 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1557 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1558 set_link_state (dum);
1561 if ((dum->port_status & PORT_C_MASK) != 0) {
1563 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
1566 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1567 usb_hcd_resume_root_hub (hcd);
1570 spin_unlock_irqrestore (&dum->lock, flags);
1575 hub_descriptor (struct usb_hub_descriptor *desc)
1577 memset (desc, 0, sizeof *desc);
1578 desc->bDescriptorType = 0x29;
1579 desc->bDescLength = 9;
1580 desc->wHubCharacteristics = (__force __u16)
1581 (__constant_cpu_to_le16 (0x0001));
1582 desc->bNbrPorts = 1;
1583 desc->bitmap [0] = 0xff;
1584 desc->bitmap [1] = 0xff;
1587 static int dummy_hub_control (
1588 struct usb_hcd *hcd,
1597 unsigned long flags;
1599 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))
1602 dum = hcd_to_dummy (hcd);
1603 spin_lock_irqsave (&dum->lock, flags);
1605 case ClearHubFeature:
1607 case ClearPortFeature:
1609 case USB_PORT_FEAT_SUSPEND:
1610 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
1611 /* 20msec resume signaling */
1613 dum->re_timeout = jiffies +
1614 msecs_to_jiffies(20);
1617 case USB_PORT_FEAT_POWER:
1618 if (dum->port_status & USB_PORT_STAT_POWER)
1619 dev_dbg (dummy_dev(dum), "power-off\n");
1622 dum->port_status &= ~(1 << wValue);
1623 set_link_state (dum);
1626 case GetHubDescriptor:
1627 hub_descriptor ((struct usb_hub_descriptor *) buf);
1630 *(__le32 *) buf = __constant_cpu_to_le32 (0);
1636 /* whoever resets or resumes must GetPortStatus to
1639 if (dum->resuming &&
1640 time_after_eq (jiffies, dum->re_timeout)) {
1641 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1642 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1644 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1645 time_after_eq (jiffies, dum->re_timeout)) {
1646 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1647 dum->port_status &= ~USB_PORT_STAT_RESET;
1649 dum->port_status |= USB_PORT_STAT_ENABLE;
1650 /* give it the best speed we agree on */
1651 dum->gadget.speed = dum->driver->speed;
1652 dum->gadget.ep0->maxpacket = 64;
1653 switch (dum->gadget.speed) {
1654 case USB_SPEED_HIGH:
1656 USB_PORT_STAT_HIGH_SPEED;
1659 dum->gadget.ep0->maxpacket = 8;
1661 USB_PORT_STAT_LOW_SPEED;
1664 dum->gadget.speed = USB_SPEED_FULL;
1669 set_link_state (dum);
1670 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1671 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1676 case SetPortFeature:
1678 case USB_PORT_FEAT_SUSPEND:
1680 dum->port_status |= USB_PORT_STAT_SUSPEND;
1682 /* HNP would happen here; for now we
1683 * assume b_bus_req is always true.
1685 set_link_state (dum);
1686 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1687 & dum->devstatus) != 0)
1688 dev_dbg (dummy_dev(dum),
1692 case USB_PORT_FEAT_POWER:
1693 dum->port_status |= USB_PORT_STAT_POWER;
1694 set_link_state (dum);
1696 case USB_PORT_FEAT_RESET:
1697 /* if it's already enabled, disable */
1698 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1699 | USB_PORT_STAT_LOW_SPEED
1700 | USB_PORT_STAT_HIGH_SPEED);
1702 /* 50msec reset signaling */
1703 dum->re_timeout = jiffies + msecs_to_jiffies(50);
1706 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1707 dum->port_status |= (1 << wValue);
1708 set_link_state (dum);
1714 dev_dbg (dummy_dev(dum),
1715 "hub control req%04x v%04x i%04x l%d\n",
1716 typeReq, wValue, wIndex, wLength);
1718 /* "protocol stall" on error */
1721 spin_unlock_irqrestore (&dum->lock, flags);
1723 if ((dum->port_status & PORT_C_MASK) != 0)
1724 usb_hcd_poll_rh_status (hcd);
1728 static int dummy_bus_suspend (struct usb_hcd *hcd)
1730 struct dummy *dum = hcd_to_dummy (hcd);
1732 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __FUNCTION__);
1734 spin_lock_irq (&dum->lock);
1735 dum->rh_state = DUMMY_RH_SUSPENDED;
1736 set_link_state (dum);
1737 hcd->state = HC_STATE_SUSPENDED;
1738 spin_unlock_irq (&dum->lock);
1742 static int dummy_bus_resume (struct usb_hcd *hcd)
1744 struct dummy *dum = hcd_to_dummy (hcd);
1747 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __FUNCTION__);
1749 spin_lock_irq (&dum->lock);
1750 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
1753 dum->rh_state = DUMMY_RH_RUNNING;
1754 set_link_state (dum);
1755 if (!list_empty(&dum->urbp_list))
1756 mod_timer (&dum->timer, jiffies);
1757 hcd->state = HC_STATE_RUNNING;
1759 spin_unlock_irq (&dum->lock);
1763 /*-------------------------------------------------------------------------*/
1765 static inline ssize_t
1766 show_urb (char *buf, size_t size, struct urb *urb)
1768 int ep = usb_pipeendpoint (urb->pipe);
1770 return snprintf (buf, size,
1771 "urb/%p %s ep%d%s%s len %d/%d\n",
1774 switch (urb->dev->speed) {
1775 case USB_SPEED_LOW: s = "ls"; break;
1776 case USB_SPEED_FULL: s = "fs"; break;
1777 case USB_SPEED_HIGH: s = "hs"; break;
1778 default: s = "?"; break;
1780 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1782 switch (usb_pipetype (urb->pipe)) { \
1783 case PIPE_CONTROL: s = ""; break; \
1784 case PIPE_BULK: s = "-bulk"; break; \
1785 case PIPE_INTERRUPT: s = "-int"; break; \
1786 default: s = "-iso"; break; \
1788 urb->actual_length, urb->transfer_buffer_length);
1792 show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
1794 struct usb_hcd *hcd = dev_get_drvdata (dev);
1795 struct dummy *dum = hcd_to_dummy (hcd);
1798 unsigned long flags;
1800 spin_lock_irqsave (&dum->lock, flags);
1801 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1804 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1808 spin_unlock_irqrestore (&dum->lock, flags);
1812 static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1814 static int dummy_start (struct usb_hcd *hcd)
1818 dum = hcd_to_dummy (hcd);
1821 * MASTER side init ... we emulate a root hub that'll only ever
1822 * talk to one device (the slave side). Also appears in sysfs,
1823 * just like more familiar pci-based HCDs.
1825 spin_lock_init (&dum->lock);
1826 init_timer (&dum->timer);
1827 dum->timer.function = dummy_timer;
1828 dum->timer.data = (unsigned long) dum;
1829 dum->rh_state = DUMMY_RH_RUNNING;
1831 INIT_LIST_HEAD (&dum->urbp_list);
1833 /* only show a low-power port: just 8mA */
1834 hcd->power_budget = 8;
1835 hcd->state = HC_STATE_RUNNING;
1836 hcd->uses_new_polling = 1;
1838 #ifdef CONFIG_USB_OTG
1839 hcd->self.otg_port = 1;
1842 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1843 return device_create_file (dummy_dev(dum), &dev_attr_urbs);
1846 static void dummy_stop (struct usb_hcd *hcd)
1850 dum = hcd_to_dummy (hcd);
1852 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
1853 usb_gadget_unregister_driver (dum->driver);
1854 dev_info (dummy_dev(dum), "stopped\n");
1857 /*-------------------------------------------------------------------------*/
1859 static int dummy_h_get_frame (struct usb_hcd *hcd)
1861 return dummy_g_get_frame (NULL);
1864 static const struct hc_driver dummy_hcd = {
1865 .description = (char *) driver_name,
1866 .product_desc = "Dummy host controller",
1867 .hcd_priv_size = sizeof(struct dummy),
1871 .start = dummy_start,
1874 .urb_enqueue = dummy_urb_enqueue,
1875 .urb_dequeue = dummy_urb_dequeue,
1877 .get_frame_number = dummy_h_get_frame,
1879 .hub_status_data = dummy_hub_status,
1880 .hub_control = dummy_hub_control,
1881 .bus_suspend = dummy_bus_suspend,
1882 .bus_resume = dummy_bus_resume,
1885 static int dummy_hcd_probe(struct platform_device *pdev)
1887 struct usb_hcd *hcd;
1890 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1892 hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, pdev->dev.bus_id);
1895 the_controller = hcd_to_dummy (hcd);
1897 retval = usb_add_hcd(hcd, 0, 0);
1900 the_controller = NULL;
1905 static int dummy_hcd_remove (struct platform_device *pdev)
1907 struct usb_hcd *hcd;
1909 hcd = platform_get_drvdata (pdev);
1910 usb_remove_hcd (hcd);
1912 the_controller = NULL;
1916 static int dummy_hcd_suspend (struct platform_device *pdev, pm_message_t state)
1918 struct usb_hcd *hcd;
1922 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
1924 hcd = platform_get_drvdata (pdev);
1925 dum = hcd_to_dummy (hcd);
1926 if (dum->rh_state == DUMMY_RH_RUNNING) {
1927 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
1930 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1934 static int dummy_hcd_resume (struct platform_device *pdev)
1936 struct usb_hcd *hcd;
1938 dev_dbg (&pdev->dev, "%s\n", __FUNCTION__);
1940 hcd = platform_get_drvdata (pdev);
1941 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1942 usb_hcd_poll_rh_status (hcd);
1946 static struct platform_driver dummy_hcd_driver = {
1947 .probe = dummy_hcd_probe,
1948 .remove = dummy_hcd_remove,
1949 .suspend = dummy_hcd_suspend,
1950 .resume = dummy_hcd_resume,
1952 .name = (char *) driver_name,
1953 .owner = THIS_MODULE,
1957 /*-------------------------------------------------------------------------*/
1959 /* These don't need to do anything because the pdev structures are
1960 * statically allocated. */
1962 dummy_udc_release (struct device *dev) {}
1965 dummy_hcd_release (struct device *dev) {}
1967 static struct platform_device the_udc_pdev = {
1968 .name = (char *) gadget_name,
1971 .release = dummy_udc_release,
1975 static struct platform_device the_hcd_pdev = {
1976 .name = (char *) driver_name,
1979 .release = dummy_hcd_release,
1983 static int __init init (void)
1987 if (usb_disabled ())
1990 retval = platform_driver_register (&dummy_hcd_driver);
1994 retval = platform_driver_register (&dummy_udc_driver);
1996 goto err_register_udc_driver;
1998 retval = platform_device_register (&the_hcd_pdev);
2000 goto err_register_hcd;
2002 retval = platform_device_register (&the_udc_pdev);
2004 goto err_register_udc;
2008 platform_device_unregister (&the_hcd_pdev);
2010 platform_driver_unregister (&dummy_udc_driver);
2011 err_register_udc_driver:
2012 platform_driver_unregister (&dummy_hcd_driver);
2017 static void __exit cleanup (void)
2019 platform_device_unregister (&the_udc_pdev);
2020 platform_device_unregister (&the_hcd_pdev);
2021 platform_driver_unregister (&dummy_udc_driver);
2022 platform_driver_unregister (&dummy_hcd_driver);
2024 module_exit (cleanup);