1 // SPDX-License-Identifier: GPL-2.0+
3 * dummy_hcd.c -- Dummy/Loopback USB host and device emulator driver.
7 * Copyright (C) 2003 David Brownell
8 * Copyright (C) 2003-2005 Alan Stern
13 * This exposes a device side "USB gadget" API, driven by requests to a
14 * Linux-USB host controller driver. USB traffic is simulated; there's
15 * no need for USB hardware. Use this with two other drivers:
17 * - Gadget driver, responding to requests (device);
18 * - Host-side device driver, as already familiar in Linux.
20 * Having this all in one kernel can help some stages of development,
21 * bypassing some hardware (and driver) issues. UML could help too.
23 * Note: The emulation does not include isochronous transfers!
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/delay.h>
29 #include <linux/ioport.h>
30 #include <linux/slab.h>
31 #include <linux/errno.h>
32 #include <linux/init.h>
33 #include <linux/timer.h>
34 #include <linux/list.h>
35 #include <linux/interrupt.h>
36 #include <linux/platform_device.h>
37 #include <linux/usb.h>
38 #include <linux/usb/gadget.h>
39 #include <linux/usb/hcd.h>
40 #include <linux/scatterlist.h>
42 #include <asm/byteorder.h>
45 #include <asm/unaligned.h>
47 #define DRIVER_DESC "USB Host+Gadget Emulator"
48 #define DRIVER_VERSION "02 May 2005"
50 #define POWER_BUDGET 500 /* in mA; use 8 for low-power port testing */
51 #define POWER_BUDGET_3 900 /* in mA */
53 static const char driver_name[] = "dummy_hcd";
54 static const char driver_desc[] = "USB Host+Gadget Emulator";
56 static const char gadget_name[] = "dummy_udc";
58 MODULE_DESCRIPTION(DRIVER_DESC);
59 MODULE_AUTHOR("David Brownell");
60 MODULE_LICENSE("GPL");
62 struct dummy_hcd_module_parameters {
68 static struct dummy_hcd_module_parameters mod_data = {
69 .is_super_speed = false,
70 .is_high_speed = true,
73 module_param_named(is_super_speed, mod_data.is_super_speed, bool, S_IRUGO);
74 MODULE_PARM_DESC(is_super_speed, "true to simulate SuperSpeed connection");
75 module_param_named(is_high_speed, mod_data.is_high_speed, bool, S_IRUGO);
76 MODULE_PARM_DESC(is_high_speed, "true to simulate HighSpeed connection");
77 module_param_named(num, mod_data.num, uint, S_IRUGO);
78 MODULE_PARM_DESC(num, "number of emulated controllers");
79 /*-------------------------------------------------------------------------*/
81 /* gadget side driver data structres */
83 struct list_head queue;
84 unsigned long last_io; /* jiffies timestamp */
85 struct usb_gadget *gadget;
86 const struct usb_endpoint_descriptor *desc;
90 unsigned already_seen:1;
91 unsigned setup_stage:1;
95 struct dummy_request {
96 struct list_head queue; /* ep's requests */
97 struct usb_request req;
100 static inline struct dummy_ep *usb_ep_to_dummy_ep(struct usb_ep *_ep)
102 return container_of(_ep, struct dummy_ep, ep);
105 static inline struct dummy_request *usb_request_to_dummy_request
106 (struct usb_request *_req)
108 return container_of(_req, struct dummy_request, req);
111 /*-------------------------------------------------------------------------*/
114 * Every device has ep0 for control requests, plus up to 30 more endpoints,
115 * in one of two types:
117 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
118 * number can be changed. Names like "ep-a" are used for this type.
120 * - Fixed Function: in other cases. some characteristics may be mutable;
121 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
123 * Gadget drivers are responsible for not setting up conflicting endpoint
124 * configurations, illegal or unsupported packet lengths, and so on.
127 static const char ep0name[] = "ep0";
129 static const struct {
131 const struct usb_ep_caps caps;
133 #define EP_INFO(_name, _caps) \
139 /* we don't provide isochronous endpoints since we don't support them */
140 #define TYPE_BULK_OR_INT (USB_EP_CAPS_TYPE_BULK | USB_EP_CAPS_TYPE_INT)
142 /* everyone has ep0 */
144 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
145 /* act like a pxa250: fifteen fixed function endpoints */
146 EP_INFO("ep1in-bulk",
147 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
148 EP_INFO("ep2out-bulk",
149 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
152 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
153 EP_INFO("ep4out-iso",
154 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
157 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
158 EP_INFO("ep6in-bulk",
159 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
160 EP_INFO("ep7out-bulk",
161 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
164 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
165 EP_INFO("ep9out-iso",
166 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
168 EP_INFO("ep10in-int",
169 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
170 EP_INFO("ep11in-bulk",
171 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
172 EP_INFO("ep12out-bulk",
173 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
175 EP_INFO("ep13in-iso",
176 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
177 EP_INFO("ep14out-iso",
178 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
180 EP_INFO("ep15in-int",
181 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
183 /* or like sa1100: two fixed function endpoints */
184 EP_INFO("ep1out-bulk",
185 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
186 EP_INFO("ep2in-bulk",
187 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
189 /* and now some generic EPs so we have enough in multi config */
191 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
193 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_IN)),
195 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
197 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
199 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_IN)),
201 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
203 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_IN)),
205 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
207 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
209 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_IN)),
211 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
213 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_IN)),
215 USB_EP_CAPS(TYPE_BULK_OR_INT, USB_EP_CAPS_DIR_OUT)),
220 #define DUMMY_ENDPOINTS ARRAY_SIZE(ep_info)
222 /*-------------------------------------------------------------------------*/
228 struct list_head urbp_list;
229 struct sg_mapping_iter miter;
234 enum dummy_rh_state {
242 enum dummy_rh_state rh_state;
243 struct timer_list timer;
246 unsigned long re_timeout;
248 struct usb_device *udev;
249 struct list_head urbp_list;
250 struct urbp *next_frame_urbp;
253 u8 num_stream[30 / 2];
256 unsigned old_active:1;
264 * DEVICE/GADGET side support
266 struct dummy_ep ep[DUMMY_ENDPOINTS];
269 struct usb_gadget gadget;
270 struct usb_gadget_driver *driver;
271 struct dummy_request fifo_req;
272 u8 fifo_buf[FIFO_SIZE];
274 unsigned ints_enabled:1;
275 unsigned udc_suspended:1;
281 struct dummy_hcd *hs_hcd;
282 struct dummy_hcd *ss_hcd;
285 static inline struct dummy_hcd *hcd_to_dummy_hcd(struct usb_hcd *hcd)
287 return (struct dummy_hcd *) (hcd->hcd_priv);
290 static inline struct usb_hcd *dummy_hcd_to_hcd(struct dummy_hcd *dum)
292 return container_of((void *) dum, struct usb_hcd, hcd_priv);
295 static inline struct device *dummy_dev(struct dummy_hcd *dum)
297 return dummy_hcd_to_hcd(dum)->self.controller;
300 static inline struct device *udc_dev(struct dummy *dum)
302 return dum->gadget.dev.parent;
305 static inline struct dummy *ep_to_dummy(struct dummy_ep *ep)
307 return container_of(ep->gadget, struct dummy, gadget);
310 static inline struct dummy_hcd *gadget_to_dummy_hcd(struct usb_gadget *gadget)
312 struct dummy *dum = container_of(gadget, struct dummy, gadget);
313 if (dum->gadget.speed == USB_SPEED_SUPER)
319 static inline struct dummy *gadget_dev_to_dummy(struct device *dev)
321 return container_of(dev, struct dummy, gadget.dev);
324 /*-------------------------------------------------------------------------*/
326 /* DEVICE/GADGET SIDE UTILITY ROUTINES */
328 /* called with spinlock held */
329 static void nuke(struct dummy *dum, struct dummy_ep *ep)
331 while (!list_empty(&ep->queue)) {
332 struct dummy_request *req;
334 req = list_entry(ep->queue.next, struct dummy_request, queue);
335 list_del_init(&req->queue);
336 req->req.status = -ESHUTDOWN;
338 spin_unlock(&dum->lock);
339 usb_gadget_giveback_request(&ep->ep, &req->req);
340 spin_lock(&dum->lock);
344 /* caller must hold lock */
345 static void stop_activity(struct dummy *dum)
349 /* prevent any more requests */
352 /* The timer is left running so that outstanding URBs can fail */
354 /* nuke any pending requests first, so driver i/o is quiesced */
355 for (i = 0; i < DUMMY_ENDPOINTS; ++i)
356 nuke(dum, &dum->ep[i]);
358 /* driver now does any non-usb quiescing necessary */
362 * set_link_state_by_speed() - Sets the current state of the link according to
364 * @dum_hcd: pointer to the dummy_hcd structure to update the link state for
366 * This function updates the port_status according to the link state and the
369 static void set_link_state_by_speed(struct dummy_hcd *dum_hcd)
371 struct dummy *dum = dum_hcd->dum;
373 if (dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3) {
374 if ((dum_hcd->port_status & USB_SS_PORT_STAT_POWER) == 0) {
375 dum_hcd->port_status = 0;
376 } else if (!dum->pullup || dum->udc_suspended) {
377 /* UDC suspend must cause a disconnect */
378 dum_hcd->port_status &= ~(USB_PORT_STAT_CONNECTION |
379 USB_PORT_STAT_ENABLE);
380 if ((dum_hcd->old_status &
381 USB_PORT_STAT_CONNECTION) != 0)
382 dum_hcd->port_status |=
383 (USB_PORT_STAT_C_CONNECTION << 16);
385 /* device is connected and not suspended */
386 dum_hcd->port_status |= (USB_PORT_STAT_CONNECTION |
387 USB_PORT_STAT_SPEED_5GBPS) ;
388 if ((dum_hcd->old_status &
389 USB_PORT_STAT_CONNECTION) == 0)
390 dum_hcd->port_status |=
391 (USB_PORT_STAT_C_CONNECTION << 16);
392 if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) &&
393 (dum_hcd->port_status &
394 USB_PORT_STAT_LINK_STATE) == USB_SS_PORT_LS_U0 &&
395 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
399 if ((dum_hcd->port_status & USB_PORT_STAT_POWER) == 0) {
400 dum_hcd->port_status = 0;
401 } else if (!dum->pullup || dum->udc_suspended) {
402 /* UDC suspend must cause a disconnect */
403 dum_hcd->port_status &= ~(USB_PORT_STAT_CONNECTION |
404 USB_PORT_STAT_ENABLE |
405 USB_PORT_STAT_LOW_SPEED |
406 USB_PORT_STAT_HIGH_SPEED |
407 USB_PORT_STAT_SUSPEND);
408 if ((dum_hcd->old_status &
409 USB_PORT_STAT_CONNECTION) != 0)
410 dum_hcd->port_status |=
411 (USB_PORT_STAT_C_CONNECTION << 16);
413 dum_hcd->port_status |= USB_PORT_STAT_CONNECTION;
414 if ((dum_hcd->old_status &
415 USB_PORT_STAT_CONNECTION) == 0)
416 dum_hcd->port_status |=
417 (USB_PORT_STAT_C_CONNECTION << 16);
418 if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) == 0)
419 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
420 else if ((dum_hcd->port_status &
421 USB_PORT_STAT_SUSPEND) == 0 &&
422 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
428 /* caller must hold lock */
429 static void set_link_state(struct dummy_hcd *dum_hcd)
430 __must_hold(&dum->lock)
432 struct dummy *dum = dum_hcd->dum;
433 unsigned int power_bit;
437 if ((dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3 &&
438 dum->gadget.speed != USB_SPEED_SUPER) ||
439 (dummy_hcd_to_hcd(dum_hcd)->speed != HCD_USB3 &&
440 dum->gadget.speed == USB_SPEED_SUPER))
443 set_link_state_by_speed(dum_hcd);
444 power_bit = (dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3 ?
445 USB_SS_PORT_STAT_POWER : USB_PORT_STAT_POWER);
447 if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) == 0 ||
449 dum_hcd->resuming = 0;
451 /* Currently !connected or in reset */
452 if ((dum_hcd->port_status & power_bit) == 0 ||
453 (dum_hcd->port_status & USB_PORT_STAT_RESET) != 0) {
454 unsigned int disconnect = power_bit &
455 dum_hcd->old_status & (~dum_hcd->port_status);
456 unsigned int reset = USB_PORT_STAT_RESET &
457 (~dum_hcd->old_status) & dum_hcd->port_status;
459 /* Report reset and disconnect events to the driver */
460 if (dum->ints_enabled && (disconnect || reset)) {
462 ++dum->callback_usage;
463 spin_unlock(&dum->lock);
465 usb_gadget_udc_reset(&dum->gadget, dum->driver);
467 dum->driver->disconnect(&dum->gadget);
468 spin_lock(&dum->lock);
469 --dum->callback_usage;
471 } else if (dum_hcd->active != dum_hcd->old_active &&
473 ++dum->callback_usage;
474 spin_unlock(&dum->lock);
475 if (dum_hcd->old_active && dum->driver->suspend)
476 dum->driver->suspend(&dum->gadget);
477 else if (!dum_hcd->old_active && dum->driver->resume)
478 dum->driver->resume(&dum->gadget);
479 spin_lock(&dum->lock);
480 --dum->callback_usage;
483 dum_hcd->old_status = dum_hcd->port_status;
484 dum_hcd->old_active = dum_hcd->active;
487 /*-------------------------------------------------------------------------*/
489 /* DEVICE/GADGET SIDE DRIVER
491 * This only tracks gadget state. All the work is done when the host
492 * side tries some (emulated) i/o operation. Real device controller
493 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
496 #define is_enabled(dum) \
497 (dum->port_status & USB_PORT_STAT_ENABLE)
499 static int dummy_enable(struct usb_ep *_ep,
500 const struct usb_endpoint_descriptor *desc)
503 struct dummy_hcd *dum_hcd;
508 ep = usb_ep_to_dummy_ep(_ep);
509 if (!_ep || !desc || ep->desc || _ep->name == ep0name
510 || desc->bDescriptorType != USB_DT_ENDPOINT)
512 dum = ep_to_dummy(ep);
516 dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
517 if (!is_enabled(dum_hcd))
521 * For HS/FS devices only bits 0..10 of the wMaxPacketSize represent the
522 * maximum packet size.
523 * For SS devices the wMaxPacketSize is limited by 1024.
525 max = usb_endpoint_maxp(desc);
527 /* drivers must not request bad settings, since lower levels
528 * (hardware or its drivers) may not check. some endpoints
529 * can't do iso, many have maxpacket limitations, etc.
531 * since this "hardware" driver is here to help debugging, we
532 * have some extra sanity checks. (there could be more though,
533 * especially for "ep9out" style fixed function ones.)
536 switch (usb_endpoint_type(desc)) {
537 case USB_ENDPOINT_XFER_BULK:
538 if (strstr(ep->ep.name, "-iso")
539 || strstr(ep->ep.name, "-int")) {
542 switch (dum->gadget.speed) {
543 case USB_SPEED_SUPER:
552 if (max == 8 || max == 16 || max == 32 || max == 64)
553 /* we'll fake any legal size */
555 /* save a return statement */
561 case USB_ENDPOINT_XFER_INT:
562 if (strstr(ep->ep.name, "-iso")) /* bulk is ok */
564 /* real hardware might not handle all packet sizes */
565 switch (dum->gadget.speed) {
566 case USB_SPEED_SUPER:
570 /* save a return statement */
575 /* save a return statement */
583 case USB_ENDPOINT_XFER_ISOC:
584 if (strstr(ep->ep.name, "-bulk")
585 || strstr(ep->ep.name, "-int"))
587 /* real hardware might not handle all packet sizes */
588 switch (dum->gadget.speed) {
589 case USB_SPEED_SUPER:
593 /* save a return statement */
598 /* save a return statement */
605 /* few chips support control except on ep0 */
609 _ep->maxpacket = max;
610 if (usb_ss_max_streams(_ep->comp_desc)) {
611 if (!usb_endpoint_xfer_bulk(desc)) {
612 dev_err(udc_dev(dum), "Can't enable stream support on "
613 "non-bulk ep %s\n", _ep->name);
620 dev_dbg(udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d stream %s\n",
622 desc->bEndpointAddress & 0x0f,
623 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
624 usb_ep_type_string(usb_endpoint_type(desc)),
625 max, ep->stream_en ? "enabled" : "disabled");
627 /* at this point real hardware should be NAKing transfers
628 * to that endpoint, until a buffer is queued to it.
630 ep->halted = ep->wedged = 0;
636 static int dummy_disable(struct usb_ep *_ep)
642 ep = usb_ep_to_dummy_ep(_ep);
643 if (!_ep || !ep->desc || _ep->name == ep0name)
645 dum = ep_to_dummy(ep);
647 spin_lock_irqsave(&dum->lock, flags);
651 spin_unlock_irqrestore(&dum->lock, flags);
653 dev_dbg(udc_dev(dum), "disabled %s\n", _ep->name);
657 static struct usb_request *dummy_alloc_request(struct usb_ep *_ep,
660 struct dummy_request *req;
665 req = kzalloc(sizeof(*req), mem_flags);
668 INIT_LIST_HEAD(&req->queue);
672 static void dummy_free_request(struct usb_ep *_ep, struct usb_request *_req)
674 struct dummy_request *req;
681 req = usb_request_to_dummy_request(_req);
682 WARN_ON(!list_empty(&req->queue));
686 static void fifo_complete(struct usb_ep *ep, struct usb_request *req)
690 static int dummy_queue(struct usb_ep *_ep, struct usb_request *_req,
694 struct dummy_request *req;
696 struct dummy_hcd *dum_hcd;
699 req = usb_request_to_dummy_request(_req);
700 if (!_req || !list_empty(&req->queue) || !_req->complete)
703 ep = usb_ep_to_dummy_ep(_ep);
704 if (!_ep || (!ep->desc && _ep->name != ep0name))
707 dum = ep_to_dummy(ep);
708 dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
709 if (!dum->driver || !is_enabled(dum_hcd))
713 dev_dbg(udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
714 ep, _req, _ep->name, _req->length, _req->buf);
716 _req->status = -EINPROGRESS;
718 spin_lock_irqsave(&dum->lock, flags);
720 /* implement an emulated single-request FIFO */
721 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
722 list_empty(&dum->fifo_req.queue) &&
723 list_empty(&ep->queue) &&
724 _req->length <= FIFO_SIZE) {
725 req = &dum->fifo_req;
727 req->req.buf = dum->fifo_buf;
728 memcpy(dum->fifo_buf, _req->buf, _req->length);
729 req->req.context = dum;
730 req->req.complete = fifo_complete;
732 list_add_tail(&req->queue, &ep->queue);
733 spin_unlock(&dum->lock);
734 _req->actual = _req->length;
736 usb_gadget_giveback_request(_ep, _req);
737 spin_lock(&dum->lock);
739 list_add_tail(&req->queue, &ep->queue);
740 spin_unlock_irqrestore(&dum->lock, flags);
742 /* real hardware would likely enable transfers here, in case
743 * it'd been left NAKing.
748 static int dummy_dequeue(struct usb_ep *_ep, struct usb_request *_req)
752 int retval = -EINVAL;
754 struct dummy_request *req = NULL, *iter;
758 ep = usb_ep_to_dummy_ep(_ep);
759 dum = ep_to_dummy(ep);
764 local_irq_save(flags);
765 spin_lock(&dum->lock);
766 list_for_each_entry(iter, &ep->queue, queue) {
767 if (&iter->req != _req)
769 list_del_init(&iter->queue);
770 _req->status = -ECONNRESET;
775 spin_unlock(&dum->lock);
778 dev_dbg(udc_dev(dum),
779 "dequeued req %p from %s, len %d buf %p\n",
780 req, _ep->name, _req->length, _req->buf);
781 usb_gadget_giveback_request(_ep, _req);
783 local_irq_restore(flags);
788 dummy_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
795 ep = usb_ep_to_dummy_ep(_ep);
796 dum = ep_to_dummy(ep);
800 ep->halted = ep->wedged = 0;
801 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
802 !list_empty(&ep->queue))
809 /* FIXME clear emulated data toggle too */
814 dummy_set_halt(struct usb_ep *_ep, int value)
816 return dummy_set_halt_and_wedge(_ep, value, 0);
819 static int dummy_set_wedge(struct usb_ep *_ep)
821 if (!_ep || _ep->name == ep0name)
823 return dummy_set_halt_and_wedge(_ep, 1, 1);
826 static const struct usb_ep_ops dummy_ep_ops = {
827 .enable = dummy_enable,
828 .disable = dummy_disable,
830 .alloc_request = dummy_alloc_request,
831 .free_request = dummy_free_request,
833 .queue = dummy_queue,
834 .dequeue = dummy_dequeue,
836 .set_halt = dummy_set_halt,
837 .set_wedge = dummy_set_wedge,
840 /*-------------------------------------------------------------------------*/
842 /* there are both host and device side versions of this call ... */
843 static int dummy_g_get_frame(struct usb_gadget *_gadget)
845 struct timespec64 ts64;
847 ktime_get_ts64(&ts64);
848 return ts64.tv_nsec / NSEC_PER_MSEC;
851 static int dummy_wakeup(struct usb_gadget *_gadget)
853 struct dummy_hcd *dum_hcd;
855 dum_hcd = gadget_to_dummy_hcd(_gadget);
856 if (!(dum_hcd->dum->devstatus & ((1 << USB_DEVICE_B_HNP_ENABLE)
857 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
859 if ((dum_hcd->port_status & USB_PORT_STAT_CONNECTION) == 0)
861 if ((dum_hcd->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
862 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
865 /* FIXME: What if the root hub is suspended but the port isn't? */
867 /* hub notices our request, issues downstream resume, etc */
868 dum_hcd->resuming = 1;
869 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(20);
870 mod_timer(&dummy_hcd_to_hcd(dum_hcd)->rh_timer, dum_hcd->re_timeout);
874 static int dummy_set_selfpowered(struct usb_gadget *_gadget, int value)
878 _gadget->is_selfpowered = (value != 0);
879 dum = gadget_to_dummy_hcd(_gadget)->dum;
881 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
883 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
887 static void dummy_udc_update_ep0(struct dummy *dum)
889 if (dum->gadget.speed == USB_SPEED_SUPER)
890 dum->ep[0].ep.maxpacket = 9;
892 dum->ep[0].ep.maxpacket = 64;
895 static int dummy_pullup(struct usb_gadget *_gadget, int value)
897 struct dummy_hcd *dum_hcd;
901 dum = gadget_dev_to_dummy(&_gadget->dev);
902 dum_hcd = gadget_to_dummy_hcd(_gadget);
904 spin_lock_irqsave(&dum->lock, flags);
905 dum->pullup = (value != 0);
906 set_link_state(dum_hcd);
909 * Emulate synchronize_irq(): wait for callbacks to finish.
910 * This seems to be the best place to emulate the call to
911 * synchronize_irq() that's in usb_gadget_remove_driver().
912 * Doing it in dummy_udc_stop() would be too late since it
913 * is called after the unbind callback and unbind shouldn't
914 * be invoked until all the other callbacks are finished.
916 while (dum->callback_usage > 0) {
917 spin_unlock_irqrestore(&dum->lock, flags);
918 usleep_range(1000, 2000);
919 spin_lock_irqsave(&dum->lock, flags);
922 spin_unlock_irqrestore(&dum->lock, flags);
924 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
928 static void dummy_udc_set_speed(struct usb_gadget *_gadget,
929 enum usb_device_speed speed)
933 dum = gadget_dev_to_dummy(&_gadget->dev);
934 dum->gadget.speed = speed;
935 dummy_udc_update_ep0(dum);
938 static void dummy_udc_async_callbacks(struct usb_gadget *_gadget, bool enable)
940 struct dummy *dum = gadget_dev_to_dummy(&_gadget->dev);
942 spin_lock_irq(&dum->lock);
943 dum->ints_enabled = enable;
944 spin_unlock_irq(&dum->lock);
947 static int dummy_udc_start(struct usb_gadget *g,
948 struct usb_gadget_driver *driver);
949 static int dummy_udc_stop(struct usb_gadget *g);
951 static const struct usb_gadget_ops dummy_ops = {
952 .get_frame = dummy_g_get_frame,
953 .wakeup = dummy_wakeup,
954 .set_selfpowered = dummy_set_selfpowered,
955 .pullup = dummy_pullup,
956 .udc_start = dummy_udc_start,
957 .udc_stop = dummy_udc_stop,
958 .udc_set_speed = dummy_udc_set_speed,
959 .udc_async_callbacks = dummy_udc_async_callbacks,
962 /*-------------------------------------------------------------------------*/
964 /* "function" sysfs attribute */
965 static ssize_t function_show(struct device *dev, struct device_attribute *attr,
968 struct dummy *dum = gadget_dev_to_dummy(dev);
970 if (!dum->driver || !dum->driver->function)
972 return scnprintf(buf, PAGE_SIZE, "%s\n", dum->driver->function);
974 static DEVICE_ATTR_RO(function);
976 /*-------------------------------------------------------------------------*/
979 * Driver registration/unregistration.
981 * This is basically hardware-specific; there's usually only one real USB
982 * device (not host) controller since that's how USB devices are intended
983 * to work. So most implementations of these api calls will rely on the
984 * fact that only one driver will ever bind to the hardware. But curious
985 * hardware can be built with discrete components, so the gadget API doesn't
986 * require that assumption.
988 * For this emulator, it might be convenient to create a usb device
989 * for each driver that registers: just add to a big root hub.
992 static int dummy_udc_start(struct usb_gadget *g,
993 struct usb_gadget_driver *driver)
995 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
996 struct dummy *dum = dum_hcd->dum;
999 /* All the speeds we support */
1001 case USB_SPEED_FULL:
1002 case USB_SPEED_HIGH:
1003 case USB_SPEED_SUPER:
1006 dev_err(dummy_dev(dum_hcd), "Unsupported driver max speed %d\n",
1012 * DEVICE side init ... the layer above hardware, which
1013 * can't enumerate without help from the driver we're binding.
1016 spin_lock_irq(&dum->lock);
1018 dum->driver = driver;
1019 spin_unlock_irq(&dum->lock);
1024 static int dummy_udc_stop(struct usb_gadget *g)
1026 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
1027 struct dummy *dum = dum_hcd->dum;
1029 spin_lock_irq(&dum->lock);
1030 dum->ints_enabled = 0;
1033 spin_unlock_irq(&dum->lock);
1040 /* The gadget structure is stored inside the hcd structure and will be
1041 * released along with it. */
1042 static void init_dummy_udc_hw(struct dummy *dum)
1046 INIT_LIST_HEAD(&dum->gadget.ep_list);
1047 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1048 struct dummy_ep *ep = &dum->ep[i];
1050 if (!ep_info[i].name)
1052 ep->ep.name = ep_info[i].name;
1053 ep->ep.caps = ep_info[i].caps;
1054 ep->ep.ops = &dummy_ep_ops;
1055 list_add_tail(&ep->ep.ep_list, &dum->gadget.ep_list);
1056 ep->halted = ep->wedged = ep->already_seen =
1057 ep->setup_stage = 0;
1058 usb_ep_set_maxpacket_limit(&ep->ep, ~0);
1059 ep->ep.max_streams = 16;
1060 ep->last_io = jiffies;
1061 ep->gadget = &dum->gadget;
1063 INIT_LIST_HEAD(&ep->queue);
1066 dum->gadget.ep0 = &dum->ep[0].ep;
1067 list_del_init(&dum->ep[0].ep.ep_list);
1068 INIT_LIST_HEAD(&dum->fifo_req.queue);
1070 #ifdef CONFIG_USB_OTG
1071 dum->gadget.is_otg = 1;
1075 static int dummy_udc_probe(struct platform_device *pdev)
1080 dum = *((void **)dev_get_platdata(&pdev->dev));
1081 /* Clear usb_gadget region for new registration to udc-core */
1082 memzero_explicit(&dum->gadget, sizeof(struct usb_gadget));
1083 dum->gadget.name = gadget_name;
1084 dum->gadget.ops = &dummy_ops;
1085 if (mod_data.is_super_speed)
1086 dum->gadget.max_speed = USB_SPEED_SUPER;
1087 else if (mod_data.is_high_speed)
1088 dum->gadget.max_speed = USB_SPEED_HIGH;
1090 dum->gadget.max_speed = USB_SPEED_FULL;
1092 dum->gadget.dev.parent = &pdev->dev;
1093 init_dummy_udc_hw(dum);
1095 rc = usb_add_gadget_udc(&pdev->dev, &dum->gadget);
1099 rc = device_create_file(&dum->gadget.dev, &dev_attr_function);
1102 platform_set_drvdata(pdev, dum);
1106 usb_del_gadget_udc(&dum->gadget);
1111 static int dummy_udc_remove(struct platform_device *pdev)
1113 struct dummy *dum = platform_get_drvdata(pdev);
1115 device_remove_file(&dum->gadget.dev, &dev_attr_function);
1116 usb_del_gadget_udc(&dum->gadget);
1120 static void dummy_udc_pm(struct dummy *dum, struct dummy_hcd *dum_hcd,
1123 spin_lock_irq(&dum->lock);
1124 dum->udc_suspended = suspend;
1125 set_link_state(dum_hcd);
1126 spin_unlock_irq(&dum->lock);
1129 static int dummy_udc_suspend(struct platform_device *pdev, pm_message_t state)
1131 struct dummy *dum = platform_get_drvdata(pdev);
1132 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
1134 dev_dbg(&pdev->dev, "%s\n", __func__);
1135 dummy_udc_pm(dum, dum_hcd, 1);
1136 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
1140 static int dummy_udc_resume(struct platform_device *pdev)
1142 struct dummy *dum = platform_get_drvdata(pdev);
1143 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
1145 dev_dbg(&pdev->dev, "%s\n", __func__);
1146 dummy_udc_pm(dum, dum_hcd, 0);
1147 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
1151 static struct platform_driver dummy_udc_driver = {
1152 .probe = dummy_udc_probe,
1153 .remove = dummy_udc_remove,
1154 .suspend = dummy_udc_suspend,
1155 .resume = dummy_udc_resume,
1157 .name = gadget_name,
1161 /*-------------------------------------------------------------------------*/
1163 static unsigned int dummy_get_ep_idx(const struct usb_endpoint_descriptor *desc)
1167 index = usb_endpoint_num(desc) << 1;
1168 if (usb_endpoint_dir_in(desc))
1175 * this uses the hcd framework to hook up to host side drivers.
1176 * its root hub will only have one device, otherwise it acts like
1177 * a normal host controller.
1179 * when urbs are queued, they're just stuck on a list that we
1180 * scan in a timer callback. that callback connects writes from
1181 * the host with reads from the device, and so on, based on the
1185 static int dummy_ep_stream_en(struct dummy_hcd *dum_hcd, struct urb *urb)
1187 const struct usb_endpoint_descriptor *desc = &urb->ep->desc;
1190 if (!usb_endpoint_xfer_bulk(desc))
1193 index = dummy_get_ep_idx(desc);
1194 return (1 << index) & dum_hcd->stream_en_ep;
1198 * The max stream number is saved as a nibble so for the 30 possible endpoints
1199 * we only 15 bytes of memory. Therefore we are limited to max 16 streams (0
1200 * means we use only 1 stream). The maximum according to the spec is 16bit so
1201 * if the 16 stream limit is about to go, the array size should be incremented
1202 * to 30 elements of type u16.
1204 static int get_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1209 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1210 if (usb_pipeout(pipe))
1218 static void set_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1219 unsigned int pipe, unsigned int streams)
1224 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1225 if (usb_pipeout(pipe)) {
1229 max_streams &= 0xf0;
1231 max_streams |= streams;
1232 dum_hcd->num_stream[usb_pipeendpoint(pipe)] = max_streams;
1235 static int dummy_validate_stream(struct dummy_hcd *dum_hcd, struct urb *urb)
1237 unsigned int max_streams;
1240 enabled = dummy_ep_stream_en(dum_hcd, urb);
1241 if (!urb->stream_id) {
1249 max_streams = get_max_streams_for_pipe(dum_hcd,
1250 usb_pipeendpoint(urb->pipe));
1251 if (urb->stream_id > max_streams) {
1252 dev_err(dummy_dev(dum_hcd), "Stream id %d is out of range.\n",
1260 static int dummy_urb_enqueue(
1261 struct usb_hcd *hcd,
1265 struct dummy_hcd *dum_hcd;
1267 unsigned long flags;
1270 urbp = kmalloc(sizeof *urbp, mem_flags);
1274 urbp->miter_started = 0;
1276 dum_hcd = hcd_to_dummy_hcd(hcd);
1277 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
1279 rc = dummy_validate_stream(dum_hcd, urb);
1285 rc = usb_hcd_link_urb_to_ep(hcd, urb);
1291 if (!dum_hcd->udev) {
1292 dum_hcd->udev = urb->dev;
1293 usb_get_dev(dum_hcd->udev);
1294 } else if (unlikely(dum_hcd->udev != urb->dev))
1295 dev_err(dummy_dev(dum_hcd), "usb_device address has changed!\n");
1297 list_add_tail(&urbp->urbp_list, &dum_hcd->urbp_list);
1299 if (!dum_hcd->next_frame_urbp)
1300 dum_hcd->next_frame_urbp = urbp;
1301 if (usb_pipetype(urb->pipe) == PIPE_CONTROL)
1302 urb->error_count = 1; /* mark as a new urb */
1304 /* kick the scheduler, it'll do the rest */
1305 if (!timer_pending(&dum_hcd->timer))
1306 mod_timer(&dum_hcd->timer, jiffies + 1);
1309 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
1313 static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1315 struct dummy_hcd *dum_hcd;
1316 unsigned long flags;
1319 /* giveback happens automatically in timer callback,
1320 * so make sure the callback happens */
1321 dum_hcd = hcd_to_dummy_hcd(hcd);
1322 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
1324 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1325 if (!rc && dum_hcd->rh_state != DUMMY_RH_RUNNING &&
1326 !list_empty(&dum_hcd->urbp_list))
1327 mod_timer(&dum_hcd->timer, jiffies);
1329 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
1333 static int dummy_perform_transfer(struct urb *urb, struct dummy_request *req,
1337 struct urbp *urbp = urb->hcpriv;
1339 struct sg_mapping_iter *miter = &urbp->miter;
1344 to_host = usb_urb_dir_in(urb);
1345 rbuf = req->req.buf + req->req.actual;
1347 if (!urb->num_sgs) {
1348 ubuf = urb->transfer_buffer + urb->actual_length;
1350 memcpy(ubuf, rbuf, len);
1352 memcpy(rbuf, ubuf, len);
1356 if (!urbp->miter_started) {
1357 u32 flags = SG_MITER_ATOMIC;
1360 flags |= SG_MITER_TO_SG;
1362 flags |= SG_MITER_FROM_SG;
1364 sg_miter_start(miter, urb->sg, urb->num_sgs, flags);
1365 urbp->miter_started = 1;
1367 next_sg = sg_miter_next(miter);
1368 if (next_sg == false) {
1374 this_sg = min_t(u32, len, miter->length);
1375 miter->consumed = this_sg;
1379 memcpy(ubuf, rbuf, this_sg);
1381 memcpy(rbuf, ubuf, this_sg);
1386 next_sg = sg_miter_next(miter);
1387 if (next_sg == false) {
1395 sg_miter_stop(miter);
1399 /* transfer up to a frame's worth; caller must own lock */
1400 static int transfer(struct dummy_hcd *dum_hcd, struct urb *urb,
1401 struct dummy_ep *ep, int limit, int *status)
1403 struct dummy *dum = dum_hcd->dum;
1404 struct dummy_request *req;
1408 /* if there's no request queued, the device is NAKing; return */
1409 list_for_each_entry(req, &ep->queue, queue) {
1410 unsigned host_len, dev_len, len;
1411 int is_short, to_host;
1414 if (dummy_ep_stream_en(dum_hcd, urb)) {
1415 if ((urb->stream_id != req->req.stream_id))
1419 /* 1..N packets of ep->ep.maxpacket each ... the last one
1420 * may be short (including zero length).
1422 * writer can send a zlp explicitly (length 0) or implicitly
1423 * (length mod maxpacket zero, and 'zero' flag); they always
1426 host_len = urb->transfer_buffer_length - urb->actual_length;
1427 dev_len = req->req.length - req->req.actual;
1428 len = min(host_len, dev_len);
1430 /* FIXME update emulated data toggle too */
1432 to_host = usb_urb_dir_in(urb);
1433 if (unlikely(len == 0))
1436 /* not enough bandwidth left? */
1437 if (limit < ep->ep.maxpacket && limit < len)
1439 len = min_t(unsigned, len, limit);
1443 /* send multiple of maxpacket first, then remainder */
1444 if (len >= ep->ep.maxpacket) {
1446 if (len % ep->ep.maxpacket)
1448 len -= len % ep->ep.maxpacket;
1453 len = dummy_perform_transfer(urb, req, len);
1455 ep->last_io = jiffies;
1457 req->req.status = len;
1461 urb->actual_length += len;
1462 req->req.actual += len;
1466 /* short packets terminate, maybe with overflow/underflow.
1467 * it's only really an error to write too much.
1469 * partially filling a buffer optionally blocks queue advances
1470 * (so completion handlers can clean up the queue) but we don't
1471 * need to emulate such data-in-flight.
1474 if (host_len == dev_len) {
1475 req->req.status = 0;
1477 } else if (to_host) {
1478 req->req.status = 0;
1479 if (dev_len > host_len)
1480 *status = -EOVERFLOW;
1485 if (host_len > dev_len)
1486 req->req.status = -EOVERFLOW;
1488 req->req.status = 0;
1492 * many requests terminate without a short packet.
1493 * send a zlp if demanded by flags.
1496 if (req->req.length == req->req.actual) {
1497 if (req->req.zero && to_host)
1500 req->req.status = 0;
1502 if (urb->transfer_buffer_length == urb->actual_length) {
1503 if (urb->transfer_flags & URB_ZERO_PACKET &&
1511 /* device side completion --> continuable */
1512 if (req->req.status != -EINPROGRESS) {
1513 list_del_init(&req->queue);
1515 spin_unlock(&dum->lock);
1516 usb_gadget_giveback_request(&ep->ep, &req->req);
1517 spin_lock(&dum->lock);
1519 /* requests might have been unlinked... */
1523 /* host side completion --> terminate */
1524 if (*status != -EINPROGRESS)
1527 /* rescan to continue with any other queued i/o */
1534 static int periodic_bytes(struct dummy *dum, struct dummy_ep *ep)
1536 int limit = ep->ep.maxpacket;
1538 if (dum->gadget.speed == USB_SPEED_HIGH) {
1541 /* high bandwidth mode */
1542 tmp = usb_endpoint_maxp_mult(ep->desc);
1543 tmp *= 8 /* applies to entire frame */;
1544 limit += limit * tmp;
1546 if (dum->gadget.speed == USB_SPEED_SUPER) {
1547 switch (usb_endpoint_type(ep->desc)) {
1548 case USB_ENDPOINT_XFER_ISOC:
1549 /* Sec. 4.4.8.2 USB3.0 Spec */
1550 limit = 3 * 16 * 1024 * 8;
1552 case USB_ENDPOINT_XFER_INT:
1553 /* Sec. 4.4.7.2 USB3.0 Spec */
1554 limit = 3 * 1024 * 8;
1556 case USB_ENDPOINT_XFER_BULK:
1564 #define is_active(dum_hcd) ((dum_hcd->port_status & \
1565 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1566 USB_PORT_STAT_SUSPEND)) \
1567 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1569 static struct dummy_ep *find_endpoint(struct dummy *dum, u8 address)
1573 if (!is_active((dum->gadget.speed == USB_SPEED_SUPER ?
1574 dum->ss_hcd : dum->hs_hcd)))
1576 if (!dum->ints_enabled)
1578 if ((address & ~USB_DIR_IN) == 0)
1580 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1581 struct dummy_ep *ep = &dum->ep[i];
1585 if (ep->desc->bEndpointAddress == address)
1593 #define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1594 #define Dev_InRequest (Dev_Request | USB_DIR_IN)
1595 #define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1596 #define Intf_InRequest (Intf_Request | USB_DIR_IN)
1597 #define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1598 #define Ep_InRequest (Ep_Request | USB_DIR_IN)
1602 * handle_control_request() - handles all control transfers
1603 * @dum_hcd: pointer to dummy (the_controller)
1604 * @urb: the urb request to handle
1605 * @setup: pointer to the setup data for a USB device control
1607 * @status: pointer to request handling status
1609 * Return 0 - if the request was handled
1610 * 1 - if the request wasn't handles
1611 * error code on error
1613 static int handle_control_request(struct dummy_hcd *dum_hcd, struct urb *urb,
1614 struct usb_ctrlrequest *setup,
1617 struct dummy_ep *ep2;
1618 struct dummy *dum = dum_hcd->dum;
1623 w_index = le16_to_cpu(setup->wIndex);
1624 w_value = le16_to_cpu(setup->wValue);
1625 switch (setup->bRequest) {
1626 case USB_REQ_SET_ADDRESS:
1627 if (setup->bRequestType != Dev_Request)
1629 dum->address = w_value;
1631 dev_dbg(udc_dev(dum), "set_address = %d\n",
1635 case USB_REQ_SET_FEATURE:
1636 if (setup->bRequestType == Dev_Request) {
1639 case USB_DEVICE_REMOTE_WAKEUP:
1641 case USB_DEVICE_B_HNP_ENABLE:
1642 dum->gadget.b_hnp_enable = 1;
1644 case USB_DEVICE_A_HNP_SUPPORT:
1645 dum->gadget.a_hnp_support = 1;
1647 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1648 dum->gadget.a_alt_hnp_support = 1;
1650 case USB_DEVICE_U1_ENABLE:
1651 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1653 w_value = USB_DEV_STAT_U1_ENABLED;
1655 ret_val = -EOPNOTSUPP;
1657 case USB_DEVICE_U2_ENABLE:
1658 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1660 w_value = USB_DEV_STAT_U2_ENABLED;
1662 ret_val = -EOPNOTSUPP;
1664 case USB_DEVICE_LTM_ENABLE:
1665 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1667 w_value = USB_DEV_STAT_LTM_ENABLED;
1669 ret_val = -EOPNOTSUPP;
1672 ret_val = -EOPNOTSUPP;
1675 dum->devstatus |= (1 << w_value);
1678 } else if (setup->bRequestType == Ep_Request) {
1680 ep2 = find_endpoint(dum, w_index);
1681 if (!ep2 || ep2->ep.name == ep0name) {
1682 ret_val = -EOPNOTSUPP;
1690 case USB_REQ_CLEAR_FEATURE:
1691 if (setup->bRequestType == Dev_Request) {
1694 case USB_DEVICE_REMOTE_WAKEUP:
1695 w_value = USB_DEVICE_REMOTE_WAKEUP;
1697 case USB_DEVICE_U1_ENABLE:
1698 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1700 w_value = USB_DEV_STAT_U1_ENABLED;
1702 ret_val = -EOPNOTSUPP;
1704 case USB_DEVICE_U2_ENABLE:
1705 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1707 w_value = USB_DEV_STAT_U2_ENABLED;
1709 ret_val = -EOPNOTSUPP;
1711 case USB_DEVICE_LTM_ENABLE:
1712 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1714 w_value = USB_DEV_STAT_LTM_ENABLED;
1716 ret_val = -EOPNOTSUPP;
1719 ret_val = -EOPNOTSUPP;
1723 dum->devstatus &= ~(1 << w_value);
1726 } else if (setup->bRequestType == Ep_Request) {
1728 ep2 = find_endpoint(dum, w_index);
1730 ret_val = -EOPNOTSUPP;
1739 case USB_REQ_GET_STATUS:
1740 if (setup->bRequestType == Dev_InRequest
1741 || setup->bRequestType == Intf_InRequest
1742 || setup->bRequestType == Ep_InRequest) {
1745 * device: remote wakeup, selfpowered
1746 * interface: nothing
1749 buf = (char *)urb->transfer_buffer;
1750 if (urb->transfer_buffer_length > 0) {
1751 if (setup->bRequestType == Ep_InRequest) {
1752 ep2 = find_endpoint(dum, w_index);
1754 ret_val = -EOPNOTSUPP;
1757 buf[0] = ep2->halted;
1758 } else if (setup->bRequestType ==
1760 buf[0] = (u8)dum->devstatus;
1764 if (urb->transfer_buffer_length > 1)
1766 urb->actual_length = min_t(u32, 2,
1767 urb->transfer_buffer_length);
1777 * Drive both sides of the transfers; looks like irq handlers to both
1778 * drivers except that the callbacks are invoked from soft interrupt
1781 static void dummy_timer(struct timer_list *t)
1783 struct dummy_hcd *dum_hcd = from_timer(dum_hcd, t, timer);
1784 struct dummy *dum = dum_hcd->dum;
1785 struct urbp *urbp, *tmp;
1786 unsigned long flags;
1790 /* simplistic model for one frame's bandwidth */
1791 /* FIXME: account for transaction and packet overhead */
1792 switch (dum->gadget.speed) {
1794 total = 8/*bytes*/ * 12/*packets*/;
1796 case USB_SPEED_FULL:
1797 total = 64/*bytes*/ * 19/*packets*/;
1799 case USB_SPEED_HIGH:
1800 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1802 case USB_SPEED_SUPER:
1803 /* Bus speed is 500000 bytes/ms, so use a little less */
1806 default: /* Can't happen */
1807 dev_err(dummy_dev(dum_hcd), "bogus device speed\n");
1812 /* FIXME if HZ != 1000 this will probably misbehave ... */
1814 /* look at each urb queued by the host side driver */
1815 spin_lock_irqsave(&dum->lock, flags);
1817 if (!dum_hcd->udev) {
1818 dev_err(dummy_dev(dum_hcd),
1819 "timer fired with no URBs pending?\n");
1820 spin_unlock_irqrestore(&dum->lock, flags);
1823 dum_hcd->next_frame_urbp = NULL;
1825 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1826 if (!ep_info[i].name)
1828 dum->ep[i].already_seen = 0;
1832 list_for_each_entry_safe(urbp, tmp, &dum_hcd->urbp_list, urbp_list) {
1834 struct dummy_request *req;
1836 struct dummy_ep *ep = NULL;
1837 int status = -EINPROGRESS;
1839 /* stop when we reach URBs queued after the timer interrupt */
1840 if (urbp == dum_hcd->next_frame_urbp)
1846 else if (dum_hcd->rh_state != DUMMY_RH_RUNNING)
1849 /* Used up this frame's bandwidth? */
1853 /* find the gadget's ep for this request (if configured) */
1854 address = usb_pipeendpoint (urb->pipe);
1855 if (usb_urb_dir_in(urb))
1856 address |= USB_DIR_IN;
1857 ep = find_endpoint(dum, address);
1859 /* set_configuration() disagreement */
1860 dev_dbg(dummy_dev(dum_hcd),
1861 "no ep configured for urb %p\n",
1867 if (ep->already_seen)
1869 ep->already_seen = 1;
1870 if (ep == &dum->ep[0] && urb->error_count) {
1871 ep->setup_stage = 1; /* a new urb */
1872 urb->error_count = 0;
1874 if (ep->halted && !ep->setup_stage) {
1875 /* NOTE: must not be iso! */
1876 dev_dbg(dummy_dev(dum_hcd), "ep %s halted, urb %p\n",
1881 /* FIXME make sure both ends agree on maxpacket */
1883 /* handle control requests */
1884 if (ep == &dum->ep[0] && ep->setup_stage) {
1885 struct usb_ctrlrequest setup;
1888 setup = *(struct usb_ctrlrequest *) urb->setup_packet;
1889 /* paranoia, in case of stale queued data */
1890 list_for_each_entry(req, &ep->queue, queue) {
1891 list_del_init(&req->queue);
1892 req->req.status = -EOVERFLOW;
1893 dev_dbg(udc_dev(dum), "stale req = %p\n",
1896 spin_unlock(&dum->lock);
1897 usb_gadget_giveback_request(&ep->ep, &req->req);
1898 spin_lock(&dum->lock);
1899 ep->already_seen = 0;
1903 /* gadget driver never sees set_address or operations
1904 * on standard feature flags. some hardware doesn't
1907 ep->last_io = jiffies;
1908 ep->setup_stage = 0;
1911 value = handle_control_request(dum_hcd, urb, &setup,
1914 /* gadget driver handles all other requests. block
1915 * until setup() returns; no reentrancy issues etc.
1918 ++dum->callback_usage;
1919 spin_unlock(&dum->lock);
1920 value = dum->driver->setup(&dum->gadget,
1922 spin_lock(&dum->lock);
1923 --dum->callback_usage;
1926 /* no delays (max 64KB data stage) */
1928 goto treat_control_like_bulk;
1930 /* error, see below */
1934 if (value != -EOPNOTSUPP)
1935 dev_dbg(udc_dev(dum),
1939 urb->actual_length = 0;
1945 /* non-control requests */
1947 switch (usb_pipetype(urb->pipe)) {
1948 case PIPE_ISOCHRONOUS:
1950 * We don't support isochronous. But if we did,
1951 * here are some of the issues we'd have to face:
1953 * Is it urb->interval since the last xfer?
1954 * Use urb->iso_frame_desc[i].
1955 * Complete whether or not ep has requests queued.
1956 * Report random errors, to debug drivers.
1958 limit = max(limit, periodic_bytes(dum, ep));
1959 status = -EINVAL; /* fail all xfers */
1962 case PIPE_INTERRUPT:
1963 /* FIXME is it urb->interval since the last xfer?
1964 * this almost certainly polls too fast.
1966 limit = max(limit, periodic_bytes(dum, ep));
1970 treat_control_like_bulk:
1971 ep->last_io = jiffies;
1972 total -= transfer(dum_hcd, urb, ep, limit, &status);
1976 /* incomplete transfer? */
1977 if (status == -EINPROGRESS)
1981 list_del(&urbp->urbp_list);
1984 ep->already_seen = ep->setup_stage = 0;
1986 usb_hcd_unlink_urb_from_ep(dummy_hcd_to_hcd(dum_hcd), urb);
1987 spin_unlock(&dum->lock);
1988 usb_hcd_giveback_urb(dummy_hcd_to_hcd(dum_hcd), urb, status);
1989 spin_lock(&dum->lock);
1994 if (list_empty(&dum_hcd->urbp_list)) {
1995 usb_put_dev(dum_hcd->udev);
1996 dum_hcd->udev = NULL;
1997 } else if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
1998 /* want a 1 msec delay here */
1999 mod_timer(&dum_hcd->timer, jiffies + msecs_to_jiffies(1));
2002 spin_unlock_irqrestore(&dum->lock, flags);
2005 /*-------------------------------------------------------------------------*/
2007 #define PORT_C_MASK \
2008 ((USB_PORT_STAT_C_CONNECTION \
2009 | USB_PORT_STAT_C_ENABLE \
2010 | USB_PORT_STAT_C_SUSPEND \
2011 | USB_PORT_STAT_C_OVERCURRENT \
2012 | USB_PORT_STAT_C_RESET) << 16)
2014 static int dummy_hub_status(struct usb_hcd *hcd, char *buf)
2016 struct dummy_hcd *dum_hcd;
2017 unsigned long flags;
2020 dum_hcd = hcd_to_dummy_hcd(hcd);
2022 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2023 if (!HCD_HW_ACCESSIBLE(hcd))
2026 if (dum_hcd->resuming && time_after_eq(jiffies, dum_hcd->re_timeout)) {
2027 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
2028 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
2029 set_link_state(dum_hcd);
2032 if ((dum_hcd->port_status & PORT_C_MASK) != 0) {
2034 dev_dbg(dummy_dev(dum_hcd), "port status 0x%08x has changes\n",
2035 dum_hcd->port_status);
2037 if (dum_hcd->rh_state == DUMMY_RH_SUSPENDED)
2038 usb_hcd_resume_root_hub(hcd);
2041 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2045 /* usb 3.0 root hub device descriptor */
2047 struct usb_bos_descriptor bos;
2048 struct usb_ss_cap_descriptor ss_cap;
2049 } __packed usb3_bos_desc = {
2052 .bLength = USB_DT_BOS_SIZE,
2053 .bDescriptorType = USB_DT_BOS,
2054 .wTotalLength = cpu_to_le16(sizeof(usb3_bos_desc)),
2055 .bNumDeviceCaps = 1,
2058 .bLength = USB_DT_USB_SS_CAP_SIZE,
2059 .bDescriptorType = USB_DT_DEVICE_CAPABILITY,
2060 .bDevCapabilityType = USB_SS_CAP_TYPE,
2061 .wSpeedSupported = cpu_to_le16(USB_5GBPS_OPERATION),
2062 .bFunctionalitySupport = ilog2(USB_5GBPS_OPERATION),
2067 ss_hub_descriptor(struct usb_hub_descriptor *desc)
2069 memset(desc, 0, sizeof *desc);
2070 desc->bDescriptorType = USB_DT_SS_HUB;
2071 desc->bDescLength = 12;
2072 desc->wHubCharacteristics = cpu_to_le16(
2073 HUB_CHAR_INDV_PORT_LPSM |
2074 HUB_CHAR_COMMON_OCPM);
2075 desc->bNbrPorts = 1;
2076 desc->u.ss.bHubHdrDecLat = 0x04; /* Worst case: 0.4 micro sec*/
2077 desc->u.ss.DeviceRemovable = 0;
2080 static inline void hub_descriptor(struct usb_hub_descriptor *desc)
2082 memset(desc, 0, sizeof *desc);
2083 desc->bDescriptorType = USB_DT_HUB;
2084 desc->bDescLength = 9;
2085 desc->wHubCharacteristics = cpu_to_le16(
2086 HUB_CHAR_INDV_PORT_LPSM |
2087 HUB_CHAR_COMMON_OCPM);
2088 desc->bNbrPorts = 1;
2089 desc->u.hs.DeviceRemovable[0] = 0;
2090 desc->u.hs.DeviceRemovable[1] = 0xff; /* PortPwrCtrlMask */
2093 static int dummy_hub_control(
2094 struct usb_hcd *hcd,
2101 struct dummy_hcd *dum_hcd;
2103 unsigned long flags;
2105 if (!HCD_HW_ACCESSIBLE(hcd))
2108 dum_hcd = hcd_to_dummy_hcd(hcd);
2110 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2112 case ClearHubFeature:
2114 case ClearPortFeature:
2116 case USB_PORT_FEAT_SUSPEND:
2117 if (hcd->speed == HCD_USB3) {
2118 dev_dbg(dummy_dev(dum_hcd),
2119 "USB_PORT_FEAT_SUSPEND req not "
2120 "supported for USB 3.0 roothub\n");
2123 if (dum_hcd->port_status & USB_PORT_STAT_SUSPEND) {
2124 /* 20msec resume signaling */
2125 dum_hcd->resuming = 1;
2126 dum_hcd->re_timeout = jiffies +
2127 msecs_to_jiffies(20);
2130 case USB_PORT_FEAT_POWER:
2131 dev_dbg(dummy_dev(dum_hcd), "power-off\n");
2132 if (hcd->speed == HCD_USB3)
2133 dum_hcd->port_status &= ~USB_SS_PORT_STAT_POWER;
2135 dum_hcd->port_status &= ~USB_PORT_STAT_POWER;
2136 set_link_state(dum_hcd);
2138 case USB_PORT_FEAT_ENABLE:
2139 case USB_PORT_FEAT_C_ENABLE:
2140 case USB_PORT_FEAT_C_SUSPEND:
2141 /* Not allowed for USB-3 */
2142 if (hcd->speed == HCD_USB3)
2145 case USB_PORT_FEAT_C_CONNECTION:
2146 case USB_PORT_FEAT_C_RESET:
2147 dum_hcd->port_status &= ~(1 << wValue);
2148 set_link_state(dum_hcd);
2151 /* Disallow INDICATOR and C_OVER_CURRENT */
2155 case GetHubDescriptor:
2156 if (hcd->speed == HCD_USB3 &&
2157 (wLength < USB_DT_SS_HUB_SIZE ||
2158 wValue != (USB_DT_SS_HUB << 8))) {
2159 dev_dbg(dummy_dev(dum_hcd),
2160 "Wrong hub descriptor type for "
2161 "USB 3.0 roothub.\n");
2164 if (hcd->speed == HCD_USB3)
2165 ss_hub_descriptor((struct usb_hub_descriptor *) buf);
2167 hub_descriptor((struct usb_hub_descriptor *) buf);
2170 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
2171 if (hcd->speed != HCD_USB3)
2174 if ((wValue >> 8) != USB_DT_BOS)
2177 memcpy(buf, &usb3_bos_desc, sizeof(usb3_bos_desc));
2178 retval = sizeof(usb3_bos_desc);
2182 *(__le32 *) buf = cpu_to_le32(0);
2188 /* whoever resets or resumes must GetPortStatus to
2191 if (dum_hcd->resuming &&
2192 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2193 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
2194 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
2196 if ((dum_hcd->port_status & USB_PORT_STAT_RESET) != 0 &&
2197 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2198 dum_hcd->port_status |= (USB_PORT_STAT_C_RESET << 16);
2199 dum_hcd->port_status &= ~USB_PORT_STAT_RESET;
2200 if (dum_hcd->dum->pullup) {
2201 dum_hcd->port_status |= USB_PORT_STAT_ENABLE;
2203 if (hcd->speed < HCD_USB3) {
2204 switch (dum_hcd->dum->gadget.speed) {
2205 case USB_SPEED_HIGH:
2206 dum_hcd->port_status |=
2207 USB_PORT_STAT_HIGH_SPEED;
2210 dum_hcd->dum->gadget.ep0->
2212 dum_hcd->port_status |=
2213 USB_PORT_STAT_LOW_SPEED;
2221 set_link_state(dum_hcd);
2222 ((__le16 *) buf)[0] = cpu_to_le16(dum_hcd->port_status);
2223 ((__le16 *) buf)[1] = cpu_to_le16(dum_hcd->port_status >> 16);
2228 case SetPortFeature:
2230 case USB_PORT_FEAT_LINK_STATE:
2231 if (hcd->speed != HCD_USB3) {
2232 dev_dbg(dummy_dev(dum_hcd),
2233 "USB_PORT_FEAT_LINK_STATE req not "
2234 "supported for USB 2.0 roothub\n");
2238 * Since this is dummy we don't have an actual link so
2239 * there is nothing to do for the SET_LINK_STATE cmd
2242 case USB_PORT_FEAT_U1_TIMEOUT:
2243 case USB_PORT_FEAT_U2_TIMEOUT:
2244 /* TODO: add suspend/resume support! */
2245 if (hcd->speed != HCD_USB3) {
2246 dev_dbg(dummy_dev(dum_hcd),
2247 "USB_PORT_FEAT_U1/2_TIMEOUT req not "
2248 "supported for USB 2.0 roothub\n");
2252 case USB_PORT_FEAT_SUSPEND:
2253 /* Applicable only for USB2.0 hub */
2254 if (hcd->speed == HCD_USB3) {
2255 dev_dbg(dummy_dev(dum_hcd),
2256 "USB_PORT_FEAT_SUSPEND req not "
2257 "supported for USB 3.0 roothub\n");
2260 if (dum_hcd->active) {
2261 dum_hcd->port_status |= USB_PORT_STAT_SUSPEND;
2263 /* HNP would happen here; for now we
2264 * assume b_bus_req is always true.
2266 set_link_state(dum_hcd);
2267 if (((1 << USB_DEVICE_B_HNP_ENABLE)
2268 & dum_hcd->dum->devstatus) != 0)
2269 dev_dbg(dummy_dev(dum_hcd),
2273 case USB_PORT_FEAT_POWER:
2274 if (hcd->speed == HCD_USB3)
2275 dum_hcd->port_status |= USB_SS_PORT_STAT_POWER;
2277 dum_hcd->port_status |= USB_PORT_STAT_POWER;
2278 set_link_state(dum_hcd);
2280 case USB_PORT_FEAT_BH_PORT_RESET:
2281 /* Applicable only for USB3.0 hub */
2282 if (hcd->speed != HCD_USB3) {
2283 dev_dbg(dummy_dev(dum_hcd),
2284 "USB_PORT_FEAT_BH_PORT_RESET req not "
2285 "supported for USB 2.0 roothub\n");
2289 case USB_PORT_FEAT_RESET:
2290 if (!(dum_hcd->port_status & USB_PORT_STAT_CONNECTION))
2292 /* if it's already enabled, disable */
2293 if (hcd->speed == HCD_USB3) {
2294 dum_hcd->port_status =
2295 (USB_SS_PORT_STAT_POWER |
2296 USB_PORT_STAT_CONNECTION |
2297 USB_PORT_STAT_RESET);
2299 dum_hcd->port_status &= ~(USB_PORT_STAT_ENABLE
2300 | USB_PORT_STAT_LOW_SPEED
2301 | USB_PORT_STAT_HIGH_SPEED);
2302 dum_hcd->port_status |= USB_PORT_STAT_RESET;
2305 * We want to reset device status. All but the
2306 * Self powered feature
2308 dum_hcd->dum->devstatus &=
2309 (1 << USB_DEVICE_SELF_POWERED);
2311 * FIXME USB3.0: what is the correct reset signaling
2312 * interval? Is it still 50msec as for HS?
2314 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(50);
2315 set_link_state(dum_hcd);
2317 case USB_PORT_FEAT_C_CONNECTION:
2318 case USB_PORT_FEAT_C_RESET:
2319 case USB_PORT_FEAT_C_ENABLE:
2320 case USB_PORT_FEAT_C_SUSPEND:
2321 /* Not allowed for USB-3, and ignored for USB-2 */
2322 if (hcd->speed == HCD_USB3)
2326 /* Disallow TEST, INDICATOR, and C_OVER_CURRENT */
2330 case GetPortErrorCount:
2331 if (hcd->speed != HCD_USB3) {
2332 dev_dbg(dummy_dev(dum_hcd),
2333 "GetPortErrorCount req not "
2334 "supported for USB 2.0 roothub\n");
2337 /* We'll always return 0 since this is a dummy hub */
2338 *(__le32 *) buf = cpu_to_le32(0);
2341 if (hcd->speed != HCD_USB3) {
2342 dev_dbg(dummy_dev(dum_hcd),
2343 "SetHubDepth req not supported for "
2344 "USB 2.0 roothub\n");
2349 dev_dbg(dummy_dev(dum_hcd),
2350 "hub control req%04x v%04x i%04x l%d\n",
2351 typeReq, wValue, wIndex, wLength);
2353 /* "protocol stall" on error */
2356 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2358 if ((dum_hcd->port_status & PORT_C_MASK) != 0)
2359 usb_hcd_poll_rh_status(hcd);
2363 static int dummy_bus_suspend(struct usb_hcd *hcd)
2365 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2367 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
2369 spin_lock_irq(&dum_hcd->dum->lock);
2370 dum_hcd->rh_state = DUMMY_RH_SUSPENDED;
2371 set_link_state(dum_hcd);
2372 hcd->state = HC_STATE_SUSPENDED;
2373 spin_unlock_irq(&dum_hcd->dum->lock);
2377 static int dummy_bus_resume(struct usb_hcd *hcd)
2379 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2382 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
2384 spin_lock_irq(&dum_hcd->dum->lock);
2385 if (!HCD_HW_ACCESSIBLE(hcd)) {
2388 dum_hcd->rh_state = DUMMY_RH_RUNNING;
2389 set_link_state(dum_hcd);
2390 if (!list_empty(&dum_hcd->urbp_list))
2391 mod_timer(&dum_hcd->timer, jiffies);
2392 hcd->state = HC_STATE_RUNNING;
2394 spin_unlock_irq(&dum_hcd->dum->lock);
2398 /*-------------------------------------------------------------------------*/
2400 static inline ssize_t show_urb(char *buf, size_t size, struct urb *urb)
2402 int ep = usb_pipeendpoint(urb->pipe);
2404 return scnprintf(buf, size,
2405 "urb/%p %s ep%d%s%s len %d/%d\n",
2408 switch (urb->dev->speed) {
2412 case USB_SPEED_FULL:
2415 case USB_SPEED_HIGH:
2418 case USB_SPEED_SUPER:
2425 ep, ep ? (usb_urb_dir_in(urb) ? "in" : "out") : "",
2427 switch (usb_pipetype(urb->pipe)) { \
2428 case PIPE_CONTROL: \
2434 case PIPE_INTERRUPT: \
2441 urb->actual_length, urb->transfer_buffer_length);
2444 static ssize_t urbs_show(struct device *dev, struct device_attribute *attr,
2447 struct usb_hcd *hcd = dev_get_drvdata(dev);
2448 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2451 unsigned long flags;
2453 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2454 list_for_each_entry(urbp, &dum_hcd->urbp_list, urbp_list) {
2457 temp = show_urb(buf, PAGE_SIZE - size, urbp->urb);
2461 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2465 static DEVICE_ATTR_RO(urbs);
2467 static int dummy_start_ss(struct dummy_hcd *dum_hcd)
2469 timer_setup(&dum_hcd->timer, dummy_timer, 0);
2470 dum_hcd->rh_state = DUMMY_RH_RUNNING;
2471 dum_hcd->stream_en_ep = 0;
2472 INIT_LIST_HEAD(&dum_hcd->urbp_list);
2473 dummy_hcd_to_hcd(dum_hcd)->power_budget = POWER_BUDGET_3;
2474 dummy_hcd_to_hcd(dum_hcd)->state = HC_STATE_RUNNING;
2475 dummy_hcd_to_hcd(dum_hcd)->uses_new_polling = 1;
2476 #ifdef CONFIG_USB_OTG
2477 dummy_hcd_to_hcd(dum_hcd)->self.otg_port = 1;
2481 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
2482 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
2485 static int dummy_start(struct usb_hcd *hcd)
2487 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2490 * HOST side init ... we emulate a root hub that'll only ever
2491 * talk to one device (the gadget side). Also appears in sysfs,
2492 * just like more familiar pci-based HCDs.
2494 if (!usb_hcd_is_primary_hcd(hcd))
2495 return dummy_start_ss(dum_hcd);
2497 spin_lock_init(&dum_hcd->dum->lock);
2498 timer_setup(&dum_hcd->timer, dummy_timer, 0);
2499 dum_hcd->rh_state = DUMMY_RH_RUNNING;
2501 INIT_LIST_HEAD(&dum_hcd->urbp_list);
2503 hcd->power_budget = POWER_BUDGET;
2504 hcd->state = HC_STATE_RUNNING;
2505 hcd->uses_new_polling = 1;
2507 #ifdef CONFIG_USB_OTG
2508 hcd->self.otg_port = 1;
2511 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
2512 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
2515 static void dummy_stop(struct usb_hcd *hcd)
2517 device_remove_file(dummy_dev(hcd_to_dummy_hcd(hcd)), &dev_attr_urbs);
2518 dev_info(dummy_dev(hcd_to_dummy_hcd(hcd)), "stopped\n");
2521 /*-------------------------------------------------------------------------*/
2523 static int dummy_h_get_frame(struct usb_hcd *hcd)
2525 return dummy_g_get_frame(NULL);
2528 static int dummy_setup(struct usb_hcd *hcd)
2532 dum = *((void **)dev_get_platdata(hcd->self.controller));
2533 hcd->self.sg_tablesize = ~0;
2534 if (usb_hcd_is_primary_hcd(hcd)) {
2535 dum->hs_hcd = hcd_to_dummy_hcd(hcd);
2536 dum->hs_hcd->dum = dum;
2538 * Mark the first roothub as being USB 2.0.
2539 * The USB 3.0 roothub will be registered later by
2542 hcd->speed = HCD_USB2;
2543 hcd->self.root_hub->speed = USB_SPEED_HIGH;
2545 dum->ss_hcd = hcd_to_dummy_hcd(hcd);
2546 dum->ss_hcd->dum = dum;
2547 hcd->speed = HCD_USB3;
2548 hcd->self.root_hub->speed = USB_SPEED_SUPER;
2553 /* Change a group of bulk endpoints to support multiple stream IDs */
2554 static int dummy_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
2555 struct usb_host_endpoint **eps, unsigned int num_eps,
2556 unsigned int num_streams, gfp_t mem_flags)
2558 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2559 unsigned long flags;
2561 int ret_streams = num_streams;
2568 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2569 for (i = 0; i < num_eps; i++) {
2570 index = dummy_get_ep_idx(&eps[i]->desc);
2571 if ((1 << index) & dum_hcd->stream_en_ep) {
2572 ret_streams = -EINVAL;
2575 max_stream = usb_ss_max_streams(&eps[i]->ss_ep_comp);
2577 ret_streams = -EINVAL;
2580 if (max_stream < ret_streams) {
2581 dev_dbg(dummy_dev(dum_hcd), "Ep 0x%x only supports %u "
2583 eps[i]->desc.bEndpointAddress,
2585 ret_streams = max_stream;
2589 for (i = 0; i < num_eps; i++) {
2590 index = dummy_get_ep_idx(&eps[i]->desc);
2591 dum_hcd->stream_en_ep |= 1 << index;
2592 set_max_streams_for_pipe(dum_hcd,
2593 usb_endpoint_num(&eps[i]->desc), ret_streams);
2596 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2600 /* Reverts a group of bulk endpoints back to not using stream IDs. */
2601 static int dummy_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
2602 struct usb_host_endpoint **eps, unsigned int num_eps,
2605 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2606 unsigned long flags;
2611 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2612 for (i = 0; i < num_eps; i++) {
2613 index = dummy_get_ep_idx(&eps[i]->desc);
2614 if (!((1 << index) & dum_hcd->stream_en_ep)) {
2620 for (i = 0; i < num_eps; i++) {
2621 index = dummy_get_ep_idx(&eps[i]->desc);
2622 dum_hcd->stream_en_ep &= ~(1 << index);
2623 set_max_streams_for_pipe(dum_hcd,
2624 usb_endpoint_num(&eps[i]->desc), 0);
2628 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2632 static struct hc_driver dummy_hcd = {
2633 .description = (char *) driver_name,
2634 .product_desc = "Dummy host controller",
2635 .hcd_priv_size = sizeof(struct dummy_hcd),
2637 .reset = dummy_setup,
2638 .start = dummy_start,
2641 .urb_enqueue = dummy_urb_enqueue,
2642 .urb_dequeue = dummy_urb_dequeue,
2644 .get_frame_number = dummy_h_get_frame,
2646 .hub_status_data = dummy_hub_status,
2647 .hub_control = dummy_hub_control,
2648 .bus_suspend = dummy_bus_suspend,
2649 .bus_resume = dummy_bus_resume,
2651 .alloc_streams = dummy_alloc_streams,
2652 .free_streams = dummy_free_streams,
2655 static int dummy_hcd_probe(struct platform_device *pdev)
2658 struct usb_hcd *hs_hcd;
2659 struct usb_hcd *ss_hcd;
2662 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
2663 dum = *((void **)dev_get_platdata(&pdev->dev));
2665 if (mod_data.is_super_speed)
2666 dummy_hcd.flags = HCD_USB3 | HCD_SHARED;
2667 else if (mod_data.is_high_speed)
2668 dummy_hcd.flags = HCD_USB2;
2670 dummy_hcd.flags = HCD_USB11;
2671 hs_hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev));
2676 retval = usb_add_hcd(hs_hcd, 0, 0);
2680 if (mod_data.is_super_speed) {
2681 ss_hcd = usb_create_shared_hcd(&dummy_hcd, &pdev->dev,
2682 dev_name(&pdev->dev), hs_hcd);
2685 goto dealloc_usb2_hcd;
2688 retval = usb_add_hcd(ss_hcd, 0, 0);
2695 usb_put_hcd(ss_hcd);
2697 usb_remove_hcd(hs_hcd);
2699 usb_put_hcd(hs_hcd);
2700 dum->hs_hcd = dum->ss_hcd = NULL;
2704 static int dummy_hcd_remove(struct platform_device *pdev)
2708 dum = hcd_to_dummy_hcd(platform_get_drvdata(pdev))->dum;
2711 usb_remove_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2712 usb_put_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2715 usb_remove_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
2716 usb_put_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
2724 static int dummy_hcd_suspend(struct platform_device *pdev, pm_message_t state)
2726 struct usb_hcd *hcd;
2727 struct dummy_hcd *dum_hcd;
2730 dev_dbg(&pdev->dev, "%s\n", __func__);
2732 hcd = platform_get_drvdata(pdev);
2733 dum_hcd = hcd_to_dummy_hcd(hcd);
2734 if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
2735 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
2738 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2742 static int dummy_hcd_resume(struct platform_device *pdev)
2744 struct usb_hcd *hcd;
2746 dev_dbg(&pdev->dev, "%s\n", __func__);
2748 hcd = platform_get_drvdata(pdev);
2749 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2750 usb_hcd_poll_rh_status(hcd);
2754 static struct platform_driver dummy_hcd_driver = {
2755 .probe = dummy_hcd_probe,
2756 .remove = dummy_hcd_remove,
2757 .suspend = dummy_hcd_suspend,
2758 .resume = dummy_hcd_resume,
2760 .name = driver_name,
2764 /*-------------------------------------------------------------------------*/
2765 #define MAX_NUM_UDC 32
2766 static struct platform_device *the_udc_pdev[MAX_NUM_UDC];
2767 static struct platform_device *the_hcd_pdev[MAX_NUM_UDC];
2769 static int __init dummy_hcd_init(void)
2771 int retval = -ENOMEM;
2773 struct dummy *dum[MAX_NUM_UDC] = {};
2778 if (!mod_data.is_high_speed && mod_data.is_super_speed)
2781 if (mod_data.num < 1 || mod_data.num > MAX_NUM_UDC) {
2782 pr_err("Number of emulated UDC must be in range of 1...%d\n",
2787 for (i = 0; i < mod_data.num; i++) {
2788 the_hcd_pdev[i] = platform_device_alloc(driver_name, i);
2789 if (!the_hcd_pdev[i]) {
2792 platform_device_put(the_hcd_pdev[i--]);
2796 for (i = 0; i < mod_data.num; i++) {
2797 the_udc_pdev[i] = platform_device_alloc(gadget_name, i);
2798 if (!the_udc_pdev[i]) {
2801 platform_device_put(the_udc_pdev[i--]);
2805 for (i = 0; i < mod_data.num; i++) {
2806 dum[i] = kzalloc(sizeof(struct dummy), GFP_KERNEL);
2811 retval = platform_device_add_data(the_hcd_pdev[i], &dum[i],
2815 retval = platform_device_add_data(the_udc_pdev[i], &dum[i],
2821 retval = platform_driver_register(&dummy_hcd_driver);
2824 retval = platform_driver_register(&dummy_udc_driver);
2826 goto err_register_udc_driver;
2828 for (i = 0; i < mod_data.num; i++) {
2829 retval = platform_device_add(the_hcd_pdev[i]);
2833 platform_device_del(the_hcd_pdev[i--]);
2837 for (i = 0; i < mod_data.num; i++) {
2838 if (!dum[i]->hs_hcd ||
2839 (!dum[i]->ss_hcd && mod_data.is_super_speed)) {
2841 * The hcd was added successfully but its probe
2842 * function failed for some reason.
2849 for (i = 0; i < mod_data.num; i++) {
2850 retval = platform_device_add(the_udc_pdev[i]);
2854 platform_device_del(the_udc_pdev[i--]);
2859 for (i = 0; i < mod_data.num; i++) {
2860 if (!platform_get_drvdata(the_udc_pdev[i])) {
2862 * The udc was added successfully but its probe
2863 * function failed for some reason.
2872 for (i = 0; i < mod_data.num; i++)
2873 platform_device_del(the_udc_pdev[i]);
2875 for (i = 0; i < mod_data.num; i++)
2876 platform_device_del(the_hcd_pdev[i]);
2878 platform_driver_unregister(&dummy_udc_driver);
2879 err_register_udc_driver:
2880 platform_driver_unregister(&dummy_hcd_driver);
2882 for (i = 0; i < mod_data.num; i++)
2884 for (i = 0; i < mod_data.num; i++)
2885 platform_device_put(the_udc_pdev[i]);
2887 for (i = 0; i < mod_data.num; i++)
2888 platform_device_put(the_hcd_pdev[i]);
2891 module_init(dummy_hcd_init);
2893 static void __exit dummy_hcd_cleanup(void)
2897 for (i = 0; i < mod_data.num; i++) {
2900 dum = *((void **)dev_get_platdata(&the_udc_pdev[i]->dev));
2902 platform_device_unregister(the_udc_pdev[i]);
2903 platform_device_unregister(the_hcd_pdev[i]);
2906 platform_driver_unregister(&dummy_udc_driver);
2907 platform_driver_unregister(&dummy_hcd_driver);
2909 module_exit(dummy_hcd_cleanup);