1 // SPDX-License-Identifier: GPL-2.0+
3 * inode.c -- user mode filesystem api for usb gadget controllers
5 * Copyright (C) 2003-2004 David Brownell
6 * Copyright (C) 2003 Agilent Technologies
10 /* #define VERBOSE_DEBUG */
12 #include <linux/init.h>
13 #include <linux/module.h>
15 #include <linux/fs_context.h>
16 #include <linux/pagemap.h>
17 #include <linux/uts.h>
18 #include <linux/wait.h>
19 #include <linux/compiler.h>
20 #include <linux/uaccess.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/poll.h>
24 #include <linux/kthread.h>
25 #include <linux/aio.h>
26 #include <linux/uio.h>
27 #include <linux/refcount.h>
28 #include <linux/delay.h>
29 #include <linux/device.h>
30 #include <linux/moduleparam.h>
32 #include <linux/usb/gadgetfs.h>
33 #include <linux/usb/gadget.h>
37 * The gadgetfs API maps each endpoint to a file descriptor so that you
38 * can use standard synchronous read/write calls for I/O. There's some
39 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
40 * drivers show how this works in practice. You can also use AIO to
41 * eliminate I/O gaps between requests, to help when streaming data.
43 * Key parts that must be USB-specific are protocols defining how the
44 * read/write operations relate to the hardware state machines. There
45 * are two types of files. One type is for the device, implementing ep0.
46 * The other type is for each IN or OUT endpoint. In both cases, the
47 * user mode driver must configure the hardware before using it.
49 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
50 * (by writing configuration and device descriptors). Afterwards it
51 * may serve as a source of device events, used to handle all control
52 * requests other than basic enumeration.
54 * - Then, after a SET_CONFIGURATION control request, ep_config() is
55 * called when each /dev/gadget/ep* file is configured (by writing
56 * endpoint descriptors). Afterwards these files are used to write()
57 * IN data or to read() OUT data. To halt the endpoint, a "wrong
58 * direction" request is issued (like reading an IN endpoint).
60 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
61 * not possible on all hardware. For example, precise fault handling with
62 * respect to data left in endpoint fifos after aborted operations; or
63 * selective clearing of endpoint halts, to implement SET_INTERFACE.
66 #define DRIVER_DESC "USB Gadget filesystem"
67 #define DRIVER_VERSION "24 Aug 2004"
69 static const char driver_desc [] = DRIVER_DESC;
70 static const char shortname [] = "gadgetfs";
72 MODULE_DESCRIPTION (DRIVER_DESC);
73 MODULE_AUTHOR ("David Brownell");
74 MODULE_LICENSE ("GPL");
76 static int ep_open(struct inode *, struct file *);
79 /*----------------------------------------------------------------------*/
81 #define GADGETFS_MAGIC 0xaee71ee7
83 /* /dev/gadget/$CHIP represents ep0 and the whole device */
85 /* DISABLED is the initial state. */
86 STATE_DEV_DISABLED = 0,
88 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
89 * ep0/device i/o modes and binding to the controller. Driver
90 * must always write descriptors to initialize the device, then
91 * the device becomes UNCONNECTED until enumeration.
95 /* From then on, ep0 fd is in either of two basic modes:
96 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
97 * - SETUP: read/write will transfer control data and succeed;
98 * or if "wrong direction", performs protocol stall
100 STATE_DEV_UNCONNECTED,
104 /* UNBOUND means the driver closed ep0, so the device won't be
105 * accessible again (DEV_DISABLED) until all fds are closed.
110 /* enough for the whole queue: most events invalidate others */
117 enum ep0_state state; /* P: lock */
118 struct usb_gadgetfs_event event [N_EVENT];
120 struct fasync_struct *fasync;
123 /* drivers reading ep0 MUST handle control requests (SETUP)
124 * reported that way; else the host will time out.
126 unsigned usermode_setup : 1,
132 gadget_registered : 1;
133 unsigned setup_wLength;
135 /* the rest is basically write-once */
136 struct usb_config_descriptor *config, *hs_config;
137 struct usb_device_descriptor *dev;
138 struct usb_request *req;
139 struct usb_gadget *gadget;
140 struct list_head epfiles;
142 wait_queue_head_t wait;
143 struct super_block *sb;
144 struct dentry *dentry;
146 /* except this scratch i/o buffer for ep0 */
150 static inline void get_dev (struct dev_data *data)
152 refcount_inc (&data->count);
155 static void put_dev (struct dev_data *data)
157 if (likely (!refcount_dec_and_test (&data->count)))
159 /* needs no more cleanup */
160 BUG_ON (waitqueue_active (&data->wait));
164 static struct dev_data *dev_new (void)
166 struct dev_data *dev;
168 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
171 dev->state = STATE_DEV_DISABLED;
172 refcount_set (&dev->count, 1);
173 spin_lock_init (&dev->lock);
174 INIT_LIST_HEAD (&dev->epfiles);
175 init_waitqueue_head (&dev->wait);
179 /*----------------------------------------------------------------------*/
181 /* other /dev/gadget/$ENDPOINT files represent endpoints */
183 STATE_EP_DISABLED = 0,
193 struct dev_data *dev;
194 /* must hold dev->lock before accessing ep or req */
196 struct usb_request *req;
199 struct usb_endpoint_descriptor desc, hs_desc;
200 struct list_head epfiles;
201 wait_queue_head_t wait;
202 struct dentry *dentry;
205 static inline void get_ep (struct ep_data *data)
207 refcount_inc (&data->count);
210 static void put_ep (struct ep_data *data)
212 if (likely (!refcount_dec_and_test (&data->count)))
215 /* needs no more cleanup */
216 BUG_ON (!list_empty (&data->epfiles));
217 BUG_ON (waitqueue_active (&data->wait));
221 /*----------------------------------------------------------------------*/
223 /* most "how to use the hardware" policy choices are in userspace:
224 * mapping endpoint roles (which the driver needs) to the capabilities
225 * which the usb controller has. most of those capabilities are exposed
226 * implicitly, starting with the driver name and then endpoint names.
229 static const char *CHIP;
231 /*----------------------------------------------------------------------*/
233 /* NOTE: don't use dev_printk calls before binding to the gadget
234 * at the end of ep0 configuration, or after unbind.
237 /* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
238 #define xprintk(d,level,fmt,args...) \
239 printk(level "%s: " fmt , shortname , ## args)
242 #define DBG(dev,fmt,args...) \
243 xprintk(dev , KERN_DEBUG , fmt , ## args)
245 #define DBG(dev,fmt,args...) \
252 #define VDEBUG(dev,fmt,args...) \
256 #define ERROR(dev,fmt,args...) \
257 xprintk(dev , KERN_ERR , fmt , ## args)
258 #define INFO(dev,fmt,args...) \
259 xprintk(dev , KERN_INFO , fmt , ## args)
262 /*----------------------------------------------------------------------*/
264 /* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
266 * After opening, configure non-control endpoints. Then use normal
267 * stream read() and write() requests; and maybe ioctl() to get more
268 * precise FIFO status when recovering from cancellation.
271 static void epio_complete (struct usb_ep *ep, struct usb_request *req)
273 struct ep_data *epdata = ep->driver_data;
278 epdata->status = req->status;
280 epdata->status = req->actual;
281 complete ((struct completion *)req->context);
284 /* tasklock endpoint, returning when it's connected.
285 * still need dev->lock to use epdata->ep.
288 get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
292 if (f_flags & O_NONBLOCK) {
293 if (!mutex_trylock(&epdata->lock))
295 if (epdata->state != STATE_EP_ENABLED &&
296 (!is_write || epdata->state != STATE_EP_READY)) {
297 mutex_unlock(&epdata->lock);
305 val = mutex_lock_interruptible(&epdata->lock);
309 switch (epdata->state) {
310 case STATE_EP_ENABLED:
312 case STATE_EP_READY: /* not configured yet */
316 case STATE_EP_UNBOUND: /* clean disconnect */
318 // case STATE_EP_DISABLED: /* "can't happen" */
319 default: /* error! */
320 pr_debug ("%s: ep %p not available, state %d\n",
321 shortname, epdata, epdata->state);
323 mutex_unlock(&epdata->lock);
328 ep_io (struct ep_data *epdata, void *buf, unsigned len)
330 DECLARE_COMPLETION_ONSTACK (done);
333 spin_lock_irq (&epdata->dev->lock);
334 if (likely (epdata->ep != NULL)) {
335 struct usb_request *req = epdata->req;
337 req->context = &done;
338 req->complete = epio_complete;
341 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
344 spin_unlock_irq (&epdata->dev->lock);
346 if (likely (value == 0)) {
347 value = wait_for_completion_interruptible(&done);
349 spin_lock_irq (&epdata->dev->lock);
350 if (likely (epdata->ep != NULL)) {
351 DBG (epdata->dev, "%s i/o interrupted\n",
353 usb_ep_dequeue (epdata->ep, epdata->req);
354 spin_unlock_irq (&epdata->dev->lock);
356 wait_for_completion(&done);
357 if (epdata->status == -ECONNRESET)
358 epdata->status = -EINTR;
360 spin_unlock_irq (&epdata->dev->lock);
362 DBG (epdata->dev, "endpoint gone\n");
363 epdata->status = -ENODEV;
366 return epdata->status;
372 ep_release (struct inode *inode, struct file *fd)
374 struct ep_data *data = fd->private_data;
377 value = mutex_lock_interruptible(&data->lock);
381 /* clean up if this can be reopened */
382 if (data->state != STATE_EP_UNBOUND) {
383 data->state = STATE_EP_DISABLED;
384 data->desc.bDescriptorType = 0;
385 data->hs_desc.bDescriptorType = 0;
386 usb_ep_disable(data->ep);
388 mutex_unlock(&data->lock);
393 static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
395 struct ep_data *data = fd->private_data;
398 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
401 spin_lock_irq (&data->dev->lock);
402 if (likely (data->ep != NULL)) {
404 case GADGETFS_FIFO_STATUS:
405 status = usb_ep_fifo_status (data->ep);
407 case GADGETFS_FIFO_FLUSH:
408 usb_ep_fifo_flush (data->ep);
410 case GADGETFS_CLEAR_HALT:
411 status = usb_ep_clear_halt (data->ep);
418 spin_unlock_irq (&data->dev->lock);
419 mutex_unlock(&data->lock);
423 /*----------------------------------------------------------------------*/
425 /* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
428 struct usb_request *req;
429 struct ep_data *epdata;
431 struct mm_struct *mm;
432 struct work_struct work;
439 static int ep_aio_cancel(struct kiocb *iocb)
441 struct kiocb_priv *priv = iocb->private;
442 struct ep_data *epdata;
446 epdata = priv->epdata;
447 // spin_lock(&epdata->dev->lock);
448 if (likely(epdata && epdata->ep && priv->req))
449 value = usb_ep_dequeue (epdata->ep, priv->req);
452 // spin_unlock(&epdata->dev->lock);
458 static void ep_user_copy_worker(struct work_struct *work)
460 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
461 struct mm_struct *mm = priv->mm;
462 struct kiocb *iocb = priv->iocb;
466 ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
467 kthread_unuse_mm(mm);
471 /* completing the iocb can drop the ctx and mm, don't touch mm after */
472 iocb->ki_complete(iocb, ret, ret);
475 kfree(priv->to_free);
479 static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
481 struct kiocb *iocb = req->context;
482 struct kiocb_priv *priv = iocb->private;
483 struct ep_data *epdata = priv->epdata;
485 /* lock against disconnect (and ideally, cancel) */
486 spin_lock(&epdata->dev->lock);
490 /* if this was a write or a read returning no data then we
491 * don't need to copy anything to userspace, so we can
492 * complete the aio request immediately.
494 if (priv->to_free == NULL || unlikely(req->actual == 0)) {
496 kfree(priv->to_free);
498 iocb->private = NULL;
499 /* aio_complete() reports bytes-transferred _and_ faults */
501 iocb->ki_complete(iocb, req->actual ? req->actual : req->status,
504 /* ep_copy_to_user() won't report both; we hide some faults */
505 if (unlikely(0 != req->status))
506 DBG(epdata->dev, "%s fault %d len %d\n",
507 ep->name, req->status, req->actual);
509 priv->buf = req->buf;
510 priv->actual = req->actual;
511 INIT_WORK(&priv->work, ep_user_copy_worker);
512 schedule_work(&priv->work);
515 usb_ep_free_request(ep, req);
516 spin_unlock(&epdata->dev->lock);
520 static ssize_t ep_aio(struct kiocb *iocb,
521 struct kiocb_priv *priv,
522 struct ep_data *epdata,
526 struct usb_request *req;
529 iocb->private = priv;
532 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
534 priv->epdata = epdata;
536 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
538 /* each kiocb is coupled to one usb_request, but we can't
539 * allocate or submit those if the host disconnected.
541 spin_lock_irq(&epdata->dev->lock);
543 if (unlikely(epdata->ep == NULL))
546 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
554 req->complete = ep_aio_complete;
556 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
557 if (unlikely(0 != value)) {
558 usb_ep_free_request(epdata->ep, req);
561 spin_unlock_irq(&epdata->dev->lock);
565 spin_unlock_irq(&epdata->dev->lock);
566 kfree(priv->to_free);
573 ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
575 struct file *file = iocb->ki_filp;
576 struct ep_data *epdata = file->private_data;
577 size_t len = iov_iter_count(to);
581 if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
584 /* halt any endpoint by doing a "wrong direction" i/o call */
585 if (usb_endpoint_dir_in(&epdata->desc)) {
586 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
587 !is_sync_kiocb(iocb)) {
588 mutex_unlock(&epdata->lock);
591 DBG (epdata->dev, "%s halt\n", epdata->name);
592 spin_lock_irq(&epdata->dev->lock);
593 if (likely(epdata->ep != NULL))
594 usb_ep_set_halt(epdata->ep);
595 spin_unlock_irq(&epdata->dev->lock);
596 mutex_unlock(&epdata->lock);
600 buf = kmalloc(len, GFP_KERNEL);
601 if (unlikely(!buf)) {
602 mutex_unlock(&epdata->lock);
605 if (is_sync_kiocb(iocb)) {
606 value = ep_io(epdata, buf, len);
607 if (value >= 0 && (copy_to_iter(buf, value, to) != value))
610 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
614 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
615 if (!priv->to_free) {
619 value = ep_aio(iocb, priv, epdata, buf, len);
620 if (value == -EIOCBQUEUED)
625 mutex_unlock(&epdata->lock);
629 static ssize_t ep_config(struct ep_data *, const char *, size_t);
632 ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
634 struct file *file = iocb->ki_filp;
635 struct ep_data *epdata = file->private_data;
636 size_t len = iov_iter_count(from);
641 if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
644 configured = epdata->state == STATE_EP_ENABLED;
646 /* halt any endpoint by doing a "wrong direction" i/o call */
647 if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
648 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
649 !is_sync_kiocb(iocb)) {
650 mutex_unlock(&epdata->lock);
653 DBG (epdata->dev, "%s halt\n", epdata->name);
654 spin_lock_irq(&epdata->dev->lock);
655 if (likely(epdata->ep != NULL))
656 usb_ep_set_halt(epdata->ep);
657 spin_unlock_irq(&epdata->dev->lock);
658 mutex_unlock(&epdata->lock);
662 buf = kmalloc(len, GFP_KERNEL);
663 if (unlikely(!buf)) {
664 mutex_unlock(&epdata->lock);
668 if (unlikely(!copy_from_iter_full(buf, len, from))) {
673 if (unlikely(!configured)) {
674 value = ep_config(epdata, buf, len);
675 } else if (is_sync_kiocb(iocb)) {
676 value = ep_io(epdata, buf, len);
678 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
681 value = ep_aio(iocb, priv, epdata, buf, len);
682 if (value == -EIOCBQUEUED)
688 mutex_unlock(&epdata->lock);
692 /*----------------------------------------------------------------------*/
694 /* used after endpoint configuration */
695 static const struct file_operations ep_io_operations = {
696 .owner = THIS_MODULE,
699 .release = ep_release,
701 .unlocked_ioctl = ep_ioctl,
702 .read_iter = ep_read_iter,
703 .write_iter = ep_write_iter,
706 /* ENDPOINT INITIALIZATION
708 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
709 * status = write (fd, descriptors, sizeof descriptors)
711 * That write establishes the endpoint configuration, configuring
712 * the controller to process bulk, interrupt, or isochronous transfers
713 * at the right maxpacket size, and so on.
715 * The descriptors are message type 1, identified by a host order u32
716 * at the beginning of what's written. Descriptor order is: full/low
717 * speed descriptor, then optional high speed descriptor.
720 ep_config (struct ep_data *data, const char *buf, size_t len)
724 int value, length = len;
726 if (data->state != STATE_EP_READY) {
732 if (len < USB_DT_ENDPOINT_SIZE + 4)
735 /* we might need to change message format someday */
736 memcpy(&tag, buf, 4);
738 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
744 /* NOTE: audio endpoint extensions not accepted here;
745 * just don't include the extra bytes.
748 /* full/low speed descriptor, then high speed */
749 memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
750 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
751 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
753 if (len != USB_DT_ENDPOINT_SIZE) {
754 if (len != 2 * USB_DT_ENDPOINT_SIZE)
756 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
757 USB_DT_ENDPOINT_SIZE);
758 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
759 || data->hs_desc.bDescriptorType
760 != USB_DT_ENDPOINT) {
761 DBG(data->dev, "config %s, bad hs length or type\n",
767 spin_lock_irq (&data->dev->lock);
768 if (data->dev->state == STATE_DEV_UNBOUND) {
778 switch (data->dev->gadget->speed) {
781 ep->desc = &data->desc;
784 /* fails if caller didn't provide that descriptor... */
785 ep->desc = &data->hs_desc;
788 DBG(data->dev, "unconnected, %s init abandoned\n",
793 value = usb_ep_enable(ep);
795 data->state = STATE_EP_ENABLED;
799 spin_unlock_irq (&data->dev->lock);
802 data->desc.bDescriptorType = 0;
803 data->hs_desc.bDescriptorType = 0;
812 ep_open (struct inode *inode, struct file *fd)
814 struct ep_data *data = inode->i_private;
817 if (mutex_lock_interruptible(&data->lock) != 0)
819 spin_lock_irq (&data->dev->lock);
820 if (data->dev->state == STATE_DEV_UNBOUND)
822 else if (data->state == STATE_EP_DISABLED) {
824 data->state = STATE_EP_READY;
826 fd->private_data = data;
827 VDEBUG (data->dev, "%s ready\n", data->name);
829 DBG (data->dev, "%s state %d\n",
830 data->name, data->state);
831 spin_unlock_irq (&data->dev->lock);
832 mutex_unlock(&data->lock);
836 /*----------------------------------------------------------------------*/
838 /* EP0 IMPLEMENTATION can be partly in userspace.
840 * Drivers that use this facility receive various events, including
841 * control requests the kernel doesn't handle. Drivers that don't
842 * use this facility may be too simple-minded for real applications.
845 static inline void ep0_readable (struct dev_data *dev)
847 wake_up (&dev->wait);
848 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
851 static void clean_req (struct usb_ep *ep, struct usb_request *req)
853 struct dev_data *dev = ep->driver_data;
855 if (req->buf != dev->rbuf) {
857 req->buf = dev->rbuf;
859 req->complete = epio_complete;
860 dev->setup_out_ready = 0;
863 static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
865 struct dev_data *dev = ep->driver_data;
869 /* for control OUT, data must still get to userspace */
870 spin_lock_irqsave(&dev->lock, flags);
871 if (!dev->setup_in) {
872 dev->setup_out_error = (req->status != 0);
873 if (!dev->setup_out_error)
875 dev->setup_out_ready = 1;
879 /* clean up as appropriate */
880 if (free && req->buf != &dev->rbuf)
882 req->complete = epio_complete;
883 spin_unlock_irqrestore(&dev->lock, flags);
886 static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
888 struct dev_data *dev = ep->driver_data;
890 if (dev->setup_out_ready) {
891 DBG (dev, "ep0 request busy!\n");
894 if (len > sizeof (dev->rbuf))
895 req->buf = kmalloc(len, GFP_ATOMIC);
896 if (req->buf == NULL) {
897 req->buf = dev->rbuf;
900 req->complete = ep0_complete;
907 ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
909 struct dev_data *dev = fd->private_data;
911 enum ep0_state state;
913 spin_lock_irq (&dev->lock);
914 if (dev->state <= STATE_DEV_OPENED) {
919 /* report fd mode change before acting on it */
920 if (dev->setup_abort) {
921 dev->setup_abort = 0;
926 /* control DATA stage */
927 if ((state = dev->state) == STATE_DEV_SETUP) {
929 if (dev->setup_in) { /* stall IN */
930 VDEBUG(dev, "ep0in stall\n");
931 (void) usb_ep_set_halt (dev->gadget->ep0);
933 dev->state = STATE_DEV_CONNECTED;
935 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
936 struct usb_ep *ep = dev->gadget->ep0;
937 struct usb_request *req = dev->req;
939 if ((retval = setup_req (ep, req, 0)) == 0) {
941 spin_unlock_irq (&dev->lock);
942 retval = usb_ep_queue (ep, req, GFP_KERNEL);
943 spin_lock_irq (&dev->lock);
946 dev->state = STATE_DEV_CONNECTED;
948 /* assume that was SET_CONFIGURATION */
949 if (dev->current_config) {
952 if (gadget_is_dualspeed(dev->gadget)
953 && (dev->gadget->speed
955 power = dev->hs_config->bMaxPower;
957 power = dev->config->bMaxPower;
958 usb_gadget_vbus_draw(dev->gadget, 2 * power);
961 } else { /* collect OUT data */
962 if ((fd->f_flags & O_NONBLOCK) != 0
963 && !dev->setup_out_ready) {
967 spin_unlock_irq (&dev->lock);
968 retval = wait_event_interruptible (dev->wait,
969 dev->setup_out_ready != 0);
971 /* FIXME state could change from under us */
972 spin_lock_irq (&dev->lock);
976 if (dev->state != STATE_DEV_SETUP) {
980 dev->state = STATE_DEV_CONNECTED;
982 if (dev->setup_out_error)
985 len = min (len, (size_t)dev->req->actual);
987 spin_unlock_irq(&dev->lock);
988 if (copy_to_user (buf, dev->req->buf, len))
992 spin_lock_irq(&dev->lock);
994 clean_req (dev->gadget->ep0, dev->req);
995 /* NOTE userspace can't yet choose to stall */
1001 /* else normal: return event data */
1002 if (len < sizeof dev->event [0]) {
1006 len -= len % sizeof (struct usb_gadgetfs_event);
1007 dev->usermode_setup = 1;
1010 /* return queued events right away */
1011 if (dev->ev_next != 0) {
1014 n = len / sizeof (struct usb_gadgetfs_event);
1015 if (dev->ev_next < n)
1018 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
1019 for (i = 0; i < n; i++) {
1020 if (dev->event [i].type == GADGETFS_SETUP) {
1021 dev->state = STATE_DEV_SETUP;
1026 spin_unlock_irq (&dev->lock);
1027 len = n * sizeof (struct usb_gadgetfs_event);
1028 if (copy_to_user (buf, &dev->event, len))
1033 /* NOTE this doesn't guard against broken drivers;
1034 * concurrent ep0 readers may lose events.
1036 spin_lock_irq (&dev->lock);
1037 if (dev->ev_next > n) {
1038 memmove(&dev->event[0], &dev->event[n],
1039 sizeof (struct usb_gadgetfs_event)
1040 * (dev->ev_next - n));
1043 spin_unlock_irq (&dev->lock);
1047 if (fd->f_flags & O_NONBLOCK) {
1054 DBG (dev, "fail %s, state %d\n", __func__, state);
1057 case STATE_DEV_UNCONNECTED:
1058 case STATE_DEV_CONNECTED:
1059 spin_unlock_irq (&dev->lock);
1060 DBG (dev, "%s wait\n", __func__);
1062 /* wait for events */
1063 retval = wait_event_interruptible (dev->wait,
1067 spin_lock_irq (&dev->lock);
1072 spin_unlock_irq (&dev->lock);
1076 static struct usb_gadgetfs_event *
1077 next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1079 struct usb_gadgetfs_event *event;
1083 /* these events purge the queue */
1084 case GADGETFS_DISCONNECT:
1085 if (dev->state == STATE_DEV_SETUP)
1086 dev->setup_abort = 1;
1088 case GADGETFS_CONNECT:
1091 case GADGETFS_SETUP: /* previous request timed out */
1092 case GADGETFS_SUSPEND: /* same effect */
1093 /* these events can't be repeated */
1094 for (i = 0; i != dev->ev_next; i++) {
1095 if (dev->event [i].type != type)
1097 DBG(dev, "discard old event[%d] %d\n", i, type);
1099 if (i == dev->ev_next)
1101 /* indices start at zero, for simplicity */
1102 memmove (&dev->event [i], &dev->event [i + 1],
1103 sizeof (struct usb_gadgetfs_event)
1104 * (dev->ev_next - i));
1110 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
1111 event = &dev->event [dev->ev_next++];
1112 BUG_ON (dev->ev_next > N_EVENT);
1113 memset (event, 0, sizeof *event);
1119 ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1121 struct dev_data *dev = fd->private_data;
1122 ssize_t retval = -ESRCH;
1124 /* report fd mode change before acting on it */
1125 if (dev->setup_abort) {
1126 dev->setup_abort = 0;
1129 /* data and/or status stage for control request */
1130 } else if (dev->state == STATE_DEV_SETUP) {
1132 len = min_t(size_t, len, dev->setup_wLength);
1133 if (dev->setup_in) {
1134 retval = setup_req (dev->gadget->ep0, dev->req, len);
1136 dev->state = STATE_DEV_CONNECTED;
1138 spin_unlock_irq (&dev->lock);
1139 if (copy_from_user (dev->req->buf, buf, len))
1142 if (len < dev->setup_wLength)
1144 retval = usb_ep_queue (
1145 dev->gadget->ep0, dev->req,
1148 spin_lock_irq(&dev->lock);
1151 clean_req (dev->gadget->ep0, dev->req);
1158 /* can stall some OUT transfers */
1159 } else if (dev->setup_can_stall) {
1160 VDEBUG(dev, "ep0out stall\n");
1161 (void) usb_ep_set_halt (dev->gadget->ep0);
1163 dev->state = STATE_DEV_CONNECTED;
1165 DBG(dev, "bogus ep0out stall!\n");
1168 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
1174 ep0_fasync (int f, struct file *fd, int on)
1176 struct dev_data *dev = fd->private_data;
1177 // caller must F_SETOWN before signal delivery happens
1178 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
1179 return fasync_helper (f, fd, on, &dev->fasync);
1182 static struct usb_gadget_driver gadgetfs_driver;
1185 dev_release (struct inode *inode, struct file *fd)
1187 struct dev_data *dev = fd->private_data;
1189 /* closing ep0 === shutdown all */
1191 if (dev->gadget_registered) {
1192 usb_gadget_unregister_driver (&gadgetfs_driver);
1193 dev->gadget_registered = false;
1196 /* at this point "good" hardware has disconnected the
1197 * device from USB; the host won't see it any more.
1198 * alternatively, all host requests will time out.
1204 /* other endpoints were all decoupled from this device */
1205 spin_lock_irq(&dev->lock);
1206 dev->state = STATE_DEV_DISABLED;
1207 spin_unlock_irq(&dev->lock);
1214 ep0_poll (struct file *fd, poll_table *wait)
1216 struct dev_data *dev = fd->private_data;
1219 if (dev->state <= STATE_DEV_OPENED)
1220 return DEFAULT_POLLMASK;
1222 poll_wait(fd, &dev->wait, wait);
1224 spin_lock_irq(&dev->lock);
1226 /* report fd mode change before acting on it */
1227 if (dev->setup_abort) {
1228 dev->setup_abort = 0;
1233 if (dev->state == STATE_DEV_SETUP) {
1234 if (dev->setup_in || dev->setup_can_stall)
1237 if (dev->ev_next != 0)
1241 spin_unlock_irq(&dev->lock);
1245 static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
1247 struct dev_data *dev = fd->private_data;
1248 struct usb_gadget *gadget = dev->gadget;
1251 spin_lock_irq(&dev->lock);
1252 if (dev->state == STATE_DEV_OPENED ||
1253 dev->state == STATE_DEV_UNBOUND) {
1254 /* Not bound to a UDC */
1255 } else if (gadget->ops->ioctl) {
1257 spin_unlock_irq(&dev->lock);
1259 ret = gadget->ops->ioctl (gadget, code, value);
1261 spin_lock_irq(&dev->lock);
1264 spin_unlock_irq(&dev->lock);
1269 /*----------------------------------------------------------------------*/
1271 /* The in-kernel gadget driver handles most ep0 issues, in particular
1272 * enumerating the single configuration (as provided from user space).
1274 * Unrecognized ep0 requests may be handled in user space.
1277 static void make_qualifier (struct dev_data *dev)
1279 struct usb_qualifier_descriptor qual;
1280 struct usb_device_descriptor *desc;
1282 qual.bLength = sizeof qual;
1283 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
1284 qual.bcdUSB = cpu_to_le16 (0x0200);
1287 qual.bDeviceClass = desc->bDeviceClass;
1288 qual.bDeviceSubClass = desc->bDeviceSubClass;
1289 qual.bDeviceProtocol = desc->bDeviceProtocol;
1291 /* assumes ep0 uses the same value for both speeds ... */
1292 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1294 qual.bNumConfigurations = 1;
1297 memcpy (dev->rbuf, &qual, sizeof qual);
1301 config_buf (struct dev_data *dev, u8 type, unsigned index)
1306 /* only one configuration */
1310 if (gadget_is_dualspeed(dev->gadget)) {
1311 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1312 if (type == USB_DT_OTHER_SPEED_CONFIG)
1316 dev->req->buf = dev->hs_config;
1317 len = le16_to_cpu(dev->hs_config->wTotalLength);
1319 dev->req->buf = dev->config;
1320 len = le16_to_cpu(dev->config->wTotalLength);
1322 ((u8 *)dev->req->buf) [1] = type;
1327 gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1329 struct dev_data *dev = get_gadget_data (gadget);
1330 struct usb_request *req = dev->req;
1331 int value = -EOPNOTSUPP;
1332 struct usb_gadgetfs_event *event;
1333 u16 w_value = le16_to_cpu(ctrl->wValue);
1334 u16 w_length = le16_to_cpu(ctrl->wLength);
1336 spin_lock (&dev->lock);
1337 dev->setup_abort = 0;
1338 if (dev->state == STATE_DEV_UNCONNECTED) {
1339 if (gadget_is_dualspeed(gadget)
1340 && gadget->speed == USB_SPEED_HIGH
1341 && dev->hs_config == NULL) {
1342 spin_unlock(&dev->lock);
1343 ERROR (dev, "no high speed config??\n");
1347 dev->state = STATE_DEV_CONNECTED;
1349 INFO (dev, "connected\n");
1350 event = next_event (dev, GADGETFS_CONNECT);
1351 event->u.speed = gadget->speed;
1354 /* host may have given up waiting for response. we can miss control
1355 * requests handled lower down (device/endpoint status and features);
1356 * then ep0_{read,write} will report the wrong status. controller
1357 * driver will have aborted pending i/o.
1359 } else if (dev->state == STATE_DEV_SETUP)
1360 dev->setup_abort = 1;
1362 req->buf = dev->rbuf;
1363 req->context = NULL;
1364 switch (ctrl->bRequest) {
1366 case USB_REQ_GET_DESCRIPTOR:
1367 if (ctrl->bRequestType != USB_DIR_IN)
1369 switch (w_value >> 8) {
1372 value = min (w_length, (u16) sizeof *dev->dev);
1373 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1374 req->buf = dev->dev;
1376 case USB_DT_DEVICE_QUALIFIER:
1377 if (!dev->hs_config)
1379 value = min (w_length, (u16)
1380 sizeof (struct usb_qualifier_descriptor));
1381 make_qualifier (dev);
1383 case USB_DT_OTHER_SPEED_CONFIG:
1385 value = config_buf (dev,
1389 value = min (w_length, (u16) value);
1394 default: // all others are errors
1399 /* currently one config, two speeds */
1400 case USB_REQ_SET_CONFIGURATION:
1401 if (ctrl->bRequestType != 0)
1403 if (0 == (u8) w_value) {
1405 dev->current_config = 0;
1406 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1407 // user mode expected to disable endpoints
1411 if (gadget_is_dualspeed(gadget)
1412 && gadget->speed == USB_SPEED_HIGH) {
1413 config = dev->hs_config->bConfigurationValue;
1414 power = dev->hs_config->bMaxPower;
1416 config = dev->config->bConfigurationValue;
1417 power = dev->config->bMaxPower;
1420 if (config == (u8) w_value) {
1422 dev->current_config = config;
1423 usb_gadget_vbus_draw(gadget, 2 * power);
1427 /* report SET_CONFIGURATION like any other control request,
1428 * except that usermode may not stall this. the next
1429 * request mustn't be allowed start until this finishes:
1430 * endpoints and threads set up, etc.
1432 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1433 * has bad/racey automagic that prevents synchronizing here.
1434 * even kernel mode drivers often miss them.
1437 INFO (dev, "configuration #%d\n", dev->current_config);
1438 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
1439 if (dev->usermode_setup) {
1440 dev->setup_can_stall = 0;
1446 #ifndef CONFIG_USB_PXA25X
1447 /* PXA automagically handles this request too */
1448 case USB_REQ_GET_CONFIGURATION:
1449 if (ctrl->bRequestType != 0x80)
1451 *(u8 *)req->buf = dev->current_config;
1452 value = min (w_length, (u16) 1);
1458 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1459 dev->usermode_setup ? "delegate" : "fail",
1460 ctrl->bRequestType, ctrl->bRequest,
1461 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1463 /* if there's an ep0 reader, don't stall */
1464 if (dev->usermode_setup) {
1465 dev->setup_can_stall = 1;
1467 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1469 dev->setup_wLength = w_length;
1470 dev->setup_out_ready = 0;
1471 dev->setup_out_error = 0;
1473 /* read DATA stage for OUT right away */
1474 if (unlikely (!dev->setup_in && w_length)) {
1475 value = setup_req (gadget->ep0, dev->req,
1481 spin_unlock (&dev->lock);
1482 value = usb_ep_queue (gadget->ep0, dev->req,
1484 spin_lock (&dev->lock);
1487 clean_req (gadget->ep0, dev->req);
1491 /* we can't currently stall these */
1492 dev->setup_can_stall = 0;
1495 /* state changes when reader collects event */
1496 event = next_event (dev, GADGETFS_SETUP);
1497 event->u.setup = *ctrl;
1499 spin_unlock (&dev->lock);
1504 /* proceed with data transfer and status phases? */
1505 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
1506 req->length = value;
1507 req->zero = value < w_length;
1510 spin_unlock (&dev->lock);
1511 value = usb_ep_queue (gadget->ep0, req, GFP_KERNEL);
1512 spin_lock(&dev->lock);
1514 spin_unlock(&dev->lock);
1516 DBG (dev, "ep_queue --> %d\n", value);
1522 /* device stalls when value < 0 */
1523 spin_unlock (&dev->lock);
1527 static void destroy_ep_files (struct dev_data *dev)
1529 DBG (dev, "%s %d\n", __func__, dev->state);
1531 /* dev->state must prevent interference */
1532 spin_lock_irq (&dev->lock);
1533 while (!list_empty(&dev->epfiles)) {
1535 struct inode *parent;
1536 struct dentry *dentry;
1538 /* break link to FS */
1539 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
1540 list_del_init (&ep->epfiles);
1541 spin_unlock_irq (&dev->lock);
1543 dentry = ep->dentry;
1545 parent = d_inode(dentry->d_parent);
1547 /* break link to controller */
1548 mutex_lock(&ep->lock);
1549 if (ep->state == STATE_EP_ENABLED)
1550 (void) usb_ep_disable (ep->ep);
1551 ep->state = STATE_EP_UNBOUND;
1552 usb_ep_free_request (ep->ep, ep->req);
1554 mutex_unlock(&ep->lock);
1556 wake_up (&ep->wait);
1559 /* break link to dcache */
1563 inode_unlock(parent);
1565 spin_lock_irq (&dev->lock);
1567 spin_unlock_irq (&dev->lock);
1571 static struct dentry *
1572 gadgetfs_create_file (struct super_block *sb, char const *name,
1573 void *data, const struct file_operations *fops);
1575 static int activate_ep_files (struct dev_data *dev)
1578 struct ep_data *data;
1580 gadget_for_each_ep (ep, dev->gadget) {
1582 data = kzalloc(sizeof(*data), GFP_KERNEL);
1585 data->state = STATE_EP_DISABLED;
1586 mutex_init(&data->lock);
1587 init_waitqueue_head (&data->wait);
1589 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1590 refcount_set (&data->count, 1);
1595 ep->driver_data = data;
1597 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1601 data->dentry = gadgetfs_create_file (dev->sb, data->name,
1602 data, &ep_io_operations);
1605 list_add_tail (&data->epfiles, &dev->epfiles);
1610 usb_ep_free_request (ep, data->req);
1615 DBG (dev, "%s enomem\n", __func__);
1616 destroy_ep_files (dev);
1621 gadgetfs_unbind (struct usb_gadget *gadget)
1623 struct dev_data *dev = get_gadget_data (gadget);
1625 DBG (dev, "%s\n", __func__);
1627 spin_lock_irq (&dev->lock);
1628 dev->state = STATE_DEV_UNBOUND;
1629 while (dev->udc_usage > 0) {
1630 spin_unlock_irq(&dev->lock);
1631 usleep_range(1000, 2000);
1632 spin_lock_irq(&dev->lock);
1634 spin_unlock_irq (&dev->lock);
1636 destroy_ep_files (dev);
1637 gadget->ep0->driver_data = NULL;
1638 set_gadget_data (gadget, NULL);
1640 /* we've already been disconnected ... no i/o is active */
1642 usb_ep_free_request (gadget->ep0, dev->req);
1643 DBG (dev, "%s done\n", __func__);
1647 static struct dev_data *the_device;
1649 static int gadgetfs_bind(struct usb_gadget *gadget,
1650 struct usb_gadget_driver *driver)
1652 struct dev_data *dev = the_device;
1656 if (0 != strcmp (CHIP, gadget->name)) {
1657 pr_err("%s expected %s controller not %s\n",
1658 shortname, CHIP, gadget->name);
1662 set_gadget_data (gadget, dev);
1663 dev->gadget = gadget;
1664 gadget->ep0->driver_data = dev;
1666 /* preallocate control response and buffer */
1667 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1670 dev->req->context = NULL;
1671 dev->req->complete = epio_complete;
1673 if (activate_ep_files (dev) < 0)
1676 INFO (dev, "bound to %s driver\n", gadget->name);
1677 spin_lock_irq(&dev->lock);
1678 dev->state = STATE_DEV_UNCONNECTED;
1679 spin_unlock_irq(&dev->lock);
1684 gadgetfs_unbind (gadget);
1689 gadgetfs_disconnect (struct usb_gadget *gadget)
1691 struct dev_data *dev = get_gadget_data (gadget);
1692 unsigned long flags;
1694 spin_lock_irqsave (&dev->lock, flags);
1695 if (dev->state == STATE_DEV_UNCONNECTED)
1697 dev->state = STATE_DEV_UNCONNECTED;
1699 INFO (dev, "disconnected\n");
1700 next_event (dev, GADGETFS_DISCONNECT);
1703 spin_unlock_irqrestore (&dev->lock, flags);
1707 gadgetfs_suspend (struct usb_gadget *gadget)
1709 struct dev_data *dev = get_gadget_data (gadget);
1710 unsigned long flags;
1712 INFO (dev, "suspended from state %d\n", dev->state);
1713 spin_lock_irqsave(&dev->lock, flags);
1714 switch (dev->state) {
1715 case STATE_DEV_SETUP: // VERY odd... host died??
1716 case STATE_DEV_CONNECTED:
1717 case STATE_DEV_UNCONNECTED:
1718 next_event (dev, GADGETFS_SUSPEND);
1724 spin_unlock_irqrestore(&dev->lock, flags);
1727 static struct usb_gadget_driver gadgetfs_driver = {
1728 .function = (char *) driver_desc,
1729 .bind = gadgetfs_bind,
1730 .unbind = gadgetfs_unbind,
1731 .setup = gadgetfs_setup,
1732 .reset = gadgetfs_disconnect,
1733 .disconnect = gadgetfs_disconnect,
1734 .suspend = gadgetfs_suspend,
1741 /*----------------------------------------------------------------------*/
1742 /* DEVICE INITIALIZATION
1744 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1745 * status = write (fd, descriptors, sizeof descriptors)
1747 * That write establishes the device configuration, so the kernel can
1748 * bind to the controller ... guaranteeing it can handle enumeration
1749 * at all necessary speeds. Descriptor order is:
1751 * . message tag (u32, host order) ... for now, must be zero; it
1752 * would change to support features like multi-config devices
1753 * . full/low speed config ... all wTotalLength bytes (with interface,
1754 * class, altsetting, endpoint, and other descriptors)
1755 * . high speed config ... all descriptors, for high speed operation;
1756 * this one's optional except for high-speed hardware
1757 * . device descriptor
1759 * Endpoints are not yet enabled. Drivers must wait until device
1760 * configuration and interface altsetting changes create
1761 * the need to configure (or unconfigure) them.
1763 * After initialization, the device stays active for as long as that
1764 * $CHIP file is open. Events must then be read from that descriptor,
1765 * such as configuration notifications.
1768 static int is_valid_config(struct usb_config_descriptor *config,
1771 return config->bDescriptorType == USB_DT_CONFIG
1772 && config->bLength == USB_DT_CONFIG_SIZE
1773 && total >= USB_DT_CONFIG_SIZE
1774 && config->bConfigurationValue != 0
1775 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1776 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1777 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1778 /* FIXME check lengths: walk to end */
1782 dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1784 struct dev_data *dev = fd->private_data;
1785 ssize_t value, length = len;
1790 spin_lock_irq(&dev->lock);
1791 if (dev->state > STATE_DEV_OPENED) {
1792 value = ep0_write(fd, buf, len, ptr);
1793 spin_unlock_irq(&dev->lock);
1796 spin_unlock_irq(&dev->lock);
1798 if ((len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4)) ||
1799 (len > PAGE_SIZE * 4))
1802 /* we might need to change message format someday */
1803 if (copy_from_user (&tag, buf, 4))
1810 kbuf = memdup_user(buf, length);
1812 return PTR_ERR(kbuf);
1814 spin_lock_irq (&dev->lock);
1822 /* full or low speed config */
1823 dev->config = (void *) kbuf;
1824 total = le16_to_cpu(dev->config->wTotalLength);
1825 if (!is_valid_config(dev->config, total) ||
1826 total > length - USB_DT_DEVICE_SIZE)
1831 /* optional high speed config */
1832 if (kbuf [1] == USB_DT_CONFIG) {
1833 dev->hs_config = (void *) kbuf;
1834 total = le16_to_cpu(dev->hs_config->wTotalLength);
1835 if (!is_valid_config(dev->hs_config, total) ||
1836 total > length - USB_DT_DEVICE_SIZE)
1841 dev->hs_config = NULL;
1844 /* could support multiple configs, using another encoding! */
1846 /* device descriptor (tweaked for paranoia) */
1847 if (length != USB_DT_DEVICE_SIZE)
1849 dev->dev = (void *)kbuf;
1850 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1851 || dev->dev->bDescriptorType != USB_DT_DEVICE
1852 || dev->dev->bNumConfigurations != 1)
1854 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
1856 /* triggers gadgetfs_bind(); then we can enumerate. */
1857 spin_unlock_irq (&dev->lock);
1859 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1861 gadgetfs_driver.max_speed = USB_SPEED_FULL;
1863 value = usb_gadget_probe_driver(&gadgetfs_driver);
1868 /* at this point "good" hardware has for the first time
1869 * let the USB the host see us. alternatively, if users
1870 * unplug/replug that will clear all the error state.
1872 * note: everything running before here was guaranteed
1873 * to choke driver model style diagnostics. from here
1874 * on, they can work ... except in cleanup paths that
1875 * kick in after the ep0 descriptor is closed.
1878 dev->gadget_registered = true;
1883 spin_unlock_irq (&dev->lock);
1884 pr_debug ("%s: %s fail %zd, %p\n", shortname, __func__, value, dev);
1891 dev_open (struct inode *inode, struct file *fd)
1893 struct dev_data *dev = inode->i_private;
1896 spin_lock_irq(&dev->lock);
1897 if (dev->state == STATE_DEV_DISABLED) {
1899 dev->state = STATE_DEV_OPENED;
1900 fd->private_data = dev;
1904 spin_unlock_irq(&dev->lock);
1908 static const struct file_operations ep0_operations = {
1909 .llseek = no_llseek,
1913 .write = dev_config,
1914 .fasync = ep0_fasync,
1916 .unlocked_ioctl = dev_ioctl,
1917 .release = dev_release,
1920 /*----------------------------------------------------------------------*/
1922 /* FILESYSTEM AND SUPERBLOCK OPERATIONS
1924 * Mounting the filesystem creates a controller file, used first for
1925 * device configuration then later for event monitoring.
1929 /* FIXME PAM etc could set this security policy without mount options
1930 * if epfiles inherited ownership and permissons from ep0 ...
1933 static unsigned default_uid;
1934 static unsigned default_gid;
1935 static unsigned default_perm = S_IRUSR | S_IWUSR;
1937 module_param (default_uid, uint, 0644);
1938 module_param (default_gid, uint, 0644);
1939 module_param (default_perm, uint, 0644);
1942 static struct inode *
1943 gadgetfs_make_inode (struct super_block *sb,
1944 void *data, const struct file_operations *fops,
1947 struct inode *inode = new_inode (sb);
1950 inode->i_ino = get_next_ino();
1951 inode->i_mode = mode;
1952 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1953 inode->i_gid = make_kgid(&init_user_ns, default_gid);
1954 inode->i_atime = inode->i_mtime = inode->i_ctime
1955 = current_time(inode);
1956 inode->i_private = data;
1957 inode->i_fop = fops;
1962 /* creates in fs root directory, so non-renamable and non-linkable.
1963 * so inode and dentry are paired, until device reconfig.
1965 static struct dentry *
1966 gadgetfs_create_file (struct super_block *sb, char const *name,
1967 void *data, const struct file_operations *fops)
1969 struct dentry *dentry;
1970 struct inode *inode;
1972 dentry = d_alloc_name(sb->s_root, name);
1976 inode = gadgetfs_make_inode (sb, data, fops,
1977 S_IFREG | (default_perm & S_IRWXUGO));
1982 d_add (dentry, inode);
1986 static const struct super_operations gadget_fs_operations = {
1987 .statfs = simple_statfs,
1988 .drop_inode = generic_delete_inode,
1992 gadgetfs_fill_super (struct super_block *sb, struct fs_context *fc)
1994 struct inode *inode;
1995 struct dev_data *dev;
2000 CHIP = usb_get_gadget_udc_name();
2005 sb->s_blocksize = PAGE_SIZE;
2006 sb->s_blocksize_bits = PAGE_SHIFT;
2007 sb->s_magic = GADGETFS_MAGIC;
2008 sb->s_op = &gadget_fs_operations;
2009 sb->s_time_gran = 1;
2012 inode = gadgetfs_make_inode (sb,
2013 NULL, &simple_dir_operations,
2014 S_IFDIR | S_IRUGO | S_IXUGO);
2017 inode->i_op = &simple_dir_inode_operations;
2018 if (!(sb->s_root = d_make_root (inode)))
2021 /* the ep0 file is named after the controller we expect;
2022 * user mode code can use it for sanity checks, like we do.
2029 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
2035 /* other endpoint files are available after hardware setup,
2036 * from binding to a controller.
2048 /* "mount -t gadgetfs path /dev/gadget" ends up here */
2049 static int gadgetfs_get_tree(struct fs_context *fc)
2051 return get_tree_single(fc, gadgetfs_fill_super);
2054 static const struct fs_context_operations gadgetfs_context_ops = {
2055 .get_tree = gadgetfs_get_tree,
2058 static int gadgetfs_init_fs_context(struct fs_context *fc)
2060 fc->ops = &gadgetfs_context_ops;
2065 gadgetfs_kill_sb (struct super_block *sb)
2067 kill_litter_super (sb);
2069 put_dev (the_device);
2076 /*----------------------------------------------------------------------*/
2078 static struct file_system_type gadgetfs_type = {
2079 .owner = THIS_MODULE,
2081 .init_fs_context = gadgetfs_init_fs_context,
2082 .kill_sb = gadgetfs_kill_sb,
2084 MODULE_ALIAS_FS("gadgetfs");
2086 /*----------------------------------------------------------------------*/
2088 static int __init init (void)
2092 status = register_filesystem (&gadgetfs_type);
2094 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2095 shortname, driver_desc);
2100 static void __exit cleanup (void)
2102 pr_debug ("unregister %s\n", shortname);
2103 unregister_filesystem (&gadgetfs_type);
2105 module_exit (cleanup);