blob: 73d2f24050ab3cfde32f2dc6aead4f5861a8c6f6 [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>
53
54#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"
68#define DRIVER_VERSION "17 Dec 2004"
69
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
153struct dummy {
154 spinlock_t lock;
155
156 /*
157 * SLAVE/GADGET side support
158 */
159 struct dummy_ep ep [DUMMY_ENDPOINTS];
160 int address;
161 struct usb_gadget gadget;
162 struct usb_gadget_driver *driver;
163 struct dummy_request fifo_req;
164 u8 fifo_buf [FIFO_SIZE];
165 u16 devstatus;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400166 unsigned pullup:1;
167 unsigned active:1;
168 unsigned old_active:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /*
171 * MASTER/HOST side support
172 */
173 struct timer_list timer;
174 u32 port_status;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400175 u32 old_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 unsigned resuming:1;
177 unsigned long re_timeout;
178
179 struct usb_device *udev;
180 struct list_head urbp_list;
181};
182
183static inline struct dummy *hcd_to_dummy (struct usb_hcd *hcd)
184{
185 return (struct dummy *) (hcd->hcd_priv);
186}
187
188static inline struct usb_hcd *dummy_to_hcd (struct dummy *dum)
189{
190 return container_of((void *) dum, struct usb_hcd, hcd_priv);
191}
192
193static inline struct device *dummy_dev (struct dummy *dum)
194{
195 return dummy_to_hcd(dum)->self.controller;
196}
197
Alan Sternd9b76252005-05-03 16:15:43 -0400198static inline struct device *udc_dev (struct dummy *dum)
199{
200 return dum->gadget.dev.parent;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static inline struct dummy *ep_to_dummy (struct dummy_ep *ep)
204{
205 return container_of (ep->gadget, struct dummy, gadget);
206}
207
208static inline struct dummy *gadget_to_dummy (struct usb_gadget *gadget)
209{
210 return container_of (gadget, struct dummy, gadget);
211}
212
213static inline struct dummy *gadget_dev_to_dummy (struct device *dev)
214{
215 return container_of (dev, struct dummy, gadget.dev);
216}
217
218static struct dummy *the_controller;
219
220/*-------------------------------------------------------------------------*/
221
Alan Sternf1c39fa2005-05-03 16:24:04 -0400222/* SLAVE/GADGET SIDE UTILITY ROUTINES */
223
224/* called with spinlock held */
225static void nuke (struct dummy *dum, struct dummy_ep *ep)
226{
227 while (!list_empty (&ep->queue)) {
228 struct dummy_request *req;
229
230 req = list_entry (ep->queue.next, struct dummy_request, queue);
231 list_del_init (&req->queue);
232 req->req.status = -ESHUTDOWN;
233
234 spin_unlock (&dum->lock);
235 req->req.complete (&ep->ep, &req->req);
236 spin_lock (&dum->lock);
237 }
238}
239
240/* caller must hold lock */
241static void
242stop_activity (struct dummy *dum)
243{
244 struct dummy_ep *ep;
245
246 /* prevent any more requests */
247 dum->address = 0;
248
249 /* The timer is left running so that outstanding URBs can fail */
250
251 /* nuke any pending requests first, so driver i/o is quiesced */
252 list_for_each_entry (ep, &dum->gadget.ep_list, ep.ep_list)
253 nuke (dum, ep);
254
255 /* driver now does any non-usb quiescing necessary */
256}
257
258/* caller must hold lock */
259static void
260set_link_state (struct dummy *dum)
261{
262 dum->active = 0;
263 if ((dum->port_status & USB_PORT_STAT_POWER) == 0)
264 dum->port_status = 0;
265 else if (!dum->pullup) {
266 dum->port_status &= ~(USB_PORT_STAT_CONNECTION |
267 USB_PORT_STAT_ENABLE |
268 USB_PORT_STAT_LOW_SPEED |
269 USB_PORT_STAT_HIGH_SPEED |
270 USB_PORT_STAT_SUSPEND);
271 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0)
272 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
273 } else {
274 dum->port_status |= USB_PORT_STAT_CONNECTION;
275 if ((dum->old_status & USB_PORT_STAT_CONNECTION) == 0)
276 dum->port_status |= (USB_PORT_STAT_C_CONNECTION << 16);
277 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0)
278 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
279 else if ((dum->port_status & USB_PORT_STAT_SUSPEND) == 0)
280 dum->active = 1;
281 }
282
283 if ((dum->port_status & USB_PORT_STAT_ENABLE) == 0 || dum->active)
284 dum->resuming = 0;
285
286 if ((dum->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
287 (dum->port_status & USB_PORT_STAT_RESET) != 0) {
288 if ((dum->old_status & USB_PORT_STAT_CONNECTION) != 0 &&
289 (dum->old_status & USB_PORT_STAT_RESET) == 0 &&
290 dum->driver) {
291 stop_activity (dum);
292 spin_unlock (&dum->lock);
293 dum->driver->disconnect (&dum->gadget);
294 spin_lock (&dum->lock);
295 }
296 } else if (dum->active != dum->old_active) {
297 if (dum->old_active && dum->driver->suspend) {
298 spin_unlock (&dum->lock);
299 dum->driver->suspend (&dum->gadget);
300 spin_lock (&dum->lock);
301 } else if (!dum->old_active && dum->driver->resume) {
302 spin_unlock (&dum->lock);
303 dum->driver->resume (&dum->gadget);
304 spin_lock (&dum->lock);
305 }
306 }
307
308 dum->old_status = dum->port_status;
309 dum->old_active = dum->active;
310}
311
312/*-------------------------------------------------------------------------*/
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/* SLAVE/GADGET SIDE DRIVER
315 *
316 * This only tracks gadget state. All the work is done when the host
317 * side tries some (emulated) i/o operation. Real device controller
318 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
319 */
320
321#define is_enabled(dum) \
322 (dum->port_status & USB_PORT_STAT_ENABLE)
323
324static int
325dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
326{
327 struct dummy *dum;
328 struct dummy_ep *ep;
329 unsigned max;
330 int retval;
331
332 ep = usb_ep_to_dummy_ep (_ep);
333 if (!_ep || !desc || ep->desc || _ep->name == ep0name
334 || desc->bDescriptorType != USB_DT_ENDPOINT)
335 return -EINVAL;
336 dum = ep_to_dummy (ep);
337 if (!dum->driver || !is_enabled (dum))
338 return -ESHUTDOWN;
339 max = le16_to_cpu(desc->wMaxPacketSize) & 0x3ff;
340
341 /* drivers must not request bad settings, since lower levels
342 * (hardware or its drivers) may not check. some endpoints
343 * can't do iso, many have maxpacket limitations, etc.
344 *
345 * since this "hardware" driver is here to help debugging, we
346 * have some extra sanity checks. (there could be more though,
347 * especially for "ep9out" style fixed function ones.)
348 */
349 retval = -EINVAL;
350 switch (desc->bmAttributes & 0x03) {
351 case USB_ENDPOINT_XFER_BULK:
352 if (strstr (ep->ep.name, "-iso")
353 || strstr (ep->ep.name, "-int")) {
354 goto done;
355 }
356 switch (dum->gadget.speed) {
357 case USB_SPEED_HIGH:
358 if (max == 512)
359 break;
360 /* conserve return statements */
361 default:
362 switch (max) {
363 case 8: case 16: case 32: case 64:
364 /* we'll fake any legal size */
365 break;
366 default:
367 case USB_SPEED_LOW:
368 goto done;
369 }
370 }
371 break;
372 case USB_ENDPOINT_XFER_INT:
373 if (strstr (ep->ep.name, "-iso")) /* bulk is ok */
374 goto done;
375 /* real hardware might not handle all packet sizes */
376 switch (dum->gadget.speed) {
377 case USB_SPEED_HIGH:
378 if (max <= 1024)
379 break;
380 /* save a return statement */
381 case USB_SPEED_FULL:
382 if (max <= 64)
383 break;
384 /* save a return statement */
385 default:
386 if (max <= 8)
387 break;
388 goto done;
389 }
390 break;
391 case USB_ENDPOINT_XFER_ISOC:
392 if (strstr (ep->ep.name, "-bulk")
393 || strstr (ep->ep.name, "-int"))
394 goto done;
395 /* real hardware might not handle all packet sizes */
396 switch (dum->gadget.speed) {
397 case USB_SPEED_HIGH:
398 if (max <= 1024)
399 break;
400 /* save a return statement */
401 case USB_SPEED_FULL:
402 if (max <= 1023)
403 break;
404 /* save a return statement */
405 default:
406 goto done;
407 }
408 break;
409 default:
410 /* few chips support control except on ep0 */
411 goto done;
412 }
413
414 _ep->maxpacket = max;
415 ep->desc = desc;
416
Alan Sternd9b76252005-05-03 16:15:43 -0400417 dev_dbg (udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 _ep->name,
419 desc->bEndpointAddress & 0x0f,
420 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
421 ({ char *val;
422 switch (desc->bmAttributes & 0x03) {
423 case USB_ENDPOINT_XFER_BULK: val = "bulk"; break;
424 case USB_ENDPOINT_XFER_ISOC: val = "iso"; break;
425 case USB_ENDPOINT_XFER_INT: val = "intr"; break;
426 default: val = "ctrl"; break;
427 }; val; }),
428 max);
429
430 /* at this point real hardware should be NAKing transfers
431 * to that endpoint, until a buffer is queued to it.
432 */
433 retval = 0;
434done:
435 return retval;
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static int dummy_disable (struct usb_ep *_ep)
439{
440 struct dummy_ep *ep;
441 struct dummy *dum;
442 unsigned long flags;
443 int retval;
444
445 ep = usb_ep_to_dummy_ep (_ep);
446 if (!_ep || !ep->desc || _ep->name == ep0name)
447 return -EINVAL;
448 dum = ep_to_dummy (ep);
449
450 spin_lock_irqsave (&dum->lock, flags);
451 ep->desc = NULL;
452 retval = 0;
453 nuke (dum, ep);
454 spin_unlock_irqrestore (&dum->lock, flags);
455
Alan Sternd9b76252005-05-03 16:15:43 -0400456 dev_dbg (udc_dev(dum), "disabled %s\n", _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return retval;
458}
459
460static struct usb_request *
461dummy_alloc_request (struct usb_ep *_ep, int mem_flags)
462{
463 struct dummy_ep *ep;
464 struct dummy_request *req;
465
466 if (!_ep)
467 return NULL;
468 ep = usb_ep_to_dummy_ep (_ep);
469
470 req = kmalloc (sizeof *req, mem_flags);
471 if (!req)
472 return NULL;
473 memset (req, 0, sizeof *req);
474 INIT_LIST_HEAD (&req->queue);
475 return &req->req;
476}
477
478static void
479dummy_free_request (struct usb_ep *_ep, struct usb_request *_req)
480{
481 struct dummy_ep *ep;
482 struct dummy_request *req;
483
484 ep = usb_ep_to_dummy_ep (_ep);
485 if (!ep || !_req || (!ep->desc && _ep->name != ep0name))
486 return;
487
488 req = usb_request_to_dummy_request (_req);
489 WARN_ON (!list_empty (&req->queue));
490 kfree (req);
491}
492
493static void *
494dummy_alloc_buffer (
495 struct usb_ep *_ep,
496 unsigned bytes,
497 dma_addr_t *dma,
498 int mem_flags
499) {
500 char *retval;
501 struct dummy_ep *ep;
502 struct dummy *dum;
503
504 ep = usb_ep_to_dummy_ep (_ep);
505 dum = ep_to_dummy (ep);
506
507 if (!dum->driver)
508 return NULL;
509 retval = kmalloc (bytes, mem_flags);
510 *dma = (dma_addr_t) retval;
511 return retval;
512}
513
514static void
515dummy_free_buffer (
516 struct usb_ep *_ep,
517 void *buf,
518 dma_addr_t dma,
519 unsigned bytes
520) {
521 if (bytes)
522 kfree (buf);
523}
524
525static void
526fifo_complete (struct usb_ep *ep, struct usb_request *req)
527{
528}
529
530static int
531dummy_queue (struct usb_ep *_ep, struct usb_request *_req, int mem_flags)
532{
533 struct dummy_ep *ep;
534 struct dummy_request *req;
535 struct dummy *dum;
536 unsigned long flags;
537
538 req = usb_request_to_dummy_request (_req);
539 if (!_req || !list_empty (&req->queue) || !_req->complete)
540 return -EINVAL;
541
542 ep = usb_ep_to_dummy_ep (_ep);
543 if (!_ep || (!ep->desc && _ep->name != ep0name))
544 return -EINVAL;
545
546 dum = ep_to_dummy (ep);
547 if (!dum->driver || !is_enabled (dum))
548 return -ESHUTDOWN;
549
550#if 0
Alan Sternd9b76252005-05-03 16:15:43 -0400551 dev_dbg (udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ep, _req, _ep->name, _req->length, _req->buf);
553#endif
554
555 _req->status = -EINPROGRESS;
556 _req->actual = 0;
557 spin_lock_irqsave (&dum->lock, flags);
558
559 /* implement an emulated single-request FIFO */
560 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
561 list_empty (&dum->fifo_req.queue) &&
562 list_empty (&ep->queue) &&
563 _req->length <= FIFO_SIZE) {
564 req = &dum->fifo_req;
565 req->req = *_req;
566 req->req.buf = dum->fifo_buf;
567 memcpy (dum->fifo_buf, _req->buf, _req->length);
568 req->req.context = dum;
569 req->req.complete = fifo_complete;
570
571 spin_unlock (&dum->lock);
572 _req->actual = _req->length;
573 _req->status = 0;
574 _req->complete (_ep, _req);
575 spin_lock (&dum->lock);
576 }
577 list_add_tail (&req->queue, &ep->queue);
578 spin_unlock_irqrestore (&dum->lock, flags);
579
580 /* real hardware would likely enable transfers here, in case
581 * it'd been left NAKing.
582 */
583 return 0;
584}
585
586static int dummy_dequeue (struct usb_ep *_ep, struct usb_request *_req)
587{
588 struct dummy_ep *ep;
589 struct dummy *dum;
590 int retval = -EINVAL;
591 unsigned long flags;
592 struct dummy_request *req = NULL;
593
594 if (!_ep || !_req)
595 return retval;
596 ep = usb_ep_to_dummy_ep (_ep);
597 dum = ep_to_dummy (ep);
598
599 if (!dum->driver)
600 return -ESHUTDOWN;
601
602 spin_lock_irqsave (&dum->lock, flags);
603 list_for_each_entry (req, &ep->queue, queue) {
604 if (&req->req == _req) {
605 list_del_init (&req->queue);
606 _req->status = -ECONNRESET;
607 retval = 0;
608 break;
609 }
610 }
611 spin_unlock_irqrestore (&dum->lock, flags);
612
613 if (retval == 0) {
Alan Sternd9b76252005-05-03 16:15:43 -0400614 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 "dequeued req %p from %s, len %d buf %p\n",
616 req, _ep->name, _req->length, _req->buf);
617 _req->complete (_ep, _req);
618 }
619 return retval;
620}
621
622static int
623dummy_set_halt (struct usb_ep *_ep, int value)
624{
625 struct dummy_ep *ep;
626 struct dummy *dum;
627
628 if (!_ep)
629 return -EINVAL;
630 ep = usb_ep_to_dummy_ep (_ep);
631 dum = ep_to_dummy (ep);
632 if (!dum->driver)
633 return -ESHUTDOWN;
634 if (!value)
635 ep->halted = 0;
636 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
637 !list_empty (&ep->queue))
638 return -EAGAIN;
639 else
640 ep->halted = 1;
641 /* FIXME clear emulated data toggle too */
642 return 0;
643}
644
645static const struct usb_ep_ops dummy_ep_ops = {
646 .enable = dummy_enable,
647 .disable = dummy_disable,
648
649 .alloc_request = dummy_alloc_request,
650 .free_request = dummy_free_request,
651
652 .alloc_buffer = dummy_alloc_buffer,
653 .free_buffer = dummy_free_buffer,
654 /* map, unmap, ... eventually hook the "generic" dma calls */
655
656 .queue = dummy_queue,
657 .dequeue = dummy_dequeue,
658
659 .set_halt = dummy_set_halt,
660};
661
662/*-------------------------------------------------------------------------*/
663
664/* there are both host and device side versions of this call ... */
665static int dummy_g_get_frame (struct usb_gadget *_gadget)
666{
667 struct timeval tv;
668
669 do_gettimeofday (&tv);
670 return tv.tv_usec / 1000;
671}
672
673static int dummy_wakeup (struct usb_gadget *_gadget)
674{
675 struct dummy *dum;
676
677 dum = gadget_to_dummy (_gadget);
Alan Sternc2db8b52005-04-29 16:30:48 -0400678 if (!(dum->port_status & USB_PORT_STAT_SUSPEND)
Alan Stern5742b0c2005-05-02 11:25:17 -0400679 || !(dum->devstatus &
680 ( (1 << USB_DEVICE_B_HNP_ENABLE)
681 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -EINVAL;
683
684 /* hub notices our request, issues downstream resume, etc */
685 dum->resuming = 1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400686 dum->re_timeout = jiffies + msecs_to_jiffies(20);
Alan Stern685eb932005-05-03 16:27:26 -0400687 mod_timer (&dummy_to_hcd (dum)->rh_timer, dum->re_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689}
690
691static int dummy_set_selfpowered (struct usb_gadget *_gadget, int value)
692{
693 struct dummy *dum;
694
695 dum = gadget_to_dummy (_gadget);
696 if (value)
697 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
698 else
699 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
700 return 0;
701}
702
Alan Sternf1c39fa2005-05-03 16:24:04 -0400703static int dummy_pullup (struct usb_gadget *_gadget, int value)
704{
705 struct dummy *dum;
706 unsigned long flags;
707
708 dum = gadget_to_dummy (_gadget);
709 spin_lock_irqsave (&dum->lock, flags);
710 dum->pullup = (value != 0);
711 set_link_state (dum);
712 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -0400713
714 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Alan Sternf1c39fa2005-05-03 16:24:04 -0400715 return 0;
716}
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718static const struct usb_gadget_ops dummy_ops = {
719 .get_frame = dummy_g_get_frame,
720 .wakeup = dummy_wakeup,
721 .set_selfpowered = dummy_set_selfpowered,
Alan Sternf1c39fa2005-05-03 16:24:04 -0400722 .pullup = dummy_pullup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723};
724
725/*-------------------------------------------------------------------------*/
726
727/* "function" sysfs attribute */
728static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -0400729show_function (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct dummy *dum = gadget_dev_to_dummy (dev);
732
733 if (!dum->driver || !dum->driver->function)
734 return 0;
735 return scnprintf (buf, PAGE_SIZE, "%s\n", dum->driver->function);
736}
737DEVICE_ATTR (function, S_IRUGO, show_function, NULL);
738
739/*-------------------------------------------------------------------------*/
740
741/*
742 * Driver registration/unregistration.
743 *
744 * This is basically hardware-specific; there's usually only one real USB
745 * device (not host) controller since that's how USB devices are intended
746 * to work. So most implementations of these api calls will rely on the
747 * fact that only one driver will ever bind to the hardware. But curious
748 * hardware can be built with discrete components, so the gadget API doesn't
749 * require that assumption.
750 *
751 * For this emulator, it might be convenient to create a usb slave device
752 * for each driver that registers: just add to a big root hub.
753 */
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755int
756usb_gadget_register_driver (struct usb_gadget_driver *driver)
757{
758 struct dummy *dum = the_controller;
759 int retval, i;
760
761 if (!dum)
762 return -EINVAL;
763 if (dum->driver)
764 return -EBUSY;
765 if (!driver->bind || !driver->unbind || !driver->setup
766 || driver->speed == USB_SPEED_UNKNOWN)
767 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);
785 ep->halted = ep->already_seen = ep->setup_stage = 0;
786 ep->ep.maxpacket = ~0;
787 ep->last_io = jiffies;
788 ep->gadget = &dum->gadget;
789 ep->desc = NULL;
790 INIT_LIST_HEAD (&ep->queue);
791 }
792
793 dum->gadget.ep0 = &dum->ep [0].ep;
794 dum->ep [0].ep.maxpacket = 64;
795 list_del_init (&dum->ep [0].ep.ep_list);
796 INIT_LIST_HEAD(&dum->fifo_req.queue);
797
798 dum->driver = driver;
799 dum->gadget.dev.driver = &driver->driver;
Alan Sternd9b76252005-05-03 16:15:43 -0400800 dev_dbg (udc_dev(dum), "binding gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 driver->driver.name);
802 if ((retval = driver->bind (&dum->gadget)) != 0) {
803 dum->driver = NULL;
804 dum->gadget.dev.driver = NULL;
805 return retval;
806 }
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 driver->driver.bus = dum->gadget.dev.parent->bus;
809 driver_register (&driver->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 device_bind_driver (&dum->gadget.dev);
811
812 /* khubd will enumerate this in a while */
Alan Sternf1c39fa2005-05-03 16:24:04 -0400813 spin_lock_irq (&dum->lock);
814 dum->pullup = 1;
815 set_link_state (dum);
816 spin_unlock_irq (&dum->lock);
Alan Stern685eb932005-05-03 16:27:26 -0400817
818 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return 0;
820}
821EXPORT_SYMBOL (usb_gadget_register_driver);
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823int
824usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
825{
826 struct dummy *dum = the_controller;
827 unsigned long flags;
828
829 if (!dum)
830 return -ENODEV;
831 if (!driver || driver != dum->driver)
832 return -EINVAL;
833
Alan Sternd9b76252005-05-03 16:15:43 -0400834 dev_dbg (udc_dev(dum), "unregister gadget driver '%s'\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 driver->driver.name);
836
837 spin_lock_irqsave (&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400838 dum->pullup = 0;
839 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 spin_unlock_irqrestore (&dum->lock, flags);
841
842 driver->unbind (&dum->gadget);
843 dum->driver = NULL;
844
845 device_release_driver (&dum->gadget.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 driver_unregister (&driver->driver);
847
Alan Sternf1c39fa2005-05-03 16:24:04 -0400848 spin_lock_irqsave (&dum->lock, flags);
849 dum->pullup = 0;
850 set_link_state (dum);
851 spin_unlock_irqrestore (&dum->lock, flags);
852
Alan Stern685eb932005-05-03 16:27:26 -0400853 usb_hcd_poll_rh_status (dummy_to_hcd (dum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855}
856EXPORT_SYMBOL (usb_gadget_unregister_driver);
857
858#undef is_enabled
859
860int net2280_set_fifo_mode (struct usb_gadget *gadget, int mode)
861{
862 return -ENOSYS;
863}
864EXPORT_SYMBOL (net2280_set_fifo_mode);
865
Alan Sternd9b76252005-05-03 16:15:43 -0400866
867/* The gadget structure is stored inside the hcd structure and will be
868 * released along with it. */
869static void
870dummy_gadget_release (struct device *dev)
871{
872#if 0 /* usb_bus_put isn't EXPORTed! */
873 struct dummy *dum = gadget_dev_to_dummy (dev);
874
875 usb_bus_put (&dummy_to_hcd (dum)->self);
876#endif
877}
878
879static int dummy_udc_probe (struct device *dev)
880{
881 struct dummy *dum = the_controller;
882 int rc;
883
884 dum->gadget.name = gadget_name;
885 dum->gadget.ops = &dummy_ops;
886 dum->gadget.is_dualspeed = 1;
887
888 /* maybe claim OTG support, though we won't complete HNP */
889 dum->gadget.is_otg = (dummy_to_hcd(dum)->self.otg_port != 0);
890
891 strcpy (dum->gadget.dev.bus_id, "gadget");
892 dum->gadget.dev.parent = dev;
893 dum->gadget.dev.release = dummy_gadget_release;
894 rc = device_register (&dum->gadget.dev);
895 if (rc < 0)
896 return rc;
897
898#if 0 /* usb_bus_get isn't EXPORTed! */
899 usb_bus_get (&dummy_to_hcd (dum)->self);
900#endif
901
902 dev_set_drvdata (dev, dum);
903 device_create_file (&dum->gadget.dev, &dev_attr_function);
904 return rc;
905}
906
907static int dummy_udc_remove (struct device *dev)
908{
909 struct dummy *dum = dev_get_drvdata (dev);
910
911 dev_set_drvdata (dev, NULL);
912 device_remove_file (&dum->gadget.dev, &dev_attr_function);
913 device_unregister (&dum->gadget.dev);
914 return 0;
915}
916
917static struct device_driver dummy_udc_driver = {
918 .name = (char *) gadget_name,
919 .bus = &platform_bus_type,
920 .probe = dummy_udc_probe,
921 .remove = dummy_udc_remove,
922};
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/*-------------------------------------------------------------------------*/
925
926/* MASTER/HOST SIDE DRIVER
927 *
928 * this uses the hcd framework to hook up to host side drivers.
929 * its root hub will only have one device, otherwise it acts like
930 * a normal host controller.
931 *
932 * when urbs are queued, they're just stuck on a list that we
933 * scan in a timer callback. that callback connects writes from
934 * the host with reads from the device, and so on, based on the
935 * usb 2.0 rules.
936 */
937
938static int dummy_urb_enqueue (
939 struct usb_hcd *hcd,
940 struct usb_host_endpoint *ep,
941 struct urb *urb,
942 int mem_flags
943) {
944 struct dummy *dum;
945 struct urbp *urbp;
946 unsigned long flags;
947
948 if (!urb->transfer_buffer && urb->transfer_buffer_length)
949 return -EINVAL;
950
951 urbp = kmalloc (sizeof *urbp, mem_flags);
952 if (!urbp)
953 return -ENOMEM;
954 urbp->urb = urb;
955
956 dum = hcd_to_dummy (hcd);
957 spin_lock_irqsave (&dum->lock, flags);
958
959 if (!dum->udev) {
960 dum->udev = urb->dev;
961 usb_get_dev (dum->udev);
962 } else if (unlikely (dum->udev != urb->dev))
963 dev_err (dummy_dev(dum), "usb_device address has changed!\n");
964
965 list_add_tail (&urbp->urbp_list, &dum->urbp_list);
966 urb->hcpriv = urbp;
967 if (usb_pipetype (urb->pipe) == PIPE_CONTROL)
968 urb->error_count = 1; /* mark as a new urb */
969
970 /* kick the scheduler, it'll do the rest */
971 if (!timer_pending (&dum->timer))
972 mod_timer (&dum->timer, jiffies + 1);
973
974 spin_unlock_irqrestore (&dum->lock, flags);
975 return 0;
976}
977
978static int dummy_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
979{
980 /* giveback happens automatically in timer callback */
981 return 0;
982}
983
984static void maybe_set_status (struct urb *urb, int status)
985{
986 spin_lock (&urb->lock);
987 if (urb->status == -EINPROGRESS)
988 urb->status = status;
989 spin_unlock (&urb->lock);
990}
991
992/* transfer up to a frame's worth; caller must own lock */
993static int
994transfer (struct dummy *dum, struct urb *urb, struct dummy_ep *ep, int limit)
995{
996 struct dummy_request *req;
997
998top:
999 /* if there's no request queued, the device is NAKing; return */
1000 list_for_each_entry (req, &ep->queue, queue) {
1001 unsigned host_len, dev_len, len;
1002 int is_short, to_host;
1003 int rescan = 0;
1004
1005 /* 1..N packets of ep->ep.maxpacket each ... the last one
1006 * may be short (including zero length).
1007 *
1008 * writer can send a zlp explicitly (length 0) or implicitly
1009 * (length mod maxpacket zero, and 'zero' flag); they always
1010 * terminate reads.
1011 */
1012 host_len = urb->transfer_buffer_length - urb->actual_length;
1013 dev_len = req->req.length - req->req.actual;
1014 len = min (host_len, dev_len);
1015
1016 /* FIXME update emulated data toggle too */
1017
1018 to_host = usb_pipein (urb->pipe);
1019 if (unlikely (len == 0))
1020 is_short = 1;
1021 else {
1022 char *ubuf, *rbuf;
1023
1024 /* not enough bandwidth left? */
1025 if (limit < ep->ep.maxpacket && limit < len)
1026 break;
1027 len = min (len, (unsigned) limit);
1028 if (len == 0)
1029 break;
1030
1031 /* use an extra pass for the final short packet */
1032 if (len > ep->ep.maxpacket) {
1033 rescan = 1;
1034 len -= (len % ep->ep.maxpacket);
1035 }
1036 is_short = (len % ep->ep.maxpacket) != 0;
1037
1038 /* else transfer packet(s) */
1039 ubuf = urb->transfer_buffer + urb->actual_length;
1040 rbuf = req->req.buf + req->req.actual;
1041 if (to_host)
1042 memcpy (ubuf, rbuf, len);
1043 else
1044 memcpy (rbuf, ubuf, len);
1045 ep->last_io = jiffies;
1046
1047 limit -= len;
1048 urb->actual_length += len;
1049 req->req.actual += len;
1050 }
1051
1052 /* short packets terminate, maybe with overflow/underflow.
1053 * it's only really an error to write too much.
1054 *
1055 * partially filling a buffer optionally blocks queue advances
1056 * (so completion handlers can clean up the queue) but we don't
1057 * need to emulate such data-in-flight. so we only show part
1058 * of the URB_SHORT_NOT_OK effect: completion status.
1059 */
1060 if (is_short) {
1061 if (host_len == dev_len) {
1062 req->req.status = 0;
1063 maybe_set_status (urb, 0);
1064 } else if (to_host) {
1065 req->req.status = 0;
1066 if (dev_len > host_len)
1067 maybe_set_status (urb, -EOVERFLOW);
1068 else
1069 maybe_set_status (urb,
1070 (urb->transfer_flags
1071 & URB_SHORT_NOT_OK)
1072 ? -EREMOTEIO : 0);
1073 } else if (!to_host) {
1074 maybe_set_status (urb, 0);
1075 if (host_len > dev_len)
1076 req->req.status = -EOVERFLOW;
1077 else
1078 req->req.status = 0;
1079 }
1080
1081 /* many requests terminate without a short packet */
1082 } else {
1083 if (req->req.length == req->req.actual
1084 && !req->req.zero)
1085 req->req.status = 0;
1086 if (urb->transfer_buffer_length == urb->actual_length
1087 && !(urb->transfer_flags
1088 & URB_ZERO_PACKET)) {
1089 maybe_set_status (urb, 0);
1090 }
1091 }
1092
1093 /* device side completion --> continuable */
1094 if (req->req.status != -EINPROGRESS) {
1095 list_del_init (&req->queue);
1096
1097 spin_unlock (&dum->lock);
1098 req->req.complete (&ep->ep, &req->req);
1099 spin_lock (&dum->lock);
1100
1101 /* requests might have been unlinked... */
1102 rescan = 1;
1103 }
1104
1105 /* host side completion --> terminate */
1106 if (urb->status != -EINPROGRESS)
1107 break;
1108
1109 /* rescan to continue with any other queued i/o */
1110 if (rescan)
1111 goto top;
1112 }
1113 return limit;
1114}
1115
1116static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
1117{
1118 int limit = ep->ep.maxpacket;
1119
1120 if (dum->gadget.speed == USB_SPEED_HIGH) {
1121 int tmp;
1122
1123 /* high bandwidth mode */
1124 tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
1125 tmp = le16_to_cpu (tmp);
1126 tmp = (tmp >> 11) & 0x03;
1127 tmp *= 8 /* applies to entire frame */;
1128 limit += limit * tmp;
1129 }
1130 return limit;
1131}
1132
1133#define is_active(dum) ((dum->port_status & \
1134 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1135 USB_PORT_STAT_SUSPEND)) \
1136 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1137
1138static struct dummy_ep *find_endpoint (struct dummy *dum, u8 address)
1139{
1140 int i;
1141
1142 if (!is_active (dum))
1143 return NULL;
1144 if ((address & ~USB_DIR_IN) == 0)
1145 return &dum->ep [0];
1146 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
1147 struct dummy_ep *ep = &dum->ep [i];
1148
1149 if (!ep->desc)
1150 continue;
1151 if (ep->desc->bEndpointAddress == address)
1152 return ep;
1153 }
1154 return NULL;
1155}
1156
1157#undef is_active
1158
1159#define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1160#define Dev_InRequest (Dev_Request | USB_DIR_IN)
1161#define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1162#define Intf_InRequest (Intf_Request | USB_DIR_IN)
1163#define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1164#define Ep_InRequest (Ep_Request | USB_DIR_IN)
1165
1166/* drive both sides of the transfers; looks like irq handlers to
1167 * both drivers except the callbacks aren't in_irq().
1168 */
1169static void dummy_timer (unsigned long _dum)
1170{
1171 struct dummy *dum = (struct dummy *) _dum;
1172 struct urbp *urbp, *tmp;
1173 unsigned long flags;
1174 int limit, total;
1175 int i;
1176
1177 /* simplistic model for one frame's bandwidth */
1178 switch (dum->gadget.speed) {
1179 case USB_SPEED_LOW:
1180 total = 8/*bytes*/ * 12/*packets*/;
1181 break;
1182 case USB_SPEED_FULL:
1183 total = 64/*bytes*/ * 19/*packets*/;
1184 break;
1185 case USB_SPEED_HIGH:
1186 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1187 break;
1188 default:
1189 dev_err (dummy_dev(dum), "bogus device speed\n");
1190 return;
1191 }
1192
1193 /* FIXME if HZ != 1000 this will probably misbehave ... */
1194
1195 /* look at each urb queued by the host side driver */
1196 spin_lock_irqsave (&dum->lock, flags);
1197
1198 if (!dum->udev) {
1199 dev_err (dummy_dev(dum),
1200 "timer fired with no URBs pending?\n");
1201 spin_unlock_irqrestore (&dum->lock, flags);
1202 return;
1203 }
1204
1205 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1206 if (!ep_name [i])
1207 break;
1208 dum->ep [i].already_seen = 0;
1209 }
1210
1211restart:
1212 list_for_each_entry_safe (urbp, tmp, &dum->urbp_list, urbp_list) {
1213 struct urb *urb;
1214 struct dummy_request *req;
1215 u8 address;
1216 struct dummy_ep *ep = NULL;
1217 int type;
1218
1219 urb = urbp->urb;
1220 if (urb->status != -EINPROGRESS) {
1221 /* likely it was just unlinked */
1222 goto return_urb;
1223 }
1224 type = usb_pipetype (urb->pipe);
1225
1226 /* used up this frame's non-periodic bandwidth?
1227 * FIXME there's infinite bandwidth for control and
1228 * periodic transfers ... unrealistic.
1229 */
1230 if (total <= 0 && type == PIPE_BULK)
1231 continue;
1232
1233 /* find the gadget's ep for this request (if configured) */
1234 address = usb_pipeendpoint (urb->pipe);
1235 if (usb_pipein (urb->pipe))
1236 address |= USB_DIR_IN;
1237 ep = find_endpoint(dum, address);
1238 if (!ep) {
1239 /* set_configuration() disagreement */
1240 dev_dbg (dummy_dev(dum),
1241 "no ep configured for urb %p\n",
1242 urb);
1243 maybe_set_status (urb, -EPROTO);
1244 goto return_urb;
1245 }
1246
1247 if (ep->already_seen)
1248 continue;
1249 ep->already_seen = 1;
1250 if (ep == &dum->ep [0] && urb->error_count) {
1251 ep->setup_stage = 1; /* a new urb */
1252 urb->error_count = 0;
1253 }
1254 if (ep->halted && !ep->setup_stage) {
1255 /* NOTE: must not be iso! */
1256 dev_dbg (dummy_dev(dum), "ep %s halted, urb %p\n",
1257 ep->ep.name, urb);
1258 maybe_set_status (urb, -EPIPE);
1259 goto return_urb;
1260 }
1261 /* FIXME make sure both ends agree on maxpacket */
1262
1263 /* handle control requests */
1264 if (ep == &dum->ep [0] && ep->setup_stage) {
1265 struct usb_ctrlrequest setup;
1266 int value = 1;
1267 struct dummy_ep *ep2;
1268
1269 setup = *(struct usb_ctrlrequest*) urb->setup_packet;
1270 le16_to_cpus (&setup.wIndex);
1271 le16_to_cpus (&setup.wValue);
1272 le16_to_cpus (&setup.wLength);
1273 if (setup.wLength != urb->transfer_buffer_length) {
1274 maybe_set_status (urb, -EOVERFLOW);
1275 goto return_urb;
1276 }
1277
1278 /* paranoia, in case of stale queued data */
1279 list_for_each_entry (req, &ep->queue, queue) {
1280 list_del_init (&req->queue);
1281 req->req.status = -EOVERFLOW;
Alan Sternd9b76252005-05-03 16:15:43 -04001282 dev_dbg (udc_dev(dum), "stale req = %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 req);
1284
1285 spin_unlock (&dum->lock);
1286 req->req.complete (&ep->ep, &req->req);
1287 spin_lock (&dum->lock);
1288 ep->already_seen = 0;
1289 goto restart;
1290 }
1291
1292 /* gadget driver never sees set_address or operations
1293 * on standard feature flags. some hardware doesn't
1294 * even expose them.
1295 */
1296 ep->last_io = jiffies;
1297 ep->setup_stage = 0;
1298 ep->halted = 0;
1299 switch (setup.bRequest) {
1300 case USB_REQ_SET_ADDRESS:
1301 if (setup.bRequestType != Dev_Request)
1302 break;
1303 dum->address = setup.wValue;
1304 maybe_set_status (urb, 0);
Alan Sternd9b76252005-05-03 16:15:43 -04001305 dev_dbg (udc_dev(dum), "set_address = %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 setup.wValue);
1307 value = 0;
1308 break;
1309 case USB_REQ_SET_FEATURE:
1310 if (setup.bRequestType == Dev_Request) {
1311 value = 0;
1312 switch (setup.wValue) {
1313 case USB_DEVICE_REMOTE_WAKEUP:
1314 break;
Alan Stern5742b0c2005-05-02 11:25:17 -04001315 case USB_DEVICE_B_HNP_ENABLE:
1316 dum->gadget.b_hnp_enable = 1;
1317 break;
1318 case USB_DEVICE_A_HNP_SUPPORT:
1319 dum->gadget.a_hnp_support = 1;
1320 break;
1321 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1322 dum->gadget.a_alt_hnp_support
1323 = 1;
1324 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 default:
1326 value = -EOPNOTSUPP;
1327 }
1328 if (value == 0) {
1329 dum->devstatus |=
1330 (1 << setup.wValue);
1331 maybe_set_status (urb, 0);
1332 }
1333
1334 } else if (setup.bRequestType == Ep_Request) {
1335 // endpoint halt
1336 ep2 = find_endpoint (dum,
1337 setup.wIndex);
1338 if (!ep2) {
1339 value = -EOPNOTSUPP;
1340 break;
1341 }
1342 ep2->halted = 1;
1343 value = 0;
1344 maybe_set_status (urb, 0);
1345 }
1346 break;
1347 case USB_REQ_CLEAR_FEATURE:
1348 if (setup.bRequestType == Dev_Request) {
1349 switch (setup.wValue) {
1350 case USB_DEVICE_REMOTE_WAKEUP:
1351 dum->devstatus &= ~(1 <<
1352 USB_DEVICE_REMOTE_WAKEUP);
1353 value = 0;
1354 maybe_set_status (urb, 0);
1355 break;
1356 default:
1357 value = -EOPNOTSUPP;
1358 break;
1359 }
1360 } else if (setup.bRequestType == Ep_Request) {
1361 // endpoint halt
1362 ep2 = find_endpoint (dum,
1363 setup.wIndex);
1364 if (!ep2) {
1365 value = -EOPNOTSUPP;
1366 break;
1367 }
1368 ep2->halted = 0;
1369 value = 0;
1370 maybe_set_status (urb, 0);
1371 }
1372 break;
1373 case USB_REQ_GET_STATUS:
1374 if (setup.bRequestType == Dev_InRequest
1375 || setup.bRequestType
1376 == Intf_InRequest
1377 || setup.bRequestType
1378 == Ep_InRequest
1379 ) {
1380 char *buf;
1381
1382 // device: remote wakeup, selfpowered
1383 // interface: nothing
1384 // endpoint: halt
1385 buf = (char *)urb->transfer_buffer;
1386 if (urb->transfer_buffer_length > 0) {
1387 if (setup.bRequestType ==
1388 Ep_InRequest) {
1389 ep2 = find_endpoint (dum, setup.wIndex);
1390 if (!ep2) {
1391 value = -EOPNOTSUPP;
1392 break;
1393 }
1394 buf [0] = ep2->halted;
1395 } else if (setup.bRequestType ==
1396 Dev_InRequest) {
1397 buf [0] = (u8)
1398 dum->devstatus;
1399 } else
1400 buf [0] = 0;
1401 }
1402 if (urb->transfer_buffer_length > 1)
1403 buf [1] = 0;
1404 urb->actual_length = min (2,
1405 urb->transfer_buffer_length);
1406 value = 0;
1407 maybe_set_status (urb, 0);
1408 }
1409 break;
1410 }
1411
1412 /* gadget driver handles all other requests. block
1413 * until setup() returns; no reentrancy issues etc.
1414 */
1415 if (value > 0) {
1416 spin_unlock (&dum->lock);
1417 value = dum->driver->setup (&dum->gadget,
1418 &setup);
1419 spin_lock (&dum->lock);
1420
1421 if (value >= 0) {
1422 /* no delays (max 64KB data stage) */
1423 limit = 64*1024;
1424 goto treat_control_like_bulk;
1425 }
1426 /* error, see below */
1427 }
1428
1429 if (value < 0) {
1430 if (value != -EOPNOTSUPP)
Alan Sternd9b76252005-05-03 16:15:43 -04001431 dev_dbg (udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 "setup --> %d\n",
1433 value);
1434 maybe_set_status (urb, -EPIPE);
1435 urb->actual_length = 0;
1436 }
1437
1438 goto return_urb;
1439 }
1440
1441 /* non-control requests */
1442 limit = total;
1443 switch (usb_pipetype (urb->pipe)) {
1444 case PIPE_ISOCHRONOUS:
1445 /* FIXME is it urb->interval since the last xfer?
1446 * use urb->iso_frame_desc[i].
1447 * complete whether or not ep has requests queued.
1448 * report random errors, to debug drivers.
1449 */
1450 limit = max (limit, periodic_bytes (dum, ep));
1451 maybe_set_status (urb, -ENOSYS);
1452 break;
1453
1454 case PIPE_INTERRUPT:
1455 /* FIXME is it urb->interval since the last xfer?
1456 * this almost certainly polls too fast.
1457 */
1458 limit = max (limit, periodic_bytes (dum, ep));
1459 /* FALLTHROUGH */
1460
1461 // case PIPE_BULK: case PIPE_CONTROL:
1462 default:
1463 treat_control_like_bulk:
1464 ep->last_io = jiffies;
1465 total = transfer (dum, urb, ep, limit);
1466 break;
1467 }
1468
1469 /* incomplete transfer? */
1470 if (urb->status == -EINPROGRESS)
1471 continue;
1472
1473return_urb:
1474 urb->hcpriv = NULL;
1475 list_del (&urbp->urbp_list);
1476 kfree (urbp);
1477 if (ep)
1478 ep->already_seen = ep->setup_stage = 0;
1479
1480 spin_unlock (&dum->lock);
1481 usb_hcd_giveback_urb (dummy_to_hcd(dum), urb, NULL);
1482 spin_lock (&dum->lock);
1483
1484 goto restart;
1485 }
1486
1487 /* want a 1 msec delay here */
1488 if (!list_empty (&dum->urbp_list))
1489 mod_timer (&dum->timer, jiffies + msecs_to_jiffies(1));
1490 else {
1491 usb_put_dev (dum->udev);
1492 dum->udev = NULL;
1493 }
1494
1495 spin_unlock_irqrestore (&dum->lock, flags);
1496}
1497
1498/*-------------------------------------------------------------------------*/
1499
1500#define PORT_C_MASK \
Alan Sternc2db8b52005-04-29 16:30:48 -04001501 ((USB_PORT_STAT_C_CONNECTION \
1502 | USB_PORT_STAT_C_ENABLE \
1503 | USB_PORT_STAT_C_SUSPEND \
1504 | USB_PORT_STAT_C_OVERCURRENT \
1505 | USB_PORT_STAT_C_RESET) << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507static int dummy_hub_status (struct usb_hcd *hcd, char *buf)
1508{
1509 struct dummy *dum;
1510 unsigned long flags;
1511 int retval;
1512
1513 dum = hcd_to_dummy (hcd);
1514
1515 spin_lock_irqsave (&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001516
1517 if (dum->resuming && time_after_eq (jiffies, dum->re_timeout)) {
1518 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1519 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
1520 set_link_state (dum);
1521 }
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (!(dum->port_status & PORT_C_MASK))
1524 retval = 0;
1525 else {
1526 *buf = (1 << 1);
1527 dev_dbg (dummy_dev(dum), "port status 0x%08x has changes\n",
1528 dum->port_status);
1529 retval = 1;
1530 }
1531 spin_unlock_irqrestore (&dum->lock, flags);
1532 return retval;
1533}
1534
1535static inline void
1536hub_descriptor (struct usb_hub_descriptor *desc)
1537{
1538 memset (desc, 0, sizeof *desc);
1539 desc->bDescriptorType = 0x29;
1540 desc->bDescLength = 9;
1541 desc->wHubCharacteristics = __constant_cpu_to_le16 (0x0001);
1542 desc->bNbrPorts = 1;
1543 desc->bitmap [0] = 0xff;
1544 desc->bitmap [1] = 0xff;
1545}
1546
1547static int dummy_hub_control (
1548 struct usb_hcd *hcd,
1549 u16 typeReq,
1550 u16 wValue,
1551 u16 wIndex,
1552 char *buf,
1553 u16 wLength
1554) {
1555 struct dummy *dum;
1556 int retval = 0;
1557 unsigned long flags;
1558
1559 dum = hcd_to_dummy (hcd);
1560 spin_lock_irqsave (&dum->lock, flags);
1561 switch (typeReq) {
1562 case ClearHubFeature:
1563 break;
1564 case ClearPortFeature:
1565 switch (wValue) {
1566 case USB_PORT_FEAT_SUSPEND:
Alan Sternc2db8b52005-04-29 16:30:48 -04001567 if (dum->port_status & USB_PORT_STAT_SUSPEND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* 20msec resume signaling */
1569 dum->resuming = 1;
1570 dum->re_timeout = jiffies +
Alan Sternf1c39fa2005-05-03 16:24:04 -04001571 msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573 break;
1574 case USB_PORT_FEAT_POWER:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001575 if (dum->port_status & USB_PORT_STAT_POWER)
1576 dev_dbg (dummy_dev(dum), "power-off\n");
1577 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 default:
1579 dum->port_status &= ~(1 << wValue);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001580 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582 break;
1583 case GetHubDescriptor:
1584 hub_descriptor ((struct usb_hub_descriptor *) buf);
1585 break;
1586 case GetHubStatus:
1587 *(u32 *) buf = __constant_cpu_to_le32 (0);
1588 break;
1589 case GetPortStatus:
1590 if (wIndex != 1)
1591 retval = -EPIPE;
1592
1593 /* whoever resets or resumes must GetPortStatus to
1594 * complete it!!
1595 */
Alan Sternf1c39fa2005-05-03 16:24:04 -04001596 if (dum->resuming &&
1597 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001598 dum->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1599 dum->port_status &= ~USB_PORT_STAT_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001601 if ((dum->port_status & USB_PORT_STAT_RESET) != 0 &&
1602 time_after_eq (jiffies, dum->re_timeout)) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001603 dum->port_status |= (USB_PORT_STAT_C_RESET << 16);
1604 dum->port_status &= ~USB_PORT_STAT_RESET;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001605 if (dum->pullup) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 dum->port_status |= USB_PORT_STAT_ENABLE;
1607 /* give it the best speed we agree on */
1608 dum->gadget.speed = dum->driver->speed;
1609 dum->gadget.ep0->maxpacket = 64;
1610 switch (dum->gadget.speed) {
1611 case USB_SPEED_HIGH:
1612 dum->port_status |=
1613 USB_PORT_STAT_HIGH_SPEED;
1614 break;
1615 case USB_SPEED_LOW:
1616 dum->gadget.ep0->maxpacket = 8;
1617 dum->port_status |=
1618 USB_PORT_STAT_LOW_SPEED;
1619 break;
1620 default:
1621 dum->gadget.speed = USB_SPEED_FULL;
1622 break;
1623 }
1624 }
1625 }
Alan Sternf1c39fa2005-05-03 16:24:04 -04001626 set_link_state (dum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 ((u16 *) buf)[0] = cpu_to_le16 (dum->port_status);
1628 ((u16 *) buf)[1] = cpu_to_le16 (dum->port_status >> 16);
1629 break;
1630 case SetHubFeature:
1631 retval = -EPIPE;
1632 break;
1633 case SetPortFeature:
1634 switch (wValue) {
1635 case USB_PORT_FEAT_SUSPEND:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001636 if (dum->active) {
Alan Sternc2db8b52005-04-29 16:30:48 -04001637 dum->port_status |= USB_PORT_STAT_SUSPEND;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001638
1639 /* HNP would happen here; for now we
1640 * assume b_bus_req is always true.
1641 */
1642 set_link_state (dum);
1643 if (((1 << USB_DEVICE_B_HNP_ENABLE)
1644 & dum->devstatus) != 0)
1645 dev_dbg (dummy_dev(dum),
Alan Stern5742b0c2005-05-02 11:25:17 -04001646 "no HNP yet!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648 break;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001649 case USB_PORT_FEAT_POWER:
1650 dum->port_status |= USB_PORT_STAT_POWER;
1651 set_link_state (dum);
1652 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 case USB_PORT_FEAT_RESET:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001654 /* if it's already enabled, disable */
1655 dum->port_status &= ~(USB_PORT_STAT_ENABLE
1656 | USB_PORT_STAT_LOW_SPEED
1657 | USB_PORT_STAT_HIGH_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 /* 50msec reset signaling */
1659 dum->re_timeout = jiffies + msecs_to_jiffies(50);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001660 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 default:
Alan Sternf1c39fa2005-05-03 16:24:04 -04001662 if ((dum->port_status & USB_PORT_STAT_POWER) != 0) {
1663 dum->port_status |= (1 << wValue);
1664 set_link_state (dum);
1665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 break;
1668
1669 default:
1670 dev_dbg (dummy_dev(dum),
1671 "hub control req%04x v%04x i%04x l%d\n",
1672 typeReq, wValue, wIndex, wLength);
1673
1674 /* "protocol stall" on error */
1675 retval = -EPIPE;
1676 }
1677 spin_unlock_irqrestore (&dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -04001678
1679 if ((dum->port_status & PORT_C_MASK) != 0)
1680 usb_hcd_poll_rh_status (hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return retval;
1682}
1683
1684
1685/*-------------------------------------------------------------------------*/
1686
1687static inline ssize_t
1688show_urb (char *buf, size_t size, struct urb *urb)
1689{
1690 int ep = usb_pipeendpoint (urb->pipe);
1691
1692 return snprintf (buf, size,
1693 "urb/%p %s ep%d%s%s len %d/%d\n",
1694 urb,
1695 ({ char *s;
1696 switch (urb->dev->speed) {
1697 case USB_SPEED_LOW: s = "ls"; break;
1698 case USB_SPEED_FULL: s = "fs"; break;
1699 case USB_SPEED_HIGH: s = "hs"; break;
1700 default: s = "?"; break;
1701 }; s; }),
1702 ep, ep ? (usb_pipein (urb->pipe) ? "in" : "out") : "",
1703 ({ char *s; \
1704 switch (usb_pipetype (urb->pipe)) { \
1705 case PIPE_CONTROL: s = ""; break; \
1706 case PIPE_BULK: s = "-bulk"; break; \
1707 case PIPE_INTERRUPT: s = "-int"; break; \
1708 default: s = "-iso"; break; \
1709 }; s;}),
1710 urb->actual_length, urb->transfer_buffer_length);
1711}
1712
1713static ssize_t
Yani Ioannou10523b32005-05-17 06:43:37 -04001714show_urbs (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct usb_hcd *hcd = dev_get_drvdata (dev);
1717 struct dummy *dum = hcd_to_dummy (hcd);
1718 struct urbp *urbp;
1719 size_t size = 0;
1720 unsigned long flags;
1721
1722 spin_lock_irqsave (&dum->lock, flags);
1723 list_for_each_entry (urbp, &dum->urbp_list, urbp_list) {
1724 size_t temp;
1725
1726 temp = show_urb (buf, PAGE_SIZE - size, urbp->urb);
1727 buf += temp;
1728 size += temp;
1729 }
1730 spin_unlock_irqrestore (&dum->lock, flags);
1731
1732 return size;
1733}
1734static DEVICE_ATTR (urbs, S_IRUGO, show_urbs, NULL);
1735
1736static int dummy_start (struct usb_hcd *hcd)
1737{
1738 struct dummy *dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 dum = hcd_to_dummy (hcd);
1741
1742 /*
1743 * MASTER side init ... we emulate a root hub that'll only ever
1744 * talk to one device (the slave side). Also appears in sysfs,
1745 * just like more familiar pci-based HCDs.
1746 */
1747 spin_lock_init (&dum->lock);
1748 init_timer (&dum->timer);
1749 dum->timer.function = dummy_timer;
1750 dum->timer.data = (unsigned long) dum;
1751
1752 INIT_LIST_HEAD (&dum->urbp_list);
1753
Alan Sternbc96c0a2005-04-25 11:21:31 -04001754 /* only show a low-power port: just 8mA */
1755 hcd->power_budget = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 hcd->state = HC_STATE_RUNNING;
Alan Stern685eb932005-05-03 16:27:26 -04001757 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Alan Stern5742b0c2005-05-02 11:25:17 -04001759#ifdef CONFIG_USB_OTG
1760 hcd->self.otg_port = 1;
1761#endif
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
1764 device_create_file (dummy_dev(dum), &dev_attr_urbs);
1765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
1768static void dummy_stop (struct usb_hcd *hcd)
1769{
1770 struct dummy *dum;
1771
1772 dum = hcd_to_dummy (hcd);
1773
1774 device_remove_file (dummy_dev(dum), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 usb_gadget_unregister_driver (dum->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 dev_info (dummy_dev(dum), "stopped\n");
1777}
1778
1779/*-------------------------------------------------------------------------*/
1780
1781static int dummy_h_get_frame (struct usb_hcd *hcd)
1782{
1783 return dummy_g_get_frame (NULL);
1784}
1785
1786static const struct hc_driver dummy_hcd = {
1787 .description = (char *) driver_name,
1788 .product_desc = "Dummy host controller",
1789 .hcd_priv_size = sizeof(struct dummy),
1790
1791 .flags = HCD_USB2,
1792
1793 .start = dummy_start,
1794 .stop = dummy_stop,
1795
1796 .urb_enqueue = dummy_urb_enqueue,
1797 .urb_dequeue = dummy_urb_dequeue,
1798
1799 .get_frame_number = dummy_h_get_frame,
1800
1801 .hub_status_data = dummy_hub_status,
1802 .hub_control = dummy_hub_control,
1803};
1804
Alan Sternd9b76252005-05-03 16:15:43 -04001805static int dummy_hcd_probe (struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
1807 struct usb_hcd *hcd;
1808 int retval;
1809
1810 dev_info (dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
1811
1812 hcd = usb_create_hcd (&dummy_hcd, dev, dev->bus_id);
1813 if (!hcd)
1814 return -ENOMEM;
1815 the_controller = hcd_to_dummy (hcd);
1816
1817 retval = usb_add_hcd(hcd, 0, 0);
1818 if (retval != 0) {
1819 usb_put_hcd (hcd);
1820 the_controller = NULL;
1821 }
1822 return retval;
1823}
1824
Alan Sternd9b76252005-05-03 16:15:43 -04001825static int dummy_hcd_remove (struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 struct usb_hcd *hcd;
1828
1829 hcd = dev_get_drvdata (dev);
1830 usb_remove_hcd (hcd);
1831 usb_put_hcd (hcd);
1832 the_controller = NULL;
Alan Sternd9b76252005-05-03 16:15:43 -04001833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
Alan Sternd9b76252005-05-03 16:15:43 -04001836static struct device_driver dummy_hcd_driver = {
1837 .name = (char *) driver_name,
1838 .bus = &platform_bus_type,
1839 .probe = dummy_hcd_probe,
1840 .remove = dummy_hcd_remove,
1841};
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843/*-------------------------------------------------------------------------*/
1844
Alan Sternd9b76252005-05-03 16:15:43 -04001845/* These don't need to do anything because the pdev structures are
1846 * statically allocated. */
1847static void
1848dummy_udc_release (struct device *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Alan Sternd9b76252005-05-03 16:15:43 -04001850static void
1851dummy_hcd_release (struct device *dev) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Alan Sternd9b76252005-05-03 16:15:43 -04001853static struct platform_device the_udc_pdev = {
1854 .name = (char *) gadget_name,
1855 .id = -1,
1856 .dev = {
1857 .release = dummy_udc_release,
1858 },
1859};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Alan Sternd9b76252005-05-03 16:15:43 -04001861static struct platform_device the_hcd_pdev = {
1862 .name = (char *) driver_name,
1863 .id = -1,
1864 .dev = {
1865 .release = dummy_hcd_release,
1866 },
1867};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869static int __init init (void)
1870{
1871 int retval;
1872
1873 if (usb_disabled ())
1874 return -ENODEV;
Alan Sternd9b76252005-05-03 16:15:43 -04001875
1876 retval = driver_register (&dummy_hcd_driver);
1877 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return retval;
Alan Sternd9b76252005-05-03 16:15:43 -04001879
1880 retval = driver_register (&dummy_udc_driver);
1881 if (retval < 0)
1882 goto err_register_udc_driver;
1883
1884 retval = platform_device_register (&the_hcd_pdev);
1885 if (retval < 0)
1886 goto err_register_hcd;
1887
1888 retval = platform_device_register (&the_udc_pdev);
1889 if (retval < 0)
1890 goto err_register_udc;
1891 return retval;
1892
1893err_register_udc:
1894 platform_device_unregister (&the_hcd_pdev);
1895err_register_hcd:
1896 driver_unregister (&dummy_udc_driver);
1897err_register_udc_driver:
1898 driver_unregister (&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return retval;
1900}
1901module_init (init);
1902
1903static void __exit cleanup (void)
1904{
Alan Sternd9b76252005-05-03 16:15:43 -04001905 platform_device_unregister (&the_udc_pdev);
1906 platform_device_unregister (&the_hcd_pdev);
1907 driver_unregister (&dummy_udc_driver);
1908 driver_unregister (&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910module_exit (cleanup);