GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / usb / gadget / legacy / inode.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * inode.c -- user mode filesystem api for usb gadget controllers
4  *
5  * Copyright (C) 2003-2004 David Brownell
6  * Copyright (C) 2003 Agilent Technologies
7  */
8
9
10 /* #define VERBOSE_DEBUG */
11
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/fs.h>
15 #include <linux/pagemap.h>
16 #include <linux/uts.h>
17 #include <linux/wait.h>
18 #include <linux/compiler.h>
19 #include <linux/uaccess.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/poll.h>
23 #include <linux/mmu_context.h>
24 #include <linux/aio.h>
25 #include <linux/uio.h>
26 #include <linux/refcount.h>
27 #include <linux/delay.h>
28 #include <linux/device.h>
29 #include <linux/moduleparam.h>
30
31 #include <linux/usb/gadgetfs.h>
32 #include <linux/usb/gadget.h>
33
34
35 /*
36  * The gadgetfs API maps each endpoint to a file descriptor so that you
37  * can use standard synchronous read/write calls for I/O.  There's some
38  * O_NONBLOCK and O_ASYNC/FASYNC style i/o support.  Example usermode
39  * drivers show how this works in practice.  You can also use AIO to
40  * eliminate I/O gaps between requests, to help when streaming data.
41  *
42  * Key parts that must be USB-specific are protocols defining how the
43  * read/write operations relate to the hardware state machines.  There
44  * are two types of files.  One type is for the device, implementing ep0.
45  * The other type is for each IN or OUT endpoint.  In both cases, the
46  * user mode driver must configure the hardware before using it.
47  *
48  * - First, dev_config() is called when /dev/gadget/$CHIP is configured
49  *   (by writing configuration and device descriptors).  Afterwards it
50  *   may serve as a source of device events, used to handle all control
51  *   requests other than basic enumeration.
52  *
53  * - Then, after a SET_CONFIGURATION control request, ep_config() is
54  *   called when each /dev/gadget/ep* file is configured (by writing
55  *   endpoint descriptors).  Afterwards these files are used to write()
56  *   IN data or to read() OUT data.  To halt the endpoint, a "wrong
57  *   direction" request is issued (like reading an IN endpoint).
58  *
59  * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
60  * not possible on all hardware.  For example, precise fault handling with
61  * respect to data left in endpoint fifos after aborted operations; or
62  * selective clearing of endpoint halts, to implement SET_INTERFACE.
63  */
64
65 #define DRIVER_DESC     "USB Gadget filesystem"
66 #define DRIVER_VERSION  "24 Aug 2004"
67
68 static const char driver_desc [] = DRIVER_DESC;
69 static const char shortname [] = "gadgetfs";
70
71 MODULE_DESCRIPTION (DRIVER_DESC);
72 MODULE_AUTHOR ("David Brownell");
73 MODULE_LICENSE ("GPL");
74
75 static int ep_open(struct inode *, struct file *);
76
77
78 /*----------------------------------------------------------------------*/
79
80 #define GADGETFS_MAGIC          0xaee71ee7
81
82 /* /dev/gadget/$CHIP represents ep0 and the whole device */
83 enum ep0_state {
84         /* DISABLED is the initial state. */
85         STATE_DEV_DISABLED = 0,
86
87         /* Only one open() of /dev/gadget/$CHIP; only one file tracks
88          * ep0/device i/o modes and binding to the controller.  Driver
89          * must always write descriptors to initialize the device, then
90          * the device becomes UNCONNECTED until enumeration.
91          */
92         STATE_DEV_OPENED,
93
94         /* From then on, ep0 fd is in either of two basic modes:
95          * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
96          * - SETUP: read/write will transfer control data and succeed;
97          *   or if "wrong direction", performs protocol stall
98          */
99         STATE_DEV_UNCONNECTED,
100         STATE_DEV_CONNECTED,
101         STATE_DEV_SETUP,
102
103         /* UNBOUND means the driver closed ep0, so the device won't be
104          * accessible again (DEV_DISABLED) until all fds are closed.
105          */
106         STATE_DEV_UNBOUND,
107 };
108
109 /* enough for the whole queue: most events invalidate others */
110 #define N_EVENT                 5
111
112 #define RBUF_SIZE               256
113
114 struct dev_data {
115         spinlock_t                      lock;
116         refcount_t                      count;
117         int                             udc_usage;
118         enum ep0_state                  state;          /* P: lock */
119         struct usb_gadgetfs_event       event [N_EVENT];
120         unsigned                        ev_next;
121         struct fasync_struct            *fasync;
122         u8                              current_config;
123
124         /* drivers reading ep0 MUST handle control requests (SETUP)
125          * reported that way; else the host will time out.
126          */
127         unsigned                        usermode_setup : 1,
128                                         setup_in : 1,
129                                         setup_can_stall : 1,
130                                         setup_out_ready : 1,
131                                         setup_out_error : 1,
132                                         setup_abort : 1,
133                                         gadget_registered : 1;
134         unsigned                        setup_wLength;
135
136         /* the rest is basically write-once */
137         struct usb_config_descriptor    *config, *hs_config;
138         struct usb_device_descriptor    *dev;
139         struct usb_request              *req;
140         struct usb_gadget               *gadget;
141         struct list_head                epfiles;
142         void                            *buf;
143         wait_queue_head_t               wait;
144         struct super_block              *sb;
145         struct dentry                   *dentry;
146
147         /* except this scratch i/o buffer for ep0 */
148         u8                              rbuf[RBUF_SIZE];
149 };
150
151 static inline void get_dev (struct dev_data *data)
152 {
153         refcount_inc (&data->count);
154 }
155
156 static void put_dev (struct dev_data *data)
157 {
158         if (likely (!refcount_dec_and_test (&data->count)))
159                 return;
160         /* needs no more cleanup */
161         BUG_ON (waitqueue_active (&data->wait));
162         kfree (data);
163 }
164
165 static struct dev_data *dev_new (void)
166 {
167         struct dev_data         *dev;
168
169         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
170         if (!dev)
171                 return NULL;
172         dev->state = STATE_DEV_DISABLED;
173         refcount_set (&dev->count, 1);
174         spin_lock_init (&dev->lock);
175         INIT_LIST_HEAD (&dev->epfiles);
176         init_waitqueue_head (&dev->wait);
177         return dev;
178 }
179
180 /*----------------------------------------------------------------------*/
181
182 /* other /dev/gadget/$ENDPOINT files represent endpoints */
183 enum ep_state {
184         STATE_EP_DISABLED = 0,
185         STATE_EP_READY,
186         STATE_EP_ENABLED,
187         STATE_EP_UNBOUND,
188 };
189
190 struct ep_data {
191         struct mutex                    lock;
192         enum ep_state                   state;
193         refcount_t                      count;
194         struct dev_data                 *dev;
195         /* must hold dev->lock before accessing ep or req */
196         struct usb_ep                   *ep;
197         struct usb_request              *req;
198         ssize_t                         status;
199         char                            name [16];
200         struct usb_endpoint_descriptor  desc, hs_desc;
201         struct list_head                epfiles;
202         wait_queue_head_t               wait;
203         struct dentry                   *dentry;
204 };
205
206 static inline void get_ep (struct ep_data *data)
207 {
208         refcount_inc (&data->count);
209 }
210
211 static void put_ep (struct ep_data *data)
212 {
213         if (likely (!refcount_dec_and_test (&data->count)))
214                 return;
215         put_dev (data->dev);
216         /* needs no more cleanup */
217         BUG_ON (!list_empty (&data->epfiles));
218         BUG_ON (waitqueue_active (&data->wait));
219         kfree (data);
220 }
221
222 /*----------------------------------------------------------------------*/
223
224 /* most "how to use the hardware" policy choices are in userspace:
225  * mapping endpoint roles (which the driver needs) to the capabilities
226  * which the usb controller has.  most of those capabilities are exposed
227  * implicitly, starting with the driver name and then endpoint names.
228  */
229
230 static const char *CHIP;
231
232 /*----------------------------------------------------------------------*/
233
234 /* NOTE:  don't use dev_printk calls before binding to the gadget
235  * at the end of ep0 configuration, or after unbind.
236  */
237
238 /* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
239 #define xprintk(d,level,fmt,args...) \
240         printk(level "%s: " fmt , shortname , ## args)
241
242 #ifdef DEBUG
243 #define DBG(dev,fmt,args...) \
244         xprintk(dev , KERN_DEBUG , fmt , ## args)
245 #else
246 #define DBG(dev,fmt,args...) \
247         do { } while (0)
248 #endif /* DEBUG */
249
250 #ifdef VERBOSE_DEBUG
251 #define VDEBUG  DBG
252 #else
253 #define VDEBUG(dev,fmt,args...) \
254         do { } while (0)
255 #endif /* DEBUG */
256
257 #define ERROR(dev,fmt,args...) \
258         xprintk(dev , KERN_ERR , fmt , ## args)
259 #define INFO(dev,fmt,args...) \
260         xprintk(dev , KERN_INFO , fmt , ## args)
261
262
263 /*----------------------------------------------------------------------*/
264
265 /* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
266  *
267  * After opening, configure non-control endpoints.  Then use normal
268  * stream read() and write() requests; and maybe ioctl() to get more
269  * precise FIFO status when recovering from cancellation.
270  */
271
272 static void epio_complete (struct usb_ep *ep, struct usb_request *req)
273 {
274         struct ep_data  *epdata = ep->driver_data;
275
276         if (!req->context)
277                 return;
278         if (req->status)
279                 epdata->status = req->status;
280         else
281                 epdata->status = req->actual;
282         complete ((struct completion *)req->context);
283 }
284
285 /* tasklock endpoint, returning when it's connected.
286  * still need dev->lock to use epdata->ep.
287  */
288 static int
289 get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
290 {
291         int     val;
292
293         if (f_flags & O_NONBLOCK) {
294                 if (!mutex_trylock(&epdata->lock))
295                         goto nonblock;
296                 if (epdata->state != STATE_EP_ENABLED &&
297                     (!is_write || epdata->state != STATE_EP_READY)) {
298                         mutex_unlock(&epdata->lock);
299 nonblock:
300                         val = -EAGAIN;
301                 } else
302                         val = 0;
303                 return val;
304         }
305
306         val = mutex_lock_interruptible(&epdata->lock);
307         if (val < 0)
308                 return val;
309
310         switch (epdata->state) {
311         case STATE_EP_ENABLED:
312                 return 0;
313         case STATE_EP_READY:                    /* not configured yet */
314                 if (is_write)
315                         return 0;
316                 // FALLTHRU
317         case STATE_EP_UNBOUND:                  /* clean disconnect */
318                 break;
319         // case STATE_EP_DISABLED:              /* "can't happen" */
320         default:                                /* error! */
321                 pr_debug ("%s: ep %p not available, state %d\n",
322                                 shortname, epdata, epdata->state);
323         }
324         mutex_unlock(&epdata->lock);
325         return -ENODEV;
326 }
327
328 static ssize_t
329 ep_io (struct ep_data *epdata, void *buf, unsigned len)
330 {
331         DECLARE_COMPLETION_ONSTACK (done);
332         int value;
333
334         spin_lock_irq (&epdata->dev->lock);
335         if (likely (epdata->ep != NULL)) {
336                 struct usb_request      *req = epdata->req;
337
338                 req->context = &done;
339                 req->complete = epio_complete;
340                 req->buf = buf;
341                 req->length = len;
342                 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
343         } else
344                 value = -ENODEV;
345         spin_unlock_irq (&epdata->dev->lock);
346
347         if (likely (value == 0)) {
348                 value = wait_event_interruptible (done.wait, done.done);
349                 if (value != 0) {
350                         spin_lock_irq (&epdata->dev->lock);
351                         if (likely (epdata->ep != NULL)) {
352                                 DBG (epdata->dev, "%s i/o interrupted\n",
353                                                 epdata->name);
354                                 usb_ep_dequeue (epdata->ep, epdata->req);
355                                 spin_unlock_irq (&epdata->dev->lock);
356
357                                 wait_event (done.wait, done.done);
358                                 if (epdata->status == -ECONNRESET)
359                                         epdata->status = -EINTR;
360                         } else {
361                                 spin_unlock_irq (&epdata->dev->lock);
362
363                                 DBG (epdata->dev, "endpoint gone\n");
364                                 wait_for_completion(&done);
365                                 epdata->status = -ENODEV;
366                         }
367                 }
368                 return epdata->status;
369         }
370         return value;
371 }
372
373 static int
374 ep_release (struct inode *inode, struct file *fd)
375 {
376         struct ep_data          *data = fd->private_data;
377         int value;
378
379         value = mutex_lock_interruptible(&data->lock);
380         if (value < 0)
381                 return value;
382
383         /* clean up if this can be reopened */
384         if (data->state != STATE_EP_UNBOUND) {
385                 data->state = STATE_EP_DISABLED;
386                 data->desc.bDescriptorType = 0;
387                 data->hs_desc.bDescriptorType = 0;
388                 usb_ep_disable(data->ep);
389         }
390         mutex_unlock(&data->lock);
391         put_ep (data);
392         return 0;
393 }
394
395 static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
396 {
397         struct ep_data          *data = fd->private_data;
398         int                     status;
399
400         if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
401                 return status;
402
403         spin_lock_irq (&data->dev->lock);
404         if (likely (data->ep != NULL)) {
405                 switch (code) {
406                 case GADGETFS_FIFO_STATUS:
407                         status = usb_ep_fifo_status (data->ep);
408                         break;
409                 case GADGETFS_FIFO_FLUSH:
410                         usb_ep_fifo_flush (data->ep);
411                         break;
412                 case GADGETFS_CLEAR_HALT:
413                         status = usb_ep_clear_halt (data->ep);
414                         break;
415                 default:
416                         status = -ENOTTY;
417                 }
418         } else
419                 status = -ENODEV;
420         spin_unlock_irq (&data->dev->lock);
421         mutex_unlock(&data->lock);
422         return status;
423 }
424
425 /*----------------------------------------------------------------------*/
426
427 /* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
428
429 struct kiocb_priv {
430         struct usb_request      *req;
431         struct ep_data          *epdata;
432         struct kiocb            *iocb;
433         struct mm_struct        *mm;
434         struct work_struct      work;
435         void                    *buf;
436         struct iov_iter         to;
437         const void              *to_free;
438         unsigned                actual;
439 };
440
441 static int ep_aio_cancel(struct kiocb *iocb)
442 {
443         struct kiocb_priv       *priv = iocb->private;
444         struct ep_data          *epdata;
445         int                     value;
446
447         local_irq_disable();
448         epdata = priv->epdata;
449         // spin_lock(&epdata->dev->lock);
450         if (likely(epdata && epdata->ep && priv->req))
451                 value = usb_ep_dequeue (epdata->ep, priv->req);
452         else
453                 value = -EINVAL;
454         // spin_unlock(&epdata->dev->lock);
455         local_irq_enable();
456
457         return value;
458 }
459
460 static void ep_user_copy_worker(struct work_struct *work)
461 {
462         struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
463         struct mm_struct *mm = priv->mm;
464         struct kiocb *iocb = priv->iocb;
465         size_t ret;
466
467         use_mm(mm);
468         ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
469         unuse_mm(mm);
470         if (!ret)
471                 ret = -EFAULT;
472
473         /* completing the iocb can drop the ctx and mm, don't touch mm after */
474         iocb->ki_complete(iocb, ret, ret);
475
476         kfree(priv->buf);
477         kfree(priv->to_free);
478         kfree(priv);
479 }
480
481 static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
482 {
483         struct kiocb            *iocb = req->context;
484         struct kiocb_priv       *priv = iocb->private;
485         struct ep_data          *epdata = priv->epdata;
486
487         /* lock against disconnect (and ideally, cancel) */
488         spin_lock(&epdata->dev->lock);
489         priv->req = NULL;
490         priv->epdata = NULL;
491
492         /* if this was a write or a read returning no data then we
493          * don't need to copy anything to userspace, so we can
494          * complete the aio request immediately.
495          */
496         if (priv->to_free == NULL || unlikely(req->actual == 0)) {
497                 kfree(req->buf);
498                 kfree(priv->to_free);
499                 kfree(priv);
500                 iocb->private = NULL;
501                 /* aio_complete() reports bytes-transferred _and_ faults */
502
503                 iocb->ki_complete(iocb, req->actual ? req->actual : req->status,
504                                 req->status);
505         } else {
506                 /* ep_copy_to_user() won't report both; we hide some faults */
507                 if (unlikely(0 != req->status))
508                         DBG(epdata->dev, "%s fault %d len %d\n",
509                                 ep->name, req->status, req->actual);
510
511                 priv->buf = req->buf;
512                 priv->actual = req->actual;
513                 INIT_WORK(&priv->work, ep_user_copy_worker);
514                 schedule_work(&priv->work);
515         }
516
517         usb_ep_free_request(ep, req);
518         spin_unlock(&epdata->dev->lock);
519         put_ep(epdata);
520 }
521
522 static ssize_t ep_aio(struct kiocb *iocb,
523                       struct kiocb_priv *priv,
524                       struct ep_data *epdata,
525                       char *buf,
526                       size_t len)
527 {
528         struct usb_request *req;
529         ssize_t value;
530
531         iocb->private = priv;
532         priv->iocb = iocb;
533
534         kiocb_set_cancel_fn(iocb, ep_aio_cancel);
535         get_ep(epdata);
536         priv->epdata = epdata;
537         priv->actual = 0;
538         priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
539
540         /* each kiocb is coupled to one usb_request, but we can't
541          * allocate or submit those if the host disconnected.
542          */
543         spin_lock_irq(&epdata->dev->lock);
544         value = -ENODEV;
545         if (unlikely(epdata->ep == NULL))
546                 goto fail;
547
548         req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
549         value = -ENOMEM;
550         if (unlikely(!req))
551                 goto fail;
552
553         priv->req = req;
554         req->buf = buf;
555         req->length = len;
556         req->complete = ep_aio_complete;
557         req->context = iocb;
558         value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
559         if (unlikely(0 != value)) {
560                 usb_ep_free_request(epdata->ep, req);
561                 goto fail;
562         }
563         spin_unlock_irq(&epdata->dev->lock);
564         return -EIOCBQUEUED;
565
566 fail:
567         spin_unlock_irq(&epdata->dev->lock);
568         kfree(priv->to_free);
569         kfree(priv);
570         put_ep(epdata);
571         return value;
572 }
573
574 static ssize_t
575 ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
576 {
577         struct file *file = iocb->ki_filp;
578         struct ep_data *epdata = file->private_data;
579         size_t len = iov_iter_count(to);
580         ssize_t value;
581         char *buf;
582
583         if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
584                 return value;
585
586         /* halt any endpoint by doing a "wrong direction" i/o call */
587         if (usb_endpoint_dir_in(&epdata->desc)) {
588                 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
589                     !is_sync_kiocb(iocb)) {
590                         mutex_unlock(&epdata->lock);
591                         return -EINVAL;
592                 }
593                 DBG (epdata->dev, "%s halt\n", epdata->name);
594                 spin_lock_irq(&epdata->dev->lock);
595                 if (likely(epdata->ep != NULL))
596                         usb_ep_set_halt(epdata->ep);
597                 spin_unlock_irq(&epdata->dev->lock);
598                 mutex_unlock(&epdata->lock);
599                 return -EBADMSG;
600         }
601
602         buf = kmalloc(len, GFP_KERNEL);
603         if (unlikely(!buf)) {
604                 mutex_unlock(&epdata->lock);
605                 return -ENOMEM;
606         }
607         if (is_sync_kiocb(iocb)) {
608                 value = ep_io(epdata, buf, len);
609                 if (value >= 0 && (copy_to_iter(buf, value, to) != value))
610                         value = -EFAULT;
611         } else {
612                 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
613                 value = -ENOMEM;
614                 if (!priv)
615                         goto fail;
616                 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
617                 if (!priv->to_free) {
618                         kfree(priv);
619                         goto fail;
620                 }
621                 value = ep_aio(iocb, priv, epdata, buf, len);
622                 if (value == -EIOCBQUEUED)
623                         buf = NULL;
624         }
625 fail:
626         kfree(buf);
627         mutex_unlock(&epdata->lock);
628         return value;
629 }
630
631 static ssize_t ep_config(struct ep_data *, const char *, size_t);
632
633 static ssize_t
634 ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
635 {
636         struct file *file = iocb->ki_filp;
637         struct ep_data *epdata = file->private_data;
638         size_t len = iov_iter_count(from);
639         bool configured;
640         ssize_t value;
641         char *buf;
642
643         if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
644                 return value;
645
646         configured = epdata->state == STATE_EP_ENABLED;
647
648         /* halt any endpoint by doing a "wrong direction" i/o call */
649         if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
650                 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
651                     !is_sync_kiocb(iocb)) {
652                         mutex_unlock(&epdata->lock);
653                         return -EINVAL;
654                 }
655                 DBG (epdata->dev, "%s halt\n", epdata->name);
656                 spin_lock_irq(&epdata->dev->lock);
657                 if (likely(epdata->ep != NULL))
658                         usb_ep_set_halt(epdata->ep);
659                 spin_unlock_irq(&epdata->dev->lock);
660                 mutex_unlock(&epdata->lock);
661                 return -EBADMSG;
662         }
663
664         buf = kmalloc(len, GFP_KERNEL);
665         if (unlikely(!buf)) {
666                 mutex_unlock(&epdata->lock);
667                 return -ENOMEM;
668         }
669
670         if (unlikely(!copy_from_iter_full(buf, len, from))) {
671                 value = -EFAULT;
672                 goto out;
673         }
674
675         if (unlikely(!configured)) {
676                 value = ep_config(epdata, buf, len);
677         } else if (is_sync_kiocb(iocb)) {
678                 value = ep_io(epdata, buf, len);
679         } else {
680                 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
681                 value = -ENOMEM;
682                 if (priv) {
683                         value = ep_aio(iocb, priv, epdata, buf, len);
684                         if (value == -EIOCBQUEUED)
685                                 buf = NULL;
686                 }
687         }
688 out:
689         kfree(buf);
690         mutex_unlock(&epdata->lock);
691         return value;
692 }
693
694 /*----------------------------------------------------------------------*/
695
696 /* used after endpoint configuration */
697 static const struct file_operations ep_io_operations = {
698         .owner =        THIS_MODULE,
699
700         .open =         ep_open,
701         .release =      ep_release,
702         .llseek =       no_llseek,
703         .unlocked_ioctl = ep_ioctl,
704         .read_iter =    ep_read_iter,
705         .write_iter =   ep_write_iter,
706 };
707
708 /* ENDPOINT INITIALIZATION
709  *
710  *     fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
711  *     status = write (fd, descriptors, sizeof descriptors)
712  *
713  * That write establishes the endpoint configuration, configuring
714  * the controller to process bulk, interrupt, or isochronous transfers
715  * at the right maxpacket size, and so on.
716  *
717  * The descriptors are message type 1, identified by a host order u32
718  * at the beginning of what's written.  Descriptor order is: full/low
719  * speed descriptor, then optional high speed descriptor.
720  */
721 static ssize_t
722 ep_config (struct ep_data *data, const char *buf, size_t len)
723 {
724         struct usb_ep           *ep;
725         u32                     tag;
726         int                     value, length = len;
727
728         if (data->state != STATE_EP_READY) {
729                 value = -EL2HLT;
730                 goto fail;
731         }
732
733         value = len;
734         if (len < USB_DT_ENDPOINT_SIZE + 4)
735                 goto fail0;
736
737         /* we might need to change message format someday */
738         memcpy(&tag, buf, 4);
739         if (tag != 1) {
740                 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
741                 goto fail0;
742         }
743         buf += 4;
744         len -= 4;
745
746         /* NOTE:  audio endpoint extensions not accepted here;
747          * just don't include the extra bytes.
748          */
749
750         /* full/low speed descriptor, then high speed */
751         memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
752         if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
753                         || data->desc.bDescriptorType != USB_DT_ENDPOINT)
754                 goto fail0;
755         if (len != USB_DT_ENDPOINT_SIZE) {
756                 if (len != 2 * USB_DT_ENDPOINT_SIZE)
757                         goto fail0;
758                 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
759                         USB_DT_ENDPOINT_SIZE);
760                 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
761                                 || data->hs_desc.bDescriptorType
762                                         != USB_DT_ENDPOINT) {
763                         DBG(data->dev, "config %s, bad hs length or type\n",
764                                         data->name);
765                         goto fail0;
766                 }
767         }
768
769         spin_lock_irq (&data->dev->lock);
770         if (data->dev->state == STATE_DEV_UNBOUND) {
771                 value = -ENOENT;
772                 goto gone;
773         } else {
774                 ep = data->ep;
775                 if (ep == NULL) {
776                         value = -ENODEV;
777                         goto gone;
778                 }
779         }
780         switch (data->dev->gadget->speed) {
781         case USB_SPEED_LOW:
782         case USB_SPEED_FULL:
783                 ep->desc = &data->desc;
784                 break;
785         case USB_SPEED_HIGH:
786                 /* fails if caller didn't provide that descriptor... */
787                 ep->desc = &data->hs_desc;
788                 break;
789         default:
790                 DBG(data->dev, "unconnected, %s init abandoned\n",
791                                 data->name);
792                 value = -EINVAL;
793                 goto gone;
794         }
795         value = usb_ep_enable(ep);
796         if (value == 0) {
797                 data->state = STATE_EP_ENABLED;
798                 value = length;
799         }
800 gone:
801         spin_unlock_irq (&data->dev->lock);
802         if (value < 0) {
803 fail:
804                 data->desc.bDescriptorType = 0;
805                 data->hs_desc.bDescriptorType = 0;
806         }
807         return value;
808 fail0:
809         value = -EINVAL;
810         goto fail;
811 }
812
813 static int
814 ep_open (struct inode *inode, struct file *fd)
815 {
816         struct ep_data          *data = inode->i_private;
817         int                     value = -EBUSY;
818
819         if (mutex_lock_interruptible(&data->lock) != 0)
820                 return -EINTR;
821         spin_lock_irq (&data->dev->lock);
822         if (data->dev->state == STATE_DEV_UNBOUND)
823                 value = -ENOENT;
824         else if (data->state == STATE_EP_DISABLED) {
825                 value = 0;
826                 data->state = STATE_EP_READY;
827                 get_ep (data);
828                 fd->private_data = data;
829                 VDEBUG (data->dev, "%s ready\n", data->name);
830         } else
831                 DBG (data->dev, "%s state %d\n",
832                         data->name, data->state);
833         spin_unlock_irq (&data->dev->lock);
834         mutex_unlock(&data->lock);
835         return value;
836 }
837
838 /*----------------------------------------------------------------------*/
839
840 /* EP0 IMPLEMENTATION can be partly in userspace.
841  *
842  * Drivers that use this facility receive various events, including
843  * control requests the kernel doesn't handle.  Drivers that don't
844  * use this facility may be too simple-minded for real applications.
845  */
846
847 static inline void ep0_readable (struct dev_data *dev)
848 {
849         wake_up (&dev->wait);
850         kill_fasync (&dev->fasync, SIGIO, POLL_IN);
851 }
852
853 static void clean_req (struct usb_ep *ep, struct usb_request *req)
854 {
855         struct dev_data         *dev = ep->driver_data;
856
857         if (req->buf != dev->rbuf) {
858                 kfree(req->buf);
859                 req->buf = dev->rbuf;
860         }
861         req->complete = epio_complete;
862         dev->setup_out_ready = 0;
863 }
864
865 static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
866 {
867         struct dev_data         *dev = ep->driver_data;
868         unsigned long           flags;
869         int                     free = 1;
870
871         /* for control OUT, data must still get to userspace */
872         spin_lock_irqsave(&dev->lock, flags);
873         if (!dev->setup_in) {
874                 dev->setup_out_error = (req->status != 0);
875                 if (!dev->setup_out_error)
876                         free = 0;
877                 dev->setup_out_ready = 1;
878                 ep0_readable (dev);
879         }
880
881         /* clean up as appropriate */
882         if (free && req->buf != &dev->rbuf)
883                 clean_req (ep, req);
884         req->complete = epio_complete;
885         spin_unlock_irqrestore(&dev->lock, flags);
886 }
887
888 static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
889 {
890         struct dev_data *dev = ep->driver_data;
891
892         if (dev->setup_out_ready) {
893                 DBG (dev, "ep0 request busy!\n");
894                 return -EBUSY;
895         }
896         if (len > sizeof (dev->rbuf))
897                 req->buf = kmalloc(len, GFP_ATOMIC);
898         if (req->buf == NULL) {
899                 req->buf = dev->rbuf;
900                 return -ENOMEM;
901         }
902         req->complete = ep0_complete;
903         req->length = len;
904         req->zero = 0;
905         return 0;
906 }
907
908 static ssize_t
909 ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
910 {
911         struct dev_data                 *dev = fd->private_data;
912         ssize_t                         retval;
913         enum ep0_state                  state;
914
915         spin_lock_irq (&dev->lock);
916         if (dev->state <= STATE_DEV_OPENED) {
917                 retval = -EINVAL;
918                 goto done;
919         }
920
921         /* report fd mode change before acting on it */
922         if (dev->setup_abort) {
923                 dev->setup_abort = 0;
924                 retval = -EIDRM;
925                 goto done;
926         }
927
928         /* control DATA stage */
929         if ((state = dev->state) == STATE_DEV_SETUP) {
930
931                 if (dev->setup_in) {            /* stall IN */
932                         VDEBUG(dev, "ep0in stall\n");
933                         (void) usb_ep_set_halt (dev->gadget->ep0);
934                         retval = -EL2HLT;
935                         dev->state = STATE_DEV_CONNECTED;
936
937                 } else if (len == 0) {          /* ack SET_CONFIGURATION etc */
938                         struct usb_ep           *ep = dev->gadget->ep0;
939                         struct usb_request      *req = dev->req;
940
941                         if ((retval = setup_req (ep, req, 0)) == 0) {
942                                 ++dev->udc_usage;
943                                 spin_unlock_irq (&dev->lock);
944                                 retval = usb_ep_queue (ep, req, GFP_KERNEL);
945                                 spin_lock_irq (&dev->lock);
946                                 --dev->udc_usage;
947                         }
948                         dev->state = STATE_DEV_CONNECTED;
949
950                         /* assume that was SET_CONFIGURATION */
951                         if (dev->current_config) {
952                                 unsigned power;
953
954                                 if (gadget_is_dualspeed(dev->gadget)
955                                                 && (dev->gadget->speed
956                                                         == USB_SPEED_HIGH))
957                                         power = dev->hs_config->bMaxPower;
958                                 else
959                                         power = dev->config->bMaxPower;
960                                 usb_gadget_vbus_draw(dev->gadget, 2 * power);
961                         }
962
963                 } else {                        /* collect OUT data */
964                         if ((fd->f_flags & O_NONBLOCK) != 0
965                                         && !dev->setup_out_ready) {
966                                 retval = -EAGAIN;
967                                 goto done;
968                         }
969                         spin_unlock_irq (&dev->lock);
970                         retval = wait_event_interruptible (dev->wait,
971                                         dev->setup_out_ready != 0);
972
973                         /* FIXME state could change from under us */
974                         spin_lock_irq (&dev->lock);
975                         if (retval)
976                                 goto done;
977
978                         if (dev->state != STATE_DEV_SETUP) {
979                                 retval = -ECANCELED;
980                                 goto done;
981                         }
982                         dev->state = STATE_DEV_CONNECTED;
983
984                         if (dev->setup_out_error)
985                                 retval = -EIO;
986                         else {
987                                 len = min (len, (size_t)dev->req->actual);
988                                 ++dev->udc_usage;
989                                 spin_unlock_irq(&dev->lock);
990                                 if (copy_to_user (buf, dev->req->buf, len))
991                                         retval = -EFAULT;
992                                 else
993                                         retval = len;
994                                 spin_lock_irq(&dev->lock);
995                                 --dev->udc_usage;
996                                 clean_req (dev->gadget->ep0, dev->req);
997                                 /* NOTE userspace can't yet choose to stall */
998                         }
999                 }
1000                 goto done;
1001         }
1002
1003         /* else normal: return event data */
1004         if (len < sizeof dev->event [0]) {
1005                 retval = -EINVAL;
1006                 goto done;
1007         }
1008         len -= len % sizeof (struct usb_gadgetfs_event);
1009         dev->usermode_setup = 1;
1010
1011 scan:
1012         /* return queued events right away */
1013         if (dev->ev_next != 0) {
1014                 unsigned                i, n;
1015
1016                 n = len / sizeof (struct usb_gadgetfs_event);
1017                 if (dev->ev_next < n)
1018                         n = dev->ev_next;
1019
1020                 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
1021                 for (i = 0; i < n; i++) {
1022                         if (dev->event [i].type == GADGETFS_SETUP) {
1023                                 dev->state = STATE_DEV_SETUP;
1024                                 n = i + 1;
1025                                 break;
1026                         }
1027                 }
1028                 spin_unlock_irq (&dev->lock);
1029                 len = n * sizeof (struct usb_gadgetfs_event);
1030                 if (copy_to_user (buf, &dev->event, len))
1031                         retval = -EFAULT;
1032                 else
1033                         retval = len;
1034                 if (len > 0) {
1035                         /* NOTE this doesn't guard against broken drivers;
1036                          * concurrent ep0 readers may lose events.
1037                          */
1038                         spin_lock_irq (&dev->lock);
1039                         if (dev->ev_next > n) {
1040                                 memmove(&dev->event[0], &dev->event[n],
1041                                         sizeof (struct usb_gadgetfs_event)
1042                                                 * (dev->ev_next - n));
1043                         }
1044                         dev->ev_next -= n;
1045                         spin_unlock_irq (&dev->lock);
1046                 }
1047                 return retval;
1048         }
1049         if (fd->f_flags & O_NONBLOCK) {
1050                 retval = -EAGAIN;
1051                 goto done;
1052         }
1053
1054         switch (state) {
1055         default:
1056                 DBG (dev, "fail %s, state %d\n", __func__, state);
1057                 retval = -ESRCH;
1058                 break;
1059         case STATE_DEV_UNCONNECTED:
1060         case STATE_DEV_CONNECTED:
1061                 spin_unlock_irq (&dev->lock);
1062                 DBG (dev, "%s wait\n", __func__);
1063
1064                 /* wait for events */
1065                 retval = wait_event_interruptible (dev->wait,
1066                                 dev->ev_next != 0);
1067                 if (retval < 0)
1068                         return retval;
1069                 spin_lock_irq (&dev->lock);
1070                 goto scan;
1071         }
1072
1073 done:
1074         spin_unlock_irq (&dev->lock);
1075         return retval;
1076 }
1077
1078 static struct usb_gadgetfs_event *
1079 next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1080 {
1081         struct usb_gadgetfs_event       *event;
1082         unsigned                        i;
1083
1084         switch (type) {
1085         /* these events purge the queue */
1086         case GADGETFS_DISCONNECT:
1087                 if (dev->state == STATE_DEV_SETUP)
1088                         dev->setup_abort = 1;
1089                 // FALL THROUGH
1090         case GADGETFS_CONNECT:
1091                 dev->ev_next = 0;
1092                 break;
1093         case GADGETFS_SETUP:            /* previous request timed out */
1094         case GADGETFS_SUSPEND:          /* same effect */
1095                 /* these events can't be repeated */
1096                 for (i = 0; i != dev->ev_next; i++) {
1097                         if (dev->event [i].type != type)
1098                                 continue;
1099                         DBG(dev, "discard old event[%d] %d\n", i, type);
1100                         dev->ev_next--;
1101                         if (i == dev->ev_next)
1102                                 break;
1103                         /* indices start at zero, for simplicity */
1104                         memmove (&dev->event [i], &dev->event [i + 1],
1105                                 sizeof (struct usb_gadgetfs_event)
1106                                         * (dev->ev_next - i));
1107                 }
1108                 break;
1109         default:
1110                 BUG ();
1111         }
1112         VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
1113         event = &dev->event [dev->ev_next++];
1114         BUG_ON (dev->ev_next > N_EVENT);
1115         memset (event, 0, sizeof *event);
1116         event->type = type;
1117         return event;
1118 }
1119
1120 static ssize_t
1121 ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1122 {
1123         struct dev_data         *dev = fd->private_data;
1124         ssize_t                 retval = -ESRCH;
1125
1126         /* report fd mode change before acting on it */
1127         if (dev->setup_abort) {
1128                 dev->setup_abort = 0;
1129                 retval = -EIDRM;
1130
1131         /* data and/or status stage for control request */
1132         } else if (dev->state == STATE_DEV_SETUP) {
1133
1134                 len = min_t(size_t, len, dev->setup_wLength);
1135                 if (dev->setup_in) {
1136                         retval = setup_req (dev->gadget->ep0, dev->req, len);
1137                         if (retval == 0) {
1138                                 dev->state = STATE_DEV_CONNECTED;
1139                                 ++dev->udc_usage;
1140                                 spin_unlock_irq (&dev->lock);
1141                                 if (copy_from_user (dev->req->buf, buf, len))
1142                                         retval = -EFAULT;
1143                                 else {
1144                                         if (len < dev->setup_wLength)
1145                                                 dev->req->zero = 1;
1146                                         retval = usb_ep_queue (
1147                                                 dev->gadget->ep0, dev->req,
1148                                                 GFP_KERNEL);
1149                                 }
1150                                 spin_lock_irq(&dev->lock);
1151                                 --dev->udc_usage;
1152                                 if (retval < 0) {
1153                                         clean_req (dev->gadget->ep0, dev->req);
1154                                 } else
1155                                         retval = len;
1156
1157                                 return retval;
1158                         }
1159
1160                 /* can stall some OUT transfers */
1161                 } else if (dev->setup_can_stall) {
1162                         VDEBUG(dev, "ep0out stall\n");
1163                         (void) usb_ep_set_halt (dev->gadget->ep0);
1164                         retval = -EL2HLT;
1165                         dev->state = STATE_DEV_CONNECTED;
1166                 } else {
1167                         DBG(dev, "bogus ep0out stall!\n");
1168                 }
1169         } else
1170                 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
1171
1172         return retval;
1173 }
1174
1175 static int
1176 ep0_fasync (int f, struct file *fd, int on)
1177 {
1178         struct dev_data         *dev = fd->private_data;
1179         // caller must F_SETOWN before signal delivery happens
1180         VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
1181         return fasync_helper (f, fd, on, &dev->fasync);
1182 }
1183
1184 static struct usb_gadget_driver gadgetfs_driver;
1185
1186 static int
1187 dev_release (struct inode *inode, struct file *fd)
1188 {
1189         struct dev_data         *dev = fd->private_data;
1190
1191         /* closing ep0 === shutdown all */
1192
1193         if (dev->gadget_registered) {
1194                 usb_gadget_unregister_driver (&gadgetfs_driver);
1195                 dev->gadget_registered = false;
1196         }
1197
1198         /* at this point "good" hardware has disconnected the
1199          * device from USB; the host won't see it any more.
1200          * alternatively, all host requests will time out.
1201          */
1202
1203         kfree (dev->buf);
1204         dev->buf = NULL;
1205
1206         /* other endpoints were all decoupled from this device */
1207         spin_lock_irq(&dev->lock);
1208         dev->state = STATE_DEV_DISABLED;
1209         spin_unlock_irq(&dev->lock);
1210
1211         put_dev (dev);
1212         return 0;
1213 }
1214
1215 static __poll_t
1216 ep0_poll (struct file *fd, poll_table *wait)
1217 {
1218        struct dev_data         *dev = fd->private_data;
1219        __poll_t                mask = 0;
1220
1221         if (dev->state <= STATE_DEV_OPENED)
1222                 return DEFAULT_POLLMASK;
1223
1224        poll_wait(fd, &dev->wait, wait);
1225
1226        spin_lock_irq (&dev->lock);
1227
1228        /* report fd mode change before acting on it */
1229        if (dev->setup_abort) {
1230                dev->setup_abort = 0;
1231                mask = EPOLLHUP;
1232                goto out;
1233        }
1234
1235        if (dev->state == STATE_DEV_SETUP) {
1236                if (dev->setup_in || dev->setup_can_stall)
1237                        mask = EPOLLOUT;
1238        } else {
1239                if (dev->ev_next != 0)
1240                        mask = EPOLLIN;
1241        }
1242 out:
1243        spin_unlock_irq(&dev->lock);
1244        return mask;
1245 }
1246
1247 static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
1248 {
1249         struct dev_data         *dev = fd->private_data;
1250         struct usb_gadget       *gadget = dev->gadget;
1251         long ret = -ENOTTY;
1252
1253         spin_lock_irq(&dev->lock);
1254         if (dev->state == STATE_DEV_OPENED ||
1255                         dev->state == STATE_DEV_UNBOUND) {
1256                 /* Not bound to a UDC */
1257         } else if (gadget->ops->ioctl) {
1258                 ++dev->udc_usage;
1259                 spin_unlock_irq(&dev->lock);
1260
1261                 ret = gadget->ops->ioctl (gadget, code, value);
1262
1263                 spin_lock_irq(&dev->lock);
1264                 --dev->udc_usage;
1265         }
1266         spin_unlock_irq(&dev->lock);
1267
1268         return ret;
1269 }
1270
1271 /*----------------------------------------------------------------------*/
1272
1273 /* The in-kernel gadget driver handles most ep0 issues, in particular
1274  * enumerating the single configuration (as provided from user space).
1275  *
1276  * Unrecognized ep0 requests may be handled in user space.
1277  */
1278
1279 static void make_qualifier (struct dev_data *dev)
1280 {
1281         struct usb_qualifier_descriptor         qual;
1282         struct usb_device_descriptor            *desc;
1283
1284         qual.bLength = sizeof qual;
1285         qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
1286         qual.bcdUSB = cpu_to_le16 (0x0200);
1287
1288         desc = dev->dev;
1289         qual.bDeviceClass = desc->bDeviceClass;
1290         qual.bDeviceSubClass = desc->bDeviceSubClass;
1291         qual.bDeviceProtocol = desc->bDeviceProtocol;
1292
1293         /* assumes ep0 uses the same value for both speeds ... */
1294         qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1295
1296         qual.bNumConfigurations = 1;
1297         qual.bRESERVED = 0;
1298
1299         memcpy (dev->rbuf, &qual, sizeof qual);
1300 }
1301
1302 static int
1303 config_buf (struct dev_data *dev, u8 type, unsigned index)
1304 {
1305         int             len;
1306         int             hs = 0;
1307
1308         /* only one configuration */
1309         if (index > 0)
1310                 return -EINVAL;
1311
1312         if (gadget_is_dualspeed(dev->gadget)) {
1313                 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1314                 if (type == USB_DT_OTHER_SPEED_CONFIG)
1315                         hs = !hs;
1316         }
1317         if (hs) {
1318                 dev->req->buf = dev->hs_config;
1319                 len = le16_to_cpu(dev->hs_config->wTotalLength);
1320         } else {
1321                 dev->req->buf = dev->config;
1322                 len = le16_to_cpu(dev->config->wTotalLength);
1323         }
1324         ((u8 *)dev->req->buf) [1] = type;
1325         return len;
1326 }
1327
1328 static int
1329 gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1330 {
1331         struct dev_data                 *dev = get_gadget_data (gadget);
1332         struct usb_request              *req = dev->req;
1333         int                             value = -EOPNOTSUPP;
1334         struct usb_gadgetfs_event       *event;
1335         u16                             w_value = le16_to_cpu(ctrl->wValue);
1336         u16                             w_length = le16_to_cpu(ctrl->wLength);
1337
1338         if (w_length > RBUF_SIZE) {
1339                 if (ctrl->bRequestType & USB_DIR_IN) {
1340                         /* Cast away the const, we are going to overwrite on purpose. */
1341                         __le16 *temp = (__le16 *)&ctrl->wLength;
1342
1343                         *temp = cpu_to_le16(RBUF_SIZE);
1344                         w_length = RBUF_SIZE;
1345                 } else {
1346                         return value;
1347                 }
1348         }
1349
1350         spin_lock (&dev->lock);
1351         dev->setup_abort = 0;
1352         if (dev->state == STATE_DEV_UNCONNECTED) {
1353                 if (gadget_is_dualspeed(gadget)
1354                                 && gadget->speed == USB_SPEED_HIGH
1355                                 && dev->hs_config == NULL) {
1356                         spin_unlock(&dev->lock);
1357                         ERROR (dev, "no high speed config??\n");
1358                         return -EINVAL;
1359                 }
1360
1361                 dev->state = STATE_DEV_CONNECTED;
1362
1363                 INFO (dev, "connected\n");
1364                 event = next_event (dev, GADGETFS_CONNECT);
1365                 event->u.speed = gadget->speed;
1366                 ep0_readable (dev);
1367
1368         /* host may have given up waiting for response.  we can miss control
1369          * requests handled lower down (device/endpoint status and features);
1370          * then ep0_{read,write} will report the wrong status. controller
1371          * driver will have aborted pending i/o.
1372          */
1373         } else if (dev->state == STATE_DEV_SETUP)
1374                 dev->setup_abort = 1;
1375
1376         req->buf = dev->rbuf;
1377         req->context = NULL;
1378         switch (ctrl->bRequest) {
1379
1380         case USB_REQ_GET_DESCRIPTOR:
1381                 if (ctrl->bRequestType != USB_DIR_IN)
1382                         goto unrecognized;
1383                 switch (w_value >> 8) {
1384
1385                 case USB_DT_DEVICE:
1386                         value = min (w_length, (u16) sizeof *dev->dev);
1387                         dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1388                         req->buf = dev->dev;
1389                         break;
1390                 case USB_DT_DEVICE_QUALIFIER:
1391                         if (!dev->hs_config)
1392                                 break;
1393                         value = min (w_length, (u16)
1394                                 sizeof (struct usb_qualifier_descriptor));
1395                         make_qualifier (dev);
1396                         break;
1397                 case USB_DT_OTHER_SPEED_CONFIG:
1398                         // FALLTHROUGH
1399                 case USB_DT_CONFIG:
1400                         value = config_buf (dev,
1401                                         w_value >> 8,
1402                                         w_value & 0xff);
1403                         if (value >= 0)
1404                                 value = min (w_length, (u16) value);
1405                         break;
1406                 case USB_DT_STRING:
1407                         goto unrecognized;
1408
1409                 default:                // all others are errors
1410                         break;
1411                 }
1412                 break;
1413
1414         /* currently one config, two speeds */
1415         case USB_REQ_SET_CONFIGURATION:
1416                 if (ctrl->bRequestType != 0)
1417                         goto unrecognized;
1418                 if (0 == (u8) w_value) {
1419                         value = 0;
1420                         dev->current_config = 0;
1421                         usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1422                         // user mode expected to disable endpoints
1423                 } else {
1424                         u8      config, power;
1425
1426                         if (gadget_is_dualspeed(gadget)
1427                                         && gadget->speed == USB_SPEED_HIGH) {
1428                                 config = dev->hs_config->bConfigurationValue;
1429                                 power = dev->hs_config->bMaxPower;
1430                         } else {
1431                                 config = dev->config->bConfigurationValue;
1432                                 power = dev->config->bMaxPower;
1433                         }
1434
1435                         if (config == (u8) w_value) {
1436                                 value = 0;
1437                                 dev->current_config = config;
1438                                 usb_gadget_vbus_draw(gadget, 2 * power);
1439                         }
1440                 }
1441
1442                 /* report SET_CONFIGURATION like any other control request,
1443                  * except that usermode may not stall this.  the next
1444                  * request mustn't be allowed start until this finishes:
1445                  * endpoints and threads set up, etc.
1446                  *
1447                  * NOTE:  older PXA hardware (before PXA 255: without UDCCFR)
1448                  * has bad/racey automagic that prevents synchronizing here.
1449                  * even kernel mode drivers often miss them.
1450                  */
1451                 if (value == 0) {
1452                         INFO (dev, "configuration #%d\n", dev->current_config);
1453                         usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
1454                         if (dev->usermode_setup) {
1455                                 dev->setup_can_stall = 0;
1456                                 goto delegate;
1457                         }
1458                 }
1459                 break;
1460
1461 #ifndef CONFIG_USB_PXA25X
1462         /* PXA automagically handles this request too */
1463         case USB_REQ_GET_CONFIGURATION:
1464                 if (ctrl->bRequestType != 0x80)
1465                         goto unrecognized;
1466                 *(u8 *)req->buf = dev->current_config;
1467                 value = min (w_length, (u16) 1);
1468                 break;
1469 #endif
1470
1471         default:
1472 unrecognized:
1473                 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1474                         dev->usermode_setup ? "delegate" : "fail",
1475                         ctrl->bRequestType, ctrl->bRequest,
1476                         w_value, le16_to_cpu(ctrl->wIndex), w_length);
1477
1478                 /* if there's an ep0 reader, don't stall */
1479                 if (dev->usermode_setup) {
1480                         dev->setup_can_stall = 1;
1481 delegate:
1482                         dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1483                                                 ? 1 : 0;
1484                         dev->setup_wLength = w_length;
1485                         dev->setup_out_ready = 0;
1486                         dev->setup_out_error = 0;
1487
1488                         /* read DATA stage for OUT right away */
1489                         if (unlikely (!dev->setup_in && w_length)) {
1490                                 value = setup_req (gadget->ep0, dev->req,
1491                                                         w_length);
1492                                 if (value < 0)
1493                                         break;
1494
1495                                 ++dev->udc_usage;
1496                                 spin_unlock (&dev->lock);
1497                                 value = usb_ep_queue (gadget->ep0, dev->req,
1498                                                         GFP_KERNEL);
1499                                 spin_lock (&dev->lock);
1500                                 --dev->udc_usage;
1501                                 if (value < 0) {
1502                                         clean_req (gadget->ep0, dev->req);
1503                                         break;
1504                                 }
1505
1506                                 /* we can't currently stall these */
1507                                 dev->setup_can_stall = 0;
1508                         }
1509
1510                         /* state changes when reader collects event */
1511                         event = next_event (dev, GADGETFS_SETUP);
1512                         event->u.setup = *ctrl;
1513                         ep0_readable (dev);
1514                         spin_unlock (&dev->lock);
1515                         return 0;
1516                 }
1517         }
1518
1519         /* proceed with data transfer and status phases? */
1520         if (value >= 0 && dev->state != STATE_DEV_SETUP) {
1521                 req->length = value;
1522                 req->zero = value < w_length;
1523
1524                 ++dev->udc_usage;
1525                 spin_unlock (&dev->lock);
1526                 value = usb_ep_queue (gadget->ep0, req, GFP_KERNEL);
1527                 spin_lock(&dev->lock);
1528                 --dev->udc_usage;
1529                 spin_unlock(&dev->lock);
1530                 if (value < 0) {
1531                         DBG (dev, "ep_queue --> %d\n", value);
1532                         req->status = 0;
1533                 }
1534                 return value;
1535         }
1536
1537         /* device stalls when value < 0 */
1538         spin_unlock (&dev->lock);
1539         return value;
1540 }
1541
1542 static void destroy_ep_files (struct dev_data *dev)
1543 {
1544         DBG (dev, "%s %d\n", __func__, dev->state);
1545
1546         /* dev->state must prevent interference */
1547         spin_lock_irq (&dev->lock);
1548         while (!list_empty(&dev->epfiles)) {
1549                 struct ep_data  *ep;
1550                 struct inode    *parent;
1551                 struct dentry   *dentry;
1552
1553                 /* break link to FS */
1554                 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
1555                 list_del_init (&ep->epfiles);
1556                 spin_unlock_irq (&dev->lock);
1557
1558                 dentry = ep->dentry;
1559                 ep->dentry = NULL;
1560                 parent = d_inode(dentry->d_parent);
1561
1562                 /* break link to controller */
1563                 mutex_lock(&ep->lock);
1564                 if (ep->state == STATE_EP_ENABLED)
1565                         (void) usb_ep_disable (ep->ep);
1566                 ep->state = STATE_EP_UNBOUND;
1567                 usb_ep_free_request (ep->ep, ep->req);
1568                 ep->ep = NULL;
1569                 mutex_unlock(&ep->lock);
1570
1571                 wake_up (&ep->wait);
1572                 put_ep (ep);
1573
1574                 /* break link to dcache */
1575                 inode_lock(parent);
1576                 d_delete (dentry);
1577                 dput (dentry);
1578                 inode_unlock(parent);
1579
1580                 spin_lock_irq (&dev->lock);
1581         }
1582         spin_unlock_irq (&dev->lock);
1583 }
1584
1585
1586 static struct dentry *
1587 gadgetfs_create_file (struct super_block *sb, char const *name,
1588                 void *data, const struct file_operations *fops);
1589
1590 static int activate_ep_files (struct dev_data *dev)
1591 {
1592         struct usb_ep   *ep;
1593         struct ep_data  *data;
1594
1595         gadget_for_each_ep (ep, dev->gadget) {
1596
1597                 data = kzalloc(sizeof(*data), GFP_KERNEL);
1598                 if (!data)
1599                         goto enomem0;
1600                 data->state = STATE_EP_DISABLED;
1601                 mutex_init(&data->lock);
1602                 init_waitqueue_head (&data->wait);
1603
1604                 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1605                 refcount_set (&data->count, 1);
1606                 data->dev = dev;
1607                 get_dev (dev);
1608
1609                 data->ep = ep;
1610                 ep->driver_data = data;
1611
1612                 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1613                 if (!data->req)
1614                         goto enomem1;
1615
1616                 data->dentry = gadgetfs_create_file (dev->sb, data->name,
1617                                 data, &ep_io_operations);
1618                 if (!data->dentry)
1619                         goto enomem2;
1620                 list_add_tail (&data->epfiles, &dev->epfiles);
1621         }
1622         return 0;
1623
1624 enomem2:
1625         usb_ep_free_request (ep, data->req);
1626 enomem1:
1627         put_dev (dev);
1628         kfree (data);
1629 enomem0:
1630         DBG (dev, "%s enomem\n", __func__);
1631         destroy_ep_files (dev);
1632         return -ENOMEM;
1633 }
1634
1635 static void
1636 gadgetfs_unbind (struct usb_gadget *gadget)
1637 {
1638         struct dev_data         *dev = get_gadget_data (gadget);
1639
1640         DBG (dev, "%s\n", __func__);
1641
1642         spin_lock_irq (&dev->lock);
1643         dev->state = STATE_DEV_UNBOUND;
1644         while (dev->udc_usage > 0) {
1645                 spin_unlock_irq(&dev->lock);
1646                 usleep_range(1000, 2000);
1647                 spin_lock_irq(&dev->lock);
1648         }
1649         spin_unlock_irq (&dev->lock);
1650
1651         destroy_ep_files (dev);
1652         gadget->ep0->driver_data = NULL;
1653         set_gadget_data (gadget, NULL);
1654
1655         /* we've already been disconnected ... no i/o is active */
1656         if (dev->req)
1657                 usb_ep_free_request (gadget->ep0, dev->req);
1658         DBG (dev, "%s done\n", __func__);
1659         put_dev (dev);
1660 }
1661
1662 static struct dev_data          *the_device;
1663
1664 static int gadgetfs_bind(struct usb_gadget *gadget,
1665                 struct usb_gadget_driver *driver)
1666 {
1667         struct dev_data         *dev = the_device;
1668
1669         if (!dev)
1670                 return -ESRCH;
1671         if (0 != strcmp (CHIP, gadget->name)) {
1672                 pr_err("%s expected %s controller not %s\n",
1673                         shortname, CHIP, gadget->name);
1674                 return -ENODEV;
1675         }
1676
1677         set_gadget_data (gadget, dev);
1678         dev->gadget = gadget;
1679         gadget->ep0->driver_data = dev;
1680
1681         /* preallocate control response and buffer */
1682         dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1683         if (!dev->req)
1684                 goto enomem;
1685         dev->req->context = NULL;
1686         dev->req->complete = epio_complete;
1687
1688         if (activate_ep_files (dev) < 0)
1689                 goto enomem;
1690
1691         INFO (dev, "bound to %s driver\n", gadget->name);
1692         spin_lock_irq(&dev->lock);
1693         dev->state = STATE_DEV_UNCONNECTED;
1694         spin_unlock_irq(&dev->lock);
1695         get_dev (dev);
1696         return 0;
1697
1698 enomem:
1699         gadgetfs_unbind (gadget);
1700         return -ENOMEM;
1701 }
1702
1703 static void
1704 gadgetfs_disconnect (struct usb_gadget *gadget)
1705 {
1706         struct dev_data         *dev = get_gadget_data (gadget);
1707         unsigned long           flags;
1708
1709         spin_lock_irqsave (&dev->lock, flags);
1710         if (dev->state == STATE_DEV_UNCONNECTED)
1711                 goto exit;
1712         dev->state = STATE_DEV_UNCONNECTED;
1713
1714         INFO (dev, "disconnected\n");
1715         next_event (dev, GADGETFS_DISCONNECT);
1716         ep0_readable (dev);
1717 exit:
1718         spin_unlock_irqrestore (&dev->lock, flags);
1719 }
1720
1721 static void
1722 gadgetfs_suspend (struct usb_gadget *gadget)
1723 {
1724         struct dev_data         *dev = get_gadget_data (gadget);
1725         unsigned long           flags;
1726
1727         INFO (dev, "suspended from state %d\n", dev->state);
1728         spin_lock_irqsave(&dev->lock, flags);
1729         switch (dev->state) {
1730         case STATE_DEV_SETUP:           // VERY odd... host died??
1731         case STATE_DEV_CONNECTED:
1732         case STATE_DEV_UNCONNECTED:
1733                 next_event (dev, GADGETFS_SUSPEND);
1734                 ep0_readable (dev);
1735                 /* FALLTHROUGH */
1736         default:
1737                 break;
1738         }
1739         spin_unlock_irqrestore(&dev->lock, flags);
1740 }
1741
1742 static struct usb_gadget_driver gadgetfs_driver = {
1743         .function       = (char *) driver_desc,
1744         .bind           = gadgetfs_bind,
1745         .unbind         = gadgetfs_unbind,
1746         .setup          = gadgetfs_setup,
1747         .reset          = gadgetfs_disconnect,
1748         .disconnect     = gadgetfs_disconnect,
1749         .suspend        = gadgetfs_suspend,
1750
1751         .driver = {
1752                 .name           = (char *) shortname,
1753         },
1754 };
1755
1756 /*----------------------------------------------------------------------*/
1757 /* DEVICE INITIALIZATION
1758  *
1759  *     fd = open ("/dev/gadget/$CHIP", O_RDWR)
1760  *     status = write (fd, descriptors, sizeof descriptors)
1761  *
1762  * That write establishes the device configuration, so the kernel can
1763  * bind to the controller ... guaranteeing it can handle enumeration
1764  * at all necessary speeds.  Descriptor order is:
1765  *
1766  * . message tag (u32, host order) ... for now, must be zero; it
1767  *      would change to support features like multi-config devices
1768  * . full/low speed config ... all wTotalLength bytes (with interface,
1769  *      class, altsetting, endpoint, and other descriptors)
1770  * . high speed config ... all descriptors, for high speed operation;
1771  *      this one's optional except for high-speed hardware
1772  * . device descriptor
1773  *
1774  * Endpoints are not yet enabled. Drivers must wait until device
1775  * configuration and interface altsetting changes create
1776  * the need to configure (or unconfigure) them.
1777  *
1778  * After initialization, the device stays active for as long as that
1779  * $CHIP file is open.  Events must then be read from that descriptor,
1780  * such as configuration notifications.
1781  */
1782
1783 static int is_valid_config(struct usb_config_descriptor *config,
1784                 unsigned int total)
1785 {
1786         return config->bDescriptorType == USB_DT_CONFIG
1787                 && config->bLength == USB_DT_CONFIG_SIZE
1788                 && total >= USB_DT_CONFIG_SIZE
1789                 && config->bConfigurationValue != 0
1790                 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1791                 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1792         /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1793         /* FIXME check lengths: walk to end */
1794 }
1795
1796 static ssize_t
1797 dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1798 {
1799         struct dev_data         *dev = fd->private_data;
1800         ssize_t                 value, length = len;
1801         unsigned                total;
1802         u32                     tag;
1803         char                    *kbuf;
1804
1805         spin_lock_irq(&dev->lock);
1806         if (dev->state > STATE_DEV_OPENED) {
1807                 value = ep0_write(fd, buf, len, ptr);
1808                 spin_unlock_irq(&dev->lock);
1809                 return value;
1810         }
1811         spin_unlock_irq(&dev->lock);
1812
1813         if ((len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4)) ||
1814             (len > PAGE_SIZE * 4))
1815                 return -EINVAL;
1816
1817         /* we might need to change message format someday */
1818         if (copy_from_user (&tag, buf, 4))
1819                 return -EFAULT;
1820         if (tag != 0)
1821                 return -EINVAL;
1822         buf += 4;
1823         length -= 4;
1824
1825         kbuf = memdup_user(buf, length);
1826         if (IS_ERR(kbuf))
1827                 return PTR_ERR(kbuf);
1828
1829         spin_lock_irq (&dev->lock);
1830         value = -EINVAL;
1831         if (dev->buf) {
1832                 spin_unlock_irq(&dev->lock);
1833                 kfree(kbuf);
1834                 return value;
1835         }
1836         dev->buf = kbuf;
1837
1838         /* full or low speed config */
1839         dev->config = (void *) kbuf;
1840         total = le16_to_cpu(dev->config->wTotalLength);
1841         if (!is_valid_config(dev->config, total) ||
1842                         total > length - USB_DT_DEVICE_SIZE)
1843                 goto fail;
1844         kbuf += total;
1845         length -= total;
1846
1847         /* optional high speed config */
1848         if (kbuf [1] == USB_DT_CONFIG) {
1849                 dev->hs_config = (void *) kbuf;
1850                 total = le16_to_cpu(dev->hs_config->wTotalLength);
1851                 if (!is_valid_config(dev->hs_config, total) ||
1852                                 total > length - USB_DT_DEVICE_SIZE)
1853                         goto fail;
1854                 kbuf += total;
1855                 length -= total;
1856         } else {
1857                 dev->hs_config = NULL;
1858         }
1859
1860         /* could support multiple configs, using another encoding! */
1861
1862         /* device descriptor (tweaked for paranoia) */
1863         if (length != USB_DT_DEVICE_SIZE)
1864                 goto fail;
1865         dev->dev = (void *)kbuf;
1866         if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1867                         || dev->dev->bDescriptorType != USB_DT_DEVICE
1868                         || dev->dev->bNumConfigurations != 1)
1869                 goto fail;
1870         dev->dev->bcdUSB = cpu_to_le16 (0x0200);
1871
1872         /* triggers gadgetfs_bind(); then we can enumerate. */
1873         spin_unlock_irq (&dev->lock);
1874         if (dev->hs_config)
1875                 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1876         else
1877                 gadgetfs_driver.max_speed = USB_SPEED_FULL;
1878
1879         value = usb_gadget_probe_driver(&gadgetfs_driver);
1880         if (value != 0) {
1881                 spin_lock_irq(&dev->lock);
1882                 goto fail;
1883         } else {
1884                 /* at this point "good" hardware has for the first time
1885                  * let the USB the host see us.  alternatively, if users
1886                  * unplug/replug that will clear all the error state.
1887                  *
1888                  * note:  everything running before here was guaranteed
1889                  * to choke driver model style diagnostics.  from here
1890                  * on, they can work ... except in cleanup paths that
1891                  * kick in after the ep0 descriptor is closed.
1892                  */
1893                 value = len;
1894                 dev->gadget_registered = true;
1895         }
1896         return value;
1897
1898 fail:
1899         dev->config = NULL;
1900         dev->hs_config = NULL;
1901         dev->dev = NULL;
1902         spin_unlock_irq (&dev->lock);
1903         pr_debug ("%s: %s fail %zd, %p\n", shortname, __func__, value, dev);
1904         kfree (dev->buf);
1905         dev->buf = NULL;
1906         return value;
1907 }
1908
1909 static int
1910 dev_open (struct inode *inode, struct file *fd)
1911 {
1912         struct dev_data         *dev = inode->i_private;
1913         int                     value = -EBUSY;
1914
1915         spin_lock_irq(&dev->lock);
1916         if (dev->state == STATE_DEV_DISABLED) {
1917                 dev->ev_next = 0;
1918                 dev->state = STATE_DEV_OPENED;
1919                 fd->private_data = dev;
1920                 get_dev (dev);
1921                 value = 0;
1922         }
1923         spin_unlock_irq(&dev->lock);
1924         return value;
1925 }
1926
1927 static const struct file_operations ep0_operations = {
1928         .llseek =       no_llseek,
1929
1930         .open =         dev_open,
1931         .read =         ep0_read,
1932         .write =        dev_config,
1933         .fasync =       ep0_fasync,
1934         .poll =         ep0_poll,
1935         .unlocked_ioctl = dev_ioctl,
1936         .release =      dev_release,
1937 };
1938
1939 /*----------------------------------------------------------------------*/
1940
1941 /* FILESYSTEM AND SUPERBLOCK OPERATIONS
1942  *
1943  * Mounting the filesystem creates a controller file, used first for
1944  * device configuration then later for event monitoring.
1945  */
1946
1947
1948 /* FIXME PAM etc could set this security policy without mount options
1949  * if epfiles inherited ownership and permissons from ep0 ...
1950  */
1951
1952 static unsigned default_uid;
1953 static unsigned default_gid;
1954 static unsigned default_perm = S_IRUSR | S_IWUSR;
1955
1956 module_param (default_uid, uint, 0644);
1957 module_param (default_gid, uint, 0644);
1958 module_param (default_perm, uint, 0644);
1959
1960
1961 static struct inode *
1962 gadgetfs_make_inode (struct super_block *sb,
1963                 void *data, const struct file_operations *fops,
1964                 int mode)
1965 {
1966         struct inode *inode = new_inode (sb);
1967
1968         if (inode) {
1969                 inode->i_ino = get_next_ino();
1970                 inode->i_mode = mode;
1971                 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1972                 inode->i_gid = make_kgid(&init_user_ns, default_gid);
1973                 inode->i_atime = inode->i_mtime = inode->i_ctime
1974                                 = current_time(inode);
1975                 inode->i_private = data;
1976                 inode->i_fop = fops;
1977         }
1978         return inode;
1979 }
1980
1981 /* creates in fs root directory, so non-renamable and non-linkable.
1982  * so inode and dentry are paired, until device reconfig.
1983  */
1984 static struct dentry *
1985 gadgetfs_create_file (struct super_block *sb, char const *name,
1986                 void *data, const struct file_operations *fops)
1987 {
1988         struct dentry   *dentry;
1989         struct inode    *inode;
1990
1991         dentry = d_alloc_name(sb->s_root, name);
1992         if (!dentry)
1993                 return NULL;
1994
1995         inode = gadgetfs_make_inode (sb, data, fops,
1996                         S_IFREG | (default_perm & S_IRWXUGO));
1997         if (!inode) {
1998                 dput(dentry);
1999                 return NULL;
2000         }
2001         d_add (dentry, inode);
2002         return dentry;
2003 }
2004
2005 static const struct super_operations gadget_fs_operations = {
2006         .statfs =       simple_statfs,
2007         .drop_inode =   generic_delete_inode,
2008 };
2009
2010 static int
2011 gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2012 {
2013         struct inode    *inode;
2014         struct dev_data *dev;
2015
2016         if (the_device)
2017                 return -ESRCH;
2018
2019         CHIP = usb_get_gadget_udc_name();
2020         if (!CHIP)
2021                 return -ENODEV;
2022
2023         /* superblock */
2024         sb->s_blocksize = PAGE_SIZE;
2025         sb->s_blocksize_bits = PAGE_SHIFT;
2026         sb->s_magic = GADGETFS_MAGIC;
2027         sb->s_op = &gadget_fs_operations;
2028         sb->s_time_gran = 1;
2029
2030         /* root inode */
2031         inode = gadgetfs_make_inode (sb,
2032                         NULL, &simple_dir_operations,
2033                         S_IFDIR | S_IRUGO | S_IXUGO);
2034         if (!inode)
2035                 goto Enomem;
2036         inode->i_op = &simple_dir_inode_operations;
2037         if (!(sb->s_root = d_make_root (inode)))
2038                 goto Enomem;
2039
2040         /* the ep0 file is named after the controller we expect;
2041          * user mode code can use it for sanity checks, like we do.
2042          */
2043         dev = dev_new ();
2044         if (!dev)
2045                 goto Enomem;
2046
2047         dev->sb = sb;
2048         dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
2049         if (!dev->dentry) {
2050                 put_dev(dev);
2051                 goto Enomem;
2052         }
2053
2054         /* other endpoint files are available after hardware setup,
2055          * from binding to a controller.
2056          */
2057         the_device = dev;
2058         return 0;
2059
2060 Enomem:
2061         kfree(CHIP);
2062         CHIP = NULL;
2063
2064         return -ENOMEM;
2065 }
2066
2067 /* "mount -t gadgetfs path /dev/gadget" ends up here */
2068 static struct dentry *
2069 gadgetfs_mount (struct file_system_type *t, int flags,
2070                 const char *path, void *opts)
2071 {
2072         return mount_single (t, flags, opts, gadgetfs_fill_super);
2073 }
2074
2075 static void
2076 gadgetfs_kill_sb (struct super_block *sb)
2077 {
2078         kill_litter_super (sb);
2079         if (the_device) {
2080                 put_dev (the_device);
2081                 the_device = NULL;
2082         }
2083         kfree(CHIP);
2084         CHIP = NULL;
2085 }
2086
2087 /*----------------------------------------------------------------------*/
2088
2089 static struct file_system_type gadgetfs_type = {
2090         .owner          = THIS_MODULE,
2091         .name           = shortname,
2092         .mount          = gadgetfs_mount,
2093         .kill_sb        = gadgetfs_kill_sb,
2094 };
2095 MODULE_ALIAS_FS("gadgetfs");
2096
2097 /*----------------------------------------------------------------------*/
2098
2099 static int __init init (void)
2100 {
2101         int status;
2102
2103         status = register_filesystem (&gadgetfs_type);
2104         if (status == 0)
2105                 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2106                         shortname, driver_desc);
2107         return status;
2108 }
2109 module_init (init);
2110
2111 static void __exit cleanup (void)
2112 {
2113         pr_debug ("unregister %s\n", shortname);
2114         unregister_filesystem (&gadgetfs_type);
2115 }
2116 module_exit (cleanup);
2117