header cleaning: don't include smp_lock.h when not used
[safe/jmp/linux-2.6] / drivers / usb / gadget / zero.c
1 /*
2  * zero.c -- Gadget Zero, for USB development
3  *
4  * Copyright (C) 2003-2004 David Brownell
5  * All rights reserved.
6  *
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.
19  *
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.
24  *
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.
36  */
37
38
39 /*
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.
42  *
43  * Hardware details are visible (see CONFIG_USB_ZERO_* below) but don't
44  * affect most of the driver.
45  *
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".
48  *
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:
52  *
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
56  *
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).
60  */
61
62 #define DEBUG 1
63 // #define VERBOSE
64
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>
78
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>
84
85 #include <linux/usb/ch9.h>
86 #include <linux/usb_gadget.h>
87
88 #include "gadget_chips.h"
89
90
91 /*-------------------------------------------------------------------------*/
92
93 #define DRIVER_VERSION          "St Patrick's Day 2004"
94
95 static const char shortname [] = "zero";
96 static const char longname [] = "Gadget Zero";
97
98 static const char source_sink [] = "source and sink data";
99 static const char loopback [] = "loop input to output";
100
101 /*-------------------------------------------------------------------------*/
102
103 /*
104  * driver assumes self-powered hardware, and
105  * has no way for users to trigger remote wakeup.
106  *
107  * this version autoconfigures as much as possible,
108  * which is reasonable for most "bulk-only" drivers.
109  */
110 static const char *EP_IN_NAME;          /* source */
111 static const char *EP_OUT_NAME;         /* sink */
112
113 /*-------------------------------------------------------------------------*/
114
115 /* big enough to hold our biggest descriptor */
116 #define USB_BUFSIZ      256
117
118 struct zero_dev {
119         spinlock_t              lock;
120         struct usb_gadget       *gadget;
121         struct usb_request      *req;           /* for control responses */
122
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)
126          */
127         u8                      config;
128         struct usb_ep           *in_ep, *out_ep;
129
130         /* autoresume timer */
131         struct timer_list       resume;
132 };
133
134 #define xprintk(d,level,fmt,args...) \
135         dev_printk(level , &(d)->gadget->dev , fmt , ## args)
136
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 */
144
145 #ifdef VERBOSE
146 #define VDBG    DBG
147 #else
148 #define VDBG(dev,fmt,args...) \
149         do { } while (0)
150 #endif /* VERBOSE */
151
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)
158
159 /*-------------------------------------------------------------------------*/
160
161 static unsigned buflen = 4096;
162 static unsigned qlen = 32;
163 static unsigned pattern = 0;
164
165 module_param (buflen, uint, S_IRUGO);
166 module_param (qlen, uint, S_IRUGO);
167 module_param (pattern, uint, S_IRUGO|S_IWUSR);
168
169 /*
170  * if it's nonzero, autoresume says how many seconds to wait
171  * before trying to wake up the host after suspend.
172  */
173 static unsigned autoresume = 0;
174 module_param (autoresume, uint, 0);
175
176 /*
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.
181  */
182 static int loopdefault = 0;
183
184 module_param (loopdefault, bool, S_IRUGO|S_IWUSR);
185
186 /*-------------------------------------------------------------------------*/
187
188 /* Thanks to NetChip Technologies for donating this product ID.
189  *
190  * DO NOT REUSE THESE IDs with a protocol-incompatible driver!!  Ever!!
191  * Instead:  allocate your own, using normal USB-IF procedures.
192  */
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
200
201 /*-------------------------------------------------------------------------*/
202
203 /*
204  * DESCRIPTORS ... most are static, but strings and (full)
205  * configuration descriptors are built on demand.
206  */
207
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
213
214 /*
215  * This device advertises two configurations; these numbers work
216  * on a pxa250 as well as more flexible hardware.
217  */
218 #define CONFIG_SOURCE_SINK      3
219 #define CONFIG_LOOPBACK         2
220
221 static struct usb_device_descriptor
222 device_desc = {
223         .bLength =              sizeof device_desc,
224         .bDescriptorType =      USB_DT_DEVICE,
225
226         .bcdUSB =               __constant_cpu_to_le16 (0x0200),
227         .bDeviceClass =         USB_CLASS_VENDOR_SPEC,
228
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,
235 };
236
237 static struct usb_config_descriptor
238 source_sink_config = {
239         .bLength =              sizeof source_sink_config,
240         .bDescriptorType =      USB_DT_CONFIG,
241
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 */
248 };
249
250 static struct usb_config_descriptor
251 loopback_config = {
252         .bLength =              sizeof loopback_config,
253         .bDescriptorType =      USB_DT_CONFIG,
254
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 */
261 };
262
263 static struct usb_otg_descriptor
264 otg_descriptor = {
265         .bLength =              sizeof otg_descriptor,
266         .bDescriptorType =      USB_DT_OTG,
267
268         .bmAttributes =         USB_OTG_SRP,
269 };
270
271 /* one interface in each configuration */
272
273 static const struct usb_interface_descriptor
274 source_sink_intf = {
275         .bLength =              sizeof source_sink_intf,
276         .bDescriptorType =      USB_DT_INTERFACE,
277
278         .bNumEndpoints =        2,
279         .bInterfaceClass =      USB_CLASS_VENDOR_SPEC,
280         .iInterface =           STRING_SOURCE_SINK,
281 };
282
283 static const struct usb_interface_descriptor
284 loopback_intf = {
285         .bLength =              sizeof loopback_intf,
286         .bDescriptorType =      USB_DT_INTERFACE,
287
288         .bNumEndpoints =        2,
289         .bInterfaceClass =      USB_CLASS_VENDOR_SPEC,
290         .iInterface =           STRING_LOOPBACK,
291 };
292
293 /* two full speed bulk endpoints; their use is config-dependent */
294
295 static struct usb_endpoint_descriptor
296 fs_source_desc = {
297         .bLength =              USB_DT_ENDPOINT_SIZE,
298         .bDescriptorType =      USB_DT_ENDPOINT,
299
300         .bEndpointAddress =     USB_DIR_IN,
301         .bmAttributes =         USB_ENDPOINT_XFER_BULK,
302 };
303
304 static struct usb_endpoint_descriptor
305 fs_sink_desc = {
306         .bLength =              USB_DT_ENDPOINT_SIZE,
307         .bDescriptorType =      USB_DT_ENDPOINT,
308
309         .bEndpointAddress =     USB_DIR_OUT,
310         .bmAttributes =         USB_ENDPOINT_XFER_BULK,
311 };
312
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,
319 };
320
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,
327 };
328
329 #ifdef  CONFIG_USB_GADGET_DUALSPEED
330
331 /*
332  * usb 2.0 devices need to expose both high speed and full speed
333  * descriptors, unless they only run at full speed.
334  *
335  * that means alternate endpoint descriptors (bigger packets)
336  * and a "device qualifier" ... plus more construction options
337  * for the config descriptor.
338  */
339
340 static struct usb_endpoint_descriptor
341 hs_source_desc = {
342         .bLength =              USB_DT_ENDPOINT_SIZE,
343         .bDescriptorType =      USB_DT_ENDPOINT,
344
345         .bmAttributes =         USB_ENDPOINT_XFER_BULK,
346         .wMaxPacketSize =       __constant_cpu_to_le16 (512),
347 };
348
349 static struct usb_endpoint_descriptor
350 hs_sink_desc = {
351         .bLength =              USB_DT_ENDPOINT_SIZE,
352         .bDescriptorType =      USB_DT_ENDPOINT,
353
354         .bmAttributes =         USB_ENDPOINT_XFER_BULK,
355         .wMaxPacketSize =       __constant_cpu_to_le16 (512),
356 };
357
358 static struct usb_qualifier_descriptor
359 dev_qualifier = {
360         .bLength =              sizeof dev_qualifier,
361         .bDescriptorType =      USB_DT_DEVICE_QUALIFIER,
362
363         .bcdUSB =               __constant_cpu_to_le16 (0x0200),
364         .bDeviceClass =         USB_CLASS_VENDOR_SPEC,
365
366         .bNumConfigurations =   2,
367 };
368
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,
375 };
376
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,
383 };
384
385 /* maxpacket and other transfer characteristics vary by speed. */
386 #define ep_desc(g,hs,fs) (((g)->speed==USB_SPEED_HIGH)?(hs):(fs))
387
388 #else
389
390 /* if there's no high speed support, maxpacket doesn't change. */
391 #define ep_desc(g,hs,fs) fs
392
393 #endif  /* !CONFIG_USB_GADGET_DUALSPEED */
394
395 static char                             manufacturer [50];
396 static char                             serial [40];
397
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 */
406 };
407
408 static struct usb_gadget_strings        stringtab = {
409         .language       = 0x0409,       /* en-us */
410         .strings        = strings,
411 };
412
413 /*
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:
417  *
418  *  - high speed support, including "other speed config" rules
419  *  - multiple configurations
420  *  - interfaces with alternate settings
421  *  - embedded class or vendor-specific descriptors
422  *
423  * this handles high speed, and has a second config that could as easily
424  * have been an alternate interface setting (on most hardware).
425  *
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?)
430  */
431 static int
432 config_buf (struct usb_gadget *gadget,
433                 u8 *buf, u8 type, unsigned index)
434 {
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
441
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);
446
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;
459
460         /* for now, don't advertise srp-only devices */
461         if (!gadget->is_otg)
462                 function++;
463
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;
472 }
473
474 /*-------------------------------------------------------------------------*/
475
476 static struct usb_request *
477 alloc_ep_req (struct usb_ep *ep, unsigned length)
478 {
479         struct usb_request      *req;
480
481         req = usb_ep_alloc_request (ep, GFP_ATOMIC);
482         if (req) {
483                 req->length = length;
484                 req->buf = usb_ep_alloc_buffer (ep, length,
485                                 &req->dma, GFP_ATOMIC);
486                 if (!req->buf) {
487                         usb_ep_free_request (ep, req);
488                         req = NULL;
489                 }
490         }
491         return req;
492 }
493
494 static void free_ep_req (struct usb_ep *ep, struct usb_request *req)
495 {
496         if (req->buf)
497                 usb_ep_free_buffer (ep, req->buf, req->dma, req->length);
498         usb_ep_free_request (ep, req);
499 }
500
501 /*-------------------------------------------------------------------------*/
502
503 /* optionally require specific source/sink data patterns  */
504
505 static int
506 check_read_data (
507         struct zero_dev         *dev,
508         struct usb_ep           *ep,
509         struct usb_request      *req
510 )
511 {
512         unsigned        i;
513         u8              *buf = req->buf;
514
515         for (i = 0; i < req->actual; i++, buf++) {
516                 switch (pattern) {
517                 /* all-zeroes has no synchronization issues */
518                 case 0:
519                         if (*buf == 0)
520                                 continue;
521                         break;
522                 /* mod63 stays in sync with short-terminated transfers,
523                  * or otherwise when host and gadget agree on how large
524                  * each usb transfer request should be.  resync is done
525                  * with set_interface or set_config.
526                  */
527                 case 1:
528                         if (*buf == (u8)(i % 63))
529                                 continue;
530                         break;
531                 }
532                 ERROR (dev, "bad OUT byte, buf [%d] = %d\n", i, *buf);
533                 usb_ep_set_halt (ep);
534                 return -EINVAL;
535         }
536         return 0;
537 }
538
539 static void
540 reinit_write_data (
541         struct zero_dev         *dev,
542         struct usb_ep           *ep,
543         struct usb_request      *req
544 )
545 {
546         unsigned        i;
547         u8              *buf = req->buf;
548
549         switch (pattern) {
550         case 0:
551                 memset (req->buf, 0, req->length);
552                 break;
553         case 1:
554                 for  (i = 0; i < req->length; i++)
555                         *buf++ = (u8) (i % 63);
556                 break;
557         }
558 }
559
560 /* if there is only one request in the queue, there'll always be an
561  * irq delay between end of one request and start of the next.
562  * that prevents using hardware dma queues.
563  */
564 static void source_sink_complete (struct usb_ep *ep, struct usb_request *req)
565 {
566         struct zero_dev *dev = ep->driver_data;
567         int             status = req->status;
568
569         switch (status) {
570
571         case 0:                         /* normal completion? */
572                 if (ep == dev->out_ep) {
573                         check_read_data (dev, ep, req);
574                         memset (req->buf, 0x55, req->length);
575                 } else
576                         reinit_write_data (dev, ep, req);
577                 break;
578
579         /* this endpoint is normally active while we're configured */
580         case -ECONNABORTED:             /* hardware forced ep reset */
581         case -ECONNRESET:               /* request dequeued */
582         case -ESHUTDOWN:                /* disconnect from host */
583                 VDBG (dev, "%s gone (%d), %d/%d\n", ep->name, status,
584                                 req->actual, req->length);
585                 if (ep == dev->out_ep)
586                         check_read_data (dev, ep, req);
587                 free_ep_req (ep, req);
588                 return;
589
590         case -EOVERFLOW:                /* buffer overrun on read means that
591                                          * we didn't provide a big enough
592                                          * buffer.
593                                          */
594         default:
595 #if 1
596                 DBG (dev, "%s complete --> %d, %d/%d\n", ep->name,
597                                 status, req->actual, req->length);
598 #endif
599         case -EREMOTEIO:                /* short read */
600                 break;
601         }
602
603         status = usb_ep_queue (ep, req, GFP_ATOMIC);
604         if (status) {
605                 ERROR (dev, "kill %s:  resubmit %d bytes --> %d\n",
606                                 ep->name, req->length, status);
607                 usb_ep_set_halt (ep);
608                 /* FIXME recover later ... somehow */
609         }
610 }
611
612 static struct usb_request *
613 source_sink_start_ep (struct usb_ep *ep, gfp_t gfp_flags)
614 {
615         struct usb_request      *req;
616         int                     status;
617
618         req = alloc_ep_req (ep, buflen);
619         if (!req)
620                 return NULL;
621
622         memset (req->buf, 0, req->length);
623         req->complete = source_sink_complete;
624
625         if (strcmp (ep->name, EP_IN_NAME) == 0)
626                 reinit_write_data (ep->driver_data, ep, req);
627         else
628                 memset (req->buf, 0x55, req->length);
629
630         status = usb_ep_queue (ep, req, gfp_flags);
631         if (status) {
632                 struct zero_dev *dev = ep->driver_data;
633
634                 ERROR (dev, "start %s --> %d\n", ep->name, status);
635                 free_ep_req (ep, req);
636                 req = NULL;
637         }
638
639         return req;
640 }
641
642 static int
643 set_source_sink_config (struct zero_dev *dev, gfp_t gfp_flags)
644 {
645         int                     result = 0;
646         struct usb_ep           *ep;
647         struct usb_gadget       *gadget = dev->gadget;
648
649         gadget_for_each_ep (ep, gadget) {
650                 const struct usb_endpoint_descriptor    *d;
651
652                 /* one endpoint writes (sources) zeroes in (to the host) */
653                 if (strcmp (ep->name, EP_IN_NAME) == 0) {
654                         d = ep_desc (gadget, &hs_source_desc, &fs_source_desc);
655                         result = usb_ep_enable (ep, d);
656                         if (result == 0) {
657                                 ep->driver_data = dev;
658                                 if (source_sink_start_ep (ep, gfp_flags) != 0) {
659                                         dev->in_ep = ep;
660                                         continue;
661                                 }
662                                 usb_ep_disable (ep);
663                                 result = -EIO;
664                         }
665
666                 /* one endpoint reads (sinks) anything out (from the host) */
667                 } else if (strcmp (ep->name, EP_OUT_NAME) == 0) {
668                         d = ep_desc (gadget, &hs_sink_desc, &fs_sink_desc);
669                         result = usb_ep_enable (ep, d);
670                         if (result == 0) {
671                                 ep->driver_data = dev;
672                                 if (source_sink_start_ep (ep, gfp_flags) != 0) {
673                                         dev->out_ep = ep;
674                                         continue;
675                                 }
676                                 usb_ep_disable (ep);
677                                 result = -EIO;
678                         }
679
680                 /* ignore any other endpoints */
681                 } else
682                         continue;
683
684                 /* stop on error */
685                 ERROR (dev, "can't start %s, result %d\n", ep->name, result);
686                 break;
687         }
688         if (result == 0)
689                 DBG (dev, "buflen %d\n", buflen);
690
691         /* caller is responsible for cleanup on error */
692         return result;
693 }
694
695 /*-------------------------------------------------------------------------*/
696
697 static void loopback_complete (struct usb_ep *ep, struct usb_request *req)
698 {
699         struct zero_dev *dev = ep->driver_data;
700         int             status = req->status;
701
702         switch (status) {
703
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;
712
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);
717                 }
718
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;
724
725                 /* "should never get here" */
726                 /* FALLTHROUGH */
727
728         default:
729                 ERROR (dev, "%s loop complete --> %d, %d/%d\n", ep->name,
730                                 status, req->actual, req->length);
731                 /* FALLTHROUGH */
732
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.
737          */
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;
743         }
744 }
745
746 static int
747 set_loopback_config (struct zero_dev *dev, gfp_t gfp_flags)
748 {
749         int                     result = 0;
750         struct usb_ep           *ep;
751         struct usb_gadget       *gadget = dev->gadget;
752
753         gadget_for_each_ep (ep, gadget) {
754                 const struct usb_endpoint_descriptor    *d;
755
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;
764                         }
765
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;
774                         }
775
776                 /* ignore any other endpoints */
777                 } else
778                         continue;
779
780                 /* stop on error */
781                 ERROR (dev, "can't enable %s, result %d\n", ep->name, result);
782                 break;
783         }
784
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.
788          */
789         if (result == 0) {
790                 struct usb_request      *req;
791                 unsigned                i;
792
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;
804                 }
805         }
806         if (result == 0)
807                 DBG (dev, "qlen %d, buflen %d\n", qlen, buflen);
808
809         /* caller is responsible for cleanup on error */
810         return result;
811 }
812
813 /*-------------------------------------------------------------------------*/
814
815 static void zero_reset_config (struct zero_dev *dev)
816 {
817         if (dev->config == 0)
818                 return;
819
820         DBG (dev, "reset config\n");
821
822         /* just disable endpoints, forcing completion of pending i/o.
823          * all our completion handlers free their requests in this case.
824          */
825         if (dev->in_ep) {
826                 usb_ep_disable (dev->in_ep);
827                 dev->in_ep = NULL;
828         }
829         if (dev->out_ep) {
830                 usb_ep_disable (dev->out_ep);
831                 dev->out_ep = NULL;
832         }
833         dev->config = 0;
834         del_timer (&dev->resume);
835 }
836
837 /* change our operational config.  this code must agree with the code
838  * that returns config descriptors, and altsetting code.
839  *
840  * it's also responsible for power management interactions. some
841  * configurations might not work with our current power sources.
842  *
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).
846  */
847 static int
848 zero_set_config (struct zero_dev *dev, unsigned number, gfp_t gfp_flags)
849 {
850         int                     result = 0;
851         struct usb_gadget       *gadget = dev->gadget;
852
853         if (number == dev->config)
854                 return 0;
855
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;
860         }
861         zero_reset_config (dev);
862
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;
875         }
876
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;
883
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;
889                 }
890
891                 dev->config = number;
892                 INFO (dev, "%s speed config #%d: %s\n", speed, number,
893                                 (number == CONFIG_SOURCE_SINK)
894                                         ? source_sink : loopback);
895         }
896         return result;
897 }
898
899 /*-------------------------------------------------------------------------*/
900
901 static void zero_setup_complete (struct usb_ep *ep, struct usb_request *req)
902 {
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);
907 }
908
909 /*
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.
915  */
916 static int
917 zero_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
918 {
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);
925
926         /* usually this stores reply data in the pre-allocated ep0 buffer,
927          * but config change events will reconfigure hardware.
928          */
929         req->zero = 0;
930         switch (ctrl->bRequest) {
931
932         case USB_REQ_GET_DESCRIPTOR:
933                 if (ctrl->bRequestType != USB_DIR_IN)
934                         goto unknown;
935                 switch (w_value >> 8) {
936
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;
948
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;
961
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
967                          */
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;
973                 }
974                 break;
975
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;
996
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.
1000          */
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;
1007
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.
1014                          */
1015                         zero_reset_config (dev);
1016                         zero_set_config (dev, config, GFP_ATOMIC);
1017                         value = 0;
1018                 }
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;
1029                 }
1030                 *(u8 *)req->buf = 0;
1031                 value = min (w_length, (u16) 1);
1032                 break;
1033
1034         /*
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.
1038          */
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;
1060
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);
1067         }
1068
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);
1078                 }
1079         }
1080
1081         /* device either stalls (value < 0) or reports success */
1082         return value;
1083 }
1084
1085 static void
1086 zero_disconnect (struct usb_gadget *gadget)
1087 {
1088         struct zero_dev         *dev = get_gadget_data (gadget);
1089         unsigned long           flags;
1090
1091         spin_lock_irqsave (&dev->lock, flags);
1092         zero_reset_config (dev);
1093
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.
1097          */
1098         spin_unlock_irqrestore (&dev->lock, flags);
1099
1100         /* next we may get setup() calls to enumerate new connections;
1101          * or an unbind() during shutdown (including removing module).
1102          */
1103 }
1104
1105 static void
1106 zero_autoresume (unsigned long _dev)
1107 {
1108         struct zero_dev *dev = (struct zero_dev *) _dev;
1109         int             status;
1110
1111         /* normally the host would be woken up for something
1112          * more significant than just a timer firing...
1113          */
1114         if (dev->gadget->speed != USB_SPEED_UNKNOWN) {
1115                 status = usb_gadget_wakeup (dev->gadget);
1116                 DBG (dev, "wakeup --> %d\n", status);
1117         }
1118 }
1119
1120 /*-------------------------------------------------------------------------*/
1121
1122 static void /* __init_or_exit */
1123 zero_unbind (struct usb_gadget *gadget)
1124 {
1125         struct zero_dev         *dev = get_gadget_data (gadget);
1126
1127         DBG (dev, "unbind\n");
1128
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);
1133         }
1134         del_timer_sync (&dev->resume);
1135         kfree (dev);
1136         set_gadget_data (gadget, NULL);
1137 }
1138
1139 static int __init
1140 zero_bind (struct usb_gadget *gadget)
1141 {
1142         struct zero_dev         *dev;
1143         struct usb_ep           *ep;
1144         int                     gcnum;
1145
1146         /* FIXME this can't yet work right with SH ... it has only
1147          * one configuration, numbered one.
1148          */
1149         if (gadget_is_sh(gadget))
1150                 return -ENODEV;
1151
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.
1155          */
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;
1163         }
1164         EP_IN_NAME = ep->name;
1165         ep->driver_data = ep;   /* claim */
1166         
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 */
1172
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.
1180                  *
1181                  * things like configuration and altsetting numbering
1182                  * can need hardware-specific attention though.
1183                  */
1184                 printk (KERN_WARNING "%s: controller '%s' not recognized\n",
1185                         shortname, gadget->name);
1186                 device_desc.bcdDevice = __constant_cpu_to_le16 (0x9999);
1187         }
1188
1189
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);
1197
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 = usb_ep_alloc_buffer (gadget->ep0, USB_BUFSIZ,
1203                                 &dev->req->dma, GFP_KERNEL);
1204         if (!dev->req->buf)
1205                 goto enomem;
1206
1207         dev->req->complete = zero_setup_complete;
1208
1209         device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket;
1210
1211 #ifdef CONFIG_USB_GADGET_DUALSPEED
1212         /* assume ep0 uses the same value for both speeds ... */
1213         dev_qualifier.bMaxPacketSize0 = device_desc.bMaxPacketSize0;
1214
1215         /* and that all endpoints are dual-speed */
1216         hs_source_desc.bEndpointAddress = fs_source_desc.bEndpointAddress;
1217         hs_sink_desc.bEndpointAddress = fs_sink_desc.bEndpointAddress;
1218 #endif
1219
1220         if (gadget->is_otg) {
1221                 otg_descriptor.bmAttributes |= USB_OTG_HNP,
1222                 source_sink_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1223                 loopback_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1224         }
1225
1226         usb_gadget_set_selfpowered (gadget);
1227
1228         init_timer (&dev->resume);
1229         dev->resume.function = zero_autoresume;
1230         dev->resume.data = (unsigned long) dev;
1231         if (autoresume) {
1232                 source_sink_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1233                 loopback_config.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1234         }
1235
1236         gadget->ep0->driver_data = dev;
1237
1238         INFO (dev, "%s, version: " DRIVER_VERSION "\n", longname);
1239         INFO (dev, "using %s, OUT %s IN %s\n", gadget->name,
1240                 EP_OUT_NAME, EP_IN_NAME);
1241
1242         snprintf (manufacturer, sizeof manufacturer, "%s %s with %s",
1243                 init_utsname()->sysname, init_utsname()->release,
1244                 gadget->name);
1245
1246         return 0;
1247
1248 enomem:
1249         zero_unbind (gadget);
1250         return -ENOMEM;
1251 }
1252
1253 /*-------------------------------------------------------------------------*/
1254
1255 static void
1256 zero_suspend (struct usb_gadget *gadget)
1257 {
1258         struct zero_dev         *dev = get_gadget_data (gadget);
1259
1260         if (gadget->speed == USB_SPEED_UNKNOWN)
1261                 return;
1262
1263         if (autoresume) {
1264                 mod_timer (&dev->resume, jiffies + (HZ * autoresume));
1265                 DBG (dev, "suspend, wakeup in %d seconds\n", autoresume);
1266         } else
1267                 DBG (dev, "suspend\n");
1268 }
1269
1270 static void
1271 zero_resume (struct usb_gadget *gadget)
1272 {
1273         struct zero_dev         *dev = get_gadget_data (gadget);
1274
1275         DBG (dev, "resume\n");
1276         del_timer (&dev->resume);
1277 }
1278
1279
1280 /*-------------------------------------------------------------------------*/
1281
1282 static struct usb_gadget_driver zero_driver = {
1283 #ifdef CONFIG_USB_GADGET_DUALSPEED
1284         .speed          = USB_SPEED_HIGH,
1285 #else
1286         .speed          = USB_SPEED_FULL,
1287 #endif
1288         .function       = (char *) longname,
1289         .bind           = zero_bind,
1290         .unbind         = __exit_p(zero_unbind),
1291
1292         .setup          = zero_setup,
1293         .disconnect     = zero_disconnect,
1294
1295         .suspend        = zero_suspend,
1296         .resume         = zero_resume,
1297
1298         .driver         = {
1299                 .name           = (char *) shortname,
1300                 .owner          = THIS_MODULE,
1301         },
1302 };
1303
1304 MODULE_AUTHOR ("David Brownell");
1305 MODULE_LICENSE ("Dual BSD/GPL");
1306
1307
1308 static int __init init (void)
1309 {
1310         /* a real value would likely come through some id prom
1311          * or module option.  this one takes at least two packets.
1312          */
1313         strlcpy (serial, "0123456789.0123456789.0123456789", sizeof serial);
1314
1315         return usb_gadget_register_driver (&zero_driver);
1316 }
1317 module_init (init);
1318
1319 static void __exit cleanup (void)
1320 {
1321         usb_gadget_unregister_driver (&zero_driver);
1322 }
1323 module_exit (cleanup);
1324