RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / usb / gadget / zero.c
blobfcfe869acb942bb36dcb742666d285f7de0cd931
1 /*
2 * zero.c -- Gadget Zero, for USB development
4 * Copyright (C) 2003-2004 David Brownell
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The names of the above-listed copyright holders may not be used
17 * to endorse or promote products derived from this software without
18 * specific prior written permission.
20 * ALTERNATIVELY, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") as published by the Free Software
22 * Foundation, either version 2 of that License or (at your option) any
23 * later version.
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
26 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
27 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 * Gadget Zero only needs two bulk endpoints, and is an example of how you
41 * can write a hardware-agnostic gadget driver running inside a USB device.
43 * Hardware details are visible (see CONFIG_USB_ZERO_* below) but don't
44 * affect most of the driver.
46 * Use it with the Linux host/master side "usbtest" driver to get a basic
47 * functional test of your device-side usb stack, or with "usb-skeleton".
49 * It supports two similar configurations. One sinks whatever the usb host
50 * writes, and in return sources zeroes. The other loops whatever the host
51 * writes back, so the host can read it. Module options include:
53 * buflen=N default N=4096, buffer size used
54 * qlen=N default N=32, how many buffers in the loopback queue
55 * loopdefault default false, list loopback config first
57 * Many drivers will only have one configuration, letting them be much
58 * simpler if they also don't support high speed operation (like this
59 * driver does).
62 #define DEBUG 1
63 // #define VERBOSE
65 #include <linux/module.h>
66 #include <linux/kernel.h>
67 #include <linux/delay.h>
68 #include <linux/ioport.h>
69 #include <linux/slab.h>
70 #include <linux/errno.h>
71 #include <linux/init.h>
72 #include <linux/timer.h>
73 #include <linux/list.h>
74 #include <linux/interrupt.h>
75 #include <linux/utsname.h>
76 #include <linux/device.h>
77 #include <linux/moduleparam.h>
79 #include <asm/byteorder.h>
80 #include <asm/io.h>
81 #include <asm/irq.h>
82 #include <asm/system.h>
83 #include <asm/unaligned.h>
85 #include <linux/usb/ch9.h>
86 #include <linux/usb_gadget.h>
88 #include "gadget_chips.h"
91 /*-------------------------------------------------------------------------*/
93 #define DRIVER_VERSION "St Patrick's Day 2004"
95 static const char shortname [] = "zero";
96 static const char longname [] = "Gadget Zero";
98 static const char source_sink [] = "source and sink data";
99 static const char loopback [] = "loop input to output";
101 /*-------------------------------------------------------------------------*/
104 * driver assumes self-powered hardware, and
105 * has no way for users to trigger remote wakeup.
107 * this version autoconfigures as much as possible,
108 * which is reasonable for most "bulk-only" drivers.
110 static const char *EP_IN_NAME; /* source */
111 static const char *EP_OUT_NAME; /* sink */
113 /*-------------------------------------------------------------------------*/
115 /* big enough to hold our biggest descriptor */
116 #define USB_BUFSIZ 256
118 struct zero_dev {
119 spinlock_t lock;
120 struct usb_gadget *gadget;
121 struct usb_request *req; /* for control responses */
123 /* when configured, we have one of two configs:
124 * - source data (in to host) and sink it (out from host)
125 * - or loop it back (out from host back in to host)
127 u8 config;
128 struct usb_ep *in_ep, *out_ep;
130 /* autoresume timer */
131 struct timer_list resume;
134 #define xprintk(d,level,fmt,args...) \
135 dev_printk(level , &(d)->gadget->dev , fmt , ## args)
137 #ifdef DEBUG
138 #define DBG(dev,fmt,args...) \
139 xprintk(dev , KERN_DEBUG , fmt , ## args)
140 #else
141 #define DBG(dev,fmt,args...) \
142 do { } while (0)
143 #endif /* DEBUG */
145 #ifdef VERBOSE
146 #define VDBG DBG
147 #else
148 #define VDBG(dev,fmt,args...) \
149 do { } while (0)
150 #endif /* VERBOSE */
152 #define ERROR(dev,fmt,args...) \
153 xprintk(dev , KERN_ERR , fmt , ## args)
154 #define WARN(dev,fmt,args...) \
155 xprintk(dev , KERN_WARNING , fmt , ## args)
156 #define INFO(dev,fmt,args...) \
157 xprintk(dev , KERN_INFO , fmt , ## args)
159 /*-------------------------------------------------------------------------*/
161 static unsigned buflen = 4096;
162 static unsigned qlen = 32;
163 static unsigned pattern = 0;
165 module_param (buflen, uint, S_IRUGO);
166 module_param (qlen, uint, S_IRUGO);
167 module_param (pattern, uint, S_IRUGO|S_IWUSR);
170 * if it's nonzero, autoresume says how many seconds to wait
171 * before trying to wake up the host after suspend.
173 static unsigned autoresume = 0;
174 module_param (autoresume, uint, 0);
177 * Normally the "loopback" configuration is second (index 1) so
178 * it's not the default. Here's where to change that order, to
179 * work better with hosts where config changes are problematic.
180 * Or controllers (like superh) that only support one config.
182 static int loopdefault = 0;
184 module_param (loopdefault, bool, S_IRUGO|S_IWUSR);
186 /*-------------------------------------------------------------------------*/
188 /* Thanks to NetChip Technologies for donating this product ID.
190 * DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
191 * Instead: allocate your own, using normal USB-IF procedures.
193 #ifndef CONFIG_USB_ZERO_HNPTEST
194 #define DRIVER_VENDOR_NUM 0x0525 /* NetChip */
195 #define DRIVER_PRODUCT_NUM 0xa4a0 /* Linux-USB "Gadget Zero" */
196 #else
197 #define DRIVER_VENDOR_NUM 0x1a0a /* OTG test device IDs */
198 #define DRIVER_PRODUCT_NUM 0xbadd
199 #endif
201 /*-------------------------------------------------------------------------*/
204 * DESCRIPTORS ... most are static, but strings and (full)
205 * configuration descriptors are built on demand.
208 #define STRING_MANUFACTURER 25
209 #define STRING_PRODUCT 42
210 #define STRING_SERIAL 101
211 #define STRING_SOURCE_SINK 250
212 #define STRING_LOOPBACK 251
215 * This device advertises two configurations; these numbers work
216 * on a pxa250 as well as more flexible hardware.
218 #define CONFIG_SOURCE_SINK 3
219 #define CONFIG_LOOPBACK 2
221 static struct usb_device_descriptor
222 device_desc = {
223 .bLength = sizeof device_desc,
224 .bDescriptorType = USB_DT_DEVICE,
226 .bcdUSB = __constant_cpu_to_le16 (0x0200),
227 .bDeviceClass = USB_CLASS_VENDOR_SPEC,
229 .idVendor = __constant_cpu_to_le16 (DRIVER_VENDOR_NUM),
230 .idProduct = __constant_cpu_to_le16 (DRIVER_PRODUCT_NUM),
231 .iManufacturer = STRING_MANUFACTURER,
232 .iProduct = STRING_PRODUCT,
233 .iSerialNumber = STRING_SERIAL,
234 .bNumConfigurations = 2,
237 static struct usb_config_descriptor
238 source_sink_config = {
239 .bLength = sizeof source_sink_config,
240 .bDescriptorType = USB_DT_CONFIG,
242 /* compute wTotalLength on the fly */
243 .bNumInterfaces = 1,
244 .bConfigurationValue = CONFIG_SOURCE_SINK,
245 .iConfiguration = STRING_SOURCE_SINK,
246 .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
247 .bMaxPower = 1, /* self-powered */
250 static struct usb_config_descriptor
251 loopback_config = {
252 .bLength = sizeof loopback_config,
253 .bDescriptorType = USB_DT_CONFIG,
255 /* compute wTotalLength on the fly */
256 .bNumInterfaces = 1,
257 .bConfigurationValue = CONFIG_LOOPBACK,
258 .iConfiguration = STRING_LOOPBACK,
259 .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
260 .bMaxPower = 1, /* self-powered */
263 static struct usb_otg_descriptor
264 otg_descriptor = {
265 .bLength = sizeof otg_descriptor,
266 .bDescriptorType = USB_DT_OTG,
268 .bmAttributes = USB_OTG_SRP,
271 /* one interface in each configuration */
273 static const struct usb_interface_descriptor
274 source_sink_intf = {
275 .bLength = sizeof source_sink_intf,
276 .bDescriptorType = USB_DT_INTERFACE,
278 .bNumEndpoints = 2,
279 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
280 .iInterface = STRING_SOURCE_SINK,
283 static const struct usb_interface_descriptor
284 loopback_intf = {
285 .bLength = sizeof loopback_intf,
286 .bDescriptorType = USB_DT_INTERFACE,
288 .bNumEndpoints = 2,
289 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
290 .iInterface = STRING_LOOPBACK,
293 /* two full speed bulk endpoints; their use is config-dependent */
295 static struct usb_endpoint_descriptor
296 fs_source_desc = {
297 .bLength = USB_DT_ENDPOINT_SIZE,
298 .bDescriptorType = USB_DT_ENDPOINT,
300 .bEndpointAddress = USB_DIR_IN,
301 .bmAttributes = USB_ENDPOINT_XFER_BULK,
304 static struct usb_endpoint_descriptor
305 fs_sink_desc = {
306 .bLength = USB_DT_ENDPOINT_SIZE,
307 .bDescriptorType = USB_DT_ENDPOINT,
309 .bEndpointAddress = USB_DIR_OUT,
310 .bmAttributes = USB_ENDPOINT_XFER_BULK,
313 static const struct usb_descriptor_header *fs_source_sink_function [] = {
314 (struct usb_descriptor_header *) &otg_descriptor,
315 (struct usb_descriptor_header *) &source_sink_intf,
316 (struct usb_descriptor_header *) &fs_sink_desc,
317 (struct usb_descriptor_header *) &fs_source_desc,
318 NULL,
321 static const struct usb_descriptor_header *fs_loopback_function [] = {
322 (struct usb_descriptor_header *) &otg_descriptor,
323 (struct usb_descriptor_header *) &loopback_intf,
324 (struct usb_descriptor_header *) &fs_sink_desc,
325 (struct usb_descriptor_header *) &fs_source_desc,
326 NULL,
329 #ifdef CONFIG_USB_GADGET_DUALSPEED
332 * usb 2.0 devices need to expose both high speed and full speed
333 * descriptors, unless they only run at full speed.
335 * that means alternate endpoint descriptors (bigger packets)
336 * and a "device qualifier" ... plus more construction options
337 * for the config descriptor.
340 static struct usb_endpoint_descriptor
341 hs_source_desc = {
342 .bLength = USB_DT_ENDPOINT_SIZE,
343 .bDescriptorType = USB_DT_ENDPOINT,
345 .bmAttributes = USB_ENDPOINT_XFER_BULK,
346 .wMaxPacketSize = __constant_cpu_to_le16 (512),
349 static struct usb_endpoint_descriptor
350 hs_sink_desc = {
351 .bLength = USB_DT_ENDPOINT_SIZE,
352 .bDescriptorType = USB_DT_ENDPOINT,
354 .bmAttributes = USB_ENDPOINT_XFER_BULK,
355 .wMaxPacketSize = __constant_cpu_to_le16 (512),
358 static struct usb_qualifier_descriptor
359 dev_qualifier = {
360 .bLength = sizeof dev_qualifier,
361 .bDescriptorType = USB_DT_DEVICE_QUALIFIER,
363 .bcdUSB = __constant_cpu_to_le16 (0x0200),
364 .bDeviceClass = USB_CLASS_VENDOR_SPEC,
366 .bNumConfigurations = 2,
369 static const struct usb_descriptor_header *hs_source_sink_function [] = {
370 (struct usb_descriptor_header *) &otg_descriptor,
371 (struct usb_descriptor_header *) &source_sink_intf,
372 (struct usb_descriptor_header *) &hs_source_desc,
373 (struct usb_descriptor_header *) &hs_sink_desc,
374 NULL,
377 static const struct usb_descriptor_header *hs_loopback_function [] = {
378 (struct usb_descriptor_header *) &otg_descriptor,
379 (struct usb_descriptor_header *) &loopback_intf,
380 (struct usb_descriptor_header *) &hs_source_desc,
381 (struct usb_descriptor_header *) &hs_sink_desc,
382 NULL,
385 /* maxpacket and other transfer characteristics vary by speed. */
386 #define ep_desc(g,hs,fs) (((g)->speed==USB_SPEED_HIGH)?(hs):(fs))
388 #else
390 /* if there's no high speed support, maxpacket doesn't change. */
391 #define ep_desc(g,hs,fs) fs
393 #endif /* !CONFIG_USB_GADGET_DUALSPEED */
395 static char manufacturer [50];
396 static char serial [40];
398 /* static strings, in UTF-8 */
399 static struct usb_string strings [] = {
400 { STRING_MANUFACTURER, manufacturer, },
401 { STRING_PRODUCT, longname, },
402 { STRING_SERIAL, serial, },
403 { STRING_LOOPBACK, loopback, },
404 { STRING_SOURCE_SINK, source_sink, },
405 { } /* end of list */
408 static struct usb_gadget_strings stringtab = {
409 .language = 0x0409, /* en-us */
410 .strings = strings,
414 * config descriptors are also handcrafted. these must agree with code
415 * that sets configurations, and with code managing interfaces and their
416 * altsettings. other complexity may come from:
418 * - high speed support, including "other speed config" rules
419 * - multiple configurations
420 * - interfaces with alternate settings
421 * - embedded class or vendor-specific descriptors
423 * this handles high speed, and has a second config that could as easily
424 * have been an alternate interface setting (on most hardware).
426 * NOTE: to demonstrate (and test) more USB capabilities, this driver
427 * should include an altsetting to test interrupt transfers, including
428 * high bandwidth modes at high speed. (Maybe work like Intel's test
429 * device?)
431 static int
432 config_buf (struct usb_gadget *gadget,
433 u8 *buf, u8 type, unsigned index)
435 int is_source_sink;
436 int len;
437 const struct usb_descriptor_header **function;
438 #ifdef CONFIG_USB_GADGET_DUALSPEED
439 int hs = (gadget->speed == USB_SPEED_HIGH);
440 #endif
442 /* two configurations will always be index 0 and index 1 */
443 if (index > 1)
444 return -EINVAL;
445 is_source_sink = loopdefault ? (index == 1) : (index == 0);
447 #ifdef CONFIG_USB_GADGET_DUALSPEED
448 if (type == USB_DT_OTHER_SPEED_CONFIG)
449 hs = !hs;
450 if (hs)
451 function = is_source_sink
452 ? hs_source_sink_function
453 : hs_loopback_function;
454 else
455 #endif
456 function = is_source_sink
457 ? fs_source_sink_function
458 : fs_loopback_function;
460 /* for now, don't advertise srp-only devices */
461 if (!gadget->is_otg)
462 function++;
464 len = usb_gadget_config_buf (is_source_sink
465 ? &source_sink_config
466 : &loopback_config,
467 buf, USB_BUFSIZ, function);
468 if (len < 0)
469 return len;
470 ((struct usb_config_descriptor *) buf)->bDescriptorType = type;
471 return len;
474 /*-------------------------------------------------------------------------*/
476 static struct usb_request *
477 alloc_ep_req (struct usb_ep *ep, unsigned length)
479 struct usb_request *req;
481 req = usb_ep_alloc_request (ep, GFP_ATOMIC);
482 if (req) {
483 req->length = length;
484 req->buf = kmalloc(length, GFP_ATOMIC);
485 if (!req->buf) {
486 usb_ep_free_request (ep, req);
487 req = NULL;
490 return req;
493 static void free_ep_req (struct usb_ep *ep, struct usb_request *req)
495 kfree(req->buf);
496 usb_ep_free_request (ep, req);
499 /*-------------------------------------------------------------------------*/
501 /* optionally require specific source/sink data patterns */
503 static int
504 check_read_data (
505 struct zero_dev *dev,
506 struct usb_ep *ep,
507 struct usb_request *req
510 unsigned i;
511 u8 *buf = req->buf;
513 for (i = 0; i < req->actual; i++, buf++) {
514 switch (pattern) {
515 /* all-zeroes has no synchronization issues */
516 case 0:
517 if (*buf == 0)
518 continue;
519 break;
520 /* mod63 stays in sync with short-terminated transfers,
521 * or otherwise when host and gadget agree on how large
522 * each usb transfer request should be. resync is done
523 * with set_interface or set_config.
525 case 1:
526 if (*buf == (u8)(i % 63))
527 continue;
528 break;
530 ERROR (dev, "bad OUT byte, buf [%d] = %d\n", i, *buf);
531 usb_ep_set_halt (ep);
532 return -EINVAL;
534 return 0;
537 static void
538 reinit_write_data (
539 struct zero_dev *dev,
540 struct usb_ep *ep,
541 struct usb_request *req
544 unsigned i;
545 u8 *buf = req->buf;
547 switch (pattern) {
548 case 0:
549 memset (req->buf, 0, req->length);
550 break;
551 case 1:
552 for (i = 0; i < req->length; i++)
553 *buf++ = (u8) (i % 63);
554 break;
558 /* if there is only one request in the queue, there'll always be an
559 * irq delay between end of one request and start of the next.
560 * that prevents using hardware dma queues.
562 static void source_sink_complete (struct usb_ep *ep, struct usb_request *req)
564 struct zero_dev *dev = ep->driver_data;
565 int status = req->status;
567 switch (status) {
569 case 0: /* normal completion? */
570 if (ep == dev->out_ep) {
571 check_read_data (dev, ep, req);
572 memset (req->buf, 0x55, req->length);
573 } else
574 reinit_write_data (dev, ep, req);
575 break;
577 /* this endpoint is normally active while we're configured */
578 case -ECONNABORTED: /* hardware forced ep reset */
579 case -ECONNRESET: /* request dequeued */
580 case -ESHUTDOWN: /* disconnect from host */
581 VDBG (dev, "%s gone (%d), %d/%d\n", ep->name, status,
582 req->actual, req->length);
583 if (ep == dev->out_ep)
584 check_read_data (dev, ep, req);
585 free_ep_req (ep, req);
586 return;
588 case -EOVERFLOW: /* buffer overrun on read means that
589 * we didn't provide a big enough
590 * buffer.
592 default:
593 #if 1
594 DBG (dev, "%s complete --> %d, %d/%d\n", ep->name,
595 status, req->actual, req->length);
596 #endif
597 case -EREMOTEIO: /* short read */
598 break;
601 status = usb_ep_queue (ep, req, GFP_ATOMIC);
602 if (status) {
603 ERROR (dev, "kill %s: resubmit %d bytes --> %d\n",
604 ep->name, req->length, status);
605 usb_ep_set_halt (ep);
606 /* FIXME recover later ... somehow */
610 static struct usb_request *
611 source_sink_start_ep (struct usb_ep *ep, gfp_t gfp_flags)
613 struct usb_request *req;
614 int status;
616 req = alloc_ep_req (ep, buflen);
617 if (!req)
618 return NULL;
620 memset (req->buf, 0, req->length);
621 req->complete = source_sink_complete;
623 if (strcmp (ep->name, EP_IN_NAME) == 0)
624 reinit_write_data (ep->driver_data, ep, req);
625 else
626 memset (req->buf, 0x55, req->length);
628 status = usb_ep_queue (ep, req, gfp_flags);
629 if (status) {
630 struct zero_dev *dev = ep->driver_data;
632 ERROR (dev, "start %s --> %d\n", ep->name, status);
633 free_ep_req (ep, req);
634 req = NULL;
637 return req;
640 static int
641 set_source_sink_config (struct zero_dev *dev, gfp_t gfp_flags)
643 int result = 0;
644 struct usb_ep *ep;
645 struct usb_gadget *gadget = dev->gadget;
647 gadget_for_each_ep (ep, gadget) {
648 const struct usb_endpoint_descriptor *d;
650 /* one endpoint writes (sources) zeroes in (to the host) */
651 if (strcmp (ep->name, EP_IN_NAME) == 0) {
652 d = ep_desc (gadget, &hs_source_desc, &fs_source_desc);
653 result = usb_ep_enable (ep, d);
654 if (result == 0) {
655 ep->driver_data = dev;
656 if (source_sink_start_ep(ep, gfp_flags)
657 != NULL) {
658 dev->in_ep = ep;
659 continue;
661 usb_ep_disable (ep);
662 result = -EIO;
665 /* one endpoint reads (sinks) anything out (from the host) */
666 } else if (strcmp (ep->name, EP_OUT_NAME) == 0) {
667 d = ep_desc (gadget, &hs_sink_desc, &fs_sink_desc);
668 result = usb_ep_enable (ep, d);
669 if (result == 0) {
670 ep->driver_data = dev;
671 if (source_sink_start_ep(ep, gfp_flags)
672 != NULL) {
673 dev->out_ep = ep;
674 continue;
676 usb_ep_disable (ep);
677 result = -EIO;
680 /* ignore any other endpoints */
681 } else
682 continue;
684 /* stop on error */
685 ERROR (dev, "can't start %s, result %d\n", ep->name, result);
686 break;
688 if (result == 0)
689 DBG (dev, "buflen %d\n", buflen);
691 /* caller is responsible for cleanup on error */
692 return result;
695 /*-------------------------------------------------------------------------*/
697 static void loopback_complete (struct usb_ep *ep, struct usb_request *req)
699 struct zero_dev *dev = ep->driver_data;
700 int status = req->status;
702 switch (status) {
704 case 0: /* normal completion? */
705 if (ep == dev->out_ep) {
706 /* loop this OUT packet back IN to the host */
707 req->zero = (req->actual < req->length);
708 req->length = req->actual;
709 status = usb_ep_queue (dev->in_ep, req, GFP_ATOMIC);
710 if (status == 0)
711 return;
713 /* "should never get here" */
714 ERROR (dev, "can't loop %s to %s: %d\n",
715 ep->name, dev->in_ep->name,
716 status);
719 /* queue the buffer for some later OUT packet */
720 req->length = buflen;
721 status = usb_ep_queue (dev->out_ep, req, GFP_ATOMIC);
722 if (status == 0)
723 return;
725 /* "should never get here" */
726 /* FALLTHROUGH */
728 default:
729 ERROR (dev, "%s loop complete --> %d, %d/%d\n", ep->name,
730 status, req->actual, req->length);
731 /* FALLTHROUGH */
733 /* NOTE: since this driver doesn't maintain an explicit record
734 * of requests it submitted (just maintains qlen count), we
735 * rely on the hardware driver to clean up on disconnect or
736 * endpoint disable.
738 case -ECONNABORTED: /* hardware forced ep reset */
739 case -ECONNRESET: /* request dequeued */
740 case -ESHUTDOWN: /* disconnect from host */
741 free_ep_req (ep, req);
742 return;
746 static int
747 set_loopback_config (struct zero_dev *dev, gfp_t gfp_flags)
749 int result = 0;
750 struct usb_ep *ep;
751 struct usb_gadget *gadget = dev->gadget;
753 gadget_for_each_ep (ep, gadget) {
754 const struct usb_endpoint_descriptor *d;
756 /* one endpoint writes data back IN to the host */
757 if (strcmp (ep->name, EP_IN_NAME) == 0) {
758 d = ep_desc (gadget, &hs_source_desc, &fs_source_desc);
759 result = usb_ep_enable (ep, d);
760 if (result == 0) {
761 ep->driver_data = dev;
762 dev->in_ep = ep;
763 continue;
766 /* one endpoint just reads OUT packets */
767 } else if (strcmp (ep->name, EP_OUT_NAME) == 0) {
768 d = ep_desc (gadget, &hs_sink_desc, &fs_sink_desc);
769 result = usb_ep_enable (ep, d);
770 if (result == 0) {
771 ep->driver_data = dev;
772 dev->out_ep = ep;
773 continue;
776 /* ignore any other endpoints */
777 } else
778 continue;
780 /* stop on error */
781 ERROR (dev, "can't enable %s, result %d\n", ep->name, result);
782 break;
785 /* allocate a bunch of read buffers and queue them all at once.
786 * we buffer at most 'qlen' transfers; fewer if any need more
787 * than 'buflen' bytes each.
789 if (result == 0) {
790 struct usb_request *req;
791 unsigned i;
793 ep = dev->out_ep;
794 for (i = 0; i < qlen && result == 0; i++) {
795 req = alloc_ep_req (ep, buflen);
796 if (req) {
797 req->complete = loopback_complete;
798 result = usb_ep_queue (ep, req, GFP_ATOMIC);
799 if (result)
800 DBG (dev, "%s queue req --> %d\n",
801 ep->name, result);
802 } else
803 result = -ENOMEM;
806 if (result == 0)
807 DBG (dev, "qlen %d, buflen %d\n", qlen, buflen);
809 /* caller is responsible for cleanup on error */
810 return result;
813 /*-------------------------------------------------------------------------*/
815 static void zero_reset_config (struct zero_dev *dev)
817 if (dev->config == 0)
818 return;
820 DBG (dev, "reset config\n");
822 /* just disable endpoints, forcing completion of pending i/o.
823 * all our completion handlers free their requests in this case.
825 if (dev->in_ep) {
826 usb_ep_disable (dev->in_ep);
827 dev->in_ep = NULL;
829 if (dev->out_ep) {
830 usb_ep_disable (dev->out_ep);
831 dev->out_ep = NULL;
833 dev->config = 0;
834 del_timer (&dev->resume);
837 /* change our operational config. this code must agree with the code
838 * that returns config descriptors, and altsetting code.
840 * it's also responsible for power management interactions. some
841 * configurations might not work with our current power sources.
843 * note that some device controller hardware will constrain what this
844 * code can do, perhaps by disallowing more than one configuration or
845 * by limiting configuration choices (like the pxa2xx).
847 static int
848 zero_set_config (struct zero_dev *dev, unsigned number, gfp_t gfp_flags)
850 int result = 0;
851 struct usb_gadget *gadget = dev->gadget;
853 if (number == dev->config)
854 return 0;
856 if (gadget_is_sa1100 (gadget) && dev->config) {
857 /* tx fifo is full, but we can't clear it...*/
858 INFO (dev, "can't change configurations\n");
859 return -ESPIPE;
861 zero_reset_config (dev);
863 switch (number) {
864 case CONFIG_SOURCE_SINK:
865 result = set_source_sink_config (dev, gfp_flags);
866 break;
867 case CONFIG_LOOPBACK:
868 result = set_loopback_config (dev, gfp_flags);
869 break;
870 default:
871 result = -EINVAL;
872 /* FALL THROUGH */
873 case 0:
874 return result;
877 if (!result && (!dev->in_ep || !dev->out_ep))
878 result = -ENODEV;
879 if (result)
880 zero_reset_config (dev);
881 else {
882 char *speed;
884 switch (gadget->speed) {
885 case USB_SPEED_LOW: speed = "low"; break;
886 case USB_SPEED_FULL: speed = "full"; break;
887 case USB_SPEED_HIGH: speed = "high"; break;
888 default: speed = "?"; break;
891 dev->config = number;
892 INFO (dev, "%s speed config #%d: %s\n", speed, number,
893 (number == CONFIG_SOURCE_SINK)
894 ? source_sink : loopback);
896 return result;
899 /*-------------------------------------------------------------------------*/
901 static void zero_setup_complete (struct usb_ep *ep, struct usb_request *req)
903 if (req->status || req->actual != req->length)
904 DBG ((struct zero_dev *) ep->driver_data,
905 "setup complete --> %d, %d/%d\n",
906 req->status, req->actual, req->length);
910 * The setup() callback implements all the ep0 functionality that's
911 * not handled lower down, in hardware or the hardware driver (like
912 * device and endpoint feature flags, and their status). It's all
913 * housekeeping for the gadget function we're implementing. Most of
914 * the work is in config-specific setup.
916 static int
917 zero_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
919 struct zero_dev *dev = get_gadget_data (gadget);
920 struct usb_request *req = dev->req;
921 int value = -EOPNOTSUPP;
922 u16 w_index = le16_to_cpu(ctrl->wIndex);
923 u16 w_value = le16_to_cpu(ctrl->wValue);
924 u16 w_length = le16_to_cpu(ctrl->wLength);
926 /* usually this stores reply data in the pre-allocated ep0 buffer,
927 * but config change events will reconfigure hardware.
929 req->zero = 0;
930 switch (ctrl->bRequest) {
932 case USB_REQ_GET_DESCRIPTOR:
933 if (ctrl->bRequestType != USB_DIR_IN)
934 goto unknown;
935 switch (w_value >> 8) {
937 case USB_DT_DEVICE:
938 value = min (w_length, (u16) sizeof device_desc);
939 memcpy (req->buf, &device_desc, value);
940 break;
941 #ifdef CONFIG_USB_GADGET_DUALSPEED
942 case USB_DT_DEVICE_QUALIFIER:
943 if (!gadget->is_dualspeed)
944 break;
945 value = min (w_length, (u16) sizeof dev_qualifier);
946 memcpy (req->buf, &dev_qualifier, value);
947 break;
949 case USB_DT_OTHER_SPEED_CONFIG:
950 if (!gadget->is_dualspeed)
951 break;
952 // FALLTHROUGH
953 #endif /* CONFIG_USB_GADGET_DUALSPEED */
954 case USB_DT_CONFIG:
955 value = config_buf (gadget, req->buf,
956 w_value >> 8,
957 w_value & 0xff);
958 if (value >= 0)
959 value = min (w_length, (u16) value);
960 break;
962 case USB_DT_STRING:
963 /* wIndex == language code.
964 * this driver only handles one language, you can
965 * add string tables for other languages, using
966 * any UTF-8 characters
968 value = usb_gadget_get_string (&stringtab,
969 w_value & 0xff, req->buf);
970 if (value >= 0)
971 value = min (w_length, (u16) value);
972 break;
974 break;
976 /* currently two configs, two speeds */
977 case USB_REQ_SET_CONFIGURATION:
978 if (ctrl->bRequestType != 0)
979 goto unknown;
980 if (gadget->a_hnp_support)
981 DBG (dev, "HNP available\n");
982 else if (gadget->a_alt_hnp_support)
983 DBG (dev, "HNP needs a different root port\n");
984 else
985 VDBG (dev, "HNP inactive\n");
986 spin_lock (&dev->lock);
987 value = zero_set_config (dev, w_value, GFP_ATOMIC);
988 spin_unlock (&dev->lock);
989 break;
990 case USB_REQ_GET_CONFIGURATION:
991 if (ctrl->bRequestType != USB_DIR_IN)
992 goto unknown;
993 *(u8 *)req->buf = dev->config;
994 value = min (w_length, (u16) 1);
995 break;
997 /* until we add altsetting support, or other interfaces,
998 * only 0/0 are possible. pxa2xx only supports 0/0 (poorly)
999 * and already killed pending endpoint I/O.
1001 case USB_REQ_SET_INTERFACE:
1002 if (ctrl->bRequestType != USB_RECIP_INTERFACE)
1003 goto unknown;
1004 spin_lock (&dev->lock);
1005 if (dev->config && w_index == 0 && w_value == 0) {
1006 u8 config = dev->config;
1008 /* resets interface configuration, forgets about
1009 * previous transaction state (queued bufs, etc)
1010 * and re-inits endpoint state (toggle etc)
1011 * no response queued, just zero status == success.
1012 * if we had more than one interface we couldn't
1013 * use this "reset the config" shortcut.
1015 zero_reset_config (dev);
1016 zero_set_config (dev, config, GFP_ATOMIC);
1017 value = 0;
1019 spin_unlock (&dev->lock);
1020 break;
1021 case USB_REQ_GET_INTERFACE:
1022 if (ctrl->bRequestType != (USB_DIR_IN|USB_RECIP_INTERFACE))
1023 goto unknown;
1024 if (!dev->config)
1025 break;
1026 if (w_index != 0) {
1027 value = -EDOM;
1028 break;
1030 *(u8 *)req->buf = 0;
1031 value = min (w_length, (u16) 1);
1032 break;
1035 * These are the same vendor-specific requests supported by
1036 * Intel's USB 2.0 compliance test devices. We exceed that
1037 * device spec by allowing multiple-packet requests.
1039 case 0x5b: /* control WRITE test -- fill the buffer */
1040 if (ctrl->bRequestType != (USB_DIR_OUT|USB_TYPE_VENDOR))
1041 goto unknown;
1042 if (w_value || w_index)
1043 break;
1044 /* just read that many bytes into the buffer */
1045 if (w_length > USB_BUFSIZ)
1046 break;
1047 value = w_length;
1048 break;
1049 case 0x5c: /* control READ test -- return the buffer */
1050 if (ctrl->bRequestType != (USB_DIR_IN|USB_TYPE_VENDOR))
1051 goto unknown;
1052 if (w_value || w_index)
1053 break;
1054 /* expect those bytes are still in the buffer; send back */
1055 if (w_length > USB_BUFSIZ
1056 || w_length != req->length)
1057 break;
1058 value = w_length;
1059 break;
1061 default:
1062 unknown:
1063 VDBG (dev,
1064 "unknown control req%02x.%02x v%04x i%04x l%d\n",
1065 ctrl->bRequestType, ctrl->bRequest,
1066 w_value, w_index, w_length);
1069 /* respond with data transfer before status phase? */
1070 if (value >= 0) {
1071 req->length = value;
1072 req->zero = value < w_length;
1073 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1074 if (value < 0) {
1075 DBG (dev, "ep_queue --> %d\n", value);
1076 req->status = 0;
1077 zero_setup_complete (gadget->ep0, req);
1081 /* device either stalls (value < 0) or reports success */
1082 return value;
1085 static void
1086 zero_disconnect (struct usb_gadget *gadget)
1088 struct zero_dev *dev = get_gadget_data (gadget);
1089 unsigned long flags;
1091 spin_lock_irqsave (&dev->lock, flags);
1092 zero_reset_config (dev);
1094 /* a more significant application might have some non-usb
1095 * activities to quiesce here, saving resources like power
1096 * or pushing the notification up a network stack.
1098 spin_unlock_irqrestore (&dev->lock, flags);
1100 /* next we may get setup() calls to enumerate new connections;
1101 * or an unbind() during shutdown (including removing module).
1105 static void
1106 zero_autoresume (unsigned long _dev)
1108 struct zero_dev *dev = (struct zero_dev *) _dev;
1109 int status;
1111 /* normally the host would be woken up for something
1112 * more significant than just a timer firing...
1114 if (dev->gadget->speed != USB_SPEED_UNKNOWN) {
1115 status = usb_gadget_wakeup (dev->gadget);
1116 DBG (dev, "wakeup --> %d\n", status);
1120 /*-------------------------------------------------------------------------*/
1122 static void /* __init_or_exit */
1123 zero_unbind (struct usb_gadget *gadget)
1125 struct zero_dev *dev = get_gadget_data (gadget);
1127 DBG (dev, "unbind\n");
1129 /* we've already been disconnected ... no i/o is active */
1130 if (dev->req) {
1131 dev->req->length = USB_BUFSIZ;
1132 free_ep_req (gadget->ep0, dev->req);
1134 del_timer_sync (&dev->resume);
1135 kfree (dev);
1136 set_gadget_data (gadget, NULL);
1139 static int __init
1140 zero_bind (struct usb_gadget *gadget)
1142 struct zero_dev *dev;
1143 struct usb_ep *ep;
1144 int gcnum;
1146 /* FIXME this can't yet work right with SH ... it has only
1147 * one configuration, numbered one.
1149 if (gadget_is_sh(gadget))
1150 return -ENODEV;
1152 /* Bulk-only drivers like this one SHOULD be able to
1153 * autoconfigure on any sane usb controller driver,
1154 * but there may also be important quirks to address.
1156 usb_ep_autoconfig_reset (gadget);
1157 ep = usb_ep_autoconfig (gadget, &fs_source_desc);
1158 if (!ep) {
1159 autoconf_fail:
1160 printk (KERN_ERR "%s: can't autoconfigure on %s\n",
1161 shortname, gadget->name);
1162 return -ENODEV;
1164 EP_IN_NAME = ep->name;
1165 ep->driver_data = ep; /* claim */
1167 ep = usb_ep_autoconfig (gadget, &fs_sink_desc);
1168 if (!ep)
1169 goto autoconf_fail;
1170 EP_OUT_NAME = ep->name;
1171 ep->driver_data = ep; /* claim */
1173 gcnum = usb_gadget_controller_number (gadget);
1174 if (gcnum >= 0)
1175 device_desc.bcdDevice = cpu_to_le16 (0x0200 + gcnum);
1176 else {
1177 /* gadget zero is so simple (for now, no altsettings) that
1178 * it SHOULD NOT have problems with bulk-capable hardware.
1179 * so warn about unrcognized controllers, don't panic.
1181 * things like configuration and altsetting numbering
1182 * can need hardware-specific attention though.
1184 printk (KERN_WARNING "%s: controller '%s' not recognized\n",
1185 shortname, gadget->name);
1186 device_desc.bcdDevice = __constant_cpu_to_le16 (0x9999);
1190 /* ok, we made sense of the hardware ... */
1191 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1192 if (!dev)
1193 return -ENOMEM;
1194 spin_lock_init (&dev->lock);
1195 dev->gadget = gadget;
1196 set_gadget_data (gadget, dev);
1198 /* preallocate control response and buffer */
1199 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1200 if (!dev->req)
1201 goto enomem;
1202 dev->req->buf = kmalloc(USB_BUFSIZ, GFP_KERNEL);
1203 if (!dev->req->buf)
1204 goto enomem;
1206 dev->req->complete = zero_setup_complete;
1208 device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket;
1210 #ifdef CONFIG_USB_GADGET_DUALSPEED
1211 /* assume ep0 uses the same value for both speeds ... */
1212 dev_qualifier.bMaxPacketSize0 = device_desc.bMaxPacketSize0;
1214 /* and that all endpoints are dual-speed */
1215 hs_source_desc.bEndpointAddress = fs_source_desc.bEndpointAddress;
1216 hs_sink_desc.bEndpointAddress = fs_sink_desc.bEndpointAddress;
1217 #endif
1219 if (gadget->is_otg) {
1220 otg_descriptor.bmAttributes |= USB_OTG_HNP,
1221 source_sink_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1222 loopback_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1225 usb_gadget_set_selfpowered (gadget);
1227 init_timer (&dev->resume);
1228 dev->resume.function = zero_autoresume;
1229 dev->resume.data = (unsigned long) dev;
1230 if (autoresume) {
1231 source_sink_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1232 loopback_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1235 gadget->ep0->driver_data = dev;
1237 INFO (dev, "%s, version: " DRIVER_VERSION "\n", longname);
1238 INFO (dev, "using %s, OUT %s IN %s\n", gadget->name,
1239 EP_OUT_NAME, EP_IN_NAME);
1241 snprintf (manufacturer, sizeof manufacturer, "%s %s with %s",
1242 init_utsname()->sysname, init_utsname()->release,
1243 gadget->name);
1245 return 0;
1247 enomem:
1248 zero_unbind (gadget);
1249 return -ENOMEM;
1252 /*-------------------------------------------------------------------------*/
1254 static void
1255 zero_suspend (struct usb_gadget *gadget)
1257 struct zero_dev *dev = get_gadget_data (gadget);
1259 if (gadget->speed == USB_SPEED_UNKNOWN)
1260 return;
1262 if (autoresume) {
1263 mod_timer (&dev->resume, jiffies + (HZ * autoresume));
1264 DBG (dev, "suspend, wakeup in %d seconds\n", autoresume);
1265 } else
1266 DBG (dev, "suspend\n");
1269 static void
1270 zero_resume (struct usb_gadget *gadget)
1272 struct zero_dev *dev = get_gadget_data (gadget);
1274 DBG (dev, "resume\n");
1275 del_timer (&dev->resume);
1279 /*-------------------------------------------------------------------------*/
1281 static struct usb_gadget_driver zero_driver = {
1282 #ifdef CONFIG_USB_GADGET_DUALSPEED
1283 .speed = USB_SPEED_HIGH,
1284 #else
1285 .speed = USB_SPEED_FULL,
1286 #endif
1287 .function = (char *) longname,
1288 .bind = zero_bind,
1289 .unbind = __exit_p(zero_unbind),
1291 .setup = zero_setup,
1292 .disconnect = zero_disconnect,
1294 .suspend = zero_suspend,
1295 .resume = zero_resume,
1297 .driver = {
1298 .name = (char *) shortname,
1299 .owner = THIS_MODULE,
1303 MODULE_AUTHOR ("David Brownell");
1304 MODULE_LICENSE ("Dual BSD/GPL");
1307 static int __init init (void)
1309 /* a real value would likely come through some id prom
1310 * or module option. this one takes at least two packets.
1312 strlcpy (serial, "0123456789.0123456789.0123456789", sizeof serial);
1314 return usb_gadget_register_driver (&zero_driver);
1316 module_init (init);
1318 static void __exit cleanup (void)
1320 usb_gadget_unregister_driver (&zero_driver);
1322 module_exit (cleanup);