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/platform_device.h>
53 #include <linux/usb.h>
54 #include <linux/usb_gadget.h>
56 #include <asm/byteorder.h>
59 #include <asm/system.h>
60 #include <asm/unaligned.h>
63 #include "../core/hcd.h"
66 #define DRIVER_DESC "USB Host+Gadget Emulator"
67 #define DRIVER_VERSION "02 May 2005"
69 static const char driver_name
[] = "dummy_hcd";
70 static const char driver_desc
[] = "USB Host+Gadget Emulator";
72 static const char gadget_name
[] = "dummy_udc";
74 MODULE_DESCRIPTION (DRIVER_DESC
);
75 MODULE_AUTHOR ("David Brownell");
76 MODULE_LICENSE ("GPL");
78 /*-------------------------------------------------------------------------*/
80 /* gadget side driver data structres */
82 struct list_head queue
;
83 unsigned long last_io
; /* jiffies timestamp */
84 struct usb_gadget
*gadget
;
85 const struct usb_endpoint_descriptor
*desc
;
88 unsigned already_seen
: 1;
89 unsigned setup_stage
: 1;
92 struct dummy_request
{
93 struct list_head queue
; /* ep's requests */
94 struct usb_request req
;
97 static inline struct dummy_ep
*usb_ep_to_dummy_ep (struct usb_ep
*_ep
)
99 return container_of (_ep
, struct dummy_ep
, ep
);
102 static inline struct dummy_request
*usb_request_to_dummy_request
103 (struct usb_request
*_req
)
105 return container_of (_req
, struct dummy_request
, req
);
108 /*-------------------------------------------------------------------------*/
111 * Every device has ep0 for control requests, plus up to 30 more endpoints,
112 * in one of two types:
114 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
115 * number can be changed. Names like "ep-a" are used for this type.
117 * - Fixed Function: in other cases. some characteristics may be mutable;
118 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
120 * Gadget drivers are responsible for not setting up conflicting endpoint
121 * configurations, illegal or unsupported packet lengths, and so on.
124 static const char ep0name
[] = "ep0";
126 static const char *const ep_name
[] = {
127 ep0name
, /* everyone has ep0 */
129 /* act like a net2280: high speed, six configurable endpoints */
130 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
132 /* or like pxa250: fifteen fixed function endpoints */
133 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
134 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
135 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
138 /* or like sa1100: two fixed function endpoints */
139 "ep1out-bulk", "ep2in-bulk",
141 #define DUMMY_ENDPOINTS ARRAY_SIZE(ep_name)
143 /*-------------------------------------------------------------------------*/
149 struct list_head urbp_list
;
153 enum dummy_rh_state
{
163 * SLAVE/GADGET side support
165 struct dummy_ep ep
[DUMMY_ENDPOINTS
];
167 struct usb_gadget gadget
;
168 struct usb_gadget_driver
*driver
;
169 struct dummy_request fifo_req
;
170 u8 fifo_buf
[FIFO_SIZE
];
172 unsigned udc_suspended
:1;
175 unsigned old_active
:1;
178 * MASTER/HOST side support
180 enum dummy_rh_state rh_state
;
181 struct timer_list timer
;
185 unsigned long re_timeout
;
187 struct usb_device
*udev
;
188 struct list_head urbp_list
;
191 static inline struct dummy
*hcd_to_dummy (struct usb_hcd
*hcd
)
193 return (struct dummy
*) (hcd
->hcd_priv
);
196 static inline struct usb_hcd
*dummy_to_hcd (struct dummy
*dum
)
198 return container_of((void *) dum
, struct usb_hcd
, hcd_priv
);
201 static inline struct device
*dummy_dev (struct dummy
*dum
)
203 return dummy_to_hcd(dum
)->self
.controller
;
206 static inline struct device
*udc_dev (struct dummy
*dum
)
208 return dum
->gadget
.dev
.parent
;
211 static inline struct dummy
*ep_to_dummy (struct dummy_ep
*ep
)
213 return container_of (ep
->gadget
, struct dummy
, gadget
);
216 static inline struct dummy
*gadget_to_dummy (struct usb_gadget
*gadget
)
218 return container_of (gadget
, struct dummy
, gadget
);
221 static inline struct dummy
*gadget_dev_to_dummy (struct device
*dev
)
223 return container_of (dev
, struct dummy
, gadget
.dev
);
226 static struct dummy
*the_controller
;
228 /*-------------------------------------------------------------------------*/
230 /* SLAVE/GADGET SIDE UTILITY ROUTINES */
232 /* called with spinlock held */
233 static void nuke (struct dummy
*dum
, struct dummy_ep
*ep
)
235 while (!list_empty (&ep
->queue
)) {
236 struct dummy_request
*req
;
238 req
= list_entry (ep
->queue
.next
, struct dummy_request
, queue
);
239 list_del_init (&req
->queue
);
240 req
->req
.status
= -ESHUTDOWN
;
242 spin_unlock (&dum
->lock
);
243 req
->req
.complete (&ep
->ep
, &req
->req
);
244 spin_lock (&dum
->lock
);
248 /* caller must hold lock */
250 stop_activity (struct dummy
*dum
)
254 /* prevent any more requests */
257 /* The timer is left running so that outstanding URBs can fail */
259 /* nuke any pending requests first, so driver i/o is quiesced */
260 list_for_each_entry (ep
, &dum
->gadget
.ep_list
, ep
.ep_list
)
263 /* driver now does any non-usb quiescing necessary */
266 /* caller must hold lock */
268 set_link_state (struct dummy
*dum
)
271 if ((dum
->port_status
& USB_PORT_STAT_POWER
) == 0)
272 dum
->port_status
= 0;
274 /* UDC suspend must cause a disconnect */
275 else if (!dum
->pullup
|| dum
->udc_suspended
) {
276 dum
->port_status
&= ~(USB_PORT_STAT_CONNECTION
|
277 USB_PORT_STAT_ENABLE
|
278 USB_PORT_STAT_LOW_SPEED
|
279 USB_PORT_STAT_HIGH_SPEED
|
280 USB_PORT_STAT_SUSPEND
);
281 if ((dum
->old_status
& USB_PORT_STAT_CONNECTION
) != 0)
282 dum
->port_status
|= (USB_PORT_STAT_C_CONNECTION
<< 16);
284 dum
->port_status
|= USB_PORT_STAT_CONNECTION
;
285 if ((dum
->old_status
& USB_PORT_STAT_CONNECTION
) == 0)
286 dum
->port_status
|= (USB_PORT_STAT_C_CONNECTION
<< 16);
287 if ((dum
->port_status
& USB_PORT_STAT_ENABLE
) == 0)
288 dum
->port_status
&= ~USB_PORT_STAT_SUSPEND
;
289 else if ((dum
->port_status
& USB_PORT_STAT_SUSPEND
) == 0 &&
290 dum
->rh_state
!= DUMMY_RH_SUSPENDED
)
294 if ((dum
->port_status
& USB_PORT_STAT_ENABLE
) == 0 || dum
->active
)
297 if ((dum
->port_status
& USB_PORT_STAT_CONNECTION
) == 0 ||
298 (dum
->port_status
& USB_PORT_STAT_RESET
) != 0) {
299 if ((dum
->old_status
& USB_PORT_STAT_CONNECTION
) != 0 &&
300 (dum
->old_status
& USB_PORT_STAT_RESET
) == 0 &&
303 spin_unlock (&dum
->lock
);
304 dum
->driver
->disconnect (&dum
->gadget
);
305 spin_lock (&dum
->lock
);
307 } else if (dum
->active
!= dum
->old_active
) {
308 if (dum
->old_active
&& dum
->driver
->suspend
) {
309 spin_unlock (&dum
->lock
);
310 dum
->driver
->suspend (&dum
->gadget
);
311 spin_lock (&dum
->lock
);
312 } else if (!dum
->old_active
&& dum
->driver
->resume
) {
313 spin_unlock (&dum
->lock
);
314 dum
->driver
->resume (&dum
->gadget
);
315 spin_lock (&dum
->lock
);
319 dum
->old_status
= dum
->port_status
;
320 dum
->old_active
= dum
->active
;
323 /*-------------------------------------------------------------------------*/
325 /* SLAVE/GADGET SIDE DRIVER
327 * This only tracks gadget state. All the work is done when the host
328 * side tries some (emulated) i/o operation. Real device controller
329 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
332 #define is_enabled(dum) \
333 (dum->port_status & USB_PORT_STAT_ENABLE)
336 dummy_enable (struct usb_ep
*_ep
, const struct usb_endpoint_descriptor
*desc
)
343 ep
= usb_ep_to_dummy_ep (_ep
);
344 if (!_ep
|| !desc
|| ep
->desc
|| _ep
->name
== ep0name
345 || desc
->bDescriptorType
!= USB_DT_ENDPOINT
)
347 dum
= ep_to_dummy (ep
);
348 if (!dum
->driver
|| !is_enabled (dum
))
350 max
= le16_to_cpu(desc
->wMaxPacketSize
) & 0x3ff;
352 /* drivers must not request bad settings, since lower levels
353 * (hardware or its drivers) may not check. some endpoints
354 * can't do iso, many have maxpacket limitations, etc.
356 * since this "hardware" driver is here to help debugging, we
357 * have some extra sanity checks. (there could be more though,
358 * especially for "ep9out" style fixed function ones.)
361 switch (desc
->bmAttributes
& 0x03) {
362 case USB_ENDPOINT_XFER_BULK
:
363 if (strstr (ep
->ep
.name
, "-iso")
364 || strstr (ep
->ep
.name
, "-int")) {
367 switch (dum
->gadget
.speed
) {
371 /* conserve return statements */
374 case 8: case 16: case 32: case 64:
375 /* we'll fake any legal size */
383 case USB_ENDPOINT_XFER_INT
:
384 if (strstr (ep
->ep
.name
, "-iso")) /* bulk is ok */
386 /* real hardware might not handle all packet sizes */
387 switch (dum
->gadget
.speed
) {
391 /* save a return statement */
395 /* save a return statement */
402 case USB_ENDPOINT_XFER_ISOC
:
403 if (strstr (ep
->ep
.name
, "-bulk")
404 || strstr (ep
->ep
.name
, "-int"))
406 /* real hardware might not handle all packet sizes */
407 switch (dum
->gadget
.speed
) {
411 /* save a return statement */
415 /* save a return statement */
421 /* few chips support control except on ep0 */
425 _ep
->maxpacket
= max
;
428 dev_dbg (udc_dev(dum
), "enabled %s (ep%d%s-%s) maxpacket %d\n",
430 desc
->bEndpointAddress
& 0x0f,
431 (desc
->bEndpointAddress
& USB_DIR_IN
) ? "in" : "out",
433 switch (desc
->bmAttributes
& 0x03) {
434 case USB_ENDPOINT_XFER_BULK
: val
= "bulk"; break;
435 case USB_ENDPOINT_XFER_ISOC
: val
= "iso"; break;
436 case USB_ENDPOINT_XFER_INT
: val
= "intr"; break;
437 default: val
= "ctrl"; break;
441 /* at this point real hardware should be NAKing transfers
442 * to that endpoint, until a buffer is queued to it.
449 static int dummy_disable (struct usb_ep
*_ep
)
456 ep
= usb_ep_to_dummy_ep (_ep
);
457 if (!_ep
|| !ep
->desc
|| _ep
->name
== ep0name
)
459 dum
= ep_to_dummy (ep
);
461 spin_lock_irqsave (&dum
->lock
, flags
);
465 spin_unlock_irqrestore (&dum
->lock
, flags
);
467 dev_dbg (udc_dev(dum
), "disabled %s\n", _ep
->name
);
471 static struct usb_request
*
472 dummy_alloc_request (struct usb_ep
*_ep
, gfp_t mem_flags
)
475 struct dummy_request
*req
;
479 ep
= usb_ep_to_dummy_ep (_ep
);
481 req
= kmalloc (sizeof *req
, mem_flags
);
484 memset (req
, 0, sizeof *req
);
485 INIT_LIST_HEAD (&req
->queue
);
490 dummy_free_request (struct usb_ep
*_ep
, struct usb_request
*_req
)
493 struct dummy_request
*req
;
495 ep
= usb_ep_to_dummy_ep (_ep
);
496 if (!ep
|| !_req
|| (!ep
->desc
&& _ep
->name
!= ep0name
))
499 req
= usb_request_to_dummy_request (_req
);
500 WARN_ON (!list_empty (&req
->queue
));
515 ep
= usb_ep_to_dummy_ep (_ep
);
516 dum
= ep_to_dummy (ep
);
520 retval
= kmalloc (bytes
, mem_flags
);
521 *dma
= (dma_addr_t
) retval
;
537 fifo_complete (struct usb_ep
*ep
, struct usb_request
*req
)
542 dummy_queue (struct usb_ep
*_ep
, struct usb_request
*_req
,
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 platform_device
*pdev
)
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
= &pdev
->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 platform_set_drvdata (pdev
, dum
);
923 device_create_file (&dum
->gadget
.dev
, &dev_attr_function
);
927 static int dummy_udc_remove (struct platform_device
*pdev
)
929 struct dummy
*dum
= platform_get_drvdata (pdev
);
931 platform_set_drvdata (pdev
, NULL
);
932 device_remove_file (&dum
->gadget
.dev
, &dev_attr_function
);
933 device_unregister (&dum
->gadget
.dev
);
937 static int dummy_udc_suspend (struct platform_device
*pdev
, pm_message_t state
)
939 struct dummy
*dum
= platform_get_drvdata(pdev
);
941 dev_dbg (&pdev
->dev
, "%s\n", __FUNCTION__
);
942 spin_lock_irq (&dum
->lock
);
943 dum
->udc_suspended
= 1;
944 set_link_state (dum
);
945 spin_unlock_irq (&dum
->lock
);
947 pdev
->dev
.power
.power_state
= state
;
948 usb_hcd_poll_rh_status (dummy_to_hcd (dum
));
952 static int dummy_udc_resume (struct platform_device
*pdev
)
954 struct dummy
*dum
= platform_get_drvdata(pdev
);
956 dev_dbg (&pdev
->dev
, "%s\n", __FUNCTION__
);
957 spin_lock_irq (&dum
->lock
);
958 dum
->udc_suspended
= 0;
959 set_link_state (dum
);
960 spin_unlock_irq (&dum
->lock
);
962 pdev
->dev
.power
.power_state
= PMSG_ON
;
963 usb_hcd_poll_rh_status (dummy_to_hcd (dum
));
967 static struct platform_driver dummy_udc_driver
= {
968 .probe
= dummy_udc_probe
,
969 .remove
= dummy_udc_remove
,
970 .suspend
= dummy_udc_suspend
,
971 .resume
= dummy_udc_resume
,
973 .name
= (char *) gadget_name
,
974 .owner
= THIS_MODULE
,
978 /*-------------------------------------------------------------------------*/
980 /* MASTER/HOST SIDE DRIVER
982 * this uses the hcd framework to hook up to host side drivers.
983 * its root hub will only have one device, otherwise it acts like
984 * a normal host controller.
986 * when urbs are queued, they're just stuck on a list that we
987 * scan in a timer callback. that callback connects writes from
988 * the host with reads from the device, and so on, based on the
992 static int dummy_urb_enqueue (
994 struct usb_host_endpoint
*ep
,
1000 unsigned long flags
;
1002 if (!urb
->transfer_buffer
&& urb
->transfer_buffer_length
)
1005 urbp
= kmalloc (sizeof *urbp
, mem_flags
);
1010 dum
= hcd_to_dummy (hcd
);
1011 spin_lock_irqsave (&dum
->lock
, flags
);
1014 dum
->udev
= urb
->dev
;
1015 usb_get_dev (dum
->udev
);
1016 } else if (unlikely (dum
->udev
!= urb
->dev
))
1017 dev_err (dummy_dev(dum
), "usb_device address has changed!\n");
1019 list_add_tail (&urbp
->urbp_list
, &dum
->urbp_list
);
1021 if (usb_pipetype (urb
->pipe
) == PIPE_CONTROL
)
1022 urb
->error_count
= 1; /* mark as a new urb */
1024 /* kick the scheduler, it'll do the rest */
1025 if (!timer_pending (&dum
->timer
))
1026 mod_timer (&dum
->timer
, jiffies
+ 1);
1028 spin_unlock_irqrestore (&dum
->lock
, flags
);
1032 static int dummy_urb_dequeue (struct usb_hcd
*hcd
, struct urb
*urb
)
1035 unsigned long flags
;
1037 /* giveback happens automatically in timer callback,
1038 * so make sure the callback happens */
1039 dum
= hcd_to_dummy (hcd
);
1040 spin_lock_irqsave (&dum
->lock
, flags
);
1041 if (dum
->rh_state
!= DUMMY_RH_RUNNING
&& !list_empty(&dum
->urbp_list
))
1042 mod_timer (&dum
->timer
, jiffies
);
1043 spin_unlock_irqrestore (&dum
->lock
, flags
);
1047 static void maybe_set_status (struct urb
*urb
, int status
)
1049 spin_lock (&urb
->lock
);
1050 if (urb
->status
== -EINPROGRESS
)
1051 urb
->status
= status
;
1052 spin_unlock (&urb
->lock
);
1055 /* transfer up to a frame's worth; caller must own lock */
1057 transfer (struct dummy
*dum
, struct urb
*urb
, struct dummy_ep
*ep
, int limit
)
1059 struct dummy_request
*req
;
1062 /* if there's no request queued, the device is NAKing; return */
1063 list_for_each_entry (req
, &ep
->queue
, queue
) {
1064 unsigned host_len
, dev_len
, len
;
1065 int is_short
, to_host
;
1068 /* 1..N packets of ep->ep.maxpacket each ... the last one
1069 * may be short (including zero length).
1071 * writer can send a zlp explicitly (length 0) or implicitly
1072 * (length mod maxpacket zero, and 'zero' flag); they always
1075 host_len
= urb
->transfer_buffer_length
- urb
->actual_length
;
1076 dev_len
= req
->req
.length
- req
->req
.actual
;
1077 len
= min (host_len
, dev_len
);
1079 /* FIXME update emulated data toggle too */
1081 to_host
= usb_pipein (urb
->pipe
);
1082 if (unlikely (len
== 0))
1087 /* not enough bandwidth left? */
1088 if (limit
< ep
->ep
.maxpacket
&& limit
< len
)
1090 len
= min (len
, (unsigned) limit
);
1094 /* use an extra pass for the final short packet */
1095 if (len
> ep
->ep
.maxpacket
) {
1097 len
-= (len
% ep
->ep
.maxpacket
);
1099 is_short
= (len
% ep
->ep
.maxpacket
) != 0;
1101 /* else transfer packet(s) */
1102 ubuf
= urb
->transfer_buffer
+ urb
->actual_length
;
1103 rbuf
= req
->req
.buf
+ req
->req
.actual
;
1105 memcpy (ubuf
, rbuf
, len
);
1107 memcpy (rbuf
, ubuf
, len
);
1108 ep
->last_io
= jiffies
;
1111 urb
->actual_length
+= len
;
1112 req
->req
.actual
+= len
;
1115 /* short packets terminate, maybe with overflow/underflow.
1116 * it's only really an error to write too much.
1118 * partially filling a buffer optionally blocks queue advances
1119 * (so completion handlers can clean up the queue) but we don't
1120 * need to emulate such data-in-flight. so we only show part
1121 * of the URB_SHORT_NOT_OK effect: completion status.
1124 if (host_len
== dev_len
) {
1125 req
->req
.status
= 0;
1126 maybe_set_status (urb
, 0);
1127 } else if (to_host
) {
1128 req
->req
.status
= 0;
1129 if (dev_len
> host_len
)
1130 maybe_set_status (urb
, -EOVERFLOW
);
1132 maybe_set_status (urb
,
1133 (urb
->transfer_flags
1136 } else if (!to_host
) {
1137 maybe_set_status (urb
, 0);
1138 if (host_len
> dev_len
)
1139 req
->req
.status
= -EOVERFLOW
;
1141 req
->req
.status
= 0;
1144 /* many requests terminate without a short packet */
1146 if (req
->req
.length
== req
->req
.actual
1148 req
->req
.status
= 0;
1149 if (urb
->transfer_buffer_length
== urb
->actual_length
1150 && !(urb
->transfer_flags
1151 & URB_ZERO_PACKET
)) {
1152 maybe_set_status (urb
, 0);
1156 /* device side completion --> continuable */
1157 if (req
->req
.status
!= -EINPROGRESS
) {
1158 list_del_init (&req
->queue
);
1160 spin_unlock (&dum
->lock
);
1161 req
->req
.complete (&ep
->ep
, &req
->req
);
1162 spin_lock (&dum
->lock
);
1164 /* requests might have been unlinked... */
1168 /* host side completion --> terminate */
1169 if (urb
->status
!= -EINPROGRESS
)
1172 /* rescan to continue with any other queued i/o */
1179 static int periodic_bytes (struct dummy
*dum
, struct dummy_ep
*ep
)
1181 int limit
= ep
->ep
.maxpacket
;
1183 if (dum
->gadget
.speed
== USB_SPEED_HIGH
) {
1186 /* high bandwidth mode */
1187 tmp
= le16_to_cpu(ep
->desc
->wMaxPacketSize
);
1188 tmp
= (tmp
>> 11) & 0x03;
1189 tmp
*= 8 /* applies to entire frame */;
1190 limit
+= limit
* tmp
;
1195 #define is_active(dum) ((dum->port_status & \
1196 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1197 USB_PORT_STAT_SUSPEND)) \
1198 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1200 static struct dummy_ep
*find_endpoint (struct dummy
*dum
, u8 address
)
1204 if (!is_active (dum
))
1206 if ((address
& ~USB_DIR_IN
) == 0)
1207 return &dum
->ep
[0];
1208 for (i
= 1; i
< DUMMY_ENDPOINTS
; i
++) {
1209 struct dummy_ep
*ep
= &dum
->ep
[i
];
1213 if (ep
->desc
->bEndpointAddress
== address
)
1221 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1222 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1223 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1224 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1225 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1226 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1228 /* drive both sides of the transfers; looks like irq handlers to
1229 * both drivers except the callbacks aren't in_irq().
1231 static void dummy_timer (unsigned long _dum
)
1233 struct dummy
*dum
= (struct dummy
*) _dum
;
1234 struct urbp
*urbp
, *tmp
;
1235 unsigned long flags
;
1239 /* simplistic model for one frame's bandwidth */
1240 switch (dum
->gadget
.speed
) {
1242 total
= 8/*bytes*/ * 12/*packets*/;
1244 case USB_SPEED_FULL
:
1245 total
= 64/*bytes*/ * 19/*packets*/;
1247 case USB_SPEED_HIGH
:
1248 total
= 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1251 dev_err (dummy_dev(dum
), "bogus device speed\n");
1255 /* FIXME if HZ != 1000 this will probably misbehave ... */
1257 /* look at each urb queued by the host side driver */
1258 spin_lock_irqsave (&dum
->lock
, flags
);
1261 dev_err (dummy_dev(dum
),
1262 "timer fired with no URBs pending?\n");
1263 spin_unlock_irqrestore (&dum
->lock
, flags
);
1267 for (i
= 0; i
< DUMMY_ENDPOINTS
; i
++) {
1270 dum
->ep
[i
].already_seen
= 0;
1274 list_for_each_entry_safe (urbp
, tmp
, &dum
->urbp_list
, urbp_list
) {
1276 struct dummy_request
*req
;
1278 struct dummy_ep
*ep
= NULL
;
1282 if (urb
->status
!= -EINPROGRESS
) {
1283 /* likely it was just unlinked */
1285 } else if (dum
->rh_state
!= DUMMY_RH_RUNNING
)
1287 type
= usb_pipetype (urb
->pipe
);
1289 /* used up this frame's non-periodic bandwidth?
1290 * FIXME there's infinite bandwidth for control and
1291 * periodic transfers ... unrealistic.
1293 if (total
<= 0 && type
== PIPE_BULK
)
1296 /* find the gadget's ep for this request (if configured) */
1297 address
= usb_pipeendpoint (urb
->pipe
);
1298 if (usb_pipein (urb
->pipe
))
1299 address
|= USB_DIR_IN
;
1300 ep
= find_endpoint(dum
, address
);
1302 /* set_configuration() disagreement */
1303 dev_dbg (dummy_dev(dum
),
1304 "no ep configured for urb %p\n",
1306 maybe_set_status (urb
, -EPROTO
);
1310 if (ep
->already_seen
)
1312 ep
->already_seen
= 1;
1313 if (ep
== &dum
->ep
[0] && urb
->error_count
) {
1314 ep
->setup_stage
= 1; /* a new urb */
1315 urb
->error_count
= 0;
1317 if (ep
->halted
&& !ep
->setup_stage
) {
1318 /* NOTE: must not be iso! */
1319 dev_dbg (dummy_dev(dum
), "ep %s halted, urb %p\n",
1321 maybe_set_status (urb
, -EPIPE
);
1324 /* FIXME make sure both ends agree on maxpacket */
1326 /* handle control requests */
1327 if (ep
== &dum
->ep
[0] && ep
->setup_stage
) {
1328 struct usb_ctrlrequest setup
;
1330 struct dummy_ep
*ep2
;
1334 setup
= *(struct usb_ctrlrequest
*) urb
->setup_packet
;
1335 w_index
= le16_to_cpu(setup
.wIndex
);
1336 w_value
= le16_to_cpu(setup
.wValue
);
1337 if (le16_to_cpu(setup
.wLength
) !=
1338 urb
->transfer_buffer_length
) {
1339 maybe_set_status (urb
, -EOVERFLOW
);
1343 /* paranoia, in case of stale queued data */
1344 list_for_each_entry (req
, &ep
->queue
, queue
) {
1345 list_del_init (&req
->queue
);
1346 req
->req
.status
= -EOVERFLOW
;
1347 dev_dbg (udc_dev(dum
), "stale req = %p\n",
1350 spin_unlock (&dum
->lock
);
1351 req
->req
.complete (&ep
->ep
, &req
->req
);
1352 spin_lock (&dum
->lock
);
1353 ep
->already_seen
= 0;
1357 /* gadget driver never sees set_address or operations
1358 * on standard feature flags. some hardware doesn't
1361 ep
->last_io
= jiffies
;
1362 ep
->setup_stage
= 0;
1364 switch (setup
.bRequest
) {
1365 case USB_REQ_SET_ADDRESS
:
1366 if (setup
.bRequestType
!= Dev_Request
)
1368 dum
->address
= w_value
;
1369 maybe_set_status (urb
, 0);
1370 dev_dbg (udc_dev(dum
), "set_address = %d\n",
1374 case USB_REQ_SET_FEATURE
:
1375 if (setup
.bRequestType
== Dev_Request
) {
1378 case USB_DEVICE_REMOTE_WAKEUP
:
1380 case USB_DEVICE_B_HNP_ENABLE
:
1381 dum
->gadget
.b_hnp_enable
= 1;
1383 case USB_DEVICE_A_HNP_SUPPORT
:
1384 dum
->gadget
.a_hnp_support
= 1;
1386 case USB_DEVICE_A_ALT_HNP_SUPPORT
:
1387 dum
->gadget
.a_alt_hnp_support
1391 value
= -EOPNOTSUPP
;
1396 maybe_set_status (urb
, 0);
1399 } else if (setup
.bRequestType
== Ep_Request
) {
1401 ep2
= find_endpoint (dum
, w_index
);
1403 value
= -EOPNOTSUPP
;
1408 maybe_set_status (urb
, 0);
1411 case USB_REQ_CLEAR_FEATURE
:
1412 if (setup
.bRequestType
== Dev_Request
) {
1414 case USB_DEVICE_REMOTE_WAKEUP
:
1415 dum
->devstatus
&= ~(1 <<
1416 USB_DEVICE_REMOTE_WAKEUP
);
1418 maybe_set_status (urb
, 0);
1421 value
= -EOPNOTSUPP
;
1424 } else if (setup
.bRequestType
== Ep_Request
) {
1426 ep2
= find_endpoint (dum
, w_index
);
1428 value
= -EOPNOTSUPP
;
1433 maybe_set_status (urb
, 0);
1436 case USB_REQ_GET_STATUS
:
1437 if (setup
.bRequestType
== Dev_InRequest
1438 || setup
.bRequestType
1440 || setup
.bRequestType
1445 // device: remote wakeup, selfpowered
1446 // interface: nothing
1448 buf
= (char *)urb
->transfer_buffer
;
1449 if (urb
->transfer_buffer_length
> 0) {
1450 if (setup
.bRequestType
==
1452 ep2
= find_endpoint (dum
, w_index
);
1454 value
= -EOPNOTSUPP
;
1457 buf
[0] = ep2
->halted
;
1458 } else if (setup
.bRequestType
==
1465 if (urb
->transfer_buffer_length
> 1)
1467 urb
->actual_length
= min (2,
1468 urb
->transfer_buffer_length
);
1470 maybe_set_status (urb
, 0);
1475 /* gadget driver handles all other requests. block
1476 * until setup() returns; no reentrancy issues etc.
1479 spin_unlock (&dum
->lock
);
1480 value
= dum
->driver
->setup (&dum
->gadget
,
1482 spin_lock (&dum
->lock
);
1485 /* no delays (max 64KB data stage) */
1487 goto treat_control_like_bulk
;
1489 /* error, see below */
1493 if (value
!= -EOPNOTSUPP
)
1494 dev_dbg (udc_dev(dum
),
1497 maybe_set_status (urb
, -EPIPE
);
1498 urb
->actual_length
= 0;
1504 /* non-control requests */
1506 switch (usb_pipetype (urb
->pipe
)) {
1507 case PIPE_ISOCHRONOUS
:
1508 /* FIXME is it urb->interval since the last xfer?
1509 * use urb->iso_frame_desc[i].
1510 * complete whether or not ep has requests queued.
1511 * report random errors, to debug drivers.
1513 limit
= max (limit
, periodic_bytes (dum
, ep
));
1514 maybe_set_status (urb
, -ENOSYS
);
1517 case PIPE_INTERRUPT
:
1518 /* FIXME is it urb->interval since the last xfer?
1519 * this almost certainly polls too fast.
1521 limit
= max (limit
, periodic_bytes (dum
, ep
));
1524 // case PIPE_BULK: case PIPE_CONTROL:
1526 treat_control_like_bulk
:
1527 ep
->last_io
= jiffies
;
1528 total
= transfer (dum
, urb
, ep
, limit
);
1532 /* incomplete transfer? */
1533 if (urb
->status
== -EINPROGRESS
)
1538 list_del (&urbp
->urbp_list
);
1541 ep
->already_seen
= ep
->setup_stage
= 0;
1543 spin_unlock (&dum
->lock
);
1544 usb_hcd_giveback_urb (dummy_to_hcd(dum
), urb
, NULL
);
1545 spin_lock (&dum
->lock
);
1550 if (list_empty (&dum
->urbp_list
)) {
1551 usb_put_dev (dum
->udev
);
1553 } else if (dum
->rh_state
== DUMMY_RH_RUNNING
) {
1554 /* want a 1 msec delay here */
1555 mod_timer (&dum
->timer
, jiffies
+ msecs_to_jiffies(1));
1558 spin_unlock_irqrestore (&dum
->lock
, flags
);
1561 /*-------------------------------------------------------------------------*/
1563 #define PORT_C_MASK \
1564 ((USB_PORT_STAT_C_CONNECTION \
1565 | USB_PORT_STAT_C_ENABLE \
1566 | USB_PORT_STAT_C_SUSPEND \
1567 | USB_PORT_STAT_C_OVERCURRENT \
1568 | USB_PORT_STAT_C_RESET) << 16)
1570 static int dummy_hub_status (struct usb_hcd
*hcd
, char *buf
)
1573 unsigned long flags
;
1576 dum
= hcd_to_dummy (hcd
);
1578 spin_lock_irqsave (&dum
->lock
, flags
);
1579 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
))
1582 if (dum
->resuming
&& time_after_eq (jiffies
, dum
->re_timeout
)) {
1583 dum
->port_status
|= (USB_PORT_STAT_C_SUSPEND
<< 16);
1584 dum
->port_status
&= ~USB_PORT_STAT_SUSPEND
;
1585 set_link_state (dum
);
1588 if ((dum
->port_status
& PORT_C_MASK
) != 0) {
1590 dev_dbg (dummy_dev(dum
), "port status 0x%08x has changes\n",
1593 if (dum
->rh_state
== DUMMY_RH_SUSPENDED
)
1594 usb_hcd_resume_root_hub (hcd
);
1597 spin_unlock_irqrestore (&dum
->lock
, flags
);
1602 hub_descriptor (struct usb_hub_descriptor
*desc
)
1604 memset (desc
, 0, sizeof *desc
);
1605 desc
->bDescriptorType
= 0x29;
1606 desc
->bDescLength
= 9;
1607 desc
->wHubCharacteristics
= (__force __u16
)
1608 (__constant_cpu_to_le16 (0x0001));
1609 desc
->bNbrPorts
= 1;
1610 desc
->bitmap
[0] = 0xff;
1611 desc
->bitmap
[1] = 0xff;
1614 static int dummy_hub_control (
1615 struct usb_hcd
*hcd
,
1624 unsigned long flags
;
1626 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
))
1629 dum
= hcd_to_dummy (hcd
);
1630 spin_lock_irqsave (&dum
->lock
, flags
);
1632 case ClearHubFeature
:
1634 case ClearPortFeature
:
1636 case USB_PORT_FEAT_SUSPEND
:
1637 if (dum
->port_status
& USB_PORT_STAT_SUSPEND
) {
1638 /* 20msec resume signaling */
1640 dum
->re_timeout
= jiffies
+
1641 msecs_to_jiffies(20);
1644 case USB_PORT_FEAT_POWER
:
1645 if (dum
->port_status
& USB_PORT_STAT_POWER
)
1646 dev_dbg (dummy_dev(dum
), "power-off\n");
1649 dum
->port_status
&= ~(1 << wValue
);
1650 set_link_state (dum
);
1653 case GetHubDescriptor
:
1654 hub_descriptor ((struct usb_hub_descriptor
*) buf
);
1657 *(__le32
*) buf
= __constant_cpu_to_le32 (0);
1663 /* whoever resets or resumes must GetPortStatus to
1666 if (dum
->resuming
&&
1667 time_after_eq (jiffies
, dum
->re_timeout
)) {
1668 dum
->port_status
|= (USB_PORT_STAT_C_SUSPEND
<< 16);
1669 dum
->port_status
&= ~USB_PORT_STAT_SUSPEND
;
1671 if ((dum
->port_status
& USB_PORT_STAT_RESET
) != 0 &&
1672 time_after_eq (jiffies
, dum
->re_timeout
)) {
1673 dum
->port_status
|= (USB_PORT_STAT_C_RESET
<< 16);
1674 dum
->port_status
&= ~USB_PORT_STAT_RESET
;
1676 dum
->port_status
|= USB_PORT_STAT_ENABLE
;
1677 /* give it the best speed we agree on */
1678 dum
->gadget
.speed
= dum
->driver
->speed
;
1679 dum
->gadget
.ep0
->maxpacket
= 64;
1680 switch (dum
->gadget
.speed
) {
1681 case USB_SPEED_HIGH
:
1683 USB_PORT_STAT_HIGH_SPEED
;
1686 dum
->gadget
.ep0
->maxpacket
= 8;
1688 USB_PORT_STAT_LOW_SPEED
;
1691 dum
->gadget
.speed
= USB_SPEED_FULL
;
1696 set_link_state (dum
);
1697 ((__le16
*) buf
)[0] = cpu_to_le16 (dum
->port_status
);
1698 ((__le16
*) buf
)[1] = cpu_to_le16 (dum
->port_status
>> 16);
1703 case SetPortFeature
:
1705 case USB_PORT_FEAT_SUSPEND
:
1707 dum
->port_status
|= USB_PORT_STAT_SUSPEND
;
1709 /* HNP would happen here; for now we
1710 * assume b_bus_req is always true.
1712 set_link_state (dum
);
1713 if (((1 << USB_DEVICE_B_HNP_ENABLE
)
1714 & dum
->devstatus
) != 0)
1715 dev_dbg (dummy_dev(dum
),
1719 case USB_PORT_FEAT_POWER
:
1720 dum
->port_status
|= USB_PORT_STAT_POWER
;
1721 set_link_state (dum
);
1723 case USB_PORT_FEAT_RESET
:
1724 /* if it's already enabled, disable */
1725 dum
->port_status
&= ~(USB_PORT_STAT_ENABLE
1726 | USB_PORT_STAT_LOW_SPEED
1727 | USB_PORT_STAT_HIGH_SPEED
);
1729 /* 50msec reset signaling */
1730 dum
->re_timeout
= jiffies
+ msecs_to_jiffies(50);
1733 if ((dum
->port_status
& USB_PORT_STAT_POWER
) != 0) {
1734 dum
->port_status
|= (1 << wValue
);
1735 set_link_state (dum
);
1741 dev_dbg (dummy_dev(dum
),
1742 "hub control req%04x v%04x i%04x l%d\n",
1743 typeReq
, wValue
, wIndex
, wLength
);
1745 /* "protocol stall" on error */
1748 spin_unlock_irqrestore (&dum
->lock
, flags
);
1750 if ((dum
->port_status
& PORT_C_MASK
) != 0)
1751 usb_hcd_poll_rh_status (hcd
);
1755 static int dummy_bus_suspend (struct usb_hcd
*hcd
)
1757 struct dummy
*dum
= hcd_to_dummy (hcd
);
1759 dev_dbg (&hcd
->self
.root_hub
->dev
, "%s\n", __FUNCTION__
);
1761 spin_lock_irq (&dum
->lock
);
1762 dum
->rh_state
= DUMMY_RH_SUSPENDED
;
1763 set_link_state (dum
);
1764 hcd
->state
= HC_STATE_SUSPENDED
;
1765 spin_unlock_irq (&dum
->lock
);
1769 static int dummy_bus_resume (struct usb_hcd
*hcd
)
1771 struct dummy
*dum
= hcd_to_dummy (hcd
);
1774 dev_dbg (&hcd
->self
.root_hub
->dev
, "%s\n", __FUNCTION__
);
1776 spin_lock_irq (&dum
->lock
);
1777 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
1778 dev_warn (&hcd
->self
.root_hub
->dev
, "HC isn't running!\n");
1781 dum
->rh_state
= DUMMY_RH_RUNNING
;
1782 set_link_state (dum
);
1783 if (!list_empty(&dum
->urbp_list
))
1784 mod_timer (&dum
->timer
, jiffies
);
1785 hcd
->state
= HC_STATE_RUNNING
;
1787 spin_unlock_irq (&dum
->lock
);
1791 /*-------------------------------------------------------------------------*/
1793 static inline ssize_t
1794 show_urb (char *buf
, size_t size
, struct urb
*urb
)
1796 int ep
= usb_pipeendpoint (urb
->pipe
);
1798 return snprintf (buf
, size
,
1799 "urb/%p %s ep%d%s%s len %d/%d\n",
1802 switch (urb
->dev
->speed
) {
1803 case USB_SPEED_LOW
: s
= "ls"; break;
1804 case USB_SPEED_FULL
: s
= "fs"; break;
1805 case USB_SPEED_HIGH
: s
= "hs"; break;
1806 default: s
= "?"; break;
1808 ep
, ep
? (usb_pipein (urb
->pipe
) ? "in" : "out") : "",
1810 switch (usb_pipetype (urb
->pipe
)) { \
1811 case PIPE_CONTROL
: s
= ""; break; \
1812 case PIPE_BULK
: s
= "-bulk"; break; \
1813 case PIPE_INTERRUPT
: s
= "-int"; break; \
1814 default: s
= "-iso"; break; \
1816 urb
->actual_length
, urb
->transfer_buffer_length
);
1820 show_urbs (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1822 struct usb_hcd
*hcd
= dev_get_drvdata (dev
);
1823 struct dummy
*dum
= hcd_to_dummy (hcd
);
1826 unsigned long flags
;
1828 spin_lock_irqsave (&dum
->lock
, flags
);
1829 list_for_each_entry (urbp
, &dum
->urbp_list
, urbp_list
) {
1832 temp
= show_urb (buf
, PAGE_SIZE
- size
, urbp
->urb
);
1836 spin_unlock_irqrestore (&dum
->lock
, flags
);
1840 static DEVICE_ATTR (urbs
, S_IRUGO
, show_urbs
, NULL
);
1842 static int dummy_start (struct usb_hcd
*hcd
)
1846 dum
= hcd_to_dummy (hcd
);
1849 * MASTER side init ... we emulate a root hub that'll only ever
1850 * talk to one device (the slave side). Also appears in sysfs,
1851 * just like more familiar pci-based HCDs.
1853 spin_lock_init (&dum
->lock
);
1854 init_timer (&dum
->timer
);
1855 dum
->timer
.function
= dummy_timer
;
1856 dum
->timer
.data
= (unsigned long) dum
;
1857 dum
->rh_state
= DUMMY_RH_RUNNING
;
1859 INIT_LIST_HEAD (&dum
->urbp_list
);
1861 /* only show a low-power port: just 8mA */
1862 hcd
->power_budget
= 8;
1863 hcd
->state
= HC_STATE_RUNNING
;
1864 hcd
->uses_new_polling
= 1;
1866 #ifdef CONFIG_USB_OTG
1867 hcd
->self
.otg_port
= 1;
1870 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1871 device_create_file (dummy_dev(dum
), &dev_attr_urbs
);
1875 static void dummy_stop (struct usb_hcd
*hcd
)
1879 dum
= hcd_to_dummy (hcd
);
1881 device_remove_file (dummy_dev(dum
), &dev_attr_urbs
);
1882 usb_gadget_unregister_driver (dum
->driver
);
1883 dev_info (dummy_dev(dum
), "stopped\n");
1886 /*-------------------------------------------------------------------------*/
1888 static int dummy_h_get_frame (struct usb_hcd
*hcd
)
1890 return dummy_g_get_frame (NULL
);
1893 static const struct hc_driver dummy_hcd
= {
1894 .description
= (char *) driver_name
,
1895 .product_desc
= "Dummy host controller",
1896 .hcd_priv_size
= sizeof(struct dummy
),
1900 .start
= dummy_start
,
1903 .urb_enqueue
= dummy_urb_enqueue
,
1904 .urb_dequeue
= dummy_urb_dequeue
,
1906 .get_frame_number
= dummy_h_get_frame
,
1908 .hub_status_data
= dummy_hub_status
,
1909 .hub_control
= dummy_hub_control
,
1910 .bus_suspend
= dummy_bus_suspend
,
1911 .bus_resume
= dummy_bus_resume
,
1914 static int dummy_hcd_probe(struct platform_device
*pdev
)
1916 struct usb_hcd
*hcd
;
1919 dev_info(&pdev
->dev
, "%s, driver " DRIVER_VERSION
"\n", driver_desc
);
1921 hcd
= usb_create_hcd(&dummy_hcd
, &pdev
->dev
, pdev
->dev
.bus_id
);
1924 the_controller
= hcd_to_dummy (hcd
);
1926 retval
= usb_add_hcd(hcd
, 0, 0);
1929 the_controller
= NULL
;
1934 static int dummy_hcd_remove (struct platform_device
*pdev
)
1936 struct usb_hcd
*hcd
;
1938 hcd
= platform_get_drvdata (pdev
);
1939 usb_remove_hcd (hcd
);
1941 the_controller
= NULL
;
1945 static int dummy_hcd_suspend (struct platform_device
*pdev
, pm_message_t state
)
1947 struct usb_hcd
*hcd
;
1951 dev_dbg (&pdev
->dev
, "%s\n", __FUNCTION__
);
1953 hcd
= platform_get_drvdata (pdev
);
1954 dum
= hcd_to_dummy (hcd
);
1955 if (dum
->rh_state
== DUMMY_RH_RUNNING
) {
1956 dev_warn(&pdev
->dev
, "Root hub isn't suspended!\n");
1959 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1963 static int dummy_hcd_resume (struct platform_device
*pdev
)
1965 struct usb_hcd
*hcd
;
1967 dev_dbg (&pdev
->dev
, "%s\n", __FUNCTION__
);
1969 hcd
= platform_get_drvdata (pdev
);
1970 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1971 usb_hcd_poll_rh_status (hcd
);
1975 static struct platform_driver dummy_hcd_driver
= {
1976 .probe
= dummy_hcd_probe
,
1977 .remove
= dummy_hcd_remove
,
1978 .suspend
= dummy_hcd_suspend
,
1979 .resume
= dummy_hcd_resume
,
1981 .name
= (char *) driver_name
,
1982 .owner
= THIS_MODULE
,
1986 /*-------------------------------------------------------------------------*/
1988 /* These don't need to do anything because the pdev structures are
1989 * statically allocated. */
1991 dummy_udc_release (struct device
*dev
) {}
1994 dummy_hcd_release (struct device
*dev
) {}
1996 static struct platform_device the_udc_pdev
= {
1997 .name
= (char *) gadget_name
,
2000 .release
= dummy_udc_release
,
2004 static struct platform_device the_hcd_pdev
= {
2005 .name
= (char *) driver_name
,
2008 .release
= dummy_hcd_release
,
2012 static int __init
init (void)
2016 if (usb_disabled ())
2019 retval
= platform_driver_register (&dummy_hcd_driver
);
2023 retval
= platform_driver_register (&dummy_udc_driver
);
2025 goto err_register_udc_driver
;
2027 retval
= platform_device_register (&the_hcd_pdev
);
2029 goto err_register_hcd
;
2031 retval
= platform_device_register (&the_udc_pdev
);
2033 goto err_register_udc
;
2037 platform_device_unregister (&the_hcd_pdev
);
2039 platform_driver_unregister (&dummy_udc_driver
);
2040 err_register_udc_driver
:
2041 platform_driver_unregister (&dummy_hcd_driver
);
2046 static void __exit
cleanup (void)
2048 platform_device_unregister (&the_udc_pdev
);
2049 platform_device_unregister (&the_hcd_pdev
);
2050 platform_driver_unregister (&dummy_udc_driver
);
2051 platform_driver_unregister (&dummy_hcd_driver
);
2053 module_exit (cleanup
);