blob: 6b93dbbf324669d7a6a0181fc768a0aa6122289c [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
37#define DEBUG
38
39#include <linux/config.h>
40#include <linux/module.h>
41#include <linux/kernel.h>
42#include <linux/delay.h>
43#include <linux/ioport.h>
44#include <linux/sched.h>
45#include <linux/slab.h>
46#include <linux/smp_lock.h>
47#include <linux/errno.h>
48#include <linux/init.h>
49#include <linux/timer.h>
50#include <linux/list.h>
51#include <linux/interrupt.h>
52#include <linux/version.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010053#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/usb.h>
55#include <linux/usb_gadget.h>
56
57#include <asm/byteorder.h>
58#include <asm/io.h>
59#include <asm/irq.h>
60#include <asm/system.h>
61#include <asm/unaligned.h>
62
63
64#include "../core/hcd.h"
65
66
67#define DRIVER_DESC "USB Host+Gadget Emulator"
Alan Stern391eca92005-05-10 15:34:16 -040068#define DRIVER_VERSION "02 May 2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70static const char driver_name [] = "dummy_hcd";
71static const char driver_desc [] = "USB Host+Gadget Emulator";
72
73static const char gadget_name [] = "dummy_udc";
74
75MODULE_DESCRIPTION (DRIVER_DESC);
76MODULE_AUTHOR ("David Brownell");
77MODULE_LICENSE ("GPL");
78
79/*-------------------------------------------------------------------------*/
80
81/* gadget side driver data structres */
82struct dummy_ep {
83 struct list_head queue;
84 unsigned long last_io; /* jiffies timestamp */
85 struct usb_gadget *gadget;
86 const struct usb_endpoint_descriptor *desc;
87 struct usb_ep ep;
88 unsigned halted : 1;
89 unsigned already_seen : 1;
90 unsigned setup_stage : 1;
91};
92
93struct dummy_request {
94 struct list_head queue; /* ep's requests */
95 struct usb_request req;
96};
97
98static inline struct dummy_ep *usb_ep_to_dummy_ep (struct usb_ep *_ep)
99{
100 return container_of (_ep, struct dummy_ep, ep);
101}
102
103static inline struct dummy_request *usb_request_to_dummy_request
104 (struct usb_request *_req)
105{
106 return container_of (_req, struct dummy_request, req);
107}
108
109/*-------------------------------------------------------------------------*/
110
111/*
112 * Every device has ep0 for control requests, plus up to 30 more endpoints,
113 * in one of two types:
114 *
115 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
116 * number can be changed. Names like "ep-a" are used for this type.
117 *
118 * - Fixed Function: in other cases. some characteristics may be mutable;
119 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
120 *
121 * Gadget drivers are responsible for not setting up conflicting endpoint
122 * configurations, illegal or unsupported packet lengths, and so on.
123 */
124
125static const char ep0name [] = "ep0";
126
127static const char *const ep_name [] = {
128 ep0name, /* everyone has ep0 */
129
130 /* act like a net2280: high speed, six configurable endpoints */
131 "ep-a", "ep-b", "ep-c", "ep-d", "ep-e", "ep-f",
132
133 /* or like pxa250: fifteen fixed function endpoints */
134 "ep1in-bulk", "ep2out-bulk", "ep3in-iso", "ep4out-iso", "ep5in-int",
135 "ep6in-bulk", "ep7out-bulk", "ep8in-iso", "ep9out-iso", "ep10in-int",
136 "ep11in-bulk", "ep12out-bulk", "ep13in-iso", "ep14out-iso",
137 "ep15in-int",
138
139 /* or like sa1100: two fixed function endpoints */
140 "ep1out-bulk", "ep2in-bulk",
141};
142#define DUMMY_ENDPOINTS (sizeof(ep_name)/sizeof(char *))
143
Alan Sternd9b76252005-05-03 16:15:43 -0400144/*-------------------------------------------------------------------------*/
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define FIFO_SIZE 64
147
148struct urbp {
149 struct urb *urb;
150 struct list_head urbp_list;
151};
152
Alan Stern391eca92005-05-10 15:34:16 -0400153
154enum dummy_rh_state {
155 DUMMY_RH_RESET,
156 DUMMY_RH_SUSPENDED,
157 DUMMY_RH_RUNNING
158};
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160struct dummy {
161 spinlock_t lock;
162
163 /*
164 * SLAVE/GADGET side support
165 */
166 struct dummy_ep ep [DUMMY_ENDPOINTS];
167 int address;
168 struct usb_gadget gadget;
169 struct usb_gadget_driver *driver;
170 struct dummy_request fifo_req;
171 u8 fifo_buf [FIFO_SIZE];
172 u16 devstatus;
Alan Stern391eca92005-05-10 15:34:16 -0400173 unsigned udc_suspended:1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400174 unsigned pullup:1;
175 unsigned active:1;
176 unsigned old_active:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /*
179 * MASTER/HOST side support
180 */
Alan Stern391eca92005-05-10 15:34:16 -0400181 enum dummy_rh_state rh_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct timer_list timer;
183 u32 port_status;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400184 u32 old_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 unsigned resuming:1;
186 unsigned long re_timeout;
187
188 struct usb_device *udev;
189 struct list_head urbp_list;
190};
191
192static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
193{
194 return (struct dummy *) (hcd->hcd_priv);
195}
196
197static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
198{
199 return container_of((void *) dum, struct usb_hcd, hcd_priv);
200}
201
202static inline struct device *dummy_dev (struct dummy *dum)
203{
204 return dummy_to_hcd(dum)->self.controller;
205}
206
Alan Sternd9b76252005-05-03 16:15:43 -0400207static inline struct device *udc_dev (struct dummy *dum)
208{
209 return dum->gadget.dev.parent;
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
213{
214 return container_of (ep->gadget, struct dummy, gadget);
215}
216
217static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
218{
219 return container_of (gadget, struct dummy, gadget);
220}
221
222static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
223{
224 return container_of (dev, struct dummy, gadget.dev);
225}
226
227static struct dummy *the_controller;
228
229/*-------------------------------------------------------------------------*/
230
Alan Sternf1c39fa2005-05-03 16:24:04 -0400231/* SLAVE/GADGET SIDE UTILITY ROUTINES */
232
233/* called with spinlock held */
234static void nuke (struct dummy *dum, struct dummy_ep *ep)
235{
236 while (!list_empty (&ep->queue)) {
237 struct dummy_request *req;
238
239 req = list_entry (ep->queue.next, struct dummy_request, queue);
240 list_del_init (&req->queue);
241 req->req.status = -ESHUTDOWN;
242
243 spin_unlock (&dum->lock);
244 req->req.complete (&ep->ep, &req->req);
245 spin_lock (&dum->lock);
246 }
247}
248
249/* caller must hold lock */
250static void
251stop_activity (struct dummy *dum)
252{
253 struct dummy_ep *ep;
254
255 /* prevent any more requests */
256 dum->address = 0;
257
258 /* The timer is left running so that outstanding URBs can fail */
259
260 /* nuke any pending requests first, so driver i/o is quiesced */
261 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
262 nuke (dum, ep);
263
264 /* driver now does any non-usb quiescing necessary */
265}
266
267/* caller must hold lock */
268static void
269set_link_state (struct dummy *dum)
270{
271 dum->active = 0;
272 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
273 dum->port_status = 0;
Alan Stern391eca92005-05-10 15:34:16 -0400274
275 /* UDC suspend must cause a disconnect */
276 else if (!dum->pullup || dum->udc_suspended) {
Alan Sternf1c39fa2005-05-03 16:24:04 -0400277 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
278 USB_PORT_STAT_ENABLE |
279 USB_PORT_STAT_LOW_SPEED |
280 USB_PORT_STAT_HIGH_SPEED |
281 USB_PORT_STAT_SUSPEND);
282 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
283 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
284 } else {
285 dum->port_status |= USB_PORT_STAT_CONNECTION;
286 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
287 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
288 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
289 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
Alan Stern391eca92005-05-10 15:34:16 -0400290 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
291 dum->rh_state != DUMMY_RH_SUSPENDED)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400292 dum->active = 1;
293 }
294
295 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
296 dum->resuming = 0;
297
298 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
299 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
300 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
301 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
302 dum->driver) {
303 stop_activity (dum);
304 spin_unlock (&dum->lock);
305 dum->driver->disconnect (&dum->gadget);
306 spin_lock (&dum->lock);
307 }
308 } else if (dum->active != dum->old_active) {
309 if (dum->old_active && dum->driver->suspend) {
310 spin_unlock (&dum->lock);
311 dum->driver->suspend (&dum->gadget);
312 spin_lock (&dum->lock);
313 } else if (!dum->old_active && dum->driver->resume) {
314 spin_unlock (&dum->lock);
315 dum->driver->resume (&dum->gadget);
316 spin_lock (&dum->lock);
317 }
318 }
319
320 dum->old_status = dum->port_status;
321 dum->old_active = dum->active;
322}
323
324/*-------------------------------------------------------------------------*/
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* SLAVE/GADGET SIDE DRIVER
327 *
328 * This only tracks gadget state. All the work is done when the host
329 * side tries some (emulated) i/o operation. Real device controller
330 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
331 */
332
333#define is_enabled(dum) \
334 (dum->port_status & USB_PORT_STAT_ENABLE)
335
336static int
337dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
338{
339 struct dummy *dum;
340 struct dummy_ep *ep;
341 unsigned max;
342 int retval;
343
344 ep = usb_ep_to_dummy_ep (_ep);
345 if (!_ep || !desc || ep->desc || _ep->name == ep0name
346 || desc->bDescriptorType != USB_DT_ENDPOINT)
347 return -EINVAL;
348 dum = ep_to_dummy (ep);
349 if (!dum->driver || !is_enabled (dum))
350 return -ESHUTDOWN;
351 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
352
353 /* drivers must not request bad settings, since lower levels
354 * (hardware or its drivers) may not check. some endpoints
355 * can't do iso, many have maxpacket limitations, etc.
356 *
357 * since this "hardware" driver is here to help debugging, we
358 * have some extra sanity checks. (there could be more though,
359 * especially for "ep9out" style fixed function ones.)
360 */
361 retval = -EINVAL;
362 switch (desc->bmAttributes & 0x03) {
363 case USB_ENDPOINT_XFER_BULK:
364 if (strstr (ep->ep.name, "-iso")
365 || strstr (ep->ep.name, "-int")) {
366 goto done;
367 }
368 switch (dum->gadget.speed) {
369 case USB_SPEED_HIGH:
370 if (max == 512)
371 break;
372 /* conserve return statements */
373 default:
374 switch (max) {
375 case 8: case 16: case 32: case 64:
376 /* we'll fake any legal size */
377 break;
378 default:
379 case USB_SPEED_LOW:
380 goto done;
381 }
382 }
383 break;
384 case USB_ENDPOINT_XFER_INT:
385 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
386 goto done;
387 /* real hardware might not handle all packet sizes */
388 switch (dum->gadget.speed) {
389 case USB_SPEED_HIGH:
390 if (max <= 1024)
391 break;
392 /* save a return statement */
393 case USB_SPEED_FULL:
394 if (max <= 64)
395 break;
396 /* save a return statement */
397 default:
398 if (max <= 8)
399 break;
400 goto done;
401 }
402 break;
403 case USB_ENDPOINT_XFER_ISOC:
404 if (strstr (ep->ep.name, "-bulk")
405 || strstr (ep->ep.name, "-int"))
406 goto done;
407 /* real hardware might not handle all packet sizes */
408 switch (dum->gadget.speed) {
409 case USB_SPEED_HIGH:
410 if (max <= 1024)
411 break;
412 /* save a return statement */
413 case USB_SPEED_FULL:
414 if (max <= 1023)
415 break;
416 /* save a return statement */
417 default:
418 goto done;
419 }
420 break;
421 default:
422 /* few chips support control except on ep0 */
423 goto done;
424 }
425
426 _ep->maxpacket = max;
427 ep->desc = desc;
428
Alan Sternd9b76252005-05-03 16:15:43 -0400429 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 _ep->name,
431 desc->bEndpointAddress & 0x0f,
432 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
433 ({ char *val;
434 switch (desc->bmAttributes & 0x03) {
435 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
436 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
437 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
438 default: val = "ctrl"; break;
439 }; val; }),
440 max);
441
442 /* at this point real hardware should be NAKing transfers
443 * to that endpoint, until a buffer is queued to it.
444 */
445 retval = 0;
446done:
447 return retval;
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static int dummy_disable (struct usb_ep *_ep)
451{
452 struct dummy_ep *ep;
453 struct dummy *dum;
454 unsigned long flags;
455 int retval;
456
457 ep = usb_ep_to_dummy_ep (_ep);
458 if (!_ep || !ep->desc || _ep->name == ep0name)
459 return -EINVAL;
460 dum = ep_to_dummy (ep);
461
462 spin_lock_irqsave (&dum->lock, flags);
463 ep->desc = NULL;
464 retval = 0;
465 nuke (dum, ep);
466 spin_unlock_irqrestore (&dum->lock, flags);
467
Alan Sternd9b76252005-05-03 16:15:43 -0400468 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return retval;
470}
471
472static struct usb_request *
Al Viro55016f12005-10-21 03:21:58 -0400473dummy_alloc_request (struct usb_ep *_ep, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct dummy_ep *ep;
476 struct dummy_request *req;
477
478 if (!_ep)
479 return NULL;
480 ep = usb_ep_to_dummy_ep (_ep);
481
482 req = kmalloc (sizeof *req, mem_flags);
483 if (!req)
484 return NULL;
485 memset (req, 0, sizeof *req);
486 INIT_LIST_HEAD (&req->queue);
487 return &req->req;
488}
489
490static void
491dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
492{
493 struct dummy_ep *ep;
494 struct dummy_request *req;
495
496 ep = usb_ep_to_dummy_ep (_ep);
497 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
498 return;
499
500 req = usb_request_to_dummy_request (_req);
501 WARN_ON (!list_empty (&req->queue));
502 kfree (req);
503}
504
505static void *
506dummy_alloc_buffer (
507 struct usb_ep *_ep,
508 unsigned bytes,
509 dma_addr_t *dma,
Al Viro55016f12005-10-21 03:21:58 -0400510 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511) {
512 char *retval;
513 struct dummy_ep *ep;
514 struct dummy *dum;
515
516 ep = usb_ep_to_dummy_ep (_ep);
517 dum = ep_to_dummy (ep);
518
519 if (!dum->driver)
520 return NULL;
521 retval = kmalloc (bytes, mem_flags);
522 *dma = (dma_addr_t) retval;
523 return retval;
524}
525
526static void
527dummy_free_buffer (
528 struct usb_ep *_ep,
529 void *buf,
530 dma_addr_t dma,
531 unsigned bytes
532) {
533 if (bytes)
534 kfree (buf);
535}
536
537static void
538fifo_complete (struct usb_ep *ep, struct usb_request *req)
539{
540}
541
542static int
Olav Kongas5db539e2005-06-23 20:25:36 +0300543dummy_queue (struct usb_ep *_ep, struct usb_request *_req,
Al Viro55016f12005-10-21 03:21:58 -0400544 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct dummy_ep *ep;
547 struct dummy_request *req;
548 struct dummy *dum;
549 unsigned long flags;
550
551 req = usb_request_to_dummy_request (_req);
552 if (!_req || !list_empty (&req->queue) || !_req->complete)
553 return -EINVAL;
554
555 ep = usb_ep_to_dummy_ep (_ep);
556 if (!_ep || (!ep->desc && _ep->name != ep0name))
557 return -EINVAL;
558
559 dum = ep_to_dummy (ep);
560 if (!dum->driver || !is_enabled (dum))
561 return -ESHUTDOWN;
562
563#if 0
Alan Sternd9b76252005-05-03 16:15:43 -0400564 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 ep, _req, _ep->name, _req->length, _req->buf);
566#endif
567
568 _req->status = -EINPROGRESS;
569 _req->actual = 0;
570 spin_lock_irqsave (&dum->lock, flags);
571
572 /* implement an emulated single-request FIFO */
573 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
574 list_empty (&dum->fifo_req.queue) &&
575 list_empty (&ep->queue) &&
576 _req->length <= FIFO_SIZE) {
577 req = &dum->fifo_req;
578 req->req = *_req;
579 req->req.buf = dum->fifo_buf;
580 memcpy (dum->fifo_buf, _req->buf, _req->length);
581 req->req.context = dum;
582 req->req.complete = fifo_complete;
583
584 spin_unlock (&dum->lock);
585 _req->actual = _req->length;
586 _req->status = 0;
587 _req->complete (_ep, _req);
588 spin_lock (&dum->lock);
589 }
590 list_add_tail (&req->queue, &ep->queue);
591 spin_unlock_irqrestore (&dum->lock, flags);
592
593 /* real hardware would likely enable transfers here, in case
594 * it'd been left NAKing.
595 */
596 return 0;
597}
598
599static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
600{
601 struct dummy_ep *ep;
602 struct dummy *dum;
603 int retval = -EINVAL;
604 unsigned long flags;
605 struct dummy_request *req = NULL;
606
607 if (!_ep || !_req)
608 return retval;
609 ep = usb_ep_to_dummy_ep (_ep);
610 dum = ep_to_dummy (ep);
611
612 if (!dum->driver)
613 return -ESHUTDOWN;
614
615 spin_lock_irqsave (&dum->lock, flags);
616 list_for_each_entry (req, &ep->queue, queue) {
617 if (&req->req == _req) {
618 list_del_init (&req->queue);
619 _req->status = -ECONNRESET;
620 retval = 0;
621 break;
622 }
623 }
624 spin_unlock_irqrestore (&dum->lock, flags);
625
626 if (retval == 0) {
Alan Sternd9b76252005-05-03 16:15:43 -0400627 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 "dequeued req %p from %s, len %d buf %p\n",
629 req, _ep->name, _req->length, _req->buf);
630 _req->complete (_ep, _req);
631 }
632 return retval;
633}
634
635static int
636dummy_set_halt (struct usb_ep *_ep, int value)
637{
638 struct dummy_ep *ep;
639 struct dummy *dum;
640
641 if (!_ep)
642 return -EINVAL;
643 ep = usb_ep_to_dummy_ep (_ep);
644 dum = ep_to_dummy (ep);
645 if (!dum->driver)
646 return -ESHUTDOWN;
647 if (!value)
648 ep->halted = 0;
649 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
650 !list_empty (&ep->queue))
651 return -EAGAIN;
652 else
653 ep->halted = 1;
654 /* FIXME clear emulated data toggle too */
655 return 0;
656}
657
658static const struct usb_ep_ops dummy_ep_ops = {
659 .enable = dummy_enable,
660 .disable = dummy_disable,
661
662 .alloc_request = dummy_alloc_request,
663 .free_request = dummy_free_request,
664
665 .alloc_buffer = dummy_alloc_buffer,
666 .free_buffer = dummy_free_buffer,
667 /* map, unmap, ... eventually hook the "generic" dma calls */
668
669 .queue = dummy_queue,
670 .dequeue = dummy_dequeue,
671
672 .set_halt = dummy_set_halt,
673};
674
675/*-------------------------------------------------------------------------*/
676
677/* there are both host and device side versions of this call ... */
678static int dummy_g_get_frame (struct usb_gadget *_gadget)
679{
680 struct timeval tv;
681
682 do_gettimeofday (&tv);
683 return tv.tv_usec / 1000;
684}
685
686static int dummy_wakeup (struct usb_gadget *_gadget)
687{
688 struct dummy *dum;
689
690 dum = gadget_to_dummy (_gadget);
Alan Stern391eca92005-05-10 15:34:16 -0400691 if (!(dum->devstatus & ( (1 << USB_DEVICE_B_HNP_ENABLE)
Alan Stern5742b0c2005-05-02 11:25:17 -0400692 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return -EINVAL;
Alan Stern391eca92005-05-10 15:34:16 -0400694 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0)
695 return -ENOLINK;
696 if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
697 dum->rh_state != DUMMY_RH_SUSPENDED)
698 return -EIO;
699
700 /* FIXME: What if the root hub is suspended but the port isn't? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /* hub notices our request, issues downstream resume, etc */
703 dum->resuming = 1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400704 dum->re_timeout = jiffies + msecs_to_jiffies(20);
Alan Stern685eb932005-05-03 16:27:26 -0400705 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707}
708
709static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
710{
711 struct dummy *dum;
712
713 dum = gadget_to_dummy (_gadget);
714 if (value)
715 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
716 else
717 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
718 return 0;
719}
720
Alan Sternf1c39fa2005-05-03 16:24:04 -0400721static int dummy_pullup (struct usb_gadget *_gadget, int value)
722{
723 struct dummy *dum;
724 unsigned long flags;
725
726 dum = gadget_to_dummy (_gadget);
727 spin_lock_irqsave (&dum->lock, flags);
728 dum->pullup = (value != 0);
729 set_link_state (dum);
730 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -0400731
732 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Alan Sternf1c39fa2005-05-03 16:24:04 -0400733 return 0;
734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736static const struct usb_gadget_ops dummy_ops = {
737 .get_frame = dummy_g_get_frame,
738 .wakeup = dummy_wakeup,
739 .set_selfpowered = dummy_set_selfpowered,
Alan Sternf1c39fa2005-05-03 16:24:04 -0400740 .pullup = dummy_pullup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741};
742
743/*-------------------------------------------------------------------------*/
744
745/* "function" sysfs attribute */
746static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400747show_function (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 struct dummy *dum = gadget_dev_to_dummy (dev);
750
751 if (!dum->driver || !dum->driver->function)
752 return 0;
753 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
754}
Alan Sterncc095b02005-05-10 15:28:38 -0400755static DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757/*-------------------------------------------------------------------------*/
758
759/*
760 * Driver registration/unregistration.
761 *
762 * This is basically hardware-specific; there's usually only one real USB
763 * device (not host) controller since that's how USB devices are intended
764 * to work. So most implementations of these api calls will rely on the
765 * fact that only one driver will ever bind to the hardware. But curious
766 * hardware can be built with discrete components, so the gadget API doesn't
767 * require that assumption.
768 *
769 * For this emulator, it might be convenient to create a usb slave device
770 * for each driver that registers: just add to a big root hub.
771 */
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773int
774usb_gadget_register_driver (struct usb_gadget_driver *driver)
775{
776 struct dummy *dum = the_controller;
777 int retval, i;
778
779 if (!dum)
780 return -EINVAL;
781 if (dum->driver)
782 return -EBUSY;
783 if (!driver->bind || !driver->unbind || !driver->setup
784 || driver->speed == USB_SPEED_UNKNOWN)
785 return -EINVAL;
786
787 /*
788 * SLAVE side init ... the layer above hardware, which
789 * can't enumerate without help from the driver we're binding.
790 */
Alan Stern5742b0c2005-05-02 11:25:17 -0400791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 INIT_LIST_HEAD (&dum->gadget.ep_list);
795 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
796 struct dummy_ep *ep = &dum->ep [i];
797
798 if (!ep_name [i])
799 break;
800 ep->ep.name = ep_name [i];
801 ep->ep.ops = &dummy_ep_ops;
802 list_add_tail (&ep->ep.ep_list, &dum->gadget.ep_list);
803 ep->halted = ep->already_seen = ep->setup_stage = 0;
804 ep->ep.maxpacket = ~0;
805 ep->last_io = jiffies;
806 ep->gadget = &dum->gadget;
807 ep->desc = NULL;
808 INIT_LIST_HEAD (&ep->queue);
809 }
810
811 dum->gadget.ep0 = &dum->ep [0].ep;
812 dum->ep [0].ep.maxpacket = 64;
813 list_del_init (&dum->ep [0].ep.ep_list);
814 INIT_LIST_HEAD(&dum->fifo_req.queue);
815
816 dum->driver = driver;
817 dum->gadget.dev.driver = &driver->driver;
Alan Sternd9b76252005-05-03 16:15:43 -0400818 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 driver->driver.name);
820 if ((retval = driver->bind (&dum->gadget)) != 0) {
821 dum->driver = NULL;
822 dum->gadget.dev.driver = NULL;
823 return retval;
824 }
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 driver->driver.bus = dum->gadget.dev.parent->bus;
827 driver_register (&driver->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 device_bind_driver (&dum->gadget.dev);
829
830 /* khubd will enumerate this in a while */
Alan Sternf1c39fa2005-05-03 16:24:04 -0400831 spin_lock_irq (&dum->lock);
832 dum->pullup = 1;
833 set_link_state (dum);
834 spin_unlock_irq (&dum->lock);
Alan Stern685eb932005-05-03 16:27:26 -0400835
836 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838}
839EXPORT_SYMBOL (usb_gadget_register_driver);
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841int
842usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
843{
844 struct dummy *dum = the_controller;
845 unsigned long flags;
846
847 if (!dum)
848 return -ENODEV;
849 if (!driver || driver != dum->driver)
850 return -EINVAL;
851
Alan Sternd9b76252005-05-03 16:15:43 -0400852 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 driver->driver.name);
854
855 spin_lock_irqsave (&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400856 dum->pullup = 0;
857 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 spin_unlock_irqrestore (&dum->lock, flags);
859
860 driver->unbind (&dum->gadget);
861 dum->driver = NULL;
862
863 device_release_driver (&dum->gadget.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 driver_unregister (&driver->driver);
865
Alan Sternf1c39fa2005-05-03 16:24:04 -0400866 spin_lock_irqsave (&dum->lock, flags);
867 dum->pullup = 0;
868 set_link_state (dum);
869 spin_unlock_irqrestore (&dum->lock, flags);
870
Alan Stern685eb932005-05-03 16:27:26 -0400871 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return 0;
873}
874EXPORT_SYMBOL (usb_gadget_unregister_driver);
875
876#undef is_enabled
877
Alan Sterncc095b02005-05-10 15:28:38 -0400878/* just declare this in any driver that really need it */
879extern int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode);
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
882{
883 return -ENOSYS;
884}
885EXPORT_SYMBOL (net2280_set_fifo_mode);
886
Alan Sternd9b76252005-05-03 16:15:43 -0400887
888/* The gadget structure is stored inside the hcd structure and will be
889 * released along with it. */
890static void
891dummy_gadget_release (struct device *dev)
892{
893#if 0 /* usb_bus_put isn't EXPORTed! */
894 struct dummy *dum = gadget_dev_to_dummy (dev);
895
896 usb_bus_put (&dummy_to_hcd (dum)->self);
897#endif
898}
899
Russell King3ae5eae2005-11-09 22:32:44 +0000900static int dummy_udc_probe (struct platform_device *dev)
Alan Sternd9b76252005-05-03 16:15:43 -0400901{
902 struct dummy *dum = the_controller;
903 int rc;
904
905 dum->gadget.name = gadget_name;
906 dum->gadget.ops = &dummy_ops;
907 dum->gadget.is_dualspeed = 1;
908
909 /* maybe claim OTG support, though we won't complete HNP */
910 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
911
912 strcpy (dum->gadget.dev.bus_id, "gadget");
Russell King3ae5eae2005-11-09 22:32:44 +0000913 dum->gadget.dev.parent = &dev->dev;
Alan Sternd9b76252005-05-03 16:15:43 -0400914 dum->gadget.dev.release = dummy_gadget_release;
915 rc = device_register (&dum->gadget.dev);
916 if (rc < 0)
917 return rc;
918
919#if 0 /* usb_bus_get isn't EXPORTed! */
920 usb_bus_get (&dummy_to_hcd (dum)->self);
921#endif
922
Russell King3ae5eae2005-11-09 22:32:44 +0000923 platform_set_drvdata (dev, dum);
Alan Sternd9b76252005-05-03 16:15:43 -0400924 device_create_file (&dum->gadget.dev, &dev_attr_function);
925 return rc;
926}
927
Russell King3ae5eae2005-11-09 22:32:44 +0000928static int dummy_udc_remove (struct platform_device *dev)
Alan Sternd9b76252005-05-03 16:15:43 -0400929{
Russell King3ae5eae2005-11-09 22:32:44 +0000930 struct dummy *dum = platform_get_drvdata (dev);
Alan Sternd9b76252005-05-03 16:15:43 -0400931
Russell King3ae5eae2005-11-09 22:32:44 +0000932 platform_set_drvdata (dev, NULL);
Alan Sternd9b76252005-05-03 16:15:43 -0400933 device_remove_file (&dum->gadget.dev, &dev_attr_function);
934 device_unregister (&dum->gadget.dev);
935 return 0;
936}
937
Russell King3ae5eae2005-11-09 22:32:44 +0000938static int dummy_udc_suspend (struct platform_device *dev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -0400939{
Russell King3ae5eae2005-11-09 22:32:44 +0000940 struct dummy *dum = platform_get_drvdata(dev);
Alan Stern391eca92005-05-10 15:34:16 -0400941
Russell King3ae5eae2005-11-09 22:32:44 +0000942 dev_dbg (&dev->dev, "%s\n", __FUNCTION__);
Alan Stern391eca92005-05-10 15:34:16 -0400943 spin_lock_irq (&dum->lock);
944 dum->udc_suspended = 1;
945 set_link_state (dum);
946 spin_unlock_irq (&dum->lock);
947
948 dev->power.power_state = state;
949 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
950 return 0;
951}
952
Russell King3ae5eae2005-11-09 22:32:44 +0000953static int dummy_udc_resume (struct platform_device *dev)
Alan Stern391eca92005-05-10 15:34:16 -0400954{
Russell King3ae5eae2005-11-09 22:32:44 +0000955 struct dummy *dum = platform_get_drvdata(dev);
Alan Stern391eca92005-05-10 15:34:16 -0400956
Russell King3ae5eae2005-11-09 22:32:44 +0000957 dev_dbg (&dev->dev, "%s\n", __FUNCTION__);
Alan Stern391eca92005-05-10 15:34:16 -0400958 spin_lock_irq (&dum->lock);
959 dum->udc_suspended = 0;
960 set_link_state (dum);
961 spin_unlock_irq (&dum->lock);
962
Russell King3ae5eae2005-11-09 22:32:44 +0000963 dev->dev.power.power_state = PMSG_ON;
Alan Stern391eca92005-05-10 15:34:16 -0400964 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
965 return 0;
966}
967
Russell King3ae5eae2005-11-09 22:32:44 +0000968static struct platform_driver dummy_udc_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -0400969 .probe = dummy_udc_probe,
970 .remove = dummy_udc_remove,
Alan Stern391eca92005-05-10 15:34:16 -0400971 .suspend = dummy_udc_suspend,
972 .resume = dummy_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000973 .driver = {
974 .name = (char *) gadget_name,
975 .owner = THIS_MODULE,
976 },
Alan Sternd9b76252005-05-03 16:15:43 -0400977};
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979/*-------------------------------------------------------------------------*/
980
981/* MASTER/HOST SIDE DRIVER
982 *
983 * this uses the hcd framework to hook up to host side drivers.
984 * its root hub will only have one device, otherwise it acts like
985 * a normal host controller.
986 *
987 * when urbs are queued, they're just stuck on a list that we
988 * scan in a timer callback. that callback connects writes from
989 * the host with reads from the device, and so on, based on the
990 * usb 2.0 rules.
991 */
992
993static int dummy_urb_enqueue (
994 struct usb_hcd *hcd,
995 struct usb_host_endpoint *ep,
996 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -0400997 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998) {
999 struct dummy *dum;
1000 struct urbp *urbp;
1001 unsigned long flags;
1002
1003 if (!urb->transfer_buffer && urb->transfer_buffer_length)
1004 return -EINVAL;
1005
1006 urbp = kmalloc (sizeof *urbp, mem_flags);
1007 if (!urbp)
1008 return -ENOMEM;
1009 urbp->urb = urb;
1010
1011 dum = hcd_to_dummy (hcd);
1012 spin_lock_irqsave (&dum->lock, flags);
1013
1014 if (!dum->udev) {
1015 dum->udev = urb->dev;
1016 usb_get_dev (dum->udev);
1017 } else if (unlikely (dum->udev != urb->dev))
1018 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
1019
1020 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
1021 urb->hcpriv = urbp;
1022 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
1023 urb->error_count = 1; /* mark as a new urb */
1024
1025 /* kick the scheduler, it'll do the rest */
1026 if (!timer_pending (&dum->timer))
1027 mod_timer (&dum->timer, jiffies + 1);
1028
1029 spin_unlock_irqrestore (&dum->lock, flags);
1030 return 0;
1031}
1032
1033static int dummy_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
1034{
Alan Stern391eca92005-05-10 15:34:16 -04001035 struct dummy *dum;
1036 unsigned long flags;
1037
1038 /* giveback happens automatically in timer callback,
1039 * so make sure the callback happens */
1040 dum = hcd_to_dummy (hcd);
1041 spin_lock_irqsave (&dum->lock, flags);
1042 if (dum->rh_state != DUMMY_RH_RUNNING && !list_empty(&dum->urbp_list))
1043 mod_timer (&dum->timer, jiffies);
1044 spin_unlock_irqrestore (&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 0;
1046}
1047
1048static void maybe_set_status (struct urb *urb, int status)
1049{
1050 spin_lock (&urb->lock);
1051 if (urb->status == -EINPROGRESS)
1052 urb->status = status;
1053 spin_unlock (&urb->lock);
1054}
1055
1056/* transfer up to a frame's worth; caller must own lock */
1057static int
1058transfer (struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit)
1059{
1060 struct dummy_request *req;
1061
1062top:
1063 /* if there's no request queued, the device is NAKing; return */
1064 list_for_each_entry (req, &ep->queue, queue) {
1065 unsigned host_len, dev_len, len;
1066 int is_short, to_host;
1067 int rescan = 0;
1068
1069 /* 1..N packets of ep->ep.maxpacket each ... the last one
1070 * may be short (including zero length).
1071 *
1072 * writer can send a zlp explicitly (length 0) or implicitly
1073 * (length mod maxpacket zero, and 'zero' flag); they always
1074 * terminate reads.
1075 */
1076 host_len = urb->transfer_buffer_length - urb->actual_length;
1077 dev_len = req->req.length - req->req.actual;
1078 len = min (host_len, dev_len);
1079
1080 /* FIXME update emulated data toggle too */
1081
1082 to_host = usb_pipein (urb->pipe);
1083 if (unlikely (len == 0))
1084 is_short = 1;
1085 else {
1086 char *ubuf, *rbuf;
1087
1088 /* not enough bandwidth left? */
1089 if (limit < ep->ep.maxpacket && limit < len)
1090 break;
1091 len = min (len, (unsigned) limit);
1092 if (len == 0)
1093 break;
1094
1095 /* use an extra pass for the final short packet */
1096 if (len > ep->ep.maxpacket) {
1097 rescan = 1;
1098 len -= (len % ep->ep.maxpacket);
1099 }
1100 is_short = (len % ep->ep.maxpacket) != 0;
1101
1102 /* else transfer packet(s) */
1103 ubuf = urb->transfer_buffer + urb->actual_length;
1104 rbuf = req->req.buf + req->req.actual;
1105 if (to_host)
1106 memcpy (ubuf, rbuf, len);
1107 else
1108 memcpy (rbuf, ubuf, len);
1109 ep->last_io = jiffies;
1110
1111 limit -= len;
1112 urb->actual_length += len;
1113 req->req.actual += len;
1114 }
1115
1116 /* short packets terminate, maybe with overflow/underflow.
1117 * it's only really an error to write too much.
1118 *
1119 * partially filling a buffer optionally blocks queue advances
1120 * (so completion handlers can clean up the queue) but we don't
1121 * need to emulate such data-in-flight. so we only show part
1122 * of the URB_SHORT_NOT_OK effect: completion status.
1123 */
1124 if (is_short) {
1125 if (host_len == dev_len) {
1126 req->req.status = 0;
1127 maybe_set_status (urb, 0);
1128 } else if (to_host) {
1129 req->req.status = 0;
1130 if (dev_len > host_len)
1131 maybe_set_status (urb, -EOVERFLOW);
1132 else
1133 maybe_set_status (urb,
1134 (urb->transfer_flags
1135 & URB_SHORT_NOT_OK)
1136 ? -EREMOTEIO : 0);
1137 } else if (!to_host) {
1138 maybe_set_status (urb, 0);
1139 if (host_len > dev_len)
1140 req->req.status = -EOVERFLOW;
1141 else
1142 req->req.status = 0;
1143 }
1144
1145 /* many requests terminate without a short packet */
1146 } else {
1147 if (req->req.length == req->req.actual
1148 && !req->req.zero)
1149 req->req.status = 0;
1150 if (urb->transfer_buffer_length == urb->actual_length
1151 && !(urb->transfer_flags
1152 & URB_ZERO_PACKET)) {
1153 maybe_set_status (urb, 0);
1154 }
1155 }
1156
1157 /* device side completion --> continuable */
1158 if (req->req.status != -EINPROGRESS) {
1159 list_del_init (&req->queue);
1160
1161 spin_unlock (&dum->lock);
1162 req->req.complete (&ep->ep, &req->req);
1163 spin_lock (&dum->lock);
1164
1165 /* requests might have been unlinked... */
1166 rescan = 1;
1167 }
1168
1169 /* host side completion --> terminate */
1170 if (urb->status != -EINPROGRESS)
1171 break;
1172
1173 /* rescan to continue with any other queued i/o */
1174 if (rescan)
1175 goto top;
1176 }
1177 return limit;
1178}
1179
1180static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1181{
1182 int limit = ep->ep.maxpacket;
1183
1184 if (dum->gadget.speed == USB_SPEED_HIGH) {
1185 int tmp;
1186
1187 /* high bandwidth mode */
1188 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 tmp = (tmp >> 11) & 0x03;
1190 tmp *= 8 /* applies to entire frame */;
1191 limit += limit * tmp;
1192 }
1193 return limit;
1194}
1195
1196#define is_active(dum) ((dum->port_status & \
1197 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1198 USB_PORT_STAT_SUSPEND)) \
1199 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1200
1201static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1202{
1203 int i;
1204
1205 if (!is_active (dum))
1206 return NULL;
1207 if ((address & ~USB_DIR_IN) == 0)
1208 return &dum->ep [0];
1209 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1210 struct dummy_ep *ep = &dum->ep [i];
1211
1212 if (!ep->desc)
1213 continue;
1214 if (ep->desc->bEndpointAddress == address)
1215 return ep;
1216 }
1217 return NULL;
1218}
1219
1220#undef is_active
1221
1222#define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1223#define Dev_InRequest (Dev_Request | USB_DIR_IN)
1224#define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1225#define Intf_InRequest (Intf_Request | USB_DIR_IN)
1226#define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1227#define Ep_InRequest (Ep_Request | USB_DIR_IN)
1228
1229/* drive both sides of the transfers; looks like irq handlers to
1230 * both drivers except the callbacks aren't in_irq().
1231 */
1232static void dummy_timer (unsigned long _dum)
1233{
1234 struct dummy *dum = (struct dummy *) _dum;
1235 struct urbp *urbp, *tmp;
1236 unsigned long flags;
1237 int limit, total;
1238 int i;
1239
1240 /* simplistic model for one frame's bandwidth */
1241 switch (dum->gadget.speed) {
1242 case USB_SPEED_LOW:
1243 total = 8/*bytes*/ * 12/*packets*/;
1244 break;
1245 case USB_SPEED_FULL:
1246 total = 64/*bytes*/ * 19/*packets*/;
1247 break;
1248 case USB_SPEED_HIGH:
1249 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1250 break;
1251 default:
1252 dev_err (dummy_dev(dum), "bogus device speed\n");
1253 return;
1254 }
1255
1256 /* FIXME if HZ != 1000 this will probably misbehave ... */
1257
1258 /* look at each urb queued by the host side driver */
1259 spin_lock_irqsave (&dum->lock, flags);
1260
1261 if (!dum->udev) {
1262 dev_err (dummy_dev(dum),
1263 "timer fired with no URBs pending?\n");
1264 spin_unlock_irqrestore (&dum->lock, flags);
1265 return;
1266 }
1267
1268 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1269 if (!ep_name [i])
1270 break;
1271 dum->ep [i].already_seen = 0;
1272 }
1273
1274restart:
1275 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1276 struct urb *urb;
1277 struct dummy_request *req;
1278 u8 address;
1279 struct dummy_ep *ep = NULL;
1280 int type;
1281
1282 urb = urbp->urb;
1283 if (urb->status != -EINPROGRESS) {
1284 /* likely it was just unlinked */
1285 goto return_urb;
Alan Stern391eca92005-05-10 15:34:16 -04001286 } else if (dum->rh_state != DUMMY_RH_RUNNING)
1287 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 type = usb_pipetype (urb->pipe);
1289
1290 /* used up this frame's non-periodic bandwidth?
1291 * FIXME there's infinite bandwidth for control and
1292 * periodic transfers ... unrealistic.
1293 */
1294 if (total <= 0 && type == PIPE_BULK)
1295 continue;
1296
1297 /* find the gadget's ep for this request (if configured) */
1298 address = usb_pipeendpoint (urb->pipe);
1299 if (usb_pipein (urb->pipe))
1300 address |= USB_DIR_IN;
1301 ep = find_endpoint(dum, address);
1302 if (!ep) {
1303 /* set_configuration() disagreement */
1304 dev_dbg (dummy_dev(dum),
1305 "no ep configured for urb %p\n",
1306 urb);
1307 maybe_set_status (urb, -EPROTO);
1308 goto return_urb;
1309 }
1310
1311 if (ep->already_seen)
1312 continue;
1313 ep->already_seen = 1;
1314 if (ep == &dum->ep [0] && urb->error_count) {
1315 ep->setup_stage = 1; /* a new urb */
1316 urb->error_count = 0;
1317 }
1318 if (ep->halted && !ep->setup_stage) {
1319 /* NOTE: must not be iso! */
1320 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1321 ep->ep.name, urb);
1322 maybe_set_status (urb, -EPIPE);
1323 goto return_urb;
1324 }
1325 /* FIXME make sure both ends agree on maxpacket */
1326
1327 /* handle control requests */
1328 if (ep == &dum->ep [0] && ep->setup_stage) {
1329 struct usb_ctrlrequest setup;
1330 int value = 1;
1331 struct dummy_ep *ep2;
Alan Sterncc095b02005-05-10 15:28:38 -04001332 unsigned w_index;
1333 unsigned w_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
Alan Sterncc095b02005-05-10 15:28:38 -04001336 w_index = le16_to_cpu(setup.wIndex);
1337 w_value = le16_to_cpu(setup.wValue);
1338 if (le16_to_cpu(setup.wLength) !=
1339 urb->transfer_buffer_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 maybe_set_status (urb, -EOVERFLOW);
1341 goto return_urb;
1342 }
1343
1344 /* paranoia, in case of stale queued data */
1345 list_for_each_entry (req, &ep->queue, queue) {
1346 list_del_init (&req->queue);
1347 req->req.status = -EOVERFLOW;
Alan Sternd9b76252005-05-03 16:15:43 -04001348 dev_dbg (udc_dev(dum), "stale req = %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 req);
1350
1351 spin_unlock (&dum->lock);
1352 req->req.complete (&ep->ep, &req->req);
1353 spin_lock (&dum->lock);
1354 ep->already_seen = 0;
1355 goto restart;
1356 }
1357
1358 /* gadget driver never sees set_address or operations
1359 * on standard feature flags. some hardware doesn't
1360 * even expose them.
1361 */
1362 ep->last_io = jiffies;
1363 ep->setup_stage = 0;
1364 ep->halted = 0;
1365 switch (setup.bRequest) {
1366 case USB_REQ_SET_ADDRESS:
1367 if (setup.bRequestType != Dev_Request)
1368 break;
Alan Sterncc095b02005-05-10 15:28:38 -04001369 dum->address = w_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 maybe_set_status (urb, 0);
Alan Sternd9b76252005-05-03 16:15:43 -04001371 dev_dbg (udc_dev(dum), "set_address = %d\n",
Alan Sterncc095b02005-05-10 15:28:38 -04001372 w_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 value = 0;
1374 break;
1375 case USB_REQ_SET_FEATURE:
1376 if (setup.bRequestType == Dev_Request) {
1377 value = 0;
Alan Sterncc095b02005-05-10 15:28:38 -04001378 switch (w_value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 case USB_DEVICE_REMOTE_WAKEUP:
1380 break;
Alan Stern5742b0c2005-05-02 11:25:17 -04001381 case USB_DEVICE_B_HNP_ENABLE:
1382 dum->gadget.b_hnp_enable = 1;
1383 break;
1384 case USB_DEVICE_A_HNP_SUPPORT:
1385 dum->gadget.a_hnp_support = 1;
1386 break;
1387 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1388 dum->gadget.a_alt_hnp_support
1389 = 1;
1390 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 default:
1392 value = -EOPNOTSUPP;
1393 }
1394 if (value == 0) {
1395 dum->devstatus |=
Alan Sterncc095b02005-05-10 15:28:38 -04001396 (1 << w_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 maybe_set_status (urb, 0);
1398 }
1399
1400 } else if (setup.bRequestType == Ep_Request) {
1401 // endpoint halt
Alan Sterncc095b02005-05-10 15:28:38 -04001402 ep2 = find_endpoint (dum, w_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (!ep2) {
1404 value = -EOPNOTSUPP;
1405 break;
1406 }
1407 ep2->halted = 1;
1408 value = 0;
1409 maybe_set_status (urb, 0);
1410 }
1411 break;
1412 case USB_REQ_CLEAR_FEATURE:
1413 if (setup.bRequestType == Dev_Request) {
Alan Sterncc095b02005-05-10 15:28:38 -04001414 switch (w_value) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 case USB_DEVICE_REMOTE_WAKEUP:
1416 dum->devstatus &= ~(1 <<
1417 USB_DEVICE_REMOTE_WAKEUP);
1418 value = 0;
1419 maybe_set_status (urb, 0);
1420 break;
1421 default:
1422 value = -EOPNOTSUPP;
1423 break;
1424 }
1425 } else if (setup.bRequestType == Ep_Request) {
1426 // endpoint halt
Alan Sterncc095b02005-05-10 15:28:38 -04001427 ep2 = find_endpoint (dum, w_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (!ep2) {
1429 value = -EOPNOTSUPP;
1430 break;
1431 }
1432 ep2->halted = 0;
1433 value = 0;
1434 maybe_set_status (urb, 0);
1435 }
1436 break;
1437 case USB_REQ_GET_STATUS:
1438 if (setup.bRequestType == Dev_InRequest
1439 || setup.bRequestType
1440 == Intf_InRequest
1441 || setup.bRequestType
1442 == Ep_InRequest
1443 ) {
1444 char *buf;
1445
1446 // device: remote wakeup, selfpowered
1447 // interface: nothing
1448 // endpoint: halt
1449 buf = (char *)urb->transfer_buffer;
1450 if (urb->transfer_buffer_length > 0) {
1451 if (setup.bRequestType ==
1452 Ep_InRequest) {
Alan Sterncc095b02005-05-10 15:28:38 -04001453 ep2 = find_endpoint (dum, w_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!ep2) {
1455 value = -EOPNOTSUPP;
1456 break;
1457 }
1458 buf [0] = ep2->halted;
1459 } else if (setup.bRequestType ==
1460 Dev_InRequest) {
1461 buf [0] = (u8)
1462 dum->devstatus;
1463 } else
1464 buf [0] = 0;
1465 }
1466 if (urb->transfer_buffer_length > 1)
1467 buf [1] = 0;
1468 urb->actual_length = min (2,
1469 urb->transfer_buffer_length);
1470 value = 0;
1471 maybe_set_status (urb, 0);
1472 }
1473 break;
1474 }
1475
1476 /* gadget driver handles all other requests. block
1477 * until setup() returns; no reentrancy issues etc.
1478 */
1479 if (value > 0) {
1480 spin_unlock (&dum->lock);
1481 value = dum->driver->setup (&dum->gadget,
1482 &setup);
1483 spin_lock (&dum->lock);
1484
1485 if (value >= 0) {
1486 /* no delays (max 64KB data stage) */
1487 limit = 64*1024;
1488 goto treat_control_like_bulk;
1489 }
1490 /* error, see below */
1491 }
1492
1493 if (value < 0) {
1494 if (value != -EOPNOTSUPP)
Alan Sternd9b76252005-05-03 16:15:43 -04001495 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 "setup --> %d\n",
1497 value);
1498 maybe_set_status (urb, -EPIPE);
1499 urb->actual_length = 0;
1500 }
1501
1502 goto return_urb;
1503 }
1504
1505 /* non-control requests */
1506 limit = total;
1507 switch (usb_pipetype (urb->pipe)) {
1508 case PIPE_ISOCHRONOUS:
1509 /* FIXME is it urb->interval since the last xfer?
1510 * use urb->iso_frame_desc[i].
1511 * complete whether or not ep has requests queued.
1512 * report random errors, to debug drivers.
1513 */
1514 limit = max (limit, periodic_bytes (dum, ep));
1515 maybe_set_status (urb, -ENOSYS);
1516 break;
1517
1518 case PIPE_INTERRUPT:
1519 /* FIXME is it urb->interval since the last xfer?
1520 * this almost certainly polls too fast.
1521 */
1522 limit = max (limit, periodic_bytes (dum, ep));
1523 /* FALLTHROUGH */
1524
1525 // case PIPE_BULK: case PIPE_CONTROL:
1526 default:
1527 treat_control_like_bulk:
1528 ep->last_io = jiffies;
1529 total = transfer (dum, urb, ep, limit);
1530 break;
1531 }
1532
1533 /* incomplete transfer? */
1534 if (urb->status == -EINPROGRESS)
1535 continue;
1536
1537return_urb:
1538 urb->hcpriv = NULL;
1539 list_del (&urbp->urbp_list);
1540 kfree (urbp);
1541 if (ep)
1542 ep->already_seen = ep->setup_stage = 0;
1543
1544 spin_unlock (&dum->lock);
1545 usb_hcd_giveback_urb (dummy_to_hcd(dum), urb, NULL);
1546 spin_lock (&dum->lock);
1547
1548 goto restart;
1549 }
1550
Alan Stern391eca92005-05-10 15:34:16 -04001551 if (list_empty (&dum->urbp_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 usb_put_dev (dum->udev);
1553 dum->udev = NULL;
Alan Stern391eca92005-05-10 15:34:16 -04001554 } else if (dum->rh_state == DUMMY_RH_RUNNING) {
1555 /* want a 1 msec delay here */
1556 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558
1559 spin_unlock_irqrestore (&dum->lock, flags);
1560}
1561
1562/*-------------------------------------------------------------------------*/
1563
1564#define PORT_C_MASK \
Alan Sternc2db8b52005-04-29 16:30:48 -04001565 ((USB_PORT_STAT_C_CONNECTION \
1566 | USB_PORT_STAT_C_ENABLE \
1567 | USB_PORT_STAT_C_SUSPEND \
1568 | USB_PORT_STAT_C_OVERCURRENT \
1569 | USB_PORT_STAT_C_RESET) << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1572{
1573 struct dummy *dum;
1574 unsigned long flags;
Alan Stern391eca92005-05-10 15:34:16 -04001575 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 dum = hcd_to_dummy (hcd);
1578
1579 spin_lock_irqsave (&dum->lock, flags);
Alan Stern391eca92005-05-10 15:34:16 -04001580 if (hcd->state != HC_STATE_RUNNING)
1581 goto done;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001582
1583 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1584 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1585 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1586 set_link_state (dum);
1587 }
1588
Alan Stern391eca92005-05-10 15:34:16 -04001589 if ((dum->port_status & PORT_C_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 *buf = (1 << 1);
1591 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
Alan Stern391eca92005-05-10 15:34:16 -04001592 dum->port_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 retval = 1;
Alan Stern391eca92005-05-10 15:34:16 -04001594 if (dum->rh_state == DUMMY_RH_SUSPENDED)
1595 usb_hcd_resume_root_hub (hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Alan Stern391eca92005-05-10 15:34:16 -04001597done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 spin_unlock_irqrestore (&dum->lock, flags);
1599 return retval;
1600}
1601
1602static inline void
1603hub_descriptor (struct usb_hub_descriptor *desc)
1604{
1605 memset (desc, 0, sizeof *desc);
1606 desc->bDescriptorType = 0x29;
1607 desc->bDescLength = 9;
Alan Sterncc095b02005-05-10 15:28:38 -04001608 desc->wHubCharacteristics = (__force __u16)
1609 (__constant_cpu_to_le16 (0x0001));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 desc->bNbrPorts = 1;
1611 desc->bitmap [0] = 0xff;
1612 desc->bitmap [1] = 0xff;
1613}
1614
1615static int dummy_hub_control (
1616 struct usb_hcd *hcd,
1617 u16 typeReq,
1618 u16 wValue,
1619 u16 wIndex,
1620 char *buf,
1621 u16 wLength
1622) {
1623 struct dummy *dum;
1624 int retval = 0;
1625 unsigned long flags;
1626
Alan Stern391eca92005-05-10 15:34:16 -04001627 if (hcd->state != HC_STATE_RUNNING)
1628 return -ETIMEDOUT;
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 dum = hcd_to_dummy (hcd);
1631 spin_lock_irqsave (&dum->lock, flags);
1632 switch (typeReq) {
1633 case ClearHubFeature:
1634 break;
1635 case ClearPortFeature:
1636 switch (wValue) {
1637 case USB_PORT_FEAT_SUSPEND:
Alan Sternc2db8b52005-04-29 16:30:48 -04001638 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /* 20msec resume signaling */
1640 dum->resuming = 1;
1641 dum->re_timeout = jiffies +
Alan Sternf1c39fa2005-05-03 16:24:04 -04001642 msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644 break;
1645 case USB_PORT_FEAT_POWER:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001646 if (dum->port_status & USB_PORT_STAT_POWER)
1647 dev_dbg (dummy_dev(dum), "power-off\n");
1648 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 default:
1650 dum->port_status &= ~(1 << wValue);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001651 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653 break;
1654 case GetHubDescriptor:
1655 hub_descriptor ((struct usb_hub_descriptor *) buf);
1656 break;
1657 case GetHubStatus:
Alan Sterncc095b02005-05-10 15:28:38 -04001658 *(__le32 *) buf = __constant_cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 break;
1660 case GetPortStatus:
1661 if (wIndex != 1)
1662 retval = -EPIPE;
1663
1664 /* whoever resets or resumes must GetPortStatus to
1665 * complete it!!
1666 */
Alan Sternf1c39fa2005-05-03 16:24:04 -04001667 if (dum->resuming &&
1668 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001669 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1670 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001672 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1673 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001674 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1675 dum->port_status &= ~USB_PORT_STAT_RESET;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001676 if (dum->pullup) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 dum->port_status |= USB_PORT_STAT_ENABLE;
1678 /* give it the best speed we agree on */
1679 dum->gadget.speed = dum->driver->speed;
1680 dum->gadget.ep0->maxpacket = 64;
1681 switch (dum->gadget.speed) {
1682 case USB_SPEED_HIGH:
1683 dum->port_status |=
1684 USB_PORT_STAT_HIGH_SPEED;
1685 break;
1686 case USB_SPEED_LOW:
1687 dum->gadget.ep0->maxpacket = 8;
1688 dum->port_status |=
1689 USB_PORT_STAT_LOW_SPEED;
1690 break;
1691 default:
1692 dum->gadget.speed = USB_SPEED_FULL;
1693 break;
1694 }
1695 }
1696 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001697 set_link_state (dum);
Alan Sterncc095b02005-05-10 15:28:38 -04001698 ((__le16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1699 ((__le16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 break;
1701 case SetHubFeature:
1702 retval = -EPIPE;
1703 break;
1704 case SetPortFeature:
1705 switch (wValue) {
1706 case USB_PORT_FEAT_SUSPEND:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001707 if (dum->active) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001708 dum->port_status |= USB_PORT_STAT_SUSPEND;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001709
1710 /* HNP would happen here; for now we
1711 * assume b_bus_req is always true.
1712 */
1713 set_link_state (dum);
1714 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1715 & dum->devstatus) != 0)
1716 dev_dbg (dummy_dev(dum),
Alan Stern5742b0c2005-05-02 11:25:17 -04001717 "no HNP yet!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719 break;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001720 case USB_PORT_FEAT_POWER:
1721 dum->port_status |= USB_PORT_STAT_POWER;
1722 set_link_state (dum);
1723 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 case USB_PORT_FEAT_RESET:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001725 /* if it's already enabled, disable */
1726 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1727 | USB_PORT_STAT_LOW_SPEED
1728 | USB_PORT_STAT_HIGH_SPEED);
Alan Stern391eca92005-05-10 15:34:16 -04001729 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 /* 50msec reset signaling */
1731 dum->re_timeout = jiffies + msecs_to_jiffies(50);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001732 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 default:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001734 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1735 dum->port_status |= (1 << wValue);
1736 set_link_state (dum);
1737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739 break;
1740
1741 default:
1742 dev_dbg (dummy_dev(dum),
1743 "hub control req%04x v%04x i%04x l%d\n",
1744 typeReq, wValue, wIndex, wLength);
1745
1746 /* "protocol stall" on error */
1747 retval = -EPIPE;
1748 }
1749 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -04001750
1751 if ((dum->port_status & PORT_C_MASK) != 0)
1752 usb_hcd_poll_rh_status (hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return retval;
1754}
1755
Alan Stern0c0382e2005-10-13 17:08:02 -04001756static int dummy_bus_suspend (struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04001757{
1758 struct dummy *dum = hcd_to_dummy (hcd);
1759
1760 spin_lock_irq (&dum->lock);
1761 dum->rh_state = DUMMY_RH_SUSPENDED;
1762 set_link_state (dum);
1763 spin_unlock_irq (&dum->lock);
1764 return 0;
1765}
1766
Alan Stern0c0382e2005-10-13 17:08:02 -04001767static int dummy_bus_resume (struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04001768{
1769 struct dummy *dum = hcd_to_dummy (hcd);
1770
1771 spin_lock_irq (&dum->lock);
1772 dum->rh_state = DUMMY_RH_RUNNING;
1773 set_link_state (dum);
1774 if (!list_empty(&dum->urbp_list))
1775 mod_timer (&dum->timer, jiffies);
1776 spin_unlock_irq (&dum->lock);
1777 return 0;
1778}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780/*-------------------------------------------------------------------------*/
1781
1782static inline ssize_t
1783show_urb (char *buf, size_t size, struct urb *urb)
1784{
1785 int ep = usb_pipeendpoint (urb->pipe);
1786
1787 return snprintf (buf, size,
1788 "urb/%p %s ep%d%s%s len %d/%d\n",
1789 urb,
1790 ({ char *s;
1791 switch (urb->dev->speed) {
1792 case USB_SPEED_LOW: s = "ls"; break;
1793 case USB_SPEED_FULL: s = "fs"; break;
1794 case USB_SPEED_HIGH: s = "hs"; break;
1795 default: s = "?"; break;
1796 }; s; }),
1797 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1798 ({ char *s; \
1799 switch (usb_pipetype (urb->pipe)) { \
1800 case PIPE_CONTROL: s = ""; break; \
1801 case PIPE_BULK: s = "-bulk"; break; \
1802 case PIPE_INTERRUPT: s = "-int"; break; \
1803 default: s = "-iso"; break; \
1804 }; s;}),
1805 urb->actual_length, urb->transfer_buffer_length);
1806}
1807
1808static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -04001809show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 struct usb_hcd *hcd = dev_get_drvdata (dev);
1812 struct dummy *dum = hcd_to_dummy (hcd);
1813 struct urbp *urbp;
1814 size_t size = 0;
1815 unsigned long flags;
1816
1817 spin_lock_irqsave (&dum->lock, flags);
1818 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1819 size_t temp;
1820
1821 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1822 buf += temp;
1823 size += temp;
1824 }
1825 spin_unlock_irqrestore (&dum->lock, flags);
1826
1827 return size;
1828}
1829static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1830
1831static int dummy_start (struct usb_hcd *hcd)
1832{
1833 struct dummy *dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 dum = hcd_to_dummy (hcd);
1836
1837 /*
1838 * MASTER side init ... we emulate a root hub that'll only ever
1839 * talk to one device (the slave side). Also appears in sysfs,
1840 * just like more familiar pci-based HCDs.
1841 */
1842 spin_lock_init (&dum->lock);
1843 init_timer (&dum->timer);
1844 dum->timer.function = dummy_timer;
1845 dum->timer.data = (unsigned long) dum;
Alan Stern391eca92005-05-10 15:34:16 -04001846 dum->rh_state = DUMMY_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 INIT_LIST_HEAD (&dum->urbp_list);
1849
Alan Sternbc96c0a2005-04-25 11:21:31 -04001850 /* only show a low-power port: just 8mA */
1851 hcd->power_budget = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 hcd->state = HC_STATE_RUNNING;
Alan Stern685eb932005-05-03 16:27:26 -04001853 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Alan Stern5742b0c2005-05-02 11:25:17 -04001855#ifdef CONFIG_USB_OTG
1856 hcd->self.otg_port = 1;
1857#endif
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1860 device_create_file (dummy_dev(dum), &dev_attr_urbs);
1861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
1864static void dummy_stop (struct usb_hcd *hcd)
1865{
1866 struct dummy *dum;
1867
1868 dum = hcd_to_dummy (hcd);
1869
1870 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 usb_gadget_unregister_driver (dum->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 dev_info (dummy_dev(dum), "stopped\n");
1873}
1874
1875/*-------------------------------------------------------------------------*/
1876
1877static int dummy_h_get_frame (struct usb_hcd *hcd)
1878{
1879 return dummy_g_get_frame (NULL);
1880}
1881
1882static const struct hc_driver dummy_hcd = {
1883 .description = (char *) driver_name,
1884 .product_desc = "Dummy host controller",
1885 .hcd_priv_size = sizeof(struct dummy),
1886
1887 .flags = HCD_USB2,
1888
1889 .start = dummy_start,
1890 .stop = dummy_stop,
1891
1892 .urb_enqueue = dummy_urb_enqueue,
1893 .urb_dequeue = dummy_urb_dequeue,
1894
1895 .get_frame_number = dummy_h_get_frame,
1896
1897 .hub_status_data = dummy_hub_status,
1898 .hub_control = dummy_hub_control,
Alan Stern0c0382e2005-10-13 17:08:02 -04001899 .bus_suspend = dummy_bus_suspend,
1900 .bus_resume = dummy_bus_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901};
1902
Russell King3ae5eae2005-11-09 22:32:44 +00001903static int dummy_hcd_probe (struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
1905 struct usb_hcd *hcd;
1906 int retval;
1907
1908 dev_info (dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1909
Russell King3ae5eae2005-11-09 22:32:44 +00001910 hcd = usb_create_hcd (&dummy_hcd, &dev->dev, dev->dev.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (!hcd)
1912 return -ENOMEM;
1913 the_controller = hcd_to_dummy (hcd);
1914
1915 retval = usb_add_hcd(hcd, 0, 0);
1916 if (retval != 0) {
1917 usb_put_hcd (hcd);
1918 the_controller = NULL;
1919 }
1920 return retval;
1921}
1922
Russell King3ae5eae2005-11-09 22:32:44 +00001923static int dummy_hcd_remove (struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 struct usb_hcd *hcd;
1926
Russell King3ae5eae2005-11-09 22:32:44 +00001927 hcd = platform_get_drvdata (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 usb_remove_hcd (hcd);
1929 usb_put_hcd (hcd);
1930 the_controller = NULL;
Alan Sternd9b76252005-05-03 16:15:43 -04001931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
Russell King3ae5eae2005-11-09 22:32:44 +00001934static int dummy_hcd_suspend (struct platform_device *dev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -04001935{
1936 struct usb_hcd *hcd;
1937
Russell King3ae5eae2005-11-09 22:32:44 +00001938 dev_dbg (&dev->dev, "%s\n", __FUNCTION__);
1939 hcd = platform_get_drvdata (dev);
Alan Stern391eca92005-05-10 15:34:16 -04001940
Alan Stern391eca92005-05-10 15:34:16 -04001941 hcd->state = HC_STATE_SUSPENDED;
1942 return 0;
1943}
1944
Russell King3ae5eae2005-11-09 22:32:44 +00001945static int dummy_hcd_resume (struct platform_device *dev)
Alan Stern391eca92005-05-10 15:34:16 -04001946{
1947 struct usb_hcd *hcd;
1948
Russell King3ae5eae2005-11-09 22:32:44 +00001949 dev_dbg (&dev->dev, "%s\n", __FUNCTION__);
1950 hcd = platform_get_drvdata (dev);
Alan Stern391eca92005-05-10 15:34:16 -04001951 hcd->state = HC_STATE_RUNNING;
1952
Alan Stern391eca92005-05-10 15:34:16 -04001953 usb_hcd_poll_rh_status (hcd);
1954 return 0;
1955}
1956
Russell King3ae5eae2005-11-09 22:32:44 +00001957static struct platform_driver dummy_hcd_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04001958 .probe = dummy_hcd_probe,
1959 .remove = dummy_hcd_remove,
Alan Stern391eca92005-05-10 15:34:16 -04001960 .suspend = dummy_hcd_suspend,
1961 .resume = dummy_hcd_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001962 .driver = {
1963 .name = (char *) driver_name,
1964 .owner = THIS_MODULE,
1965 },
Alan Sternd9b76252005-05-03 16:15:43 -04001966};
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968/*-------------------------------------------------------------------------*/
1969
Alan Sternd9b76252005-05-03 16:15:43 -04001970/* These don't need to do anything because the pdev structures are
1971 * statically allocated. */
1972static void
1973dummy_udc_release (struct device *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Alan Sternd9b76252005-05-03 16:15:43 -04001975static void
1976dummy_hcd_release (struct device *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Alan Sternd9b76252005-05-03 16:15:43 -04001978static struct platform_device the_udc_pdev = {
1979 .name = (char *) gadget_name,
1980 .id = -1,
1981 .dev = {
1982 .release = dummy_udc_release,
1983 },
1984};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Alan Sternd9b76252005-05-03 16:15:43 -04001986static struct platform_device the_hcd_pdev = {
1987 .name = (char *) driver_name,
1988 .id = -1,
1989 .dev = {
1990 .release = dummy_hcd_release,
1991 },
1992};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994static int __init init (void)
1995{
1996 int retval;
1997
1998 if (usb_disabled ())
1999 return -ENODEV;
Alan Sternd9b76252005-05-03 16:15:43 -04002000
Russell King3ae5eae2005-11-09 22:32:44 +00002001 retval = platform_driver_register (&dummy_hcd_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002002 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return retval;
Alan Sternd9b76252005-05-03 16:15:43 -04002004
Russell King3ae5eae2005-11-09 22:32:44 +00002005 retval = platform_driver_register (&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002006 if (retval < 0)
2007 goto err_register_udc_driver;
2008
2009 retval = platform_device_register (&the_hcd_pdev);
2010 if (retval < 0)
2011 goto err_register_hcd;
2012
2013 retval = platform_device_register (&the_udc_pdev);
2014 if (retval < 0)
2015 goto err_register_udc;
2016 return retval;
2017
2018err_register_udc:
2019 platform_device_unregister (&the_hcd_pdev);
2020err_register_hcd:
Russell King3ae5eae2005-11-09 22:32:44 +00002021 platform_driver_unregister (&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002022err_register_udc_driver:
Russell King3ae5eae2005-11-09 22:32:44 +00002023 platform_driver_unregister (&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return retval;
2025}
2026module_init (init);
2027
2028static void __exit cleanup (void)
2029{
Alan Sternd9b76252005-05-03 16:15:43 -04002030 platform_device_unregister (&the_udc_pdev);
2031 platform_device_unregister (&the_hcd_pdev);
Russell King3ae5eae2005-11-09 22:32:44 +00002032 platform_driver_unregister (&dummy_udc_driver);
2033 platform_driver_unregister (&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035module_exit (cleanup);