2 * inode.c -- user mode filesystem api for usb gadget controllers
4 * Copyright (C) 2003-2004 David Brownell
5 * Copyright (C) 2003 Agilent Technologies
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /* #define VERBOSE_DEBUG */
25 #include <linux/init.h>
26 #include <linux/module.h>
28 #include <linux/pagemap.h>
29 #include <linux/uts.h>
30 #include <linux/wait.h>
31 #include <linux/compiler.h>
32 #include <asm/uaccess.h>
33 #include <linux/slab.h>
34 #include <linux/poll.h>
35 #include <linux/smp_lock.h>
37 #include <linux/device.h>
38 #include <linux/moduleparam.h>
40 #include <linux/usb/gadgetfs.h>
41 #include <linux/usb/gadget.h>
45 * The gadgetfs API maps each endpoint to a file descriptor so that you
46 * can use standard synchronous read/write calls for I/O. There's some
47 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
48 * drivers show how this works in practice. You can also use AIO to
49 * eliminate I/O gaps between requests, to help when streaming data.
51 * Key parts that must be USB-specific are protocols defining how the
52 * read/write operations relate to the hardware state machines. There
53 * are two types of files. One type is for the device, implementing ep0.
54 * The other type is for each IN or OUT endpoint. In both cases, the
55 * user mode driver must configure the hardware before using it.
57 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
58 * (by writing configuration and device descriptors). Afterwards it
59 * may serve as a source of device events, used to handle all control
60 * requests other than basic enumeration.
62 * - Then, after a SET_CONFIGURATION control request, ep_config() is
63 * called when each /dev/gadget/ep* file is configured (by writing
64 * endpoint descriptors). Afterwards these files are used to write()
65 * IN data or to read() OUT data. To halt the endpoint, a "wrong
66 * direction" request is issued (like reading an IN endpoint).
68 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
69 * not possible on all hardware. For example, precise fault handling with
70 * respect to data left in endpoint fifos after aborted operations; or
71 * selective clearing of endpoint halts, to implement SET_INTERFACE.
74 #define DRIVER_DESC "USB Gadget filesystem"
75 #define DRIVER_VERSION "24 Aug 2004"
77 static const char driver_desc
[] = DRIVER_DESC
;
78 static const char shortname
[] = "gadgetfs";
80 MODULE_DESCRIPTION (DRIVER_DESC
);
81 MODULE_AUTHOR ("David Brownell");
82 MODULE_LICENSE ("GPL");
85 /*----------------------------------------------------------------------*/
87 #define GADGETFS_MAGIC 0xaee71ee7
88 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
90 /* /dev/gadget/$CHIP represents ep0 and the whole device */
92 /* DISBLED is the initial state.
94 STATE_DEV_DISABLED
= 0,
96 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
97 * ep0/device i/o modes and binding to the controller. Driver
98 * must always write descriptors to initialize the device, then
99 * the device becomes UNCONNECTED until enumeration.
103 /* From then on, ep0 fd is in either of two basic modes:
104 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
105 * - SETUP: read/write will transfer control data and succeed;
106 * or if "wrong direction", performs protocol stall
108 STATE_DEV_UNCONNECTED
,
112 /* UNBOUND means the driver closed ep0, so the device won't be
113 * accessible again (DEV_DISABLED) until all fds are closed.
118 /* enough for the whole queue: most events invalidate others */
124 enum ep0_state state
; /* P: lock */
125 struct usb_gadgetfs_event event
[N_EVENT
];
127 struct fasync_struct
*fasync
;
130 /* drivers reading ep0 MUST handle control requests (SETUP)
131 * reported that way; else the host will time out.
133 unsigned usermode_setup
: 1,
139 unsigned setup_wLength
;
141 /* the rest is basically write-once */
142 struct usb_config_descriptor
*config
, *hs_config
;
143 struct usb_device_descriptor
*dev
;
144 struct usb_request
*req
;
145 struct usb_gadget
*gadget
;
146 struct list_head epfiles
;
148 wait_queue_head_t wait
;
149 struct super_block
*sb
;
150 struct dentry
*dentry
;
152 /* except this scratch i/o buffer for ep0 */
156 static inline void get_dev (struct dev_data
*data
)
158 atomic_inc (&data
->count
);
161 static void put_dev (struct dev_data
*data
)
163 if (likely (!atomic_dec_and_test (&data
->count
)))
165 /* needs no more cleanup */
166 BUG_ON (waitqueue_active (&data
->wait
));
170 static struct dev_data
*dev_new (void)
172 struct dev_data
*dev
;
174 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
177 dev
->state
= STATE_DEV_DISABLED
;
178 atomic_set (&dev
->count
, 1);
179 spin_lock_init (&dev
->lock
);
180 INIT_LIST_HEAD (&dev
->epfiles
);
181 init_waitqueue_head (&dev
->wait
);
185 /*----------------------------------------------------------------------*/
187 /* other /dev/gadget/$ENDPOINT files represent endpoints */
189 STATE_EP_DISABLED
= 0,
196 struct semaphore lock
;
199 struct dev_data
*dev
;
200 /* must hold dev->lock before accessing ep or req */
202 struct usb_request
*req
;
205 struct usb_endpoint_descriptor desc
, hs_desc
;
206 struct list_head epfiles
;
207 wait_queue_head_t wait
;
208 struct dentry
*dentry
;
212 static inline void get_ep (struct ep_data
*data
)
214 atomic_inc (&data
->count
);
217 static void put_ep (struct ep_data
*data
)
219 if (likely (!atomic_dec_and_test (&data
->count
)))
222 /* needs no more cleanup */
223 BUG_ON (!list_empty (&data
->epfiles
));
224 BUG_ON (waitqueue_active (&data
->wait
));
228 /*----------------------------------------------------------------------*/
230 /* most "how to use the hardware" policy choices are in userspace:
231 * mapping endpoint roles (which the driver needs) to the capabilities
232 * which the usb controller has. most of those capabilities are exposed
233 * implicitly, starting with the driver name and then endpoint names.
236 static const char *CHIP
;
238 /*----------------------------------------------------------------------*/
240 /* NOTE: don't use dev_printk calls before binding to the gadget
241 * at the end of ep0 configuration, or after unbind.
244 /* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
245 #define xprintk(d,level,fmt,args...) \
246 printk(level "%s: " fmt , shortname , ## args)
249 #define DBG(dev,fmt,args...) \
250 xprintk(dev , KERN_DEBUG , fmt , ## args)
252 #define DBG(dev,fmt,args...) \
259 #define VDEBUG(dev,fmt,args...) \
263 #define ERROR(dev,fmt,args...) \
264 xprintk(dev , KERN_ERR , fmt , ## args)
265 #define INFO(dev,fmt,args...) \
266 xprintk(dev , KERN_INFO , fmt , ## args)
269 /*----------------------------------------------------------------------*/
271 /* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
273 * After opening, configure non-control endpoints. Then use normal
274 * stream read() and write() requests; and maybe ioctl() to get more
275 * precise FIFO status when recovering from cancellation.
278 static void epio_complete (struct usb_ep
*ep
, struct usb_request
*req
)
280 struct ep_data
*epdata
= ep
->driver_data
;
285 epdata
->status
= req
->status
;
287 epdata
->status
= req
->actual
;
288 complete ((struct completion
*)req
->context
);
291 /* tasklock endpoint, returning when it's connected.
292 * still need dev->lock to use epdata->ep.
295 get_ready_ep (unsigned f_flags
, struct ep_data
*epdata
)
299 if (f_flags
& O_NONBLOCK
) {
300 if (down_trylock (&epdata
->lock
) != 0)
302 if (epdata
->state
!= STATE_EP_ENABLED
) {
311 if ((val
= down_interruptible (&epdata
->lock
)) < 0)
314 switch (epdata
->state
) {
315 case STATE_EP_ENABLED
:
317 // case STATE_EP_DISABLED: /* "can't happen" */
318 // case STATE_EP_READY: /* "can't happen" */
319 default: /* error! */
320 pr_debug ("%s: ep %p not available, state %d\n",
321 shortname
, epdata
, epdata
->state
);
323 case STATE_EP_UNBOUND
: /* clean disconnect */
331 ep_io (struct ep_data
*epdata
, void *buf
, unsigned len
)
333 DECLARE_COMPLETION_ONSTACK (done
);
336 spin_lock_irq (&epdata
->dev
->lock
);
337 if (likely (epdata
->ep
!= NULL
)) {
338 struct usb_request
*req
= epdata
->req
;
340 req
->context
= &done
;
341 req
->complete
= epio_complete
;
344 value
= usb_ep_queue (epdata
->ep
, req
, GFP_ATOMIC
);
347 spin_unlock_irq (&epdata
->dev
->lock
);
349 if (likely (value
== 0)) {
350 value
= wait_event_interruptible (done
.wait
, done
.done
);
352 spin_lock_irq (&epdata
->dev
->lock
);
353 if (likely (epdata
->ep
!= NULL
)) {
354 DBG (epdata
->dev
, "%s i/o interrupted\n",
356 usb_ep_dequeue (epdata
->ep
, epdata
->req
);
357 spin_unlock_irq (&epdata
->dev
->lock
);
359 wait_event (done
.wait
, done
.done
);
360 if (epdata
->status
== -ECONNRESET
)
361 epdata
->status
= -EINTR
;
363 spin_unlock_irq (&epdata
->dev
->lock
);
365 DBG (epdata
->dev
, "endpoint gone\n");
366 epdata
->status
= -ENODEV
;
369 return epdata
->status
;
375 /* handle a synchronous OUT bulk/intr/iso transfer */
377 ep_read (struct file
*fd
, char __user
*buf
, size_t len
, loff_t
*ptr
)
379 struct ep_data
*data
= fd
->private_data
;
383 if ((value
= get_ready_ep (fd
->f_flags
, data
)) < 0)
386 /* halt any endpoint by doing a "wrong direction" i/o call */
387 if (data
->desc
.bEndpointAddress
& USB_DIR_IN
) {
388 if ((data
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
389 == USB_ENDPOINT_XFER_ISOC
)
391 DBG (data
->dev
, "%s halt\n", data
->name
);
392 spin_lock_irq (&data
->dev
->lock
);
393 if (likely (data
->ep
!= NULL
))
394 usb_ep_set_halt (data
->ep
);
395 spin_unlock_irq (&data
->dev
->lock
);
400 /* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */
403 kbuf
= kmalloc (len
, GFP_KERNEL
);
404 if (unlikely (!kbuf
))
407 value
= ep_io (data
, kbuf
, len
);
408 VDEBUG (data
->dev
, "%s read %zu OUT, status %d\n",
409 data
->name
, len
, (int) value
);
410 if (value
>= 0 && copy_to_user (buf
, kbuf
, value
))
419 /* handle a synchronous IN bulk/intr/iso transfer */
421 ep_write (struct file
*fd
, const char __user
*buf
, size_t len
, loff_t
*ptr
)
423 struct ep_data
*data
= fd
->private_data
;
427 if ((value
= get_ready_ep (fd
->f_flags
, data
)) < 0)
430 /* halt any endpoint by doing a "wrong direction" i/o call */
431 if (!(data
->desc
.bEndpointAddress
& USB_DIR_IN
)) {
432 if ((data
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
)
433 == USB_ENDPOINT_XFER_ISOC
)
435 DBG (data
->dev
, "%s halt\n", data
->name
);
436 spin_lock_irq (&data
->dev
->lock
);
437 if (likely (data
->ep
!= NULL
))
438 usb_ep_set_halt (data
->ep
);
439 spin_unlock_irq (&data
->dev
->lock
);
444 /* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */
447 kbuf
= kmalloc (len
, GFP_KERNEL
);
450 if (copy_from_user (kbuf
, buf
, len
)) {
455 value
= ep_io (data
, kbuf
, len
);
456 VDEBUG (data
->dev
, "%s write %zu IN, status %d\n",
457 data
->name
, len
, (int) value
);
465 ep_release (struct inode
*inode
, struct file
*fd
)
467 struct ep_data
*data
= fd
->private_data
;
470 if ((value
= down_interruptible(&data
->lock
)) < 0)
473 /* clean up if this can be reopened */
474 if (data
->state
!= STATE_EP_UNBOUND
) {
475 data
->state
= STATE_EP_DISABLED
;
476 data
->desc
.bDescriptorType
= 0;
477 data
->hs_desc
.bDescriptorType
= 0;
478 usb_ep_disable(data
->ep
);
485 static long ep_ioctl(struct file
*fd
, unsigned code
, unsigned long value
)
487 struct ep_data
*data
= fd
->private_data
;
490 if ((status
= get_ready_ep (fd
->f_flags
, data
)) < 0)
493 spin_lock_irq (&data
->dev
->lock
);
494 if (likely (data
->ep
!= NULL
)) {
496 case GADGETFS_FIFO_STATUS
:
497 status
= usb_ep_fifo_status (data
->ep
);
499 case GADGETFS_FIFO_FLUSH
:
500 usb_ep_fifo_flush (data
->ep
);
502 case GADGETFS_CLEAR_HALT
:
503 status
= usb_ep_clear_halt (data
->ep
);
510 spin_unlock_irq (&data
->dev
->lock
);
515 /*----------------------------------------------------------------------*/
517 /* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
520 struct usb_request
*req
;
521 struct ep_data
*epdata
;
523 const struct iovec
*iv
;
524 unsigned long nr_segs
;
528 static int ep_aio_cancel(struct kiocb
*iocb
, struct io_event
*e
)
530 struct kiocb_priv
*priv
= iocb
->private;
531 struct ep_data
*epdata
;
535 epdata
= priv
->epdata
;
536 // spin_lock(&epdata->dev->lock);
537 kiocbSetCancelled(iocb
);
538 if (likely(epdata
&& epdata
->ep
&& priv
->req
))
539 value
= usb_ep_dequeue (epdata
->ep
, priv
->req
);
542 // spin_unlock(&epdata->dev->lock);
549 static ssize_t
ep_aio_read_retry(struct kiocb
*iocb
)
551 struct kiocb_priv
*priv
= iocb
->private;
556 /* we "retry" to get the right mm context for this: */
558 /* copy stuff into user buffers */
559 total
= priv
->actual
;
562 for (i
=0; i
< priv
->nr_segs
; i
++) {
563 ssize_t
this = min((ssize_t
)(priv
->iv
[i
].iov_len
), total
);
565 if (copy_to_user(priv
->iv
[i
].iov_base
, to_copy
, this)) {
582 static void ep_aio_complete(struct usb_ep
*ep
, struct usb_request
*req
)
584 struct kiocb
*iocb
= req
->context
;
585 struct kiocb_priv
*priv
= iocb
->private;
586 struct ep_data
*epdata
= priv
->epdata
;
588 /* lock against disconnect (and ideally, cancel) */
589 spin_lock(&epdata
->dev
->lock
);
593 /* if this was a write or a read returning no data then we
594 * don't need to copy anything to userspace, so we can
595 * complete the aio request immediately.
597 if (priv
->iv
== NULL
|| unlikely(req
->actual
== 0)) {
600 iocb
->private = NULL
;
601 /* aio_complete() reports bytes-transferred _and_ faults */
602 aio_complete(iocb
, req
->actual
? req
->actual
: req
->status
,
605 /* retry() won't report both; so we hide some faults */
606 if (unlikely(0 != req
->status
))
607 DBG(epdata
->dev
, "%s fault %d len %d\n",
608 ep
->name
, req
->status
, req
->actual
);
610 priv
->buf
= req
->buf
;
611 priv
->actual
= req
->actual
;
614 spin_unlock(&epdata
->dev
->lock
);
616 usb_ep_free_request(ep
, req
);
625 struct ep_data
*epdata
,
626 const struct iovec
*iv
,
627 unsigned long nr_segs
630 struct kiocb_priv
*priv
;
631 struct usb_request
*req
;
634 priv
= kmalloc(sizeof *priv
, GFP_KERNEL
);
641 iocb
->private = priv
;
643 priv
->nr_segs
= nr_segs
;
645 value
= get_ready_ep(iocb
->ki_filp
->f_flags
, epdata
);
646 if (unlikely(value
< 0)) {
651 iocb
->ki_cancel
= ep_aio_cancel
;
653 priv
->epdata
= epdata
;
656 /* each kiocb is coupled to one usb_request, but we can't
657 * allocate or submit those if the host disconnected.
659 spin_lock_irq(&epdata
->dev
->lock
);
660 if (likely(epdata
->ep
)) {
661 req
= usb_ep_alloc_request(epdata
->ep
, GFP_ATOMIC
);
666 req
->complete
= ep_aio_complete
;
668 value
= usb_ep_queue(epdata
->ep
, req
, GFP_ATOMIC
);
669 if (unlikely(0 != value
))
670 usb_ep_free_request(epdata
->ep
, req
);
675 spin_unlock_irq(&epdata
->dev
->lock
);
679 if (unlikely(value
)) {
683 value
= (iv
? -EIOCBRETRY
: -EIOCBQUEUED
);
688 ep_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
689 unsigned long nr_segs
, loff_t o
)
691 struct ep_data
*epdata
= iocb
->ki_filp
->private_data
;
694 if (unlikely(epdata
->desc
.bEndpointAddress
& USB_DIR_IN
))
697 buf
= kmalloc(iocb
->ki_left
, GFP_KERNEL
);
701 iocb
->ki_retry
= ep_aio_read_retry
;
702 return ep_aio_rwtail(iocb
, buf
, iocb
->ki_left
, epdata
, iov
, nr_segs
);
706 ep_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
707 unsigned long nr_segs
, loff_t o
)
709 struct ep_data
*epdata
= iocb
->ki_filp
->private_data
;
714 if (unlikely(!(epdata
->desc
.bEndpointAddress
& USB_DIR_IN
)))
717 buf
= kmalloc(iocb
->ki_left
, GFP_KERNEL
);
721 for (i
=0; i
< nr_segs
; i
++) {
722 if (unlikely(copy_from_user(&buf
[len
], iov
[i
].iov_base
,
723 iov
[i
].iov_len
) != 0)) {
727 len
+= iov
[i
].iov_len
;
729 return ep_aio_rwtail(iocb
, buf
, len
, epdata
, NULL
, 0);
732 /*----------------------------------------------------------------------*/
734 /* used after endpoint configuration */
735 static const struct file_operations ep_io_operations
= {
736 .owner
= THIS_MODULE
,
741 .unlocked_ioctl
= ep_ioctl
,
742 .release
= ep_release
,
744 .aio_read
= ep_aio_read
,
745 .aio_write
= ep_aio_write
,
748 /* ENDPOINT INITIALIZATION
750 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
751 * status = write (fd, descriptors, sizeof descriptors)
753 * That write establishes the endpoint configuration, configuring
754 * the controller to process bulk, interrupt, or isochronous transfers
755 * at the right maxpacket size, and so on.
757 * The descriptors are message type 1, identified by a host order u32
758 * at the beginning of what's written. Descriptor order is: full/low
759 * speed descriptor, then optional high speed descriptor.
762 ep_config (struct file
*fd
, const char __user
*buf
, size_t len
, loff_t
*ptr
)
764 struct ep_data
*data
= fd
->private_data
;
767 int value
, length
= len
;
769 if ((value
= down_interruptible (&data
->lock
)) < 0)
772 if (data
->state
!= STATE_EP_READY
) {
778 if (len
< USB_DT_ENDPOINT_SIZE
+ 4)
781 /* we might need to change message format someday */
782 if (copy_from_user (&tag
, buf
, 4)) {
786 DBG(data
->dev
, "config %s, bad tag %d\n", data
->name
, tag
);
792 /* NOTE: audio endpoint extensions not accepted here;
793 * just don't include the extra bytes.
796 /* full/low speed descriptor, then high speed */
797 if (copy_from_user (&data
->desc
, buf
, USB_DT_ENDPOINT_SIZE
)) {
800 if (data
->desc
.bLength
!= USB_DT_ENDPOINT_SIZE
801 || data
->desc
.bDescriptorType
!= USB_DT_ENDPOINT
)
803 if (len
!= USB_DT_ENDPOINT_SIZE
) {
804 if (len
!= 2 * USB_DT_ENDPOINT_SIZE
)
806 if (copy_from_user (&data
->hs_desc
, buf
+ USB_DT_ENDPOINT_SIZE
,
807 USB_DT_ENDPOINT_SIZE
)) {
810 if (data
->hs_desc
.bLength
!= USB_DT_ENDPOINT_SIZE
811 || data
->hs_desc
.bDescriptorType
812 != USB_DT_ENDPOINT
) {
813 DBG(data
->dev
, "config %s, bad hs length or type\n",
819 spin_lock_irq (&data
->dev
->lock
);
820 if (data
->dev
->state
== STATE_DEV_UNBOUND
) {
823 } else if ((ep
= data
->ep
) == NULL
) {
827 switch (data
->dev
->gadget
->speed
) {
830 value
= usb_ep_enable (ep
, &data
->desc
);
832 data
->state
= STATE_EP_ENABLED
;
834 #ifdef CONFIG_USB_GADGET_DUALSPEED
836 /* fails if caller didn't provide that descriptor... */
837 value
= usb_ep_enable (ep
, &data
->hs_desc
);
839 data
->state
= STATE_EP_ENABLED
;
843 DBG(data
->dev
, "unconnected, %s init abandoned\n",
848 fd
->f_op
= &ep_io_operations
;
852 spin_unlock_irq (&data
->dev
->lock
);
855 data
->desc
.bDescriptorType
= 0;
856 data
->hs_desc
.bDescriptorType
= 0;
869 ep_open (struct inode
*inode
, struct file
*fd
)
871 struct ep_data
*data
= inode
->i_private
;
874 if (down_interruptible (&data
->lock
) != 0)
876 spin_lock_irq (&data
->dev
->lock
);
877 if (data
->dev
->state
== STATE_DEV_UNBOUND
)
879 else if (data
->state
== STATE_EP_DISABLED
) {
881 data
->state
= STATE_EP_READY
;
883 fd
->private_data
= data
;
884 VDEBUG (data
->dev
, "%s ready\n", data
->name
);
886 DBG (data
->dev
, "%s state %d\n",
887 data
->name
, data
->state
);
888 spin_unlock_irq (&data
->dev
->lock
);
893 /* used before endpoint configuration */
894 static const struct file_operations ep_config_operations
= {
895 .owner
= THIS_MODULE
,
900 .release
= ep_release
,
903 /*----------------------------------------------------------------------*/
905 /* EP0 IMPLEMENTATION can be partly in userspace.
907 * Drivers that use this facility receive various events, including
908 * control requests the kernel doesn't handle. Drivers that don't
909 * use this facility may be too simple-minded for real applications.
912 static inline void ep0_readable (struct dev_data
*dev
)
914 wake_up (&dev
->wait
);
915 kill_fasync (&dev
->fasync
, SIGIO
, POLL_IN
);
918 static void clean_req (struct usb_ep
*ep
, struct usb_request
*req
)
920 struct dev_data
*dev
= ep
->driver_data
;
922 if (req
->buf
!= dev
->rbuf
) {
924 req
->buf
= dev
->rbuf
;
925 req
->dma
= DMA_ADDR_INVALID
;
927 req
->complete
= epio_complete
;
928 dev
->setup_out_ready
= 0;
931 static void ep0_complete (struct usb_ep
*ep
, struct usb_request
*req
)
933 struct dev_data
*dev
= ep
->driver_data
;
937 /* for control OUT, data must still get to userspace */
938 spin_lock_irqsave(&dev
->lock
, flags
);
939 if (!dev
->setup_in
) {
940 dev
->setup_out_error
= (req
->status
!= 0);
941 if (!dev
->setup_out_error
)
943 dev
->setup_out_ready
= 1;
947 /* clean up as appropriate */
948 if (free
&& req
->buf
!= &dev
->rbuf
)
950 req
->complete
= epio_complete
;
951 spin_unlock_irqrestore(&dev
->lock
, flags
);
954 static int setup_req (struct usb_ep
*ep
, struct usb_request
*req
, u16 len
)
956 struct dev_data
*dev
= ep
->driver_data
;
958 if (dev
->setup_out_ready
) {
959 DBG (dev
, "ep0 request busy!\n");
962 if (len
> sizeof (dev
->rbuf
))
963 req
->buf
= kmalloc(len
, GFP_ATOMIC
);
964 if (req
->buf
== NULL
) {
965 req
->buf
= dev
->rbuf
;
968 req
->complete
= ep0_complete
;
975 ep0_read (struct file
*fd
, char __user
*buf
, size_t len
, loff_t
*ptr
)
977 struct dev_data
*dev
= fd
->private_data
;
979 enum ep0_state state
;
981 spin_lock_irq (&dev
->lock
);
983 /* report fd mode change before acting on it */
984 if (dev
->setup_abort
) {
985 dev
->setup_abort
= 0;
990 /* control DATA stage */
991 if ((state
= dev
->state
) == STATE_DEV_SETUP
) {
993 if (dev
->setup_in
) { /* stall IN */
994 VDEBUG(dev
, "ep0in stall\n");
995 (void) usb_ep_set_halt (dev
->gadget
->ep0
);
997 dev
->state
= STATE_DEV_CONNECTED
;
999 } else if (len
== 0) { /* ack SET_CONFIGURATION etc */
1000 struct usb_ep
*ep
= dev
->gadget
->ep0
;
1001 struct usb_request
*req
= dev
->req
;
1003 if ((retval
= setup_req (ep
, req
, 0)) == 0)
1004 retval
= usb_ep_queue (ep
, req
, GFP_ATOMIC
);
1005 dev
->state
= STATE_DEV_CONNECTED
;
1007 /* assume that was SET_CONFIGURATION */
1008 if (dev
->current_config
) {
1011 if (gadget_is_dualspeed(dev
->gadget
)
1012 && (dev
->gadget
->speed
1014 power
= dev
->hs_config
->bMaxPower
;
1016 power
= dev
->config
->bMaxPower
;
1017 usb_gadget_vbus_draw(dev
->gadget
, 2 * power
);
1020 } else { /* collect OUT data */
1021 if ((fd
->f_flags
& O_NONBLOCK
) != 0
1022 && !dev
->setup_out_ready
) {
1026 spin_unlock_irq (&dev
->lock
);
1027 retval
= wait_event_interruptible (dev
->wait
,
1028 dev
->setup_out_ready
!= 0);
1030 /* FIXME state could change from under us */
1031 spin_lock_irq (&dev
->lock
);
1035 if (dev
->state
!= STATE_DEV_SETUP
) {
1036 retval
= -ECANCELED
;
1039 dev
->state
= STATE_DEV_CONNECTED
;
1041 if (dev
->setup_out_error
)
1044 len
= min (len
, (size_t)dev
->req
->actual
);
1045 // FIXME don't call this with the spinlock held ...
1046 if (copy_to_user (buf
, dev
->req
->buf
, len
))
1048 clean_req (dev
->gadget
->ep0
, dev
->req
);
1049 /* NOTE userspace can't yet choose to stall */
1055 /* else normal: return event data */
1056 if (len
< sizeof dev
->event
[0]) {
1060 len
-= len
% sizeof (struct usb_gadgetfs_event
);
1061 dev
->usermode_setup
= 1;
1064 /* return queued events right away */
1065 if (dev
->ev_next
!= 0) {
1068 n
= len
/ sizeof (struct usb_gadgetfs_event
);
1069 if (dev
->ev_next
< n
)
1072 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
1073 for (i
= 0; i
< n
; i
++) {
1074 if (dev
->event
[i
].type
== GADGETFS_SETUP
) {
1075 dev
->state
= STATE_DEV_SETUP
;
1080 spin_unlock_irq (&dev
->lock
);
1081 len
= n
* sizeof (struct usb_gadgetfs_event
);
1082 if (copy_to_user (buf
, &dev
->event
, len
))
1087 /* NOTE this doesn't guard against broken drivers;
1088 * concurrent ep0 readers may lose events.
1090 spin_lock_irq (&dev
->lock
);
1091 if (dev
->ev_next
> n
) {
1092 memmove(&dev
->event
[0], &dev
->event
[n
],
1093 sizeof (struct usb_gadgetfs_event
)
1094 * (dev
->ev_next
- n
));
1097 spin_unlock_irq (&dev
->lock
);
1101 if (fd
->f_flags
& O_NONBLOCK
) {
1108 DBG (dev
, "fail %s, state %d\n", __func__
, state
);
1111 case STATE_DEV_UNCONNECTED
:
1112 case STATE_DEV_CONNECTED
:
1113 spin_unlock_irq (&dev
->lock
);
1114 DBG (dev
, "%s wait\n", __func__
);
1116 /* wait for events */
1117 retval
= wait_event_interruptible (dev
->wait
,
1121 spin_lock_irq (&dev
->lock
);
1126 spin_unlock_irq (&dev
->lock
);
1130 static struct usb_gadgetfs_event
*
1131 next_event (struct dev_data
*dev
, enum usb_gadgetfs_event_type type
)
1133 struct usb_gadgetfs_event
*event
;
1137 /* these events purge the queue */
1138 case GADGETFS_DISCONNECT
:
1139 if (dev
->state
== STATE_DEV_SETUP
)
1140 dev
->setup_abort
= 1;
1142 case GADGETFS_CONNECT
:
1145 case GADGETFS_SETUP
: /* previous request timed out */
1146 case GADGETFS_SUSPEND
: /* same effect */
1147 /* these events can't be repeated */
1148 for (i
= 0; i
!= dev
->ev_next
; i
++) {
1149 if (dev
->event
[i
].type
!= type
)
1151 DBG(dev
, "discard old event[%d] %d\n", i
, type
);
1153 if (i
== dev
->ev_next
)
1155 /* indices start at zero, for simplicity */
1156 memmove (&dev
->event
[i
], &dev
->event
[i
+ 1],
1157 sizeof (struct usb_gadgetfs_event
)
1158 * (dev
->ev_next
- i
));
1164 VDEBUG(dev
, "event[%d] = %d\n", dev
->ev_next
, type
);
1165 event
= &dev
->event
[dev
->ev_next
++];
1166 BUG_ON (dev
->ev_next
> N_EVENT
);
1167 memset (event
, 0, sizeof *event
);
1173 ep0_write (struct file
*fd
, const char __user
*buf
, size_t len
, loff_t
*ptr
)
1175 struct dev_data
*dev
= fd
->private_data
;
1176 ssize_t retval
= -ESRCH
;
1178 spin_lock_irq (&dev
->lock
);
1180 /* report fd mode change before acting on it */
1181 if (dev
->setup_abort
) {
1182 dev
->setup_abort
= 0;
1185 /* data and/or status stage for control request */
1186 } else if (dev
->state
== STATE_DEV_SETUP
) {
1188 /* IN DATA+STATUS caller makes len <= wLength */
1189 if (dev
->setup_in
) {
1190 retval
= setup_req (dev
->gadget
->ep0
, dev
->req
, len
);
1192 dev
->state
= STATE_DEV_CONNECTED
;
1193 spin_unlock_irq (&dev
->lock
);
1194 if (copy_from_user (dev
->req
->buf
, buf
, len
))
1197 if (len
< dev
->setup_wLength
)
1199 retval
= usb_ep_queue (
1200 dev
->gadget
->ep0
, dev
->req
,
1204 spin_lock_irq (&dev
->lock
);
1205 clean_req (dev
->gadget
->ep0
, dev
->req
);
1206 spin_unlock_irq (&dev
->lock
);
1213 /* can stall some OUT transfers */
1214 } else if (dev
->setup_can_stall
) {
1215 VDEBUG(dev
, "ep0out stall\n");
1216 (void) usb_ep_set_halt (dev
->gadget
->ep0
);
1218 dev
->state
= STATE_DEV_CONNECTED
;
1220 DBG(dev
, "bogus ep0out stall!\n");
1223 DBG (dev
, "fail %s, state %d\n", __func__
, dev
->state
);
1225 spin_unlock_irq (&dev
->lock
);
1230 ep0_fasync (int f
, struct file
*fd
, int on
)
1232 struct dev_data
*dev
= fd
->private_data
;
1233 // caller must F_SETOWN before signal delivery happens
1234 VDEBUG (dev
, "%s %s\n", __func__
, on
? "on" : "off");
1235 return fasync_helper (f
, fd
, on
, &dev
->fasync
);
1238 static struct usb_gadget_driver gadgetfs_driver
;
1241 dev_release (struct inode
*inode
, struct file
*fd
)
1243 struct dev_data
*dev
= fd
->private_data
;
1245 /* closing ep0 === shutdown all */
1247 usb_gadget_unregister_driver (&gadgetfs_driver
);
1249 /* at this point "good" hardware has disconnected the
1250 * device from USB; the host won't see it any more.
1251 * alternatively, all host requests will time out.
1254 fasync_helper (-1, fd
, 0, &dev
->fasync
);
1259 /* other endpoints were all decoupled from this device */
1260 spin_lock_irq(&dev
->lock
);
1261 dev
->state
= STATE_DEV_DISABLED
;
1262 spin_unlock_irq(&dev
->lock
);
1267 ep0_poll (struct file
*fd
, poll_table
*wait
)
1269 struct dev_data
*dev
= fd
->private_data
;
1272 poll_wait(fd
, &dev
->wait
, wait
);
1274 spin_lock_irq (&dev
->lock
);
1276 /* report fd mode change before acting on it */
1277 if (dev
->setup_abort
) {
1278 dev
->setup_abort
= 0;
1283 if (dev
->state
== STATE_DEV_SETUP
) {
1284 if (dev
->setup_in
|| dev
->setup_can_stall
)
1287 if (dev
->ev_next
!= 0)
1291 spin_unlock_irq(&dev
->lock
);
1295 static long dev_ioctl (struct file
*fd
, unsigned code
, unsigned long value
)
1297 struct dev_data
*dev
= fd
->private_data
;
1298 struct usb_gadget
*gadget
= dev
->gadget
;
1301 if (gadget
->ops
->ioctl
) {
1303 ret
= gadget
->ops
->ioctl (gadget
, code
, value
);
1309 /* used after device configuration */
1310 static const struct file_operations ep0_io_operations
= {
1311 .owner
= THIS_MODULE
,
1312 .llseek
= no_llseek
,
1316 .fasync
= ep0_fasync
,
1318 .unlocked_ioctl
= dev_ioctl
,
1319 .release
= dev_release
,
1322 /*----------------------------------------------------------------------*/
1324 /* The in-kernel gadget driver handles most ep0 issues, in particular
1325 * enumerating the single configuration (as provided from user space).
1327 * Unrecognized ep0 requests may be handled in user space.
1330 #ifdef CONFIG_USB_GADGET_DUALSPEED
1331 static void make_qualifier (struct dev_data
*dev
)
1333 struct usb_qualifier_descriptor qual
;
1334 struct usb_device_descriptor
*desc
;
1336 qual
.bLength
= sizeof qual
;
1337 qual
.bDescriptorType
= USB_DT_DEVICE_QUALIFIER
;
1338 qual
.bcdUSB
= __constant_cpu_to_le16 (0x0200);
1341 qual
.bDeviceClass
= desc
->bDeviceClass
;
1342 qual
.bDeviceSubClass
= desc
->bDeviceSubClass
;
1343 qual
.bDeviceProtocol
= desc
->bDeviceProtocol
;
1345 /* assumes ep0 uses the same value for both speeds ... */
1346 qual
.bMaxPacketSize0
= desc
->bMaxPacketSize0
;
1348 qual
.bNumConfigurations
= 1;
1351 memcpy (dev
->rbuf
, &qual
, sizeof qual
);
1356 config_buf (struct dev_data
*dev
, u8 type
, unsigned index
)
1361 /* only one configuration */
1365 if (gadget_is_dualspeed(dev
->gadget
)) {
1366 hs
= (dev
->gadget
->speed
== USB_SPEED_HIGH
);
1367 if (type
== USB_DT_OTHER_SPEED_CONFIG
)
1371 dev
->req
->buf
= dev
->hs_config
;
1372 len
= le16_to_cpu(dev
->hs_config
->wTotalLength
);
1374 dev
->req
->buf
= dev
->config
;
1375 len
= le16_to_cpu(dev
->config
->wTotalLength
);
1377 ((u8
*)dev
->req
->buf
) [1] = type
;
1382 gadgetfs_setup (struct usb_gadget
*gadget
, const struct usb_ctrlrequest
*ctrl
)
1384 struct dev_data
*dev
= get_gadget_data (gadget
);
1385 struct usb_request
*req
= dev
->req
;
1386 int value
= -EOPNOTSUPP
;
1387 struct usb_gadgetfs_event
*event
;
1388 u16 w_value
= le16_to_cpu(ctrl
->wValue
);
1389 u16 w_length
= le16_to_cpu(ctrl
->wLength
);
1391 spin_lock (&dev
->lock
);
1392 dev
->setup_abort
= 0;
1393 if (dev
->state
== STATE_DEV_UNCONNECTED
) {
1394 if (gadget_is_dualspeed(gadget
)
1395 && gadget
->speed
== USB_SPEED_HIGH
1396 && dev
->hs_config
== NULL
) {
1397 spin_unlock(&dev
->lock
);
1398 ERROR (dev
, "no high speed config??\n");
1402 dev
->state
= STATE_DEV_CONNECTED
;
1403 dev
->dev
->bMaxPacketSize0
= gadget
->ep0
->maxpacket
;
1405 INFO (dev
, "connected\n");
1406 event
= next_event (dev
, GADGETFS_CONNECT
);
1407 event
->u
.speed
= gadget
->speed
;
1410 /* host may have given up waiting for response. we can miss control
1411 * requests handled lower down (device/endpoint status and features);
1412 * then ep0_{read,write} will report the wrong status. controller
1413 * driver will have aborted pending i/o.
1415 } else if (dev
->state
== STATE_DEV_SETUP
)
1416 dev
->setup_abort
= 1;
1418 req
->buf
= dev
->rbuf
;
1419 req
->dma
= DMA_ADDR_INVALID
;
1420 req
->context
= NULL
;
1421 value
= -EOPNOTSUPP
;
1422 switch (ctrl
->bRequest
) {
1424 case USB_REQ_GET_DESCRIPTOR
:
1425 if (ctrl
->bRequestType
!= USB_DIR_IN
)
1427 switch (w_value
>> 8) {
1430 value
= min (w_length
, (u16
) sizeof *dev
->dev
);
1431 req
->buf
= dev
->dev
;
1433 #ifdef CONFIG_USB_GADGET_DUALSPEED
1434 case USB_DT_DEVICE_QUALIFIER
:
1435 if (!dev
->hs_config
)
1437 value
= min (w_length
, (u16
)
1438 sizeof (struct usb_qualifier_descriptor
));
1439 make_qualifier (dev
);
1441 case USB_DT_OTHER_SPEED_CONFIG
:
1445 value
= config_buf (dev
,
1449 value
= min (w_length
, (u16
) value
);
1454 default: // all others are errors
1459 /* currently one config, two speeds */
1460 case USB_REQ_SET_CONFIGURATION
:
1461 if (ctrl
->bRequestType
!= 0)
1463 if (0 == (u8
) w_value
) {
1465 dev
->current_config
= 0;
1466 usb_gadget_vbus_draw(gadget
, 8 /* mA */ );
1467 // user mode expected to disable endpoints
1471 if (gadget_is_dualspeed(gadget
)
1472 && gadget
->speed
== USB_SPEED_HIGH
) {
1473 config
= dev
->hs_config
->bConfigurationValue
;
1474 power
= dev
->hs_config
->bMaxPower
;
1476 config
= dev
->config
->bConfigurationValue
;
1477 power
= dev
->config
->bMaxPower
;
1480 if (config
== (u8
) w_value
) {
1482 dev
->current_config
= config
;
1483 usb_gadget_vbus_draw(gadget
, 2 * power
);
1487 /* report SET_CONFIGURATION like any other control request,
1488 * except that usermode may not stall this. the next
1489 * request mustn't be allowed start until this finishes:
1490 * endpoints and threads set up, etc.
1492 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1493 * has bad/racey automagic that prevents synchronizing here.
1494 * even kernel mode drivers often miss them.
1497 INFO (dev
, "configuration #%d\n", dev
->current_config
);
1498 if (dev
->usermode_setup
) {
1499 dev
->setup_can_stall
= 0;
1505 #ifndef CONFIG_USB_GADGET_PXA25X
1506 /* PXA automagically handles this request too */
1507 case USB_REQ_GET_CONFIGURATION
:
1508 if (ctrl
->bRequestType
!= 0x80)
1510 *(u8
*)req
->buf
= dev
->current_config
;
1511 value
= min (w_length
, (u16
) 1);
1517 VDEBUG (dev
, "%s req%02x.%02x v%04x i%04x l%d\n",
1518 dev
->usermode_setup
? "delegate" : "fail",
1519 ctrl
->bRequestType
, ctrl
->bRequest
,
1520 w_value
, le16_to_cpu(ctrl
->wIndex
), w_length
);
1522 /* if there's an ep0 reader, don't stall */
1523 if (dev
->usermode_setup
) {
1524 dev
->setup_can_stall
= 1;
1526 dev
->setup_in
= (ctrl
->bRequestType
& USB_DIR_IN
)
1528 dev
->setup_wLength
= w_length
;
1529 dev
->setup_out_ready
= 0;
1530 dev
->setup_out_error
= 0;
1533 /* read DATA stage for OUT right away */
1534 if (unlikely (!dev
->setup_in
&& w_length
)) {
1535 value
= setup_req (gadget
->ep0
, dev
->req
,
1539 value
= usb_ep_queue (gadget
->ep0
, dev
->req
,
1542 clean_req (gadget
->ep0
, dev
->req
);
1546 /* we can't currently stall these */
1547 dev
->setup_can_stall
= 0;
1550 /* state changes when reader collects event */
1551 event
= next_event (dev
, GADGETFS_SETUP
);
1552 event
->u
.setup
= *ctrl
;
1554 spin_unlock (&dev
->lock
);
1559 /* proceed with data transfer and status phases? */
1560 if (value
>= 0 && dev
->state
!= STATE_DEV_SETUP
) {
1561 req
->length
= value
;
1562 req
->zero
= value
< w_length
;
1563 value
= usb_ep_queue (gadget
->ep0
, req
, GFP_ATOMIC
);
1565 DBG (dev
, "ep_queue --> %d\n", value
);
1570 /* device stalls when value < 0 */
1571 spin_unlock (&dev
->lock
);
1575 static void destroy_ep_files (struct dev_data
*dev
)
1577 struct list_head
*entry
, *tmp
;
1579 DBG (dev
, "%s %d\n", __func__
, dev
->state
);
1581 /* dev->state must prevent interference */
1583 spin_lock_irq (&dev
->lock
);
1584 list_for_each_safe (entry
, tmp
, &dev
->epfiles
) {
1586 struct inode
*parent
;
1587 struct dentry
*dentry
;
1589 /* break link to FS */
1590 ep
= list_entry (entry
, struct ep_data
, epfiles
);
1591 list_del_init (&ep
->epfiles
);
1592 dentry
= ep
->dentry
;
1594 parent
= dentry
->d_parent
->d_inode
;
1596 /* break link to controller */
1597 if (ep
->state
== STATE_EP_ENABLED
)
1598 (void) usb_ep_disable (ep
->ep
);
1599 ep
->state
= STATE_EP_UNBOUND
;
1600 usb_ep_free_request (ep
->ep
, ep
->req
);
1602 wake_up (&ep
->wait
);
1605 spin_unlock_irq (&dev
->lock
);
1607 /* break link to dcache */
1608 mutex_lock (&parent
->i_mutex
);
1611 mutex_unlock (&parent
->i_mutex
);
1613 /* fds may still be open */
1616 spin_unlock_irq (&dev
->lock
);
1620 static struct inode
*
1621 gadgetfs_create_file (struct super_block
*sb
, char const *name
,
1622 void *data
, const struct file_operations
*fops
,
1623 struct dentry
**dentry_p
);
1625 static int activate_ep_files (struct dev_data
*dev
)
1628 struct ep_data
*data
;
1630 gadget_for_each_ep (ep
, dev
->gadget
) {
1632 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
1635 data
->state
= STATE_EP_DISABLED
;
1636 init_MUTEX (&data
->lock
);
1637 init_waitqueue_head (&data
->wait
);
1639 strncpy (data
->name
, ep
->name
, sizeof (data
->name
) - 1);
1640 atomic_set (&data
->count
, 1);
1645 ep
->driver_data
= data
;
1647 data
->req
= usb_ep_alloc_request (ep
, GFP_KERNEL
);
1651 data
->inode
= gadgetfs_create_file (dev
->sb
, data
->name
,
1652 data
, &ep_config_operations
,
1656 list_add_tail (&data
->epfiles
, &dev
->epfiles
);
1661 usb_ep_free_request (ep
, data
->req
);
1666 DBG (dev
, "%s enomem\n", __func__
);
1667 destroy_ep_files (dev
);
1672 gadgetfs_unbind (struct usb_gadget
*gadget
)
1674 struct dev_data
*dev
= get_gadget_data (gadget
);
1676 DBG (dev
, "%s\n", __func__
);
1678 spin_lock_irq (&dev
->lock
);
1679 dev
->state
= STATE_DEV_UNBOUND
;
1680 spin_unlock_irq (&dev
->lock
);
1682 destroy_ep_files (dev
);
1683 gadget
->ep0
->driver_data
= NULL
;
1684 set_gadget_data (gadget
, NULL
);
1686 /* we've already been disconnected ... no i/o is active */
1688 usb_ep_free_request (gadget
->ep0
, dev
->req
);
1689 DBG (dev
, "%s done\n", __func__
);
1693 static struct dev_data
*the_device
;
1696 gadgetfs_bind (struct usb_gadget
*gadget
)
1698 struct dev_data
*dev
= the_device
;
1702 if (0 != strcmp (CHIP
, gadget
->name
)) {
1703 pr_err("%s expected %s controller not %s\n",
1704 shortname
, CHIP
, gadget
->name
);
1708 set_gadget_data (gadget
, dev
);
1709 dev
->gadget
= gadget
;
1710 gadget
->ep0
->driver_data
= dev
;
1711 dev
->dev
->bMaxPacketSize0
= gadget
->ep0
->maxpacket
;
1713 /* preallocate control response and buffer */
1714 dev
->req
= usb_ep_alloc_request (gadget
->ep0
, GFP_KERNEL
);
1717 dev
->req
->context
= NULL
;
1718 dev
->req
->complete
= epio_complete
;
1720 if (activate_ep_files (dev
) < 0)
1723 INFO (dev
, "bound to %s driver\n", gadget
->name
);
1724 spin_lock_irq(&dev
->lock
);
1725 dev
->state
= STATE_DEV_UNCONNECTED
;
1726 spin_unlock_irq(&dev
->lock
);
1731 gadgetfs_unbind (gadget
);
1736 gadgetfs_disconnect (struct usb_gadget
*gadget
)
1738 struct dev_data
*dev
= get_gadget_data (gadget
);
1740 spin_lock (&dev
->lock
);
1741 if (dev
->state
== STATE_DEV_UNCONNECTED
)
1743 dev
->state
= STATE_DEV_UNCONNECTED
;
1745 INFO (dev
, "disconnected\n");
1746 next_event (dev
, GADGETFS_DISCONNECT
);
1749 spin_unlock (&dev
->lock
);
1753 gadgetfs_suspend (struct usb_gadget
*gadget
)
1755 struct dev_data
*dev
= get_gadget_data (gadget
);
1757 INFO (dev
, "suspended from state %d\n", dev
->state
);
1758 spin_lock (&dev
->lock
);
1759 switch (dev
->state
) {
1760 case STATE_DEV_SETUP
: // VERY odd... host died??
1761 case STATE_DEV_CONNECTED
:
1762 case STATE_DEV_UNCONNECTED
:
1763 next_event (dev
, GADGETFS_SUSPEND
);
1769 spin_unlock (&dev
->lock
);
1772 static struct usb_gadget_driver gadgetfs_driver
= {
1773 #ifdef CONFIG_USB_GADGET_DUALSPEED
1774 .speed
= USB_SPEED_HIGH
,
1776 .speed
= USB_SPEED_FULL
,
1778 .function
= (char *) driver_desc
,
1779 .bind
= gadgetfs_bind
,
1780 .unbind
= gadgetfs_unbind
,
1781 .setup
= gadgetfs_setup
,
1782 .disconnect
= gadgetfs_disconnect
,
1783 .suspend
= gadgetfs_suspend
,
1786 .name
= (char *) shortname
,
1790 /*----------------------------------------------------------------------*/
1792 static void gadgetfs_nop(struct usb_gadget
*arg
) { }
1794 static int gadgetfs_probe (struct usb_gadget
*gadget
)
1796 CHIP
= gadget
->name
;
1800 static struct usb_gadget_driver probe_driver
= {
1801 .speed
= USB_SPEED_HIGH
,
1802 .bind
= gadgetfs_probe
,
1803 .unbind
= gadgetfs_nop
,
1804 .setup
= (void *)gadgetfs_nop
,
1805 .disconnect
= gadgetfs_nop
,
1812 /* DEVICE INITIALIZATION
1814 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1815 * status = write (fd, descriptors, sizeof descriptors)
1817 * That write establishes the device configuration, so the kernel can
1818 * bind to the controller ... guaranteeing it can handle enumeration
1819 * at all necessary speeds. Descriptor order is:
1821 * . message tag (u32, host order) ... for now, must be zero; it
1822 * would change to support features like multi-config devices
1823 * . full/low speed config ... all wTotalLength bytes (with interface,
1824 * class, altsetting, endpoint, and other descriptors)
1825 * . high speed config ... all descriptors, for high speed operation;
1826 * this one's optional except for high-speed hardware
1827 * . device descriptor
1829 * Endpoints are not yet enabled. Drivers must wait until device
1830 * configuration and interface altsetting changes create
1831 * the need to configure (or unconfigure) them.
1833 * After initialization, the device stays active for as long as that
1834 * $CHIP file is open. Events must then be read from that descriptor,
1835 * such as configuration notifications.
1838 static int is_valid_config (struct usb_config_descriptor
*config
)
1840 return config
->bDescriptorType
== USB_DT_CONFIG
1841 && config
->bLength
== USB_DT_CONFIG_SIZE
1842 && config
->bConfigurationValue
!= 0
1843 && (config
->bmAttributes
& USB_CONFIG_ATT_ONE
) != 0
1844 && (config
->bmAttributes
& USB_CONFIG_ATT_WAKEUP
) == 0;
1845 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1846 /* FIXME check lengths: walk to end */
1850 dev_config (struct file
*fd
, const char __user
*buf
, size_t len
, loff_t
*ptr
)
1852 struct dev_data
*dev
= fd
->private_data
;
1853 ssize_t value
= len
, length
= len
;
1858 if (len
< (USB_DT_CONFIG_SIZE
+ USB_DT_DEVICE_SIZE
+ 4))
1861 /* we might need to change message format someday */
1862 if (copy_from_user (&tag
, buf
, 4))
1869 kbuf
= kmalloc (length
, GFP_KERNEL
);
1872 if (copy_from_user (kbuf
, buf
, length
)) {
1877 spin_lock_irq (&dev
->lock
);
1883 /* full or low speed config */
1884 dev
->config
= (void *) kbuf
;
1885 total
= le16_to_cpu(dev
->config
->wTotalLength
);
1886 if (!is_valid_config (dev
->config
) || total
>= length
)
1891 /* optional high speed config */
1892 if (kbuf
[1] == USB_DT_CONFIG
) {
1893 dev
->hs_config
= (void *) kbuf
;
1894 total
= le16_to_cpu(dev
->hs_config
->wTotalLength
);
1895 if (!is_valid_config (dev
->hs_config
) || total
>= length
)
1901 /* could support multiple configs, using another encoding! */
1903 /* device descriptor (tweaked for paranoia) */
1904 if (length
!= USB_DT_DEVICE_SIZE
)
1906 dev
->dev
= (void *)kbuf
;
1907 if (dev
->dev
->bLength
!= USB_DT_DEVICE_SIZE
1908 || dev
->dev
->bDescriptorType
!= USB_DT_DEVICE
1909 || dev
->dev
->bNumConfigurations
!= 1)
1911 dev
->dev
->bNumConfigurations
= 1;
1912 dev
->dev
->bcdUSB
= __constant_cpu_to_le16 (0x0200);
1914 /* triggers gadgetfs_bind(); then we can enumerate. */
1915 spin_unlock_irq (&dev
->lock
);
1916 value
= usb_gadget_register_driver (&gadgetfs_driver
);
1921 /* at this point "good" hardware has for the first time
1922 * let the USB the host see us. alternatively, if users
1923 * unplug/replug that will clear all the error state.
1925 * note: everything running before here was guaranteed
1926 * to choke driver model style diagnostics. from here
1927 * on, they can work ... except in cleanup paths that
1928 * kick in after the ep0 descriptor is closed.
1930 fd
->f_op
= &ep0_io_operations
;
1936 spin_unlock_irq (&dev
->lock
);
1937 pr_debug ("%s: %s fail %Zd, %p\n", shortname
, __func__
, value
, dev
);
1944 dev_open (struct inode
*inode
, struct file
*fd
)
1946 struct dev_data
*dev
= inode
->i_private
;
1949 spin_lock_irq(&dev
->lock
);
1950 if (dev
->state
== STATE_DEV_DISABLED
) {
1952 dev
->state
= STATE_DEV_OPENED
;
1953 fd
->private_data
= dev
;
1957 spin_unlock_irq(&dev
->lock
);
1961 static const struct file_operations dev_init_operations
= {
1962 .owner
= THIS_MODULE
,
1963 .llseek
= no_llseek
,
1966 .write
= dev_config
,
1967 .fasync
= ep0_fasync
,
1968 .unlocked_ioctl
= dev_ioctl
,
1969 .release
= dev_release
,
1972 /*----------------------------------------------------------------------*/
1974 /* FILESYSTEM AND SUPERBLOCK OPERATIONS
1976 * Mounting the filesystem creates a controller file, used first for
1977 * device configuration then later for event monitoring.
1981 /* FIXME PAM etc could set this security policy without mount options
1982 * if epfiles inherited ownership and permissons from ep0 ...
1985 static unsigned default_uid
;
1986 static unsigned default_gid
;
1987 static unsigned default_perm
= S_IRUSR
| S_IWUSR
;
1989 module_param (default_uid
, uint
, 0644);
1990 module_param (default_gid
, uint
, 0644);
1991 module_param (default_perm
, uint
, 0644);
1994 static struct inode
*
1995 gadgetfs_make_inode (struct super_block
*sb
,
1996 void *data
, const struct file_operations
*fops
,
1999 struct inode
*inode
= new_inode (sb
);
2002 inode
->i_mode
= mode
;
2003 inode
->i_uid
= default_uid
;
2004 inode
->i_gid
= default_gid
;
2005 inode
->i_blocks
= 0;
2006 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
2008 inode
->i_private
= data
;
2009 inode
->i_fop
= fops
;
2014 /* creates in fs root directory, so non-renamable and non-linkable.
2015 * so inode and dentry are paired, until device reconfig.
2017 static struct inode
*
2018 gadgetfs_create_file (struct super_block
*sb
, char const *name
,
2019 void *data
, const struct file_operations
*fops
,
2020 struct dentry
**dentry_p
)
2022 struct dentry
*dentry
;
2023 struct inode
*inode
;
2025 dentry
= d_alloc_name(sb
->s_root
, name
);
2029 inode
= gadgetfs_make_inode (sb
, data
, fops
,
2030 S_IFREG
| (default_perm
& S_IRWXUGO
));
2035 d_add (dentry
, inode
);
2040 static struct super_operations gadget_fs_operations
= {
2041 .statfs
= simple_statfs
,
2042 .drop_inode
= generic_delete_inode
,
2046 gadgetfs_fill_super (struct super_block
*sb
, void *opts
, int silent
)
2048 struct inode
*inode
;
2050 struct dev_data
*dev
;
2055 /* fake probe to determine $CHIP */
2056 (void) usb_gadget_register_driver (&probe_driver
);
2061 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
2062 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
2063 sb
->s_magic
= GADGETFS_MAGIC
;
2064 sb
->s_op
= &gadget_fs_operations
;
2065 sb
->s_time_gran
= 1;
2068 inode
= gadgetfs_make_inode (sb
,
2069 NULL
, &simple_dir_operations
,
2070 S_IFDIR
| S_IRUGO
| S_IXUGO
);
2073 inode
->i_op
= &simple_dir_inode_operations
;
2074 if (!(d
= d_alloc_root (inode
)))
2078 /* the ep0 file is named after the controller we expect;
2079 * user mode code can use it for sanity checks, like we do.
2086 if (!gadgetfs_create_file (sb
, CHIP
,
2087 dev
, &dev_init_operations
,
2091 /* other endpoint files are available after hardware setup,
2092 * from binding to a controller.
2107 /* "mount -t gadgetfs path /dev/gadget" ends up here */
2109 gadgetfs_get_sb (struct file_system_type
*t
, int flags
,
2110 const char *path
, void *opts
, struct vfsmount
*mnt
)
2112 return get_sb_single (t
, flags
, opts
, gadgetfs_fill_super
, mnt
);
2116 gadgetfs_kill_sb (struct super_block
*sb
)
2118 kill_litter_super (sb
);
2120 put_dev (the_device
);
2125 /*----------------------------------------------------------------------*/
2127 static struct file_system_type gadgetfs_type
= {
2128 .owner
= THIS_MODULE
,
2130 .get_sb
= gadgetfs_get_sb
,
2131 .kill_sb
= gadgetfs_kill_sb
,
2134 /*----------------------------------------------------------------------*/
2136 static int __init
init (void)
2140 status
= register_filesystem (&gadgetfs_type
);
2142 pr_info ("%s: %s, version " DRIVER_VERSION
"\n",
2143 shortname
, driver_desc
);
2148 static void __exit
cleanup (void)
2150 pr_debug ("unregister %s\n", shortname
);
2151 unregister_filesystem (&gadgetfs_type
);
2153 module_exit (cleanup
);