blob: 32bcbeba119ec755387e45b6e8898057e8c29789 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c -- user mode filesystem api for usb gadget controllers
3 *
4 * Copyright (C) 2003-2004 David Brownell
5 * Copyright (C) 2003 Agilent Technologies
6 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13
David Brownella4e3ef52007-08-01 23:58:22 -070014/* #define VERBOSE_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/fs.h>
19#include <linux/pagemap.h>
20#include <linux/uts.h>
21#include <linux/wait.h>
22#include <linux/compiler.h>
23#include <asm/uaccess.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040024#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
Milan Svobodae22fc272006-08-08 22:23:12 -070026#include <linux/poll.h>
Zach Browna80bf612013-05-07 16:18:23 -070027#include <linux/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/device.h>
30#include <linux/moduleparam.h>
31
David Brownella5262dc2007-05-14 19:36:41 -070032#include <linux/usb/gadgetfs.h>
David Brownell9454a572007-10-04 18:05:17 -070033#include <linux/usb/gadget.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36/*
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.
42 *
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.
48 *
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.
53 *
Phil Endecott511779f2007-01-15 11:35:01 -080054 * - 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
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.
64 */
65
66#define DRIVER_DESC "USB Gadget filesystem"
67#define DRIVER_VERSION "24 Aug 2004"
68
69static const char driver_desc [] = DRIVER_DESC;
70static const char shortname [] = "gadgetfs";
71
72MODULE_DESCRIPTION (DRIVER_DESC);
73MODULE_AUTHOR ("David Brownell");
74MODULE_LICENSE ("GPL");
75
76
77/*----------------------------------------------------------------------*/
78
79#define GADGETFS_MAGIC 0xaee71ee7
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* /dev/gadget/$CHIP represents ep0 and the whole device */
82enum ep0_state {
83 /* DISBLED is the initial state.
84 */
85 STATE_DEV_DISABLED = 0,
86
87 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
88 * ep0/device i/o modes and binding to the controller. Driver
89 * must always write descriptors to initialize the device, then
90 * the device becomes UNCONNECTED until enumeration.
91 */
David Brownell7489d142007-01-16 22:51:04 -080092 STATE_DEV_OPENED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* From then on, ep0 fd is in either of two basic modes:
95 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
96 * - SETUP: read/write will transfer control data and succeed;
97 * or if "wrong direction", performs protocol stall
98 */
David Brownell7489d142007-01-16 22:51:04 -080099 STATE_DEV_UNCONNECTED,
100 STATE_DEV_CONNECTED,
101 STATE_DEV_SETUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /* UNBOUND means the driver closed ep0, so the device won't be
104 * accessible again (DEV_DISABLED) until all fds are closed.
105 */
106 STATE_DEV_UNBOUND,
107};
108
109/* enough for the whole queue: most events invalidate others */
110#define N_EVENT 5
111
112struct dev_data {
113 spinlock_t lock;
114 atomic_t count;
David Brownell7489d142007-01-16 22:51:04 -0800115 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct usb_gadgetfs_event event [N_EVENT];
117 unsigned ev_next;
118 struct fasync_struct *fasync;
119 u8 current_config;
120
121 /* drivers reading ep0 MUST handle control requests (SETUP)
122 * reported that way; else the host will time out.
123 */
124 unsigned usermode_setup : 1,
125 setup_in : 1,
126 setup_can_stall : 1,
127 setup_out_ready : 1,
128 setup_out_error : 1,
129 setup_abort : 1;
Alan Stern97906362006-01-03 10:30:31 -0500130 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* the rest is basically write-once */
133 struct usb_config_descriptor *config, *hs_config;
134 struct usb_device_descriptor *dev;
135 struct usb_request *req;
136 struct usb_gadget *gadget;
137 struct list_head epfiles;
138 void *buf;
139 wait_queue_head_t wait;
140 struct super_block *sb;
141 struct dentry *dentry;
142
143 /* except this scratch i/o buffer for ep0 */
144 u8 rbuf [256];
145};
146
147static inline void get_dev (struct dev_data *data)
148{
149 atomic_inc (&data->count);
150}
151
152static void put_dev (struct dev_data *data)
153{
154 if (likely (!atomic_dec_and_test (&data->count)))
155 return;
156 /* needs no more cleanup */
157 BUG_ON (waitqueue_active (&data->wait));
158 kfree (data);
159}
160
161static struct dev_data *dev_new (void)
162{
163 struct dev_data *dev;
164
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800165 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (!dev)
167 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 dev->state = STATE_DEV_DISABLED;
169 atomic_set (&dev->count, 1);
170 spin_lock_init (&dev->lock);
171 INIT_LIST_HEAD (&dev->epfiles);
172 init_waitqueue_head (&dev->wait);
173 return dev;
174}
175
176/*----------------------------------------------------------------------*/
177
178/* other /dev/gadget/$ENDPOINT files represent endpoints */
179enum ep_state {
180 STATE_EP_DISABLED = 0,
181 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 STATE_EP_ENABLED,
183 STATE_EP_UNBOUND,
184};
185
186struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000187 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 enum ep_state state;
189 atomic_t count;
190 struct dev_data *dev;
191 /* must hold dev->lock before accessing ep or req */
192 struct usb_ep *ep;
193 struct usb_request *req;
194 ssize_t status;
195 char name [16];
196 struct usb_endpoint_descriptor desc, hs_desc;
197 struct list_head epfiles;
198 wait_queue_head_t wait;
199 struct dentry *dentry;
200 struct inode *inode;
201};
202
203static inline void get_ep (struct ep_data *data)
204{
205 atomic_inc (&data->count);
206}
207
208static void put_ep (struct ep_data *data)
209{
210 if (likely (!atomic_dec_and_test (&data->count)))
211 return;
212 put_dev (data->dev);
213 /* needs no more cleanup */
214 BUG_ON (!list_empty (&data->epfiles));
215 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 kfree (data);
217}
218
219/*----------------------------------------------------------------------*/
220
221/* most "how to use the hardware" policy choices are in userspace:
222 * mapping endpoint roles (which the driver needs) to the capabilities
223 * which the usb controller has. most of those capabilities are exposed
224 * implicitly, starting with the driver name and then endpoint names.
225 */
226
227static const char *CHIP;
228
229/*----------------------------------------------------------------------*/
230
231/* NOTE: don't use dev_printk calls before binding to the gadget
232 * at the end of ep0 configuration, or after unbind.
233 */
234
235/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
236#define xprintk(d,level,fmt,args...) \
237 printk(level "%s: " fmt , shortname , ## args)
238
239#ifdef DEBUG
240#define DBG(dev,fmt,args...) \
241 xprintk(dev , KERN_DEBUG , fmt , ## args)
242#else
243#define DBG(dev,fmt,args...) \
244 do { } while (0)
245#endif /* DEBUG */
246
David Brownella4e3ef52007-08-01 23:58:22 -0700247#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#define VDEBUG DBG
249#else
250#define VDEBUG(dev,fmt,args...) \
251 do { } while (0)
252#endif /* DEBUG */
253
254#define ERROR(dev,fmt,args...) \
255 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define INFO(dev,fmt,args...) \
257 xprintk(dev , KERN_INFO , fmt , ## args)
258
259
260/*----------------------------------------------------------------------*/
261
262/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
263 *
264 * After opening, configure non-control endpoints. Then use normal
265 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600266 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
268
269static void epio_complete (struct usb_ep *ep, struct usb_request *req)
270{
271 struct ep_data *epdata = ep->driver_data;
272
273 if (!req->context)
274 return;
275 if (req->status)
276 epdata->status = req->status;
277 else
278 epdata->status = req->actual;
279 complete ((struct completion *)req->context);
280}
281
282/* tasklock endpoint, returning when it's connected.
283 * still need dev->lock to use epdata->ep.
284 */
285static int
286get_ready_ep (unsigned f_flags, struct ep_data *epdata)
287{
288 int val;
289
290 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000291 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 goto nonblock;
293 if (epdata->state != STATE_EP_ENABLED) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000294 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295nonblock:
296 val = -EAGAIN;
297 } else
298 val = 0;
299 return val;
300 }
301
Thomas Gleixnera79df502010-01-29 20:38:59 +0000302 val = mutex_lock_interruptible(&epdata->lock);
303 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 switch (epdata->state) {
307 case STATE_EP_ENABLED:
308 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 // case STATE_EP_DISABLED: /* "can't happen" */
310 // case STATE_EP_READY: /* "can't happen" */
311 default: /* error! */
312 pr_debug ("%s: ep %p not available, state %d\n",
313 shortname, epdata, epdata->state);
314 // FALLTHROUGH
315 case STATE_EP_UNBOUND: /* clean disconnect */
316 val = -ENODEV;
Thomas Gleixnera79df502010-01-29 20:38:59 +0000317 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 return val;
320}
321
322static ssize_t
323ep_io (struct ep_data *epdata, void *buf, unsigned len)
324{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700325 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int value;
327
328 spin_lock_irq (&epdata->dev->lock);
329 if (likely (epdata->ep != NULL)) {
330 struct usb_request *req = epdata->req;
331
332 req->context = &done;
333 req->complete = epio_complete;
334 req->buf = buf;
335 req->length = len;
336 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
337 } else
338 value = -ENODEV;
339 spin_unlock_irq (&epdata->dev->lock);
340
341 if (likely (value == 0)) {
342 value = wait_event_interruptible (done.wait, done.done);
343 if (value != 0) {
344 spin_lock_irq (&epdata->dev->lock);
345 if (likely (epdata->ep != NULL)) {
346 DBG (epdata->dev, "%s i/o interrupted\n",
347 epdata->name);
348 usb_ep_dequeue (epdata->ep, epdata->req);
349 spin_unlock_irq (&epdata->dev->lock);
350
351 wait_event (done.wait, done.done);
352 if (epdata->status == -ECONNRESET)
353 epdata->status = -EINTR;
354 } else {
355 spin_unlock_irq (&epdata->dev->lock);
356
357 DBG (epdata->dev, "endpoint gone\n");
358 epdata->status = -ENODEV;
359 }
360 }
361 return epdata->status;
362 }
363 return value;
364}
365
366
367/* handle a synchronous OUT bulk/intr/iso transfer */
368static ssize_t
369ep_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
370{
371 struct ep_data *data = fd->private_data;
372 void *kbuf;
373 ssize_t value;
374
375 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
376 return value;
377
378 /* halt any endpoint by doing a "wrong direction" i/o call */
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200379 if (usb_endpoint_dir_in(&data->desc)) {
Alexey Khoroshilov00cc7a52011-03-16 21:54:05 +0200380 if (usb_endpoint_xfer_isoc(&data->desc)) {
381 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EINVAL;
Alexey Khoroshilov00cc7a52011-03-16 21:54:05 +0200383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 DBG (data->dev, "%s halt\n", data->name);
385 spin_lock_irq (&data->dev->lock);
386 if (likely (data->ep != NULL))
387 usb_ep_set_halt (data->ep);
388 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000389 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -EBADMSG;
391 }
392
393 /* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */
394
395 value = -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800396 kbuf = kmalloc (len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (unlikely (!kbuf))
398 goto free1;
399
400 value = ep_io (data, kbuf, len);
David Brownell1bbc1692005-05-07 13:05:13 -0700401 VDEBUG (data->dev, "%s read %zu OUT, status %d\n",
402 data->name, len, (int) value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (value >= 0 && copy_to_user (buf, kbuf, value))
404 value = -EFAULT;
405
406free1:
Thomas Gleixnera79df502010-01-29 20:38:59 +0000407 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 kfree (kbuf);
409 return value;
410}
411
412/* handle a synchronous IN bulk/intr/iso transfer */
413static ssize_t
414ep_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
415{
416 struct ep_data *data = fd->private_data;
417 void *kbuf;
418 ssize_t value;
419
420 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
421 return value;
422
423 /* halt any endpoint by doing a "wrong direction" i/o call */
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200424 if (!usb_endpoint_dir_in(&data->desc)) {
Alexey Khoroshilov38981152011-05-27 08:37:40 +0400425 if (usb_endpoint_xfer_isoc(&data->desc)) {
426 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EINVAL;
Alexey Khoroshilov38981152011-05-27 08:37:40 +0400428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 DBG (data->dev, "%s halt\n", data->name);
430 spin_lock_irq (&data->dev->lock);
431 if (likely (data->ep != NULL))
432 usb_ep_set_halt (data->ep);
433 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000434 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EBADMSG;
436 }
437
438 /* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */
439
440 value = -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800441 kbuf = kmalloc (len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!kbuf)
443 goto free1;
444 if (copy_from_user (kbuf, buf, len)) {
445 value = -EFAULT;
446 goto free1;
447 }
448
449 value = ep_io (data, kbuf, len);
David Brownell1bbc1692005-05-07 13:05:13 -0700450 VDEBUG (data->dev, "%s write %zu IN, status %d\n",
451 data->name, len, (int) value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452free1:
Thomas Gleixnera79df502010-01-29 20:38:59 +0000453 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 kfree (kbuf);
455 return value;
456}
457
458static int
459ep_release (struct inode *inode, struct file *fd)
460{
461 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700462 int value;
463
Thomas Gleixnera79df502010-01-29 20:38:59 +0000464 value = mutex_lock_interruptible(&data->lock);
465 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700466 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* clean up if this can be reopened */
469 if (data->state != STATE_EP_UNBOUND) {
470 data->state = STATE_EP_DISABLED;
471 data->desc.bDescriptorType = 0;
472 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700473 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000475 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 put_ep (data);
477 return 0;
478}
479
Alan Cox44c389a2008-05-22 22:03:27 +0100480static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct ep_data *data = fd->private_data;
483 int status;
484
485 if ((status = get_ready_ep (fd->f_flags, data)) < 0)
486 return status;
487
488 spin_lock_irq (&data->dev->lock);
489 if (likely (data->ep != NULL)) {
490 switch (code) {
491 case GADGETFS_FIFO_STATUS:
492 status = usb_ep_fifo_status (data->ep);
493 break;
494 case GADGETFS_FIFO_FLUSH:
495 usb_ep_fifo_flush (data->ep);
496 break;
497 case GADGETFS_CLEAR_HALT:
498 status = usb_ep_clear_halt (data->ep);
499 break;
500 default:
501 status = -ENOTTY;
502 }
503 } else
504 status = -ENODEV;
505 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000506 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return status;
508}
509
510/*----------------------------------------------------------------------*/
511
512/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
513
514struct kiocb_priv {
515 struct usb_request *req;
516 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700517 struct kiocb *iocb;
518 struct mm_struct *mm;
519 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 void *buf;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700521 const struct iovec *iv;
522 unsigned long nr_segs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned actual;
524};
525
526static int ep_aio_cancel(struct kiocb *iocb, struct io_event *e)
527{
528 struct kiocb_priv *priv = iocb->private;
529 struct ep_data *epdata;
530 int value;
531
532 local_irq_disable();
533 epdata = priv->epdata;
534 // spin_lock(&epdata->dev->lock);
535 kiocbSetCancelled(iocb);
536 if (likely(epdata && epdata->ep && priv->req))
537 value = usb_ep_dequeue (epdata->ep, priv->req);
538 else
539 value = -EINVAL;
540 // spin_unlock(&epdata->dev->lock);
541 local_irq_enable();
542
543 aio_put_req(iocb);
544 return value;
545}
546
Zach Browna80bf612013-05-07 16:18:23 -0700547static ssize_t ep_copy_to_user(struct kiocb_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700549 ssize_t len, total;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800550 void *to_copy;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700551 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David Brownell25051072007-01-15 11:30:28 -0800553 /* copy stuff into user buffers */
554 total = priv->actual;
555 len = 0;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800556 to_copy = priv->buf;
David Brownell25051072007-01-15 11:30:28 -0800557 for (i=0; i < priv->nr_segs; i++) {
558 ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700559
Sarah Bailey50f97a12007-02-22 22:36:21 -0800560 if (copy_to_user(priv->iv[i].iov_base, to_copy, this)) {
David Brownell25051072007-01-15 11:30:28 -0800561 if (len == 0)
562 len = -EFAULT;
563 break;
564 }
Badari Pulavarty027445c2006-09-30 23:28:46 -0700565
David Brownell25051072007-01-15 11:30:28 -0800566 total -= this;
567 len += this;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800568 to_copy += this;
David Brownell25051072007-01-15 11:30:28 -0800569 if (total == 0)
570 break;
571 }
Zach Browna80bf612013-05-07 16:18:23 -0700572
573 return len;
574}
575
576static void ep_user_copy_worker(struct work_struct *work)
577{
578 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
579 struct mm_struct *mm = priv->mm;
580 struct kiocb *iocb = priv->iocb;
581 size_t ret;
582
583 use_mm(mm);
584 ret = ep_copy_to_user(priv);
585 unuse_mm(mm);
586
587 /* completing the iocb can drop the ctx and mm, don't touch mm after */
588 aio_complete(iocb, ret, ret);
589
David Brownell25051072007-01-15 11:30:28 -0800590 kfree(priv->buf);
591 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
595{
596 struct kiocb *iocb = req->context;
597 struct kiocb_priv *priv = iocb->private;
598 struct ep_data *epdata = priv->epdata;
599
600 /* lock against disconnect (and ideally, cancel) */
601 spin_lock(&epdata->dev->lock);
602 priv->req = NULL;
603 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800604
605 /* if this was a write or a read returning no data then we
606 * don't need to copy anything to userspace, so we can
607 * complete the aio request immediately.
608 */
609 if (priv->iv == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 kfree(req->buf);
611 kfree(priv);
612 iocb->private = NULL;
613 /* aio_complete() reports bytes-transferred _and_ faults */
Alan Stern49631ca2007-01-16 23:28:48 -0800614 aio_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 req->status);
616 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700617 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (unlikely(0 != req->status))
619 DBG(epdata->dev, "%s fault %d len %d\n",
620 ep->name, req->status, req->actual);
621
622 priv->buf = req->buf;
623 priv->actual = req->actual;
Zach Browna80bf612013-05-07 16:18:23 -0700624 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626 spin_unlock(&epdata->dev->lock);
627
628 usb_ep_free_request(ep, req);
629 put_ep(epdata);
630}
631
632static ssize_t
633ep_aio_rwtail(
634 struct kiocb *iocb,
635 char *buf,
636 size_t len,
637 struct ep_data *epdata,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700638 const struct iovec *iv,
David Brownell25051072007-01-15 11:30:28 -0800639 unsigned long nr_segs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640)
641{
Alan Stern83196b52006-05-22 12:26:31 -0400642 struct kiocb_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct usb_request *req;
644 ssize_t value;
645
646 priv = kmalloc(sizeof *priv, GFP_KERNEL);
647 if (!priv) {
648 value = -ENOMEM;
649fail:
650 kfree(buf);
651 return value;
652 }
653 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700654 priv->iocb = iocb;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700655 priv->iv = iv;
656 priv->nr_segs = nr_segs;
Zach Browna80bf612013-05-07 16:18:23 -0700657 INIT_WORK(&priv->work, ep_user_copy_worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 value = get_ready_ep(iocb->ki_filp->f_flags, epdata);
660 if (unlikely(value < 0)) {
661 kfree(priv);
662 goto fail;
663 }
664
665 iocb->ki_cancel = ep_aio_cancel;
666 get_ep(epdata);
667 priv->epdata = epdata;
668 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700669 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 /* each kiocb is coupled to one usb_request, but we can't
672 * allocate or submit those if the host disconnected.
673 */
674 spin_lock_irq(&epdata->dev->lock);
675 if (likely(epdata->ep)) {
676 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
677 if (likely(req)) {
678 priv->req = req;
679 req->buf = buf;
680 req->length = len;
681 req->complete = ep_aio_complete;
682 req->context = iocb;
683 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
684 if (unlikely(0 != value))
685 usb_ep_free_request(epdata->ep, req);
686 } else
687 value = -EAGAIN;
688 } else
689 value = -ENODEV;
690 spin_unlock_irq(&epdata->dev->lock);
691
Thomas Gleixnera79df502010-01-29 20:38:59 +0000692 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (unlikely(value)) {
695 kfree(priv);
696 put_ep(epdata);
697 } else
Zach Browna80bf612013-05-07 16:18:23 -0700698 value = -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return value;
700}
701
702static ssize_t
Badari Pulavarty027445c2006-09-30 23:28:46 -0700703ep_aio_read(struct kiocb *iocb, const struct iovec *iov,
704 unsigned long nr_segs, loff_t o)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct ep_data *epdata = iocb->ki_filp->private_data;
707 char *buf;
708
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200709 if (unlikely(usb_endpoint_dir_in(&epdata->desc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700711
712 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (unlikely(!buf))
714 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700715
Badari Pulavarty027445c2006-09-30 23:28:46 -0700716 return ep_aio_rwtail(iocb, buf, iocb->ki_left, epdata, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719static ssize_t
Badari Pulavarty027445c2006-09-30 23:28:46 -0700720ep_aio_write(struct kiocb *iocb, const struct iovec *iov,
721 unsigned long nr_segs, loff_t o)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 struct ep_data *epdata = iocb->ki_filp->private_data;
724 char *buf;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700725 size_t len = 0;
726 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200728 if (unlikely(!usb_endpoint_dir_in(&epdata->desc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700730
731 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (unlikely(!buf))
733 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700734
735 for (i=0; i < nr_segs; i++) {
736 if (unlikely(copy_from_user(&buf[len], iov[i].iov_base,
737 iov[i].iov_len) != 0)) {
738 kfree(buf);
739 return -EFAULT;
740 }
741 len += iov[i].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Badari Pulavarty027445c2006-09-30 23:28:46 -0700743 return ep_aio_rwtail(iocb, buf, len, epdata, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*----------------------------------------------------------------------*/
747
748/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300749static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 .owner = THIS_MODULE,
751 .llseek = no_llseek,
752
753 .read = ep_read,
754 .write = ep_write,
Alan Cox44c389a2008-05-22 22:03:27 +0100755 .unlocked_ioctl = ep_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 .release = ep_release,
757
758 .aio_read = ep_aio_read,
759 .aio_write = ep_aio_write,
760};
761
762/* ENDPOINT INITIALIZATION
763 *
764 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
765 * status = write (fd, descriptors, sizeof descriptors)
766 *
767 * That write establishes the endpoint configuration, configuring
768 * the controller to process bulk, interrupt, or isochronous transfers
769 * at the right maxpacket size, and so on.
770 *
771 * The descriptors are message type 1, identified by a host order u32
772 * at the beginning of what's written. Descriptor order is: full/low
773 * speed descriptor, then optional high speed descriptor.
774 */
775static ssize_t
776ep_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
777{
778 struct ep_data *data = fd->private_data;
779 struct usb_ep *ep;
780 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700781 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Thomas Gleixnera79df502010-01-29 20:38:59 +0000783 value = mutex_lock_interruptible(&data->lock);
784 if (value < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return value;
786
787 if (data->state != STATE_EP_READY) {
788 value = -EL2HLT;
789 goto fail;
790 }
791
792 value = len;
793 if (len < USB_DT_ENDPOINT_SIZE + 4)
794 goto fail0;
795
796 /* we might need to change message format someday */
797 if (copy_from_user (&tag, buf, 4)) {
798 goto fail1;
799 }
800 if (tag != 1) {
801 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
802 goto fail0;
803 }
804 buf += 4;
805 len -= 4;
806
807 /* NOTE: audio endpoint extensions not accepted here;
808 * just don't include the extra bytes.
809 */
810
811 /* full/low speed descriptor, then high speed */
812 if (copy_from_user (&data->desc, buf, USB_DT_ENDPOINT_SIZE)) {
813 goto fail1;
814 }
815 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
816 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
817 goto fail0;
818 if (len != USB_DT_ENDPOINT_SIZE) {
819 if (len != 2 * USB_DT_ENDPOINT_SIZE)
820 goto fail0;
821 if (copy_from_user (&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
822 USB_DT_ENDPOINT_SIZE)) {
823 goto fail1;
824 }
825 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
826 || data->hs_desc.bDescriptorType
827 != USB_DT_ENDPOINT) {
828 DBG(data->dev, "config %s, bad hs length or type\n",
829 data->name);
830 goto fail0;
831 }
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 spin_lock_irq (&data->dev->lock);
835 if (data->dev->state == STATE_DEV_UNBOUND) {
836 value = -ENOENT;
837 goto gone;
838 } else if ((ep = data->ep) == NULL) {
839 value = -ENODEV;
840 goto gone;
841 }
842 switch (data->dev->gadget->speed) {
843 case USB_SPEED_LOW:
844 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300845 ep->desc = &data->desc;
846 value = usb_ep_enable(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (value == 0)
848 data->state = STATE_EP_ENABLED;
849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 case USB_SPEED_HIGH:
851 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300852 ep->desc = &data->hs_desc;
853 value = usb_ep_enable(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (value == 0)
855 data->state = STATE_EP_ENABLED;
856 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800858 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800860 value = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700862 if (value == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 fd->f_op = &ep_io_operations;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700864 value = length;
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866gone:
867 spin_unlock_irq (&data->dev->lock);
868 if (value < 0) {
869fail:
870 data->desc.bDescriptorType = 0;
871 data->hs_desc.bDescriptorType = 0;
872 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000873 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return value;
875fail0:
876 value = -EINVAL;
877 goto fail;
878fail1:
879 value = -EFAULT;
880 goto fail;
881}
882
883static int
884ep_open (struct inode *inode, struct file *fd)
885{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700886 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 int value = -EBUSY;
888
Thomas Gleixnera79df502010-01-29 20:38:59 +0000889 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return -EINTR;
891 spin_lock_irq (&data->dev->lock);
892 if (data->dev->state == STATE_DEV_UNBOUND)
893 value = -ENOENT;
894 else if (data->state == STATE_EP_DISABLED) {
895 value = 0;
896 data->state = STATE_EP_READY;
897 get_ep (data);
898 fd->private_data = data;
899 VDEBUG (data->dev, "%s ready\n", data->name);
900 } else
901 DBG (data->dev, "%s state %d\n",
902 data->name, data->state);
903 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000904 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return value;
906}
907
908/* used before endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300909static const struct file_operations ep_config_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 .llseek = no_llseek,
911
912 .open = ep_open,
913 .write = ep_config,
914 .release = ep_release,
915};
916
917/*----------------------------------------------------------------------*/
918
919/* EP0 IMPLEMENTATION can be partly in userspace.
920 *
921 * Drivers that use this facility receive various events, including
922 * control requests the kernel doesn't handle. Drivers that don't
923 * use this facility may be too simple-minded for real applications.
924 */
925
926static inline void ep0_readable (struct dev_data *dev)
927{
928 wake_up (&dev->wait);
929 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
930}
931
932static void clean_req (struct usb_ep *ep, struct usb_request *req)
933{
934 struct dev_data *dev = ep->driver_data;
935
936 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700937 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940 req->complete = epio_complete;
941 dev->setup_out_ready = 0;
942}
943
944static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
945{
946 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800947 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 int free = 1;
949
950 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800951 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (!dev->setup_in) {
953 dev->setup_out_error = (req->status != 0);
954 if (!dev->setup_out_error)
955 free = 0;
956 dev->setup_out_ready = 1;
957 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 /* clean up as appropriate */
961 if (free && req->buf != &dev->rbuf)
962 clean_req (ep, req);
963 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800964 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
968{
969 struct dev_data *dev = ep->driver_data;
970
971 if (dev->setup_out_ready) {
972 DBG (dev, "ep0 request busy!\n");
973 return -EBUSY;
974 }
975 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700976 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700977 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 req->buf = dev->rbuf;
979 return -ENOMEM;
980 }
981 req->complete = ep0_complete;
982 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500983 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return 0;
985}
986
987static ssize_t
988ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
989{
990 struct dev_data *dev = fd->private_data;
991 ssize_t retval;
992 enum ep0_state state;
993
994 spin_lock_irq (&dev->lock);
995
996 /* report fd mode change before acting on it */
997 if (dev->setup_abort) {
998 dev->setup_abort = 0;
999 retval = -EIDRM;
1000 goto done;
1001 }
1002
1003 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -08001004 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 if (dev->setup_in) { /* stall IN */
1007 VDEBUG(dev, "ep0in stall\n");
1008 (void) usb_ep_set_halt (dev->gadget->ep0);
1009 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001010 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
1013 struct usb_ep *ep = dev->gadget->ep0;
1014 struct usb_request *req = dev->req;
1015
1016 if ((retval = setup_req (ep, req, 0)) == 0)
1017 retval = usb_ep_queue (ep, req, GFP_ATOMIC);
David Brownell7489d142007-01-16 22:51:04 -08001018 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /* assume that was SET_CONFIGURATION */
1021 if (dev->current_config) {
1022 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -07001023
1024 if (gadget_is_dualspeed(dev->gadget)
1025 && (dev->gadget->speed
1026 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 power = dev->hs_config->bMaxPower;
1028 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 power = dev->config->bMaxPower;
1030 usb_gadget_vbus_draw(dev->gadget, 2 * power);
1031 }
1032
1033 } else { /* collect OUT data */
1034 if ((fd->f_flags & O_NONBLOCK) != 0
1035 && !dev->setup_out_ready) {
1036 retval = -EAGAIN;
1037 goto done;
1038 }
1039 spin_unlock_irq (&dev->lock);
1040 retval = wait_event_interruptible (dev->wait,
1041 dev->setup_out_ready != 0);
1042
1043 /* FIXME state could change from under us */
1044 spin_lock_irq (&dev->lock);
1045 if (retval)
1046 goto done;
David Brownell5b89db022007-01-16 22:56:26 -08001047
1048 if (dev->state != STATE_DEV_SETUP) {
1049 retval = -ECANCELED;
1050 goto done;
1051 }
1052 dev->state = STATE_DEV_CONNECTED;
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (dev->setup_out_error)
1055 retval = -EIO;
1056 else {
1057 len = min (len, (size_t)dev->req->actual);
1058// FIXME don't call this with the spinlock held ...
Skip Hansen997694d2006-09-01 15:26:27 -07001059 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +01001061 else
1062 retval = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 clean_req (dev->gadget->ep0, dev->req);
1064 /* NOTE userspace can't yet choose to stall */
1065 }
1066 }
1067 goto done;
1068 }
1069
1070 /* else normal: return event data */
1071 if (len < sizeof dev->event [0]) {
1072 retval = -EINVAL;
1073 goto done;
1074 }
1075 len -= len % sizeof (struct usb_gadgetfs_event);
1076 dev->usermode_setup = 1;
1077
1078scan:
1079 /* return queued events right away */
1080 if (dev->ev_next != 0) {
1081 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001084 if (dev->ev_next < n)
1085 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
David Brownell0864c7a2007-01-16 22:53:58 -08001087 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 for (i = 0; i < n; i++) {
1089 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001090 dev->state = STATE_DEV_SETUP;
1091 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093 }
1094 }
1095 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001096 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (copy_to_user (buf, &dev->event, len))
1098 retval = -EFAULT;
1099 else
1100 retval = len;
1101 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /* NOTE this doesn't guard against broken drivers;
1103 * concurrent ep0 readers may lose events.
1104 */
1105 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001106 if (dev->ev_next > n) {
1107 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001109 * (dev->ev_next - n));
1110 }
1111 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 spin_unlock_irq (&dev->lock);
1113 }
1114 return retval;
1115 }
1116 if (fd->f_flags & O_NONBLOCK) {
1117 retval = -EAGAIN;
1118 goto done;
1119 }
1120
1121 switch (state) {
1122 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001123 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 retval = -ESRCH;
1125 break;
David Brownell7489d142007-01-16 22:51:04 -08001126 case STATE_DEV_UNCONNECTED:
1127 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001129 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /* wait for events */
1132 retval = wait_event_interruptible (dev->wait,
1133 dev->ev_next != 0);
1134 if (retval < 0)
1135 return retval;
1136 spin_lock_irq (&dev->lock);
1137 goto scan;
1138 }
1139
1140done:
1141 spin_unlock_irq (&dev->lock);
1142 return retval;
1143}
1144
1145static struct usb_gadgetfs_event *
1146next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1147{
1148 struct usb_gadgetfs_event *event;
1149 unsigned i;
1150
1151 switch (type) {
1152 /* these events purge the queue */
1153 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001154 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 dev->setup_abort = 1;
1156 // FALL THROUGH
1157 case GADGETFS_CONNECT:
1158 dev->ev_next = 0;
1159 break;
1160 case GADGETFS_SETUP: /* previous request timed out */
1161 case GADGETFS_SUSPEND: /* same effect */
1162 /* these events can't be repeated */
1163 for (i = 0; i != dev->ev_next; i++) {
1164 if (dev->event [i].type != type)
1165 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001166 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 dev->ev_next--;
1168 if (i == dev->ev_next)
1169 break;
1170 /* indices start at zero, for simplicity */
1171 memmove (&dev->event [i], &dev->event [i + 1],
1172 sizeof (struct usb_gadgetfs_event)
1173 * (dev->ev_next - i));
1174 }
1175 break;
1176 default:
1177 BUG ();
1178 }
David Brownell0864c7a2007-01-16 22:53:58 -08001179 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 event = &dev->event [dev->ev_next++];
1181 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 memset (event, 0, sizeof *event);
1183 event->type = type;
1184 return event;
1185}
1186
1187static ssize_t
1188ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1189{
1190 struct dev_data *dev = fd->private_data;
1191 ssize_t retval = -ESRCH;
1192
1193 spin_lock_irq (&dev->lock);
1194
1195 /* report fd mode change before acting on it */
1196 if (dev->setup_abort) {
1197 dev->setup_abort = 0;
1198 retval = -EIDRM;
1199
1200 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001201 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 /* IN DATA+STATUS caller makes len <= wLength */
1204 if (dev->setup_in) {
1205 retval = setup_req (dev->gadget->ep0, dev->req, len);
1206 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001207 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 spin_unlock_irq (&dev->lock);
1209 if (copy_from_user (dev->req->buf, buf, len))
1210 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001211 else {
1212 if (len < dev->setup_wLength)
1213 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 retval = usb_ep_queue (
1215 dev->gadget->ep0, dev->req,
1216 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (retval < 0) {
1219 spin_lock_irq (&dev->lock);
1220 clean_req (dev->gadget->ep0, dev->req);
1221 spin_unlock_irq (&dev->lock);
1222 } else
1223 retval = len;
1224
1225 return retval;
1226 }
1227
1228 /* can stall some OUT transfers */
1229 } else if (dev->setup_can_stall) {
1230 VDEBUG(dev, "ep0out stall\n");
1231 (void) usb_ep_set_halt (dev->gadget->ep0);
1232 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001233 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 } else {
1235 DBG(dev, "bogus ep0out stall!\n");
1236 }
1237 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001238 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 spin_unlock_irq (&dev->lock);
1241 return retval;
1242}
1243
1244static int
1245ep0_fasync (int f, struct file *fd, int on)
1246{
1247 struct dev_data *dev = fd->private_data;
1248 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001249 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return fasync_helper (f, fd, on, &dev->fasync);
1251}
1252
1253static struct usb_gadget_driver gadgetfs_driver;
1254
1255static int
1256dev_release (struct inode *inode, struct file *fd)
1257{
1258 struct dev_data *dev = fd->private_data;
1259
1260 /* closing ep0 === shutdown all */
1261
1262 usb_gadget_unregister_driver (&gadgetfs_driver);
1263
1264 /* at this point "good" hardware has disconnected the
1265 * device from USB; the host won't see it any more.
1266 * alternatively, all host requests will time out.
1267 */
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 kfree (dev->buf);
1270 dev->buf = NULL;
1271 put_dev (dev);
1272
1273 /* other endpoints were all decoupled from this device */
David Brownell7489d142007-01-16 22:51:04 -08001274 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 dev->state = STATE_DEV_DISABLED;
David Brownell7489d142007-01-16 22:51:04 -08001276 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
1278}
1279
Milan Svobodae22fc272006-08-08 22:23:12 -07001280static unsigned int
1281ep0_poll (struct file *fd, poll_table *wait)
1282{
1283 struct dev_data *dev = fd->private_data;
1284 int mask = 0;
1285
1286 poll_wait(fd, &dev->wait, wait);
1287
1288 spin_lock_irq (&dev->lock);
1289
1290 /* report fd mode change before acting on it */
1291 if (dev->setup_abort) {
1292 dev->setup_abort = 0;
1293 mask = POLLHUP;
1294 goto out;
1295 }
1296
David Brownell7489d142007-01-16 22:51:04 -08001297 if (dev->state == STATE_DEV_SETUP) {
Milan Svobodae22fc272006-08-08 22:23:12 -07001298 if (dev->setup_in || dev->setup_can_stall)
1299 mask = POLLOUT;
1300 } else {
1301 if (dev->ev_next != 0)
1302 mask = POLLIN;
1303 }
1304out:
1305 spin_unlock_irq(&dev->lock);
1306 return mask;
1307}
1308
Alan Cox44c389a2008-05-22 22:03:27 +01001309static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 struct dev_data *dev = fd->private_data;
1312 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001313 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Arnd Bergmann1548b132010-06-01 23:04:44 +02001315 if (gadget->ops->ioctl)
Alan Cox44c389a2008-05-22 22:03:27 +01001316 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001317
Alan Cox44c389a2008-05-22 22:03:27 +01001318 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
1321/* used after device configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03001322static const struct file_operations ep0_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 .owner = THIS_MODULE,
1324 .llseek = no_llseek,
1325
1326 .read = ep0_read,
1327 .write = ep0_write,
1328 .fasync = ep0_fasync,
Milan Svobodae22fc272006-08-08 22:23:12 -07001329 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001330 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 .release = dev_release,
1332};
1333
1334/*----------------------------------------------------------------------*/
1335
1336/* The in-kernel gadget driver handles most ep0 issues, in particular
1337 * enumerating the single configuration (as provided from user space).
1338 *
1339 * Unrecognized ep0 requests may be handled in user space.
1340 */
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static void make_qualifier (struct dev_data *dev)
1343{
1344 struct usb_qualifier_descriptor qual;
1345 struct usb_device_descriptor *desc;
1346
1347 qual.bLength = sizeof qual;
1348 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001349 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 desc = dev->dev;
1352 qual.bDeviceClass = desc->bDeviceClass;
1353 qual.bDeviceSubClass = desc->bDeviceSubClass;
1354 qual.bDeviceProtocol = desc->bDeviceProtocol;
1355
1356 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001357 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 qual.bNumConfigurations = 1;
1360 qual.bRESERVED = 0;
1361
1362 memcpy (dev->rbuf, &qual, sizeof qual);
1363}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365static int
1366config_buf (struct dev_data *dev, u8 type, unsigned index)
1367{
1368 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001369 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 /* only one configuration */
1372 if (index > 0)
1373 return -EINVAL;
1374
David Brownella4e3ef52007-08-01 23:58:22 -07001375 if (gadget_is_dualspeed(dev->gadget)) {
1376 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1377 if (type == USB_DT_OTHER_SPEED_CONFIG)
1378 hs = !hs;
1379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (hs) {
1381 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001382 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001383 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001385 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 ((u8 *)dev->req->buf) [1] = type;
1388 return len;
1389}
1390
1391static int
1392gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1393{
1394 struct dev_data *dev = get_gadget_data (gadget);
1395 struct usb_request *req = dev->req;
1396 int value = -EOPNOTSUPP;
1397 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001398 u16 w_value = le16_to_cpu(ctrl->wValue);
1399 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 spin_lock (&dev->lock);
1402 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001403 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001404 if (gadget_is_dualspeed(gadget)
1405 && gadget->speed == USB_SPEED_HIGH
1406 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001407 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 ERROR (dev, "no high speed config??\n");
1409 return -EINVAL;
1410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
David Brownellce467942007-01-16 23:06:07 -08001412 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 INFO (dev, "connected\n");
1415 event = next_event (dev, GADGETFS_CONNECT);
1416 event->u.speed = gadget->speed;
1417 ep0_readable (dev);
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 /* host may have given up waiting for response. we can miss control
1420 * requests handled lower down (device/endpoint status and features);
1421 * then ep0_{read,write} will report the wrong status. controller
1422 * driver will have aborted pending i/o.
1423 */
David Brownell7489d142007-01-16 22:51:04 -08001424 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 dev->setup_abort = 1;
1426
1427 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 req->context = NULL;
1429 value = -EOPNOTSUPP;
1430 switch (ctrl->bRequest) {
1431
1432 case USB_REQ_GET_DESCRIPTOR:
1433 if (ctrl->bRequestType != USB_DIR_IN)
1434 goto unrecognized;
1435 switch (w_value >> 8) {
1436
1437 case USB_DT_DEVICE:
1438 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001439 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 req->buf = dev->dev;
1441 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 case USB_DT_DEVICE_QUALIFIER:
1443 if (!dev->hs_config)
1444 break;
1445 value = min (w_length, (u16)
1446 sizeof (struct usb_qualifier_descriptor));
1447 make_qualifier (dev);
1448 break;
1449 case USB_DT_OTHER_SPEED_CONFIG:
1450 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 case USB_DT_CONFIG:
1452 value = config_buf (dev,
1453 w_value >> 8,
1454 w_value & 0xff);
1455 if (value >= 0)
1456 value = min (w_length, (u16) value);
1457 break;
1458 case USB_DT_STRING:
1459 goto unrecognized;
1460
1461 default: // all others are errors
1462 break;
1463 }
1464 break;
1465
1466 /* currently one config, two speeds */
1467 case USB_REQ_SET_CONFIGURATION:
1468 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001469 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (0 == (u8) w_value) {
1471 value = 0;
1472 dev->current_config = 0;
1473 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1474 // user mode expected to disable endpoints
1475 } else {
1476 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001477
1478 if (gadget_is_dualspeed(gadget)
1479 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 config = dev->hs_config->bConfigurationValue;
1481 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001482 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 config = dev->config->bConfigurationValue;
1484 power = dev->config->bMaxPower;
1485 }
1486
1487 if (config == (u8) w_value) {
1488 value = 0;
1489 dev->current_config = config;
1490 usb_gadget_vbus_draw(gadget, 2 * power);
1491 }
1492 }
1493
1494 /* report SET_CONFIGURATION like any other control request,
1495 * except that usermode may not stall this. the next
1496 * request mustn't be allowed start until this finishes:
1497 * endpoints and threads set up, etc.
1498 *
1499 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1500 * has bad/racey automagic that prevents synchronizing here.
1501 * even kernel mode drivers often miss them.
1502 */
1503 if (value == 0) {
1504 INFO (dev, "configuration #%d\n", dev->current_config);
1505 if (dev->usermode_setup) {
1506 dev->setup_can_stall = 0;
1507 goto delegate;
1508 }
1509 }
1510 break;
1511
Philipp Zabel7a857622008-06-22 23:36:39 +01001512#ifndef CONFIG_USB_GADGET_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /* PXA automagically handles this request too */
1514 case USB_REQ_GET_CONFIGURATION:
1515 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001516 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 *(u8 *)req->buf = dev->current_config;
1518 value = min (w_length, (u16) 1);
1519 break;
1520#endif
1521
1522 default:
1523unrecognized:
1524 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1525 dev->usermode_setup ? "delegate" : "fail",
1526 ctrl->bRequestType, ctrl->bRequest,
1527 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1528
1529 /* if there's an ep0 reader, don't stall */
1530 if (dev->usermode_setup) {
1531 dev->setup_can_stall = 1;
1532delegate:
1533 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1534 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001535 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 dev->setup_out_ready = 0;
1537 dev->setup_out_error = 0;
1538 value = 0;
1539
1540 /* read DATA stage for OUT right away */
1541 if (unlikely (!dev->setup_in && w_length)) {
1542 value = setup_req (gadget->ep0, dev->req,
1543 w_length);
1544 if (value < 0)
1545 break;
1546 value = usb_ep_queue (gadget->ep0, dev->req,
1547 GFP_ATOMIC);
1548 if (value < 0) {
1549 clean_req (gadget->ep0, dev->req);
1550 break;
1551 }
1552
1553 /* we can't currently stall these */
1554 dev->setup_can_stall = 0;
1555 }
1556
1557 /* state changes when reader collects event */
1558 event = next_event (dev, GADGETFS_SETUP);
1559 event->u.setup = *ctrl;
1560 ep0_readable (dev);
1561 spin_unlock (&dev->lock);
1562 return 0;
1563 }
1564 }
1565
1566 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001567 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 req->length = value;
1569 req->zero = value < w_length;
1570 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1571 if (value < 0) {
1572 DBG (dev, "ep_queue --> %d\n", value);
1573 req->status = 0;
1574 }
1575 }
1576
1577 /* device stalls when value < 0 */
1578 spin_unlock (&dev->lock);
1579 return value;
1580}
1581
1582static void destroy_ep_files (struct dev_data *dev)
1583{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001584 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001588 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 struct ep_data *ep;
1590 struct inode *parent;
1591 struct dentry *dentry;
1592
1593 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001594 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 list_del_init (&ep->epfiles);
1596 dentry = ep->dentry;
1597 ep->dentry = NULL;
1598 parent = dentry->d_parent->d_inode;
1599
1600 /* break link to controller */
1601 if (ep->state == STATE_EP_ENABLED)
1602 (void) usb_ep_disable (ep->ep);
1603 ep->state = STATE_EP_UNBOUND;
1604 usb_ep_free_request (ep->ep, ep->req);
1605 ep->ep = NULL;
1606 wake_up (&ep->wait);
1607 put_ep (ep);
1608
1609 spin_unlock_irq (&dev->lock);
1610
1611 /* break link to dcache */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001612 mutex_lock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 d_delete (dentry);
1614 dput (dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001615 mutex_unlock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Al Viro104bb372012-01-08 16:13:28 -05001617 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619 spin_unlock_irq (&dev->lock);
1620}
1621
1622
1623static struct inode *
1624gadgetfs_create_file (struct super_block *sb, char const *name,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001625 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 struct dentry **dentry_p);
1627
1628static int activate_ep_files (struct dev_data *dev)
1629{
1630 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001631 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001635 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001637 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001639 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 init_waitqueue_head (&data->wait);
1641
1642 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1643 atomic_set (&data->count, 1);
1644 data->dev = dev;
1645 get_dev (dev);
1646
1647 data->ep = ep;
1648 ep->driver_data = data;
1649
1650 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1651 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001652 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 data->inode = gadgetfs_create_file (dev->sb, data->name,
1655 data, &ep_config_operations,
1656 &data->dentry);
Alan Stern0ae4ea82006-05-22 12:27:38 -04001657 if (!data->inode)
1658 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 list_add_tail (&data->epfiles, &dev->epfiles);
1660 }
1661 return 0;
1662
Alan Stern0ae4ea82006-05-22 12:27:38 -04001663enomem2:
1664 usb_ep_free_request (ep, data->req);
1665enomem1:
1666 put_dev (dev);
1667 kfree (data);
1668enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001669 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 destroy_ep_files (dev);
1671 return -ENOMEM;
1672}
1673
1674static void
1675gadgetfs_unbind (struct usb_gadget *gadget)
1676{
1677 struct dev_data *dev = get_gadget_data (gadget);
1678
Harvey Harrison441b62c2008-03-03 16:08:34 -08001679 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 spin_lock_irq (&dev->lock);
1682 dev->state = STATE_DEV_UNBOUND;
1683 spin_unlock_irq (&dev->lock);
1684
1685 destroy_ep_files (dev);
1686 gadget->ep0->driver_data = NULL;
1687 set_gadget_data (gadget, NULL);
1688
1689 /* we've already been disconnected ... no i/o is active */
1690 if (dev->req)
1691 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001692 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 put_dev (dev);
1694}
1695
1696static struct dev_data *the_device;
1697
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001698static int gadgetfs_bind(struct usb_gadget *gadget,
1699 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
1701 struct dev_data *dev = the_device;
1702
1703 if (!dev)
1704 return -ESRCH;
1705 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001706 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 shortname, CHIP, gadget->name);
1708 return -ENODEV;
1709 }
1710
1711 set_gadget_data (gadget, dev);
1712 dev->gadget = gadget;
1713 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 /* preallocate control response and buffer */
1716 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1717 if (!dev->req)
1718 goto enomem;
1719 dev->req->context = NULL;
1720 dev->req->complete = epio_complete;
1721
1722 if (activate_ep_files (dev) < 0)
1723 goto enomem;
1724
1725 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001726 spin_lock_irq(&dev->lock);
1727 dev->state = STATE_DEV_UNCONNECTED;
1728 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 get_dev (dev);
1730 return 0;
1731
1732enomem:
1733 gadgetfs_unbind (gadget);
1734 return -ENOMEM;
1735}
1736
1737static void
1738gadgetfs_disconnect (struct usb_gadget *gadget)
1739{
1740 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001741 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001743 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001744 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001745 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001746 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 next_event (dev, GADGETFS_DISCONNECT);
1750 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001751exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001752 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
1755static void
1756gadgetfs_suspend (struct usb_gadget *gadget)
1757{
1758 struct dev_data *dev = get_gadget_data (gadget);
1759
1760 INFO (dev, "suspended from state %d\n", dev->state);
1761 spin_lock (&dev->lock);
1762 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001763 case STATE_DEV_SETUP: // VERY odd... host died??
1764 case STATE_DEV_CONNECTED:
1765 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 next_event (dev, GADGETFS_SUSPEND);
1767 ep0_readable (dev);
1768 /* FALLTHROUGH */
1769 default:
1770 break;
1771 }
1772 spin_unlock (&dev->lock);
1773}
1774
1775static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001777 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 .unbind = gadgetfs_unbind,
1779 .setup = gadgetfs_setup,
1780 .disconnect = gadgetfs_disconnect,
1781 .suspend = gadgetfs_suspend,
1782
David Brownell25051072007-01-15 11:30:28 -08001783 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 .name = (char *) shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 },
1786};
1787
1788/*----------------------------------------------------------------------*/
1789
1790static void gadgetfs_nop(struct usb_gadget *arg) { }
1791
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001792static int gadgetfs_probe(struct usb_gadget *gadget,
1793 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
1795 CHIP = gadget->name;
1796 return -EISNAM;
1797}
1798
1799static struct usb_gadget_driver probe_driver = {
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001800 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001801 .bind = gadgetfs_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 .unbind = gadgetfs_nop,
1803 .setup = (void *)gadgetfs_nop,
1804 .disconnect = gadgetfs_nop,
David Brownell25051072007-01-15 11:30:28 -08001805 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 .name = "nop",
1807 },
1808};
1809
1810
1811/* DEVICE INITIALIZATION
1812 *
1813 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1814 * status = write (fd, descriptors, sizeof descriptors)
1815 *
1816 * That write establishes the device configuration, so the kernel can
1817 * bind to the controller ... guaranteeing it can handle enumeration
1818 * at all necessary speeds. Descriptor order is:
1819 *
1820 * . message tag (u32, host order) ... for now, must be zero; it
1821 * would change to support features like multi-config devices
1822 * . full/low speed config ... all wTotalLength bytes (with interface,
1823 * class, altsetting, endpoint, and other descriptors)
1824 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001825 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 * . device descriptor
1827 *
Phil Endecott511779f2007-01-15 11:35:01 -08001828 * Endpoints are not yet enabled. Drivers must wait until device
1829 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 * the need to configure (or unconfigure) them.
1831 *
1832 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001833 * $CHIP file is open. Events must then be read from that descriptor,
1834 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 */
1836
1837static int is_valid_config (struct usb_config_descriptor *config)
1838{
1839 return config->bDescriptorType == USB_DT_CONFIG
1840 && config->bLength == USB_DT_CONFIG_SIZE
1841 && config->bConfigurationValue != 0
1842 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1843 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1844 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1845 /* FIXME check lengths: walk to end */
1846}
1847
1848static ssize_t
1849dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1850{
1851 struct dev_data *dev = fd->private_data;
1852 ssize_t value = len, length = len;
1853 unsigned total;
1854 u32 tag;
1855 char *kbuf;
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4))
1858 return -EINVAL;
1859
1860 /* we might need to change message format someday */
1861 if (copy_from_user (&tag, buf, 4))
1862 return -EFAULT;
1863 if (tag != 0)
1864 return -EINVAL;
1865 buf += 4;
1866 length -= 4;
1867
Julia Lawallbe8a0582010-05-22 10:26:22 +02001868 kbuf = memdup_user(buf, length);
1869 if (IS_ERR(kbuf))
1870 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 spin_lock_irq (&dev->lock);
1873 value = -EINVAL;
1874 if (dev->buf)
1875 goto fail;
1876 dev->buf = kbuf;
1877
1878 /* full or low speed config */
1879 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001880 total = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (!is_valid_config (dev->config) || total >= length)
1882 goto fail;
1883 kbuf += total;
1884 length -= total;
1885
1886 /* optional high speed config */
1887 if (kbuf [1] == USB_DT_CONFIG) {
1888 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001889 total = le16_to_cpu(dev->hs_config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 if (!is_valid_config (dev->hs_config) || total >= length)
1891 goto fail;
1892 kbuf += total;
1893 length -= total;
1894 }
1895
1896 /* could support multiple configs, using another encoding! */
1897
1898 /* device descriptor (tweaked for paranoia) */
1899 if (length != USB_DT_DEVICE_SIZE)
1900 goto fail;
1901 dev->dev = (void *)kbuf;
1902 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1903 || dev->dev->bDescriptorType != USB_DT_DEVICE
1904 || dev->dev->bNumConfigurations != 1)
1905 goto fail;
1906 dev->dev->bNumConfigurations = 1;
Harvey Harrison551509d2009-02-11 14:11:36 -08001907 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 /* triggers gadgetfs_bind(); then we can enumerate. */
1910 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001911 if (dev->hs_config)
1912 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1913 else
1914 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001915
1916 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (value != 0) {
1918 kfree (dev->buf);
1919 dev->buf = NULL;
1920 } else {
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.
1924 *
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.
1929 */
1930 fd->f_op = &ep0_io_operations;
1931 value = len;
1932 }
1933 return value;
1934
1935fail:
1936 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001937 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 kfree (dev->buf);
1939 dev->buf = NULL;
1940 return value;
1941}
1942
1943static int
1944dev_open (struct inode *inode, struct file *fd)
1945{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001946 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 int value = -EBUSY;
1948
David Brownell7489d142007-01-16 22:51:04 -08001949 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (dev->state == STATE_DEV_DISABLED) {
1951 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001952 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 fd->private_data = dev;
1954 get_dev (dev);
1955 value = 0;
1956 }
David Brownell7489d142007-01-16 22:51:04 -08001957 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return value;
1959}
1960
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03001961static const struct file_operations dev_init_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 .llseek = no_llseek,
1963
1964 .open = dev_open,
1965 .write = dev_config,
1966 .fasync = ep0_fasync,
Alan Cox44c389a2008-05-22 22:03:27 +01001967 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 .release = dev_release,
1969};
1970
1971/*----------------------------------------------------------------------*/
1972
1973/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1974 *
1975 * Mounting the filesystem creates a controller file, used first for
1976 * device configuration then later for event monitoring.
1977 */
1978
1979
1980/* FIXME PAM etc could set this security policy without mount options
1981 * if epfiles inherited ownership and permissons from ep0 ...
1982 */
1983
1984static unsigned default_uid;
1985static unsigned default_gid;
1986static unsigned default_perm = S_IRUSR | S_IWUSR;
1987
1988module_param (default_uid, uint, 0644);
1989module_param (default_gid, uint, 0644);
1990module_param (default_perm, uint, 0644);
1991
1992
1993static struct inode *
1994gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001995 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 int mode)
1997{
1998 struct inode *inode = new_inode (sb);
1999
2000 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002001 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08002003 inode->i_uid = make_kuid(&init_user_ns, default_uid);
2004 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 inode->i_atime = inode->i_mtime = inode->i_ctime
2006 = CURRENT_TIME;
Theodore Ts'o8e18e292006-09-27 01:50:46 -07002007 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 inode->i_fop = fops;
2009 }
2010 return inode;
2011}
2012
2013/* creates in fs root directory, so non-renamable and non-linkable.
2014 * so inode and dentry are paired, until device reconfig.
2015 */
2016static struct inode *
2017gadgetfs_create_file (struct super_block *sb, char const *name,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08002018 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 struct dentry **dentry_p)
2020{
2021 struct dentry *dentry;
2022 struct inode *inode;
2023
2024 dentry = d_alloc_name(sb->s_root, name);
2025 if (!dentry)
2026 return NULL;
2027
2028 inode = gadgetfs_make_inode (sb, data, fops,
2029 S_IFREG | (default_perm & S_IRWXUGO));
2030 if (!inode) {
2031 dput(dentry);
2032 return NULL;
2033 }
2034 d_add (dentry, inode);
2035 *dentry_p = dentry;
2036 return inode;
2037}
2038
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07002039static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 .statfs = simple_statfs,
2041 .drop_inode = generic_delete_inode,
2042};
2043
2044static int
2045gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2046{
2047 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 struct dev_data *dev;
2049
2050 if (the_device)
2051 return -ESRCH;
2052
2053 /* fake probe to determine $CHIP */
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02002054 usb_gadget_probe_driver(&probe_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (!CHIP)
2056 return -ENODEV;
2057
2058 /* superblock */
2059 sb->s_blocksize = PAGE_CACHE_SIZE;
2060 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2061 sb->s_magic = GADGETFS_MAGIC;
2062 sb->s_op = &gadget_fs_operations;
2063 sb->s_time_gran = 1;
2064
2065 /* root inode */
2066 inode = gadgetfs_make_inode (sb,
2067 NULL, &simple_dir_operations,
2068 S_IFDIR | S_IRUGO | S_IXUGO);
2069 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05002070 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05002072 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05002073 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 /* the ep0 file is named after the controller we expect;
2076 * user mode code can use it for sanity checks, like we do.
2077 */
2078 dev = dev_new ();
2079 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05002080 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 dev->sb = sb;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002083 if (!gadgetfs_create_file (sb, CHIP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 dev, &dev_init_operations,
Al Viro87da5b32012-01-08 15:59:45 -05002085 &dev->dentry)) {
2086 put_dev(dev);
2087 goto Enomem;
2088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /* other endpoint files are available after hardware setup,
2091 * from binding to a controller.
2092 */
2093 the_device = dev;
2094 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002095
Al Viro87da5b32012-01-08 15:59:45 -05002096Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04002097 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
2100/* "mount -t gadgetfs path /dev/gadget" ends up here */
Al Virofc14f2f2010-07-25 01:48:30 +04002101static struct dentry *
2102gadgetfs_mount (struct file_system_type *t, int flags,
2103 const char *path, void *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Al Virofc14f2f2010-07-25 01:48:30 +04002105 return mount_single (t, flags, opts, gadgetfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
2108static void
2109gadgetfs_kill_sb (struct super_block *sb)
2110{
2111 kill_litter_super (sb);
2112 if (the_device) {
2113 put_dev (the_device);
2114 the_device = NULL;
2115 }
2116}
2117
2118/*----------------------------------------------------------------------*/
2119
2120static struct file_system_type gadgetfs_type = {
2121 .owner = THIS_MODULE,
2122 .name = shortname,
Al Virofc14f2f2010-07-25 01:48:30 +04002123 .mount = gadgetfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 .kill_sb = gadgetfs_kill_sb,
2125};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002126MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128/*----------------------------------------------------------------------*/
2129
2130static int __init init (void)
2131{
2132 int status;
2133
2134 status = register_filesystem (&gadgetfs_type);
2135 if (status == 0)
2136 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2137 shortname, driver_desc);
2138 return status;
2139}
2140module_init (init);
2141
2142static void __exit cleanup (void)
2143{
2144 pr_debug ("unregister %s\n", shortname);
2145 unregister_filesystem (&gadgetfs_type);
2146}
2147module_exit (cleanup);
2148