blob: d47a565d085c7d83501602aacc2244b1a0aaa8c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dummy_hcd.c -- Dummy/Loopback USB host and device emulator driver.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * Copyright (C) 2003 David Brownell
7 * Copyright (C) 2003-2005 Alan Stern
8 *
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.
13 *
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.
18 *
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
22 */
23
24
25/*
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:
29 *
30 * - Gadget driver, responding to requests (slave);
31 * - Host-side device driver, as already familiar in Linux.
32 *
33 * Having this all in one kernel can help some stages of development,
34 * bypassing some hardware (and driver) issues. UML could help too.
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/kernel.h>
39#include <linux/delay.h>
40#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/errno.h>
43#include <linux/init.h>
44#include <linux/timer.h>
45#include <linux/list.h>
46#include <linux/interrupt.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010047#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/usb.h>
David Brownell9454a572007-10-04 18:05:17 -070049#include <linux/usb/gadget.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020050#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/byteorder.h>
53#include <asm/io.h>
54#include <asm/irq.h>
55#include <asm/system.h>
56#include <asm/unaligned.h>
57
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define DRIVER_DESC "USB Host+Gadget Emulator"
Alan Stern391eca92005-05-10 15:34:16 -040060#define DRIVER_VERSION "02 May 2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Alan Sterncaf29f62007-12-06 11:10:39 -050062#define POWER_BUDGET 500 /* in mA; use 8 for low-power port testing */
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static const char driver_name [] = "dummy_hcd";
65static const char driver_desc [] = "USB Host+Gadget Emulator";
66
67static const char gadget_name [] = "dummy_udc";
68
69MODULE_DESCRIPTION (DRIVER_DESC);
70MODULE_AUTHOR ("David Brownell");
71MODULE_LICENSE ("GPL");
72
73/*-------------------------------------------------------------------------*/
74
75/* gadget side driver data structres */
76struct dummy_ep {
77 struct list_head queue;
78 unsigned long last_io; /* jiffies timestamp */
79 struct usb_gadget *gadget;
80 const struct usb_endpoint_descriptor *desc;
81 struct usb_ep ep;
82 unsigned halted : 1;
Alan Stern851a5262008-08-14 15:48:30 -040083 unsigned wedged : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned already_seen : 1;
85 unsigned setup_stage : 1;
86};
87
88struct dummy_request {
89 struct list_head queue; /* ep's requests */
90 struct usb_request req;
91};
92
93static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
94{
95 return container_of (_ep, struct dummy_ep, ep);
96}
97
98static inline struct dummy_request *usb_request_to_dummy_request
99 (struct usb_request *_req)
100{
101 return container_of (_req, struct dummy_request, req);
102}
103
104/*-------------------------------------------------------------------------*/
105
106/*
107 * Every device has ep0 for control requests, plus up to 30 more endpoints,
108 * in one of two types:
109 *
110 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
111 * number can be changed. Names like "ep-a" are used for this type.
112 *
113 * - Fixed Function: in other cases. some characteristics may be mutable;
114 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
115 *
116 * Gadget drivers are responsible for not setting up conflicting endpoint
117 * configurations, illegal or unsupported packet lengths, and so on.
118 */
119
120static const char ep0name [] = "ep0";
121
122static const char *const ep_name [] = {
123 ep0name, /* everyone has ep0 */
124
125 /* act like a net2280: high speed, six configurable endpoints */
126 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
127
128 /* or like pxa250: fifteen fixed function endpoints */
129 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
130 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
131 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
132 "ep15in-int",
133
134 /* or like sa1100: two fixed function endpoints */
135 "ep1out-bulk", "ep2in-bulk",
136};
Tobias Klauser52950ed2005-12-11 16:20:08 +0100137#define DUMMY_ENDPOINTS ARRAY_SIZE(ep_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Alan Sternd9b76252005-05-03 16:15:43 -0400139/*-------------------------------------------------------------------------*/
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define FIFO_SIZE 64
142
143struct urbp {
144 struct urb *urb;
145 struct list_head urbp_list;
146};
147
Alan Stern391eca92005-05-10 15:34:16 -0400148
149enum dummy_rh_state {
150 DUMMY_RH_RESET,
151 DUMMY_RH_SUSPENDED,
152 DUMMY_RH_RUNNING
153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155struct dummy {
156 spinlock_t lock;
157
158 /*
159 * SLAVE/GADGET side support
160 */
161 struct dummy_ep ep [DUMMY_ENDPOINTS];
162 int address;
163 struct usb_gadget gadget;
164 struct usb_gadget_driver *driver;
165 struct dummy_request fifo_req;
166 u8 fifo_buf [FIFO_SIZE];
167 u16 devstatus;
Alan Stern391eca92005-05-10 15:34:16 -0400168 unsigned udc_suspended:1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400169 unsigned pullup:1;
170 unsigned active:1;
171 unsigned old_active:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /*
174 * MASTER/HOST side support
175 */
Alan Stern391eca92005-05-10 15:34:16 -0400176 enum dummy_rh_state rh_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct timer_list timer;
178 u32 port_status;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400179 u32 old_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 unsigned resuming:1;
181 unsigned long re_timeout;
182
183 struct usb_device *udev;
184 struct list_head urbp_list;
185};
186
187static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
188{
189 return (struct dummy *) (hcd->hcd_priv);
190}
191
192static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
193{
194 return container_of((void *) dum, struct usb_hcd, hcd_priv);
195}
196
197static inline struct device *dummy_dev (struct dummy *dum)
198{
199 return dummy_to_hcd(dum)->self.controller;
200}
201
Alan Sternd9b76252005-05-03 16:15:43 -0400202static inline struct device *udc_dev (struct dummy *dum)
203{
204 return dum->gadget.dev.parent;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
208{
209 return container_of (ep->gadget, struct dummy, gadget);
210}
211
212static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
213{
214 return container_of (gadget, struct dummy, gadget);
215}
216
217static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
218{
219 return container_of (dev, struct dummy, gadget.dev);
220}
221
222static struct dummy *the_controller;
223
224/*-------------------------------------------------------------------------*/
225
Alan Sternf1c39fa2005-05-03 16:24:04 -0400226/* SLAVE/GADGET SIDE UTILITY ROUTINES */
227
228/* called with spinlock held */
229static void nuke (struct dummy *dum, struct dummy_ep *ep)
230{
231 while (!list_empty (&ep->queue)) {
232 struct dummy_request *req;
233
234 req = list_entry (ep->queue.next, struct dummy_request, queue);
235 list_del_init (&req->queue);
236 req->req.status = -ESHUTDOWN;
237
238 spin_unlock (&dum->lock);
239 req->req.complete (&ep->ep, &req->req);
240 spin_lock (&dum->lock);
241 }
242}
243
244/* caller must hold lock */
245static void
246stop_activity (struct dummy *dum)
247{
248 struct dummy_ep *ep;
249
250 /* prevent any more requests */
251 dum->address = 0;
252
253 /* The timer is left running so that outstanding URBs can fail */
254
255 /* nuke any pending requests first, so driver i/o is quiesced */
256 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
257 nuke (dum, ep);
258
259 /* driver now does any non-usb quiescing necessary */
260}
261
262/* caller must hold lock */
263static void
264set_link_state (struct dummy *dum)
265{
266 dum->active = 0;
267 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
268 dum->port_status = 0;
Alan Stern391eca92005-05-10 15:34:16 -0400269
270 /* UDC suspend must cause a disconnect */
271 else if (!dum->pullup || dum->udc_suspended) {
Alan Sternf1c39fa2005-05-03 16:24:04 -0400272 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
273 USB_PORT_STAT_ENABLE |
274 USB_PORT_STAT_LOW_SPEED |
275 USB_PORT_STAT_HIGH_SPEED |
276 USB_PORT_STAT_SUSPEND);
277 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
278 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
279 } else {
280 dum->port_status |= USB_PORT_STAT_CONNECTION;
281 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
282 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
283 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
284 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
Alan Stern391eca92005-05-10 15:34:16 -0400285 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
286 dum->rh_state != DUMMY_RH_SUSPENDED)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400287 dum->active = 1;
288 }
289
290 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
291 dum->resuming = 0;
292
293 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
294 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
295 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
296 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
297 dum->driver) {
298 stop_activity (dum);
299 spin_unlock (&dum->lock);
300 dum->driver->disconnect (&dum->gadget);
301 spin_lock (&dum->lock);
302 }
303 } else if (dum->active != dum->old_active) {
304 if (dum->old_active && dum->driver->suspend) {
305 spin_unlock (&dum->lock);
306 dum->driver->suspend (&dum->gadget);
307 spin_lock (&dum->lock);
308 } else if (!dum->old_active && dum->driver->resume) {
309 spin_unlock (&dum->lock);
310 dum->driver->resume (&dum->gadget);
311 spin_lock (&dum->lock);
312 }
313 }
314
315 dum->old_status = dum->port_status;
316 dum->old_active = dum->active;
317}
318
319/*-------------------------------------------------------------------------*/
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/* SLAVE/GADGET SIDE DRIVER
322 *
323 * This only tracks gadget state. All the work is done when the host
324 * side tries some (emulated) i/o operation. Real device controller
325 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
326 */
327
328#define is_enabled(dum) \
329 (dum->port_status & USB_PORT_STAT_ENABLE)
330
331static int
332dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
333{
334 struct dummy *dum;
335 struct dummy_ep *ep;
336 unsigned max;
337 int retval;
338
339 ep = usb_ep_to_dummy_ep (_ep);
340 if (!_ep || !desc || ep->desc || _ep->name == ep0name
341 || desc->bDescriptorType != USB_DT_ENDPOINT)
342 return -EINVAL;
343 dum = ep_to_dummy (ep);
344 if (!dum->driver || !is_enabled (dum))
345 return -ESHUTDOWN;
346 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
347
348 /* drivers must not request bad settings, since lower levels
349 * (hardware or its drivers) may not check. some endpoints
350 * can't do iso, many have maxpacket limitations, etc.
351 *
352 * since this "hardware" driver is here to help debugging, we
353 * have some extra sanity checks. (there could be more though,
354 * especially for "ep9out" style fixed function ones.)
355 */
356 retval = -EINVAL;
357 switch (desc->bmAttributes & 0x03) {
358 case USB_ENDPOINT_XFER_BULK:
359 if (strstr (ep->ep.name, "-iso")
360 || strstr (ep->ep.name, "-int")) {
361 goto done;
362 }
363 switch (dum->gadget.speed) {
364 case USB_SPEED_HIGH:
365 if (max == 512)
366 break;
Ingo van Lil9063ff42008-03-28 14:50:26 -0700367 goto done;
368 case USB_SPEED_FULL:
369 if (max == 8 || max == 16 || max == 32 || max == 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /* we'll fake any legal size */
371 break;
Ingo van Lil9063ff42008-03-28 14:50:26 -0700372 /* save a return statement */
373 default:
374 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 break;
377 case USB_ENDPOINT_XFER_INT:
378 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
379 goto done;
380 /* real hardware might not handle all packet sizes */
381 switch (dum->gadget.speed) {
382 case USB_SPEED_HIGH:
383 if (max <= 1024)
384 break;
385 /* save a return statement */
386 case USB_SPEED_FULL:
387 if (max <= 64)
388 break;
389 /* save a return statement */
390 default:
391 if (max <= 8)
392 break;
393 goto done;
394 }
395 break;
396 case USB_ENDPOINT_XFER_ISOC:
397 if (strstr (ep->ep.name, "-bulk")
398 || strstr (ep->ep.name, "-int"))
399 goto done;
400 /* real hardware might not handle all packet sizes */
401 switch (dum->gadget.speed) {
402 case USB_SPEED_HIGH:
403 if (max <= 1024)
404 break;
405 /* save a return statement */
406 case USB_SPEED_FULL:
407 if (max <= 1023)
408 break;
409 /* save a return statement */
410 default:
411 goto done;
412 }
413 break;
414 default:
415 /* few chips support control except on ep0 */
416 goto done;
417 }
418
419 _ep->maxpacket = max;
420 ep->desc = desc;
421
Alan Sternd9b76252005-05-03 16:15:43 -0400422 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 _ep->name,
424 desc->bEndpointAddress & 0x0f,
425 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
426 ({ char *val;
427 switch (desc->bmAttributes & 0x03) {
428 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
429 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
430 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
431 default: val = "ctrl"; break;
432 }; val; }),
433 max);
434
435 /* at this point real hardware should be NAKing transfers
436 * to that endpoint, until a buffer is queued to it.
437 */
Alan Stern851a5262008-08-14 15:48:30 -0400438 ep->halted = ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 retval = 0;
440done:
441 return retval;
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444static int dummy_disable (struct usb_ep *_ep)
445{
446 struct dummy_ep *ep;
447 struct dummy *dum;
448 unsigned long flags;
449 int retval;
450
451 ep = usb_ep_to_dummy_ep (_ep);
452 if (!_ep || !ep->desc || _ep->name == ep0name)
453 return -EINVAL;
454 dum = ep_to_dummy (ep);
455
456 spin_lock_irqsave (&dum->lock, flags);
457 ep->desc = NULL;
458 retval = 0;
459 nuke (dum, ep);
460 spin_unlock_irqrestore (&dum->lock, flags);
461
Alan Sternd9b76252005-05-03 16:15:43 -0400462 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return retval;
464}
465
466static struct usb_request *
Al Viro55016f12005-10-21 03:21:58 -0400467dummy_alloc_request (struct usb_ep *_ep, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct dummy_ep *ep;
470 struct dummy_request *req;
471
472 if (!_ep)
473 return NULL;
474 ep = usb_ep_to_dummy_ep (_ep);
475
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800476 req = kzalloc(sizeof(*req), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!req)
478 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 INIT_LIST_HEAD (&req->queue);
480 return &req->req;
481}
482
483static void
484dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
485{
486 struct dummy_ep *ep;
487 struct dummy_request *req;
488
489 ep = usb_ep_to_dummy_ep (_ep);
490 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
491 return;
492
493 req = usb_request_to_dummy_request (_req);
494 WARN_ON (!list_empty (&req->queue));
495 kfree (req);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static void
499fifo_complete (struct usb_ep *ep, struct usb_request *req)
500{
501}
502
503static int
Olav Kongas5db539e2005-06-23 20:25:36 +0300504dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
Al Viro55016f12005-10-21 03:21:58 -0400505 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 struct dummy_ep *ep;
508 struct dummy_request *req;
509 struct dummy *dum;
510 unsigned long flags;
511
512 req = usb_request_to_dummy_request (_req);
513 if (!_req || !list_empty (&req->queue) || !_req->complete)
514 return -EINVAL;
515
516 ep = usb_ep_to_dummy_ep (_ep);
517 if (!_ep || (!ep->desc && _ep->name != ep0name))
518 return -EINVAL;
519
520 dum = ep_to_dummy (ep);
521 if (!dum->driver || !is_enabled (dum))
522 return -ESHUTDOWN;
523
524#if 0
Alan Sternd9b76252005-05-03 16:15:43 -0400525 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 ep, _req, _ep->name, _req->length, _req->buf);
527#endif
528
529 _req->status = -EINPROGRESS;
530 _req->actual = 0;
531 spin_lock_irqsave (&dum->lock, flags);
532
533 /* implement an emulated single-request FIFO */
534 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
535 list_empty (&dum->fifo_req.queue) &&
536 list_empty (&ep->queue) &&
537 _req->length <= FIFO_SIZE) {
538 req = &dum->fifo_req;
539 req->req = *_req;
540 req->req.buf = dum->fifo_buf;
541 memcpy (dum->fifo_buf, _req->buf, _req->length);
542 req->req.context = dum;
543 req->req.complete = fifo_complete;
544
David Brownellc728df72008-07-26 08:06:24 -0700545 list_add_tail(&req->queue, &ep->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 spin_unlock (&dum->lock);
547 _req->actual = _req->length;
548 _req->status = 0;
549 _req->complete (_ep, _req);
550 spin_lock (&dum->lock);
David Brownellc728df72008-07-26 08:06:24 -0700551 } else
552 list_add_tail(&req->queue, &ep->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 spin_unlock_irqrestore (&dum->lock, flags);
554
555 /* real hardware would likely enable transfers here, in case
556 * it'd been left NAKing.
557 */
558 return 0;
559}
560
561static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
562{
563 struct dummy_ep *ep;
564 struct dummy *dum;
565 int retval = -EINVAL;
566 unsigned long flags;
567 struct dummy_request *req = NULL;
568
569 if (!_ep || !_req)
570 return retval;
571 ep = usb_ep_to_dummy_ep (_ep);
572 dum = ep_to_dummy (ep);
573
574 if (!dum->driver)
575 return -ESHUTDOWN;
576
Alan Sternb4dbda12006-07-28 17:07:34 -0400577 local_irq_save (flags);
578 spin_lock (&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 list_for_each_entry (req, &ep->queue, queue) {
580 if (&req->req == _req) {
581 list_del_init (&req->queue);
582 _req->status = -ECONNRESET;
583 retval = 0;
584 break;
585 }
586 }
Alan Sternb4dbda12006-07-28 17:07:34 -0400587 spin_unlock (&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 if (retval == 0) {
Alan Sternd9b76252005-05-03 16:15:43 -0400590 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 "dequeued req %p from %s, len %d buf %p\n",
592 req, _ep->name, _req->length, _req->buf);
593 _req->complete (_ep, _req);
594 }
Alan Sternb4dbda12006-07-28 17:07:34 -0400595 local_irq_restore (flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return retval;
597}
598
599static int
Alan Stern851a5262008-08-14 15:48:30 -0400600dummy_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 struct dummy_ep *ep;
603 struct dummy *dum;
604
605 if (!_ep)
606 return -EINVAL;
607 ep = usb_ep_to_dummy_ep (_ep);
608 dum = ep_to_dummy (ep);
609 if (!dum->driver)
610 return -ESHUTDOWN;
611 if (!value)
Alan Stern851a5262008-08-14 15:48:30 -0400612 ep->halted = ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
614 !list_empty (&ep->queue))
615 return -EAGAIN;
Alan Stern851a5262008-08-14 15:48:30 -0400616 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 ep->halted = 1;
Alan Stern851a5262008-08-14 15:48:30 -0400618 if (wedged)
619 ep->wedged = 1;
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* FIXME clear emulated data toggle too */
622 return 0;
623}
624
Alan Stern851a5262008-08-14 15:48:30 -0400625static int
626dummy_set_halt(struct usb_ep *_ep, int value)
627{
628 return dummy_set_halt_and_wedge(_ep, value, 0);
629}
630
631static int dummy_set_wedge(struct usb_ep *_ep)
632{
633 if (!_ep || _ep->name == ep0name)
634 return -EINVAL;
635 return dummy_set_halt_and_wedge(_ep, 1, 1);
636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static const struct usb_ep_ops dummy_ep_ops = {
639 .enable = dummy_enable,
640 .disable = dummy_disable,
641
642 .alloc_request = dummy_alloc_request,
643 .free_request = dummy_free_request,
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 .queue = dummy_queue,
646 .dequeue = dummy_dequeue,
647
648 .set_halt = dummy_set_halt,
Alan Stern851a5262008-08-14 15:48:30 -0400649 .set_wedge = dummy_set_wedge,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650};
651
652/*-------------------------------------------------------------------------*/
653
654/* there are both host and device side versions of this call ... */
655static int dummy_g_get_frame (struct usb_gadget *_gadget)
656{
657 struct timeval tv;
658
659 do_gettimeofday (&tv);
660 return tv.tv_usec / 1000;
661}
662
663static int dummy_wakeup (struct usb_gadget *_gadget)
664{
665 struct dummy *dum;
666
667 dum = gadget_to_dummy (_gadget);
Alan Stern391eca92005-05-10 15:34:16 -0400668 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
Alan Stern5742b0c2005-05-02 11:25:17 -0400669 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -EINVAL;
Alan Stern391eca92005-05-10 15:34:16 -0400671 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
672 return -ENOLINK;
673 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
674 dum->rh_state != DUMMY_RH_SUSPENDED)
675 return -EIO;
676
677 /* FIXME: What if the root hub is suspended but the port isn't? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* hub notices our request, issues downstream resume, etc */
680 dum->resuming = 1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400681 dum->re_timeout = jiffies + msecs_to_jiffies(20);
Alan Stern685eb932005-05-03 16:27:26 -0400682 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684}
685
686static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
687{
688 struct dummy *dum;
689
690 dum = gadget_to_dummy (_gadget);
691 if (value)
692 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
693 else
694 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
695 return 0;
696}
697
Alan Sternf1c39fa2005-05-03 16:24:04 -0400698static int dummy_pullup (struct usb_gadget *_gadget, int value)
699{
700 struct dummy *dum;
701 unsigned long flags;
702
703 dum = gadget_to_dummy (_gadget);
704 spin_lock_irqsave (&dum->lock, flags);
705 dum->pullup = (value != 0);
706 set_link_state (dum);
707 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -0400708
709 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Alan Sternf1c39fa2005-05-03 16:24:04 -0400710 return 0;
711}
712
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300713static int dummy_udc_start(struct usb_gadget_driver *driver,
714 int (*bind)(struct usb_gadget *));
715static int dummy_udc_stop(struct usb_gadget_driver *driver);
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717static const struct usb_gadget_ops dummy_ops = {
718 .get_frame = dummy_g_get_frame,
719 .wakeup = dummy_wakeup,
720 .set_selfpowered = dummy_set_selfpowered,
Alan Sternf1c39fa2005-05-03 16:24:04 -0400721 .pullup = dummy_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300722 .start = dummy_udc_start,
723 .stop = dummy_udc_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
726/*-------------------------------------------------------------------------*/
727
728/* "function" sysfs attribute */
729static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400730show_function (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct dummy *dum = gadget_dev_to_dummy (dev);
733
734 if (!dum->driver || !dum->driver->function)
735 return 0;
736 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
737}
Alan Sterncc095b02005-05-10 15:28:38 -0400738static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740/*-------------------------------------------------------------------------*/
741
742/*
743 * Driver registration/unregistration.
744 *
745 * This is basically hardware-specific; there's usually only one real USB
746 * device (not host) controller since that's how USB devices are intended
747 * to work. So most implementations of these api calls will rely on the
748 * fact that only one driver will ever bind to the hardware. But curious
749 * hardware can be built with discrete components, so the gadget API doesn't
750 * require that assumption.
751 *
752 * For this emulator, it might be convenient to create a usb slave device
753 * for each driver that registers: just add to a big root hub.
754 */
755
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300756static int dummy_udc_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +0200757 int (*bind)(struct usb_gadget *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct dummy *dum = the_controller;
760 int retval, i;
761
762 if (!dum)
763 return -EINVAL;
764 if (dum->driver)
765 return -EBUSY;
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +0200766 if (!bind || !driver->setup || driver->speed == USB_SPEED_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -EINVAL;
768
769 /*
770 * SLAVE side init ... the layer above hardware, which
771 * can't enumerate without help from the driver we're binding.
772 */
Alan Stern5742b0c2005-05-02 11:25:17 -0400773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 INIT_LIST_HEAD (&dum->gadget.ep_list);
777 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
778 struct dummy_ep *ep = &dum->ep [i];
779
780 if (!ep_name [i])
781 break;
782 ep->ep.name = ep_name [i];
783 ep->ep.ops = &dummy_ep_ops;
784 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
Alan Stern851a5262008-08-14 15:48:30 -0400785 ep->halted = ep->wedged = ep->already_seen =
786 ep->setup_stage = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 ep->ep.maxpacket = ~0;
788 ep->last_io = jiffies;
789 ep->gadget = &dum->gadget;
790 ep->desc = NULL;
791 INIT_LIST_HEAD (&ep->queue);
792 }
793
794 dum->gadget.ep0 = &dum->ep [0].ep;
795 dum->ep [0].ep.maxpacket = 64;
796 list_del_init (&dum->ep [0].ep.ep_list);
797 INIT_LIST_HEAD(&dum->fifo_req.queue);
798
Alan Stern59331012007-11-20 16:28:55 -0500799 driver->driver.bus = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 dum->driver = driver;
801 dum->gadget.dev.driver = &driver->driver;
Alan Sternd9b76252005-05-03 16:15:43 -0400802 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 driver->driver.name);
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +0200804 retval = bind(&dum->gadget);
Alan Stern59331012007-11-20 16:28:55 -0500805 if (retval) {
806 dum->driver = NULL;
807 dum->gadget.dev.driver = NULL;
808 return retval;
809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /* khubd will enumerate this in a while */
Alan Sternf1c39fa2005-05-03 16:24:04 -0400812 spin_lock_irq (&dum->lock);
813 dum->pullup = 1;
814 set_link_state (dum);
815 spin_unlock_irq (&dum->lock);
Alan Stern685eb932005-05-03 16:27:26 -0400816
817 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return 0;
819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300821static int dummy_udc_stop(struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 struct dummy *dum = the_controller;
824 unsigned long flags;
825
826 if (!dum)
827 return -ENODEV;
David Brownell6bea4762006-12-05 03:15:33 -0800828 if (!driver || driver != dum->driver || !driver->unbind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return -EINVAL;
830
Alan Sternd9b76252005-05-03 16:15:43 -0400831 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 driver->driver.name);
833
834 spin_lock_irqsave (&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400835 dum->pullup = 0;
836 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 spin_unlock_irqrestore (&dum->lock, flags);
838
839 driver->unbind (&dum->gadget);
Alan Stern59331012007-11-20 16:28:55 -0500840 dum->gadget.dev.driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 dum->driver = NULL;
842
Alan Sternf1c39fa2005-05-03 16:24:04 -0400843 spin_lock_irqsave (&dum->lock, flags);
844 dum->pullup = 0;
845 set_link_state (dum);
846 spin_unlock_irqrestore (&dum->lock, flags);
847
Alan Stern685eb932005-05-03 16:27:26 -0400848 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 0;
850}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852#undef is_enabled
853
Alan Sterncc095b02005-05-10 15:28:38 -0400854/* just declare this in any driver that really need it */
855extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
858{
859 return -ENOSYS;
860}
861EXPORT_SYMBOL (net2280_set_fifo_mode);
862
Alan Sternd9b76252005-05-03 16:15:43 -0400863
864/* The gadget structure is stored inside the hcd structure and will be
865 * released along with it. */
866static void
867dummy_gadget_release (struct device *dev)
868{
Alan Sternd9b76252005-05-03 16:15:43 -0400869 struct dummy *dum = gadget_dev_to_dummy (dev);
870
Alan Stern17200582006-08-30 11:32:52 -0400871 usb_put_hcd (dummy_to_hcd (dum));
Alan Sternd9b76252005-05-03 16:15:43 -0400872}
873
Alan Stern8364d6b2005-11-14 12:16:30 -0500874static int dummy_udc_probe (struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -0400875{
876 struct dummy *dum = the_controller;
877 int rc;
878
Rahul Ruikar75d87cd2010-10-07 09:40:45 +0530879 usb_get_hcd(dummy_to_hcd(dum));
880
Alan Sternd9b76252005-05-03 16:15:43 -0400881 dum->gadget.name = gadget_name;
882 dum->gadget.ops = &dummy_ops;
883 dum->gadget.is_dualspeed = 1;
884
885 /* maybe claim OTG support, though we won't complete HNP */
886 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
887
Kay Sievers0031a062008-05-02 06:02:41 +0200888 dev_set_name(&dum->gadget.dev, "gadget");
Alan Stern8364d6b2005-11-14 12:16:30 -0500889 dum->gadget.dev.parent = &pdev->dev;
Alan Sternd9b76252005-05-03 16:15:43 -0400890 dum->gadget.dev.release = dummy_gadget_release;
891 rc = device_register (&dum->gadget.dev);
Rahul Ruikar75d87cd2010-10-07 09:40:45 +0530892 if (rc < 0) {
893 put_device(&dum->gadget.dev);
Alan Sternd9b76252005-05-03 16:15:43 -0400894 return rc;
Rahul Ruikar75d87cd2010-10-07 09:40:45 +0530895 }
Alan Sternd9b76252005-05-03 16:15:43 -0400896
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300897 rc = usb_add_gadget_udc(&pdev->dev, &dum->gadget);
898 if (rc < 0)
899 goto err_udc;
900
Alan Sternefd54a32006-09-25 11:55:56 -0400901 rc = device_create_file (&dum->gadget.dev, &dev_attr_function);
902 if (rc < 0)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300903 goto err_dev;
904 platform_set_drvdata(pdev, dum);
905 return rc;
906
907err_dev:
908 usb_del_gadget_udc(&dum->gadget);
909err_udc:
910 device_unregister(&dum->gadget.dev);
Alan Sternd9b76252005-05-03 16:15:43 -0400911 return rc;
912}
913
Alan Stern8364d6b2005-11-14 12:16:30 -0500914static int dummy_udc_remove (struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -0400915{
Alan Stern8364d6b2005-11-14 12:16:30 -0500916 struct dummy *dum = platform_get_drvdata (pdev);
Alan Sternd9b76252005-05-03 16:15:43 -0400917
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300918 usb_del_gadget_udc(&dum->gadget);
Alan Stern8364d6b2005-11-14 12:16:30 -0500919 platform_set_drvdata (pdev, NULL);
Alan Sternd9b76252005-05-03 16:15:43 -0400920 device_remove_file (&dum->gadget.dev, &dev_attr_function);
921 device_unregister (&dum->gadget.dev);
922 return 0;
923}
924
Alan Stern8364d6b2005-11-14 12:16:30 -0500925static int dummy_udc_suspend (struct platform_device *pdev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -0400926{
Alan Stern8364d6b2005-11-14 12:16:30 -0500927 struct dummy *dum = platform_get_drvdata(pdev);
Alan Stern391eca92005-05-10 15:34:16 -0400928
Harvey Harrison441b62c2008-03-03 16:08:34 -0800929 dev_dbg (&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -0400930 spin_lock_irq (&dum->lock);
931 dum->udc_suspended = 1;
932 set_link_state (dum);
933 spin_unlock_irq (&dum->lock);
934
Alan Stern391eca92005-05-10 15:34:16 -0400935 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
936 return 0;
937}
938
Alan Stern8364d6b2005-11-14 12:16:30 -0500939static int dummy_udc_resume (struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -0400940{
Alan Stern8364d6b2005-11-14 12:16:30 -0500941 struct dummy *dum = platform_get_drvdata(pdev);
Alan Stern391eca92005-05-10 15:34:16 -0400942
Harvey Harrison441b62c2008-03-03 16:08:34 -0800943 dev_dbg (&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -0400944 spin_lock_irq (&dum->lock);
945 dum->udc_suspended = 0;
946 set_link_state (dum);
947 spin_unlock_irq (&dum->lock);
948
Alan Stern391eca92005-05-10 15:34:16 -0400949 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
950 return 0;
951}
952
Russell King3ae5eae2005-11-09 22:32:44 +0000953static struct platform_driver dummy_udc_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -0400954 .probe = dummy_udc_probe,
955 .remove = dummy_udc_remove,
Alan Stern391eca92005-05-10 15:34:16 -0400956 .suspend = dummy_udc_suspend,
957 .resume = dummy_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000958 .driver = {
959 .name = (char *) gadget_name,
960 .owner = THIS_MODULE,
961 },
Alan Sternd9b76252005-05-03 16:15:43 -0400962};
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/*-------------------------------------------------------------------------*/
965
966/* MASTER/HOST SIDE DRIVER
967 *
968 * this uses the hcd framework to hook up to host side drivers.
969 * its root hub will only have one device, otherwise it acts like
970 * a normal host controller.
971 *
972 * when urbs are queued, they're just stuck on a list that we
973 * scan in a timer callback. that callback connects writes from
974 * the host with reads from the device, and so on, based on the
975 * usb 2.0 rules.
976 */
977
978static int dummy_urb_enqueue (
979 struct usb_hcd *hcd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -0400981 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982) {
983 struct dummy *dum;
984 struct urbp *urbp;
985 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400986 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 if (!urb->transfer_buffer && urb->transfer_buffer_length)
989 return -EINVAL;
990
991 urbp = kmalloc (sizeof *urbp, mem_flags);
992 if (!urbp)
993 return -ENOMEM;
994 urbp->urb = urb;
995
996 dum = hcd_to_dummy (hcd);
997 spin_lock_irqsave (&dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400998 rc = usb_hcd_link_urb_to_ep(hcd, urb);
999 if (rc) {
1000 kfree(urbp);
1001 goto done;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 if (!dum->udev) {
1005 dum->udev = urb->dev;
1006 usb_get_dev (dum->udev);
1007 } else if (unlikely (dum->udev != urb->dev))
1008 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
1009
1010 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
1011 urb->hcpriv = urbp;
1012 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
1013 urb->error_count = 1; /* mark as a new urb */
1014
1015 /* kick the scheduler, it'll do the rest */
1016 if (!timer_pending (&dum->timer))
1017 mod_timer (&dum->timer, jiffies + 1);
1018
Alan Sterne9df41c2007-08-08 11:48:02 -04001019 done:
Alan Stern63f991b2007-09-04 09:53:24 -04001020 spin_unlock_irqrestore(&dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001021 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
Alan Sterne9df41c2007-08-08 11:48:02 -04001024static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Alan Stern391eca92005-05-10 15:34:16 -04001026 struct dummy *dum;
1027 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001028 int rc;
Alan Stern391eca92005-05-10 15:34:16 -04001029
1030 /* giveback happens automatically in timer callback,
1031 * so make sure the callback happens */
1032 dum = hcd_to_dummy (hcd);
1033 spin_lock_irqsave (&dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001034
1035 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1036 if (!rc && dum->rh_state != DUMMY_RH_RUNNING &&
1037 !list_empty(&dum->urbp_list))
Alan Stern391eca92005-05-10 15:34:16 -04001038 mod_timer (&dum->timer, jiffies);
Alan Sterne9df41c2007-08-08 11:48:02 -04001039
Alan Stern391eca92005-05-10 15:34:16 -04001040 spin_unlock_irqrestore (&dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001041 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044/* transfer up to a frame's worth; caller must own lock */
1045static int
Alan Stern4d2f1102007-08-24 15:40:10 -04001046transfer(struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit,
1047 int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct dummy_request *req;
1050
1051top:
1052 /* if there's no request queued, the device is NAKing; return */
1053 list_for_each_entry (req, &ep->queue, queue) {
1054 unsigned host_len, dev_len, len;
1055 int is_short, to_host;
1056 int rescan = 0;
1057
1058 /* 1..N packets of ep->ep.maxpacket each ... the last one
1059 * may be short (including zero length).
1060 *
1061 * writer can send a zlp explicitly (length 0) or implicitly
1062 * (length mod maxpacket zero, and 'zero' flag); they always
1063 * terminate reads.
1064 */
1065 host_len = urb->transfer_buffer_length - urb->actual_length;
1066 dev_len = req->req.length - req->req.actual;
1067 len = min (host_len, dev_len);
1068
1069 /* FIXME update emulated data toggle too */
1070
1071 to_host = usb_pipein (urb->pipe);
1072 if (unlikely (len == 0))
1073 is_short = 1;
1074 else {
1075 char *ubuf, *rbuf;
1076
1077 /* not enough bandwidth left? */
1078 if (limit < ep->ep.maxpacket && limit < len)
1079 break;
1080 len = min (len, (unsigned) limit);
1081 if (len == 0)
1082 break;
1083
1084 /* use an extra pass for the final short packet */
1085 if (len > ep->ep.maxpacket) {
1086 rescan = 1;
1087 len -= (len % ep->ep.maxpacket);
1088 }
1089 is_short = (len % ep->ep.maxpacket) != 0;
1090
1091 /* else transfer packet(s) */
1092 ubuf = urb->transfer_buffer + urb->actual_length;
1093 rbuf = req->req.buf + req->req.actual;
1094 if (to_host)
1095 memcpy (ubuf, rbuf, len);
1096 else
1097 memcpy (rbuf, ubuf, len);
1098 ep->last_io = jiffies;
1099
1100 limit -= len;
1101 urb->actual_length += len;
1102 req->req.actual += len;
1103 }
1104
1105 /* short packets terminate, maybe with overflow/underflow.
1106 * it's only really an error to write too much.
1107 *
1108 * partially filling a buffer optionally blocks queue advances
1109 * (so completion handlers can clean up the queue) but we don't
Alan Sternb0d9efb2007-08-21 15:39:21 -04001110 * need to emulate such data-in-flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 */
1112 if (is_short) {
1113 if (host_len == dev_len) {
1114 req->req.status = 0;
Alan Stern4d2f1102007-08-24 15:40:10 -04001115 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 } else if (to_host) {
1117 req->req.status = 0;
1118 if (dev_len > host_len)
Alan Stern4d2f1102007-08-24 15:40:10 -04001119 *status = -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 else
Alan Stern4d2f1102007-08-24 15:40:10 -04001121 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 } else if (!to_host) {
Alan Stern4d2f1102007-08-24 15:40:10 -04001123 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (host_len > dev_len)
1125 req->req.status = -EOVERFLOW;
1126 else
1127 req->req.status = 0;
1128 }
1129
1130 /* many requests terminate without a short packet */
1131 } else {
1132 if (req->req.length == req->req.actual
1133 && !req->req.zero)
1134 req->req.status = 0;
1135 if (urb->transfer_buffer_length == urb->actual_length
1136 && !(urb->transfer_flags
Alan Stern4d2f1102007-08-24 15:40:10 -04001137 & URB_ZERO_PACKET))
1138 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141 /* device side completion --> continuable */
1142 if (req->req.status != -EINPROGRESS) {
1143 list_del_init (&req->queue);
1144
1145 spin_unlock (&dum->lock);
1146 req->req.complete (&ep->ep, &req->req);
1147 spin_lock (&dum->lock);
1148
1149 /* requests might have been unlinked... */
1150 rescan = 1;
1151 }
1152
1153 /* host side completion --> terminate */
Alan Stern4d2f1102007-08-24 15:40:10 -04001154 if (*status != -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156
1157 /* rescan to continue with any other queued i/o */
1158 if (rescan)
1159 goto top;
1160 }
1161 return limit;
1162}
1163
1164static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1165{
1166 int limit = ep->ep.maxpacket;
1167
1168 if (dum->gadget.speed == USB_SPEED_HIGH) {
1169 int tmp;
1170
1171 /* high bandwidth mode */
1172 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 tmp = (tmp >> 11) & 0x03;
1174 tmp *= 8 /* applies to entire frame */;
1175 limit += limit * tmp;
1176 }
1177 return limit;
1178}
1179
1180#define is_active(dum) ((dum->port_status & \
1181 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1182 USB_PORT_STAT_SUSPEND)) \
1183 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1184
1185static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1186{
1187 int i;
1188
1189 if (!is_active (dum))
1190 return NULL;
1191 if ((address & ~USB_DIR_IN) == 0)
1192 return &dum->ep [0];
1193 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1194 struct dummy_ep *ep = &dum->ep [i];
1195
1196 if (!ep->desc)
1197 continue;
1198 if (ep->desc->bEndpointAddress == address)
1199 return ep;
1200 }
1201 return NULL;
1202}
1203
1204#undef is_active
1205
1206#define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1207#define Dev_InRequest (Dev_Request | USB_DIR_IN)
1208#define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1209#define Intf_InRequest (Intf_Request | USB_DIR_IN)
1210#define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1211#define Ep_InRequest (Ep_Request | USB_DIR_IN)
1212
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001213
1214/**
1215 * handle_control_request() - handles all control transfers
1216 * @dum: pointer to dummy (the_controller)
1217 * @urb: the urb request to handle
1218 * @setup: pointer to the setup data for a USB device control
1219 * request
1220 * @status: pointer to request handling status
1221 *
1222 * Return 0 - if the request was handled
1223 * 1 - if the request wasn't handles
1224 * error code on error
1225 */
1226static int handle_control_request(struct dummy *dum, struct urb *urb,
1227 struct usb_ctrlrequest *setup,
1228 int *status)
1229{
1230 struct dummy_ep *ep2;
1231 int ret_val = 1;
1232 unsigned w_index;
1233 unsigned w_value;
1234
1235 w_index = le16_to_cpu(setup->wIndex);
1236 w_value = le16_to_cpu(setup->wValue);
1237 switch (setup->bRequest) {
1238 case USB_REQ_SET_ADDRESS:
1239 if (setup->bRequestType != Dev_Request)
1240 break;
1241 dum->address = w_value;
1242 *status = 0;
1243 dev_dbg(udc_dev(dum), "set_address = %d\n",
1244 w_value);
1245 ret_val = 0;
1246 break;
1247 case USB_REQ_SET_FEATURE:
1248 if (setup->bRequestType == Dev_Request) {
1249 ret_val = 0;
1250 switch (w_value) {
1251 case USB_DEVICE_REMOTE_WAKEUP:
1252 break;
1253 case USB_DEVICE_B_HNP_ENABLE:
1254 dum->gadget.b_hnp_enable = 1;
1255 break;
1256 case USB_DEVICE_A_HNP_SUPPORT:
1257 dum->gadget.a_hnp_support = 1;
1258 break;
1259 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1260 dum->gadget.a_alt_hnp_support = 1;
1261 break;
1262 default:
1263 ret_val = -EOPNOTSUPP;
1264 }
1265 if (ret_val == 0) {
1266 dum->devstatus |= (1 << w_value);
1267 *status = 0;
1268 }
1269 } else if (setup->bRequestType == Ep_Request) {
1270 /* endpoint halt */
1271 ep2 = find_endpoint(dum, w_index);
1272 if (!ep2 || ep2->ep.name == ep0name) {
1273 ret_val = -EOPNOTSUPP;
1274 break;
1275 }
1276 ep2->halted = 1;
1277 ret_val = 0;
1278 *status = 0;
1279 }
1280 break;
1281 case USB_REQ_CLEAR_FEATURE:
1282 if (setup->bRequestType == Dev_Request) {
1283 ret_val = 0;
1284 switch (w_value) {
1285 case USB_DEVICE_REMOTE_WAKEUP:
1286 w_value = USB_DEVICE_REMOTE_WAKEUP;
1287 break;
1288 default:
1289 ret_val = -EOPNOTSUPP;
1290 break;
1291 }
1292 if (ret_val == 0) {
1293 dum->devstatus &= ~(1 << w_value);
1294 *status = 0;
1295 }
1296 } else if (setup->bRequestType == Ep_Request) {
1297 /* endpoint halt */
1298 ep2 = find_endpoint(dum, w_index);
1299 if (!ep2) {
1300 ret_val = -EOPNOTSUPP;
1301 break;
1302 }
1303 if (!ep2->wedged)
1304 ep2->halted = 0;
1305 ret_val = 0;
1306 *status = 0;
1307 }
1308 break;
1309 case USB_REQ_GET_STATUS:
1310 if (setup->bRequestType == Dev_InRequest
1311 || setup->bRequestType == Intf_InRequest
1312 || setup->bRequestType == Ep_InRequest) {
1313 char *buf;
1314 /*
1315 * device: remote wakeup, selfpowered
1316 * interface: nothing
1317 * endpoint: halt
1318 */
1319 buf = (char *)urb->transfer_buffer;
1320 if (urb->transfer_buffer_length > 0) {
1321 if (setup->bRequestType == Ep_InRequest) {
1322 ep2 = find_endpoint(dum, w_index);
1323 if (!ep2) {
1324 ret_val = -EOPNOTSUPP;
1325 break;
1326 }
1327 buf[0] = ep2->halted;
1328 } else if (setup->bRequestType ==
1329 Dev_InRequest) {
1330 buf[0] = (u8)dum->devstatus;
1331 } else
1332 buf[0] = 0;
1333 }
1334 if (urb->transfer_buffer_length > 1)
1335 buf[1] = 0;
1336 urb->actual_length = min_t(u32, 2,
1337 urb->transfer_buffer_length);
1338 ret_val = 0;
1339 *status = 0;
1340 }
1341 break;
1342 }
1343 return ret_val;
1344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/* drive both sides of the transfers; looks like irq handlers to
1347 * both drivers except the callbacks aren't in_irq().
1348 */
1349static void dummy_timer (unsigned long _dum)
1350{
1351 struct dummy *dum = (struct dummy *) _dum;
1352 struct urbp *urbp, *tmp;
1353 unsigned long flags;
1354 int limit, total;
1355 int i;
1356
1357 /* simplistic model for one frame's bandwidth */
1358 switch (dum->gadget.speed) {
1359 case USB_SPEED_LOW:
1360 total = 8/*bytes*/ * 12/*packets*/;
1361 break;
1362 case USB_SPEED_FULL:
1363 total = 64/*bytes*/ * 19/*packets*/;
1364 break;
1365 case USB_SPEED_HIGH:
1366 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1367 break;
1368 default:
1369 dev_err (dummy_dev(dum), "bogus device speed\n");
1370 return;
1371 }
1372
1373 /* FIXME if HZ != 1000 this will probably misbehave ... */
1374
1375 /* look at each urb queued by the host side driver */
1376 spin_lock_irqsave (&dum->lock, flags);
1377
1378 if (!dum->udev) {
1379 dev_err (dummy_dev(dum),
1380 "timer fired with no URBs pending?\n");
1381 spin_unlock_irqrestore (&dum->lock, flags);
1382 return;
1383 }
1384
1385 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1386 if (!ep_name [i])
1387 break;
1388 dum->ep [i].already_seen = 0;
1389 }
1390
1391restart:
1392 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1393 struct urb *urb;
1394 struct dummy_request *req;
1395 u8 address;
1396 struct dummy_ep *ep = NULL;
1397 int type;
Alan Stern4d2f1102007-08-24 15:40:10 -04001398 int status = -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 urb = urbp->urb;
Alan Sterneb231052007-08-21 15:40:36 -04001401 if (urb->unlinked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 goto return_urb;
Alan Sterneb231052007-08-21 15:40:36 -04001403 else if (dum->rh_state != DUMMY_RH_RUNNING)
Alan Stern391eca92005-05-10 15:34:16 -04001404 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 type = usb_pipetype (urb->pipe);
1406
1407 /* used up this frame's non-periodic bandwidth?
1408 * FIXME there's infinite bandwidth for control and
1409 * periodic transfers ... unrealistic.
1410 */
1411 if (total <= 0 && type == PIPE_BULK)
1412 continue;
1413
1414 /* find the gadget's ep for this request (if configured) */
1415 address = usb_pipeendpoint (urb->pipe);
1416 if (usb_pipein (urb->pipe))
1417 address |= USB_DIR_IN;
1418 ep = find_endpoint(dum, address);
1419 if (!ep) {
1420 /* set_configuration() disagreement */
1421 dev_dbg (dummy_dev(dum),
1422 "no ep configured for urb %p\n",
1423 urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001424 status = -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 goto return_urb;
1426 }
1427
1428 if (ep->already_seen)
1429 continue;
1430 ep->already_seen = 1;
1431 if (ep == &dum->ep [0] && urb->error_count) {
1432 ep->setup_stage = 1; /* a new urb */
1433 urb->error_count = 0;
1434 }
1435 if (ep->halted && !ep->setup_stage) {
1436 /* NOTE: must not be iso! */
1437 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1438 ep->ep.name, urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001439 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 goto return_urb;
1441 }
1442 /* FIXME make sure both ends agree on maxpacket */
1443
1444 /* handle control requests */
1445 if (ep == &dum->ep [0] && ep->setup_stage) {
1446 struct usb_ctrlrequest setup;
1447 int value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 /* paranoia, in case of stale queued data */
1451 list_for_each_entry (req, &ep->queue, queue) {
1452 list_del_init (&req->queue);
1453 req->req.status = -EOVERFLOW;
Alan Sternd9b76252005-05-03 16:15:43 -04001454 dev_dbg (udc_dev(dum), "stale req = %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 req);
1456
1457 spin_unlock (&dum->lock);
1458 req->req.complete (&ep->ep, &req->req);
1459 spin_lock (&dum->lock);
1460 ep->already_seen = 0;
1461 goto restart;
1462 }
1463
1464 /* gadget driver never sees set_address or operations
1465 * on standard feature flags. some hardware doesn't
1466 * even expose them.
1467 */
1468 ep->last_io = jiffies;
1469 ep->setup_stage = 0;
1470 ep->halted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001472 value = handle_control_request(dum, urb, &setup,
1473 &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* gadget driver handles all other requests. block
1476 * until setup() returns; no reentrancy issues etc.
1477 */
1478 if (value > 0) {
1479 spin_unlock (&dum->lock);
1480 value = dum->driver->setup (&dum->gadget,
1481 &setup);
1482 spin_lock (&dum->lock);
1483
1484 if (value >= 0) {
1485 /* no delays (max 64KB data stage) */
1486 limit = 64*1024;
1487 goto treat_control_like_bulk;
1488 }
1489 /* error, see below */
1490 }
1491
1492 if (value < 0) {
1493 if (value != -EOPNOTSUPP)
Alan Sternd9b76252005-05-03 16:15:43 -04001494 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 "setup --> %d\n",
1496 value);
Alan Stern4d2f1102007-08-24 15:40:10 -04001497 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 urb->actual_length = 0;
1499 }
1500
1501 goto return_urb;
1502 }
1503
1504 /* non-control requests */
1505 limit = total;
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.
1512 */
1513 limit = max (limit, periodic_bytes (dum, ep));
Alan Stern4d2f1102007-08-24 15:40:10 -04001514 status = -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 break;
1516
1517 case PIPE_INTERRUPT:
1518 /* FIXME is it urb->interval since the last xfer?
1519 * this almost certainly polls too fast.
1520 */
1521 limit = max (limit, periodic_bytes (dum, ep));
1522 /* FALLTHROUGH */
1523
1524 // case PIPE_BULK: case PIPE_CONTROL:
1525 default:
1526 treat_control_like_bulk:
1527 ep->last_io = jiffies;
Alan Stern4d2f1102007-08-24 15:40:10 -04001528 total = transfer(dum, urb, ep, limit, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 break;
1530 }
1531
1532 /* incomplete transfer? */
Alan Stern4d2f1102007-08-24 15:40:10 -04001533 if (status == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 continue;
1535
1536return_urb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 list_del (&urbp->urbp_list);
1538 kfree (urbp);
1539 if (ep)
1540 ep->already_seen = ep->setup_stage = 0;
1541
Alan Sterne9df41c2007-08-08 11:48:02 -04001542 usb_hcd_unlink_urb_from_ep(dummy_to_hcd(dum), urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 spin_unlock (&dum->lock);
Alan Stern4a000272007-08-24 15:42:24 -04001544 usb_hcd_giveback_urb(dummy_to_hcd(dum), urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 spin_lock (&dum->lock);
1546
1547 goto restart;
1548 }
1549
Alan Stern391eca92005-05-10 15:34:16 -04001550 if (list_empty (&dum->urbp_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 usb_put_dev (dum->udev);
1552 dum->udev = NULL;
Alan Stern391eca92005-05-10 15:34:16 -04001553 } 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
1558 spin_unlock_irqrestore (&dum->lock, flags);
1559}
1560
1561/*-------------------------------------------------------------------------*/
1562
1563#define PORT_C_MASK \
Alan Sternc2db8b52005-04-29 16:30:48 -04001564 ((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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1571{
1572 struct dummy *dum;
1573 unsigned long flags;
Alan Stern391eca92005-05-10 15:34:16 -04001574 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 dum = hcd_to_dummy (hcd);
1577
1578 spin_lock_irqsave (&dum->lock, flags);
Alan Stern541c7d42010-06-22 16:39:10 -04001579 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04001580 goto done;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001581
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);
1586 }
1587
Alan Stern391eca92005-05-10 15:34:16 -04001588 if ((dum->port_status & PORT_C_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 *buf = (1 << 1);
1590 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
Alan Stern391eca92005-05-10 15:34:16 -04001591 dum->port_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 retval = 1;
Alan Stern391eca92005-05-10 15:34:16 -04001593 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1594 usb_hcd_resume_root_hub (hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
Alan Stern391eca92005-05-10 15:34:16 -04001596done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 spin_unlock_irqrestore (&dum->lock, flags);
1598 return retval;
1599}
1600
1601static inline void
1602hub_descriptor (struct usb_hub_descriptor *desc)
1603{
1604 memset (desc, 0, sizeof *desc);
1605 desc->bDescriptorType = 0x29;
1606 desc->bDescLength = 9;
Al Virofd05e722008-04-28 07:00:16 +01001607 desc->wHubCharacteristics = cpu_to_le16(0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 desc->bNbrPorts = 1;
John Youndbe79bb2001-09-17 00:00:00 -07001609 desc->u.hs.DeviceRemovable[0] = 0xff;
1610 desc->u.hs.DeviceRemovable[1] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
1613static int dummy_hub_control (
1614 struct usb_hcd *hcd,
1615 u16 typeReq,
1616 u16 wValue,
1617 u16 wIndex,
1618 char *buf,
1619 u16 wLength
1620) {
1621 struct dummy *dum;
1622 int retval = 0;
1623 unsigned long flags;
1624
Alan Stern541c7d42010-06-22 16:39:10 -04001625 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04001626 return -ETIMEDOUT;
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 dum = hcd_to_dummy (hcd);
1629 spin_lock_irqsave (&dum->lock, flags);
1630 switch (typeReq) {
1631 case ClearHubFeature:
1632 break;
1633 case ClearPortFeature:
1634 switch (wValue) {
1635 case USB_PORT_FEAT_SUSPEND:
Alan Sternc2db8b52005-04-29 16:30:48 -04001636 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 /* 20msec resume signaling */
1638 dum->resuming = 1;
1639 dum->re_timeout = jiffies +
Alan Sternf1c39fa2005-05-03 16:24:04 -04001640 msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642 break;
1643 case USB_PORT_FEAT_POWER:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001644 if (dum->port_status & USB_PORT_STAT_POWER)
1645 dev_dbg (dummy_dev(dum), "power-off\n");
1646 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 default:
1648 dum->port_status &= ~(1 << wValue);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001649 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651 break;
1652 case GetHubDescriptor:
1653 hub_descriptor ((struct usb_hub_descriptor *) buf);
1654 break;
1655 case GetHubStatus:
Harvey Harrison551509d2009-02-11 14:11:36 -08001656 *(__le32 *) buf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 break;
1658 case GetPortStatus:
1659 if (wIndex != 1)
1660 retval = -EPIPE;
1661
1662 /* whoever resets or resumes must GetPortStatus to
1663 * complete it!!
1664 */
Alan Sternf1c39fa2005-05-03 16:24:04 -04001665 if (dum->resuming &&
1666 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001667 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1668 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001670 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1671 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001672 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1673 dum->port_status &= ~USB_PORT_STAT_RESET;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001674 if (dum->pullup) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 dum->port_status |= USB_PORT_STAT_ENABLE;
1676 /* give it the best speed we agree on */
1677 dum->gadget.speed = dum->driver->speed;
1678 dum->gadget.ep0->maxpacket = 64;
1679 switch (dum->gadget.speed) {
1680 case USB_SPEED_HIGH:
1681 dum->port_status |=
1682 USB_PORT_STAT_HIGH_SPEED;
1683 break;
1684 case USB_SPEED_LOW:
1685 dum->gadget.ep0->maxpacket = 8;
1686 dum->port_status |=
1687 USB_PORT_STAT_LOW_SPEED;
1688 break;
1689 default:
1690 dum->gadget.speed = USB_SPEED_FULL;
1691 break;
1692 }
1693 }
1694 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001695 set_link_state (dum);
Alan Sterncc095b02005-05-10 15:28:38 -04001696 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1697 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 break;
1699 case SetHubFeature:
1700 retval = -EPIPE;
1701 break;
1702 case SetPortFeature:
1703 switch (wValue) {
1704 case USB_PORT_FEAT_SUSPEND:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001705 if (dum->active) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001706 dum->port_status |= USB_PORT_STAT_SUSPEND;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001707
1708 /* HNP would happen here; for now we
1709 * assume b_bus_req is always true.
1710 */
1711 set_link_state (dum);
1712 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1713 & dum->devstatus) != 0)
1714 dev_dbg (dummy_dev(dum),
Alan Stern5742b0c2005-05-02 11:25:17 -04001715 "no HNP yet!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717 break;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001718 case USB_PORT_FEAT_POWER:
1719 dum->port_status |= USB_PORT_STAT_POWER;
1720 set_link_state (dum);
1721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 case USB_PORT_FEAT_RESET:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001723 /* if it's already enabled, disable */
1724 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1725 | USB_PORT_STAT_LOW_SPEED
1726 | USB_PORT_STAT_HIGH_SPEED);
Alan Stern391eca92005-05-10 15:34:16 -04001727 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 /* 50msec reset signaling */
1729 dum->re_timeout = jiffies + msecs_to_jiffies(50);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001730 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 default:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001732 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1733 dum->port_status |= (1 << wValue);
1734 set_link_state (dum);
1735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737 break;
1738
1739 default:
1740 dev_dbg (dummy_dev(dum),
1741 "hub control req%04x v%04x i%04x l%d\n",
1742 typeReq, wValue, wIndex, wLength);
1743
1744 /* "protocol stall" on error */
1745 retval = -EPIPE;
1746 }
1747 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -04001748
1749 if ((dum->port_status & PORT_C_MASK) != 0)
1750 usb_hcd_poll_rh_status (hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return retval;
1752}
1753
Alan Stern0c0382e2005-10-13 17:08:02 -04001754static int dummy_bus_suspend (struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04001755{
1756 struct dummy *dum = hcd_to_dummy (hcd);
1757
Harvey Harrison441b62c2008-03-03 16:08:34 -08001758 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern3cf0a222005-11-29 12:08:15 -05001759
Alan Stern391eca92005-05-10 15:34:16 -04001760 spin_lock_irq (&dum->lock);
1761 dum->rh_state = DUMMY_RH_SUSPENDED;
1762 set_link_state (dum);
Alan Stern3cf0a222005-11-29 12:08:15 -05001763 hcd->state = HC_STATE_SUSPENDED;
Alan Stern391eca92005-05-10 15:34:16 -04001764 spin_unlock_irq (&dum->lock);
1765 return 0;
1766}
1767
Alan Stern0c0382e2005-10-13 17:08:02 -04001768static int dummy_bus_resume (struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04001769{
1770 struct dummy *dum = hcd_to_dummy (hcd);
Alan Stern3cf0a222005-11-29 12:08:15 -05001771 int rc = 0;
1772
Harvey Harrison441b62c2008-03-03 16:08:34 -08001773 dev_dbg (&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04001774
1775 spin_lock_irq (&dum->lock);
Alan Stern541c7d42010-06-22 16:39:10 -04001776 if (!HCD_HW_ACCESSIBLE(hcd)) {
Alan Sterncfa59da2007-06-21 16:25:35 -04001777 rc = -ESHUTDOWN;
Alan Stern3cf0a222005-11-29 12:08:15 -05001778 } else {
1779 dum->rh_state = DUMMY_RH_RUNNING;
1780 set_link_state (dum);
1781 if (!list_empty(&dum->urbp_list))
1782 mod_timer (&dum->timer, jiffies);
1783 hcd->state = HC_STATE_RUNNING;
1784 }
Alan Stern391eca92005-05-10 15:34:16 -04001785 spin_unlock_irq (&dum->lock);
Alan Stern3cf0a222005-11-29 12:08:15 -05001786 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04001787}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789/*-------------------------------------------------------------------------*/
1790
1791static inline ssize_t
1792show_urb (char *buf, size_t size, struct urb *urb)
1793{
1794 int ep = usb_pipeendpoint (urb->pipe);
1795
1796 return snprintf (buf, size,
1797 "urb/%p %s ep%d%s%s len %d/%d\n",
1798 urb,
1799 ({ char *s;
1800 switch (urb->dev->speed) {
1801 case USB_SPEED_LOW: s = "ls"; break;
1802 case USB_SPEED_FULL: s = "fs"; break;
1803 case USB_SPEED_HIGH: s = "hs"; break;
1804 default: s = "?"; break;
1805 }; s; }),
1806 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1807 ({ char *s; \
1808 switch (usb_pipetype (urb->pipe)) { \
1809 case PIPE_CONTROL: s = ""; break; \
1810 case PIPE_BULK: s = "-bulk"; break; \
1811 case PIPE_INTERRUPT: s = "-int"; break; \
1812 default: s = "-iso"; break; \
1813 }; s;}),
1814 urb->actual_length, urb->transfer_buffer_length);
1815}
1816
1817static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -04001818show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct usb_hcd *hcd = dev_get_drvdata (dev);
1821 struct dummy *dum = hcd_to_dummy (hcd);
1822 struct urbp *urbp;
1823 size_t size = 0;
1824 unsigned long flags;
1825
1826 spin_lock_irqsave (&dum->lock, flags);
1827 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1828 size_t temp;
1829
1830 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1831 buf += temp;
1832 size += temp;
1833 }
1834 spin_unlock_irqrestore (&dum->lock, flags);
1835
1836 return size;
1837}
1838static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1839
1840static int dummy_start (struct usb_hcd *hcd)
1841{
1842 struct dummy *dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 dum = hcd_to_dummy (hcd);
1845
1846 /*
1847 * MASTER side init ... we emulate a root hub that'll only ever
1848 * talk to one device (the slave side). Also appears in sysfs,
1849 * just like more familiar pci-based HCDs.
1850 */
1851 spin_lock_init (&dum->lock);
1852 init_timer (&dum->timer);
1853 dum->timer.function = dummy_timer;
1854 dum->timer.data = (unsigned long) dum;
Alan Stern391eca92005-05-10 15:34:16 -04001855 dum->rh_state = DUMMY_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 INIT_LIST_HEAD (&dum->urbp_list);
1858
Alan Sterncaf29f62007-12-06 11:10:39 -05001859 hcd->power_budget = POWER_BUDGET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 hcd->state = HC_STATE_RUNNING;
Alan Stern685eb932005-05-03 16:27:26 -04001861 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Alan Stern5742b0c2005-05-02 11:25:17 -04001863#ifdef CONFIG_USB_OTG
1864 hcd->self.otg_port = 1;
1865#endif
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
Alan Sternefd54a32006-09-25 11:55:56 -04001868 return device_create_file (dummy_dev(dum), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
1871static void dummy_stop (struct usb_hcd *hcd)
1872{
1873 struct dummy *dum;
1874
1875 dum = hcd_to_dummy (hcd);
1876
1877 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 dev_info (dummy_dev(dum), "stopped\n");
1879}
1880
1881/*-------------------------------------------------------------------------*/
1882
1883static int dummy_h_get_frame (struct usb_hcd *hcd)
1884{
1885 return dummy_g_get_frame (NULL);
1886}
1887
1888static const struct hc_driver dummy_hcd = {
1889 .description = (char *) driver_name,
1890 .product_desc = "Dummy host controller",
1891 .hcd_priv_size = sizeof(struct dummy),
1892
1893 .flags = HCD_USB2,
1894
1895 .start = dummy_start,
1896 .stop = dummy_stop,
1897
1898 .urb_enqueue = dummy_urb_enqueue,
1899 .urb_dequeue = dummy_urb_dequeue,
1900
1901 .get_frame_number = dummy_h_get_frame,
1902
1903 .hub_status_data = dummy_hub_status,
1904 .hub_control = dummy_hub_control,
Alan Stern0c0382e2005-10-13 17:08:02 -04001905 .bus_suspend = dummy_bus_suspend,
1906 .bus_resume = dummy_bus_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907};
1908
Alan Stern8364d6b2005-11-14 12:16:30 -05001909static int dummy_hcd_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 struct usb_hcd *hcd;
1912 int retval;
1913
Alan Stern8364d6b2005-11-14 12:16:30 -05001914 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Kay Sievers7071a3c2008-05-02 06:02:41 +02001916 hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (!hcd)
1918 return -ENOMEM;
1919 the_controller = hcd_to_dummy (hcd);
Alan Sternc5c69f32011-06-07 11:33:01 -04001920 hcd->has_tt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 retval = usb_add_hcd(hcd, 0, 0);
1923 if (retval != 0) {
1924 usb_put_hcd (hcd);
1925 the_controller = NULL;
1926 }
1927 return retval;
1928}
1929
Alan Stern8364d6b2005-11-14 12:16:30 -05001930static int dummy_hcd_remove (struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 struct usb_hcd *hcd;
1933
Alan Stern8364d6b2005-11-14 12:16:30 -05001934 hcd = platform_get_drvdata (pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 usb_remove_hcd (hcd);
1936 usb_put_hcd (hcd);
1937 the_controller = NULL;
Alan Sternd9b76252005-05-03 16:15:43 -04001938 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
Alan Stern8364d6b2005-11-14 12:16:30 -05001941static int dummy_hcd_suspend (struct platform_device *pdev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -04001942{
1943 struct usb_hcd *hcd;
Alan Stern3cf0a222005-11-29 12:08:15 -05001944 struct dummy *dum;
1945 int rc = 0;
Alan Stern391eca92005-05-10 15:34:16 -04001946
Harvey Harrison441b62c2008-03-03 16:08:34 -08001947 dev_dbg (&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04001948
Alan Stern3cf0a222005-11-29 12:08:15 -05001949 hcd = platform_get_drvdata (pdev);
1950 dum = hcd_to_dummy (hcd);
1951 if (dum->rh_state == DUMMY_RH_RUNNING) {
1952 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
1953 rc = -EBUSY;
1954 } else
1955 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1956 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04001957}
1958
Alan Stern8364d6b2005-11-14 12:16:30 -05001959static int dummy_hcd_resume (struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -04001960{
1961 struct usb_hcd *hcd;
1962
Harvey Harrison441b62c2008-03-03 16:08:34 -08001963 dev_dbg (&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04001964
Alan Stern3cf0a222005-11-29 12:08:15 -05001965 hcd = platform_get_drvdata (pdev);
1966 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Alan Stern391eca92005-05-10 15:34:16 -04001967 usb_hcd_poll_rh_status (hcd);
1968 return 0;
1969}
1970
Russell King3ae5eae2005-11-09 22:32:44 +00001971static struct platform_driver dummy_hcd_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04001972 .probe = dummy_hcd_probe,
1973 .remove = dummy_hcd_remove,
Alan Stern391eca92005-05-10 15:34:16 -04001974 .suspend = dummy_hcd_suspend,
1975 .resume = dummy_hcd_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001976 .driver = {
1977 .name = (char *) driver_name,
1978 .owner = THIS_MODULE,
1979 },
Alan Sternd9b76252005-05-03 16:15:43 -04001980};
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982/*-------------------------------------------------------------------------*/
1983
Alan Sterna89a2cd2008-04-07 15:03:25 -04001984static struct platform_device *the_udc_pdev;
1985static struct platform_device *the_hcd_pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987static int __init init (void)
1988{
Alan Sterna89a2cd2008-04-07 15:03:25 -04001989 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 if (usb_disabled ())
1992 return -ENODEV;
Alan Sternd9b76252005-05-03 16:15:43 -04001993
Alan Sterna89a2cd2008-04-07 15:03:25 -04001994 the_hcd_pdev = platform_device_alloc(driver_name, -1);
1995 if (!the_hcd_pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return retval;
Alan Sterna89a2cd2008-04-07 15:03:25 -04001997 the_udc_pdev = platform_device_alloc(gadget_name, -1);
1998 if (!the_udc_pdev)
1999 goto err_alloc_udc;
Alan Sternd9b76252005-05-03 16:15:43 -04002000
Alan Sterna89a2cd2008-04-07 15:03:25 -04002001 retval = platform_driver_register(&dummy_hcd_driver);
2002 if (retval < 0)
2003 goto err_register_hcd_driver;
2004 retval = platform_driver_register(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002005 if (retval < 0)
2006 goto err_register_udc_driver;
2007
Alan Sterna89a2cd2008-04-07 15:03:25 -04002008 retval = platform_device_add(the_hcd_pdev);
Alan Sternd9b76252005-05-03 16:15:43 -04002009 if (retval < 0)
Alan Sterna89a2cd2008-04-07 15:03:25 -04002010 goto err_add_hcd;
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002011 if (!the_controller) {
2012 /*
2013 * The hcd was added successfully but its probe function failed
2014 * for some reason.
2015 */
2016 retval = -EINVAL;
2017 goto err_add_udc;
2018 }
Alan Sterna89a2cd2008-04-07 15:03:25 -04002019 retval = platform_device_add(the_udc_pdev);
Alan Sternd9b76252005-05-03 16:15:43 -04002020 if (retval < 0)
Alan Sterna89a2cd2008-04-07 15:03:25 -04002021 goto err_add_udc;
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002022 if (!platform_get_drvdata(the_udc_pdev)) {
2023 /*
2024 * The udc was added successfully but its probe function failed
2025 * for some reason.
2026 */
2027 retval = -EINVAL;
2028 goto err_probe_udc;
2029 }
Alan Sternd9b76252005-05-03 16:15:43 -04002030 return retval;
2031
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002032err_probe_udc:
2033 platform_device_del(the_udc_pdev);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002034err_add_udc:
2035 platform_device_del(the_hcd_pdev);
2036err_add_hcd:
2037 platform_driver_unregister(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002038err_register_udc_driver:
Alan Sterna89a2cd2008-04-07 15:03:25 -04002039 platform_driver_unregister(&dummy_hcd_driver);
2040err_register_hcd_driver:
2041 platform_device_put(the_udc_pdev);
2042err_alloc_udc:
2043 platform_device_put(the_hcd_pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return retval;
2045}
2046module_init (init);
2047
2048static void __exit cleanup (void)
2049{
Alan Sterna89a2cd2008-04-07 15:03:25 -04002050 platform_device_unregister(the_udc_pdev);
2051 platform_device_unregister(the_hcd_pdev);
2052 platform_driver_unregister(&dummy_udc_driver);
2053 platform_driver_unregister(&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055module_exit (cleanup);