Merge tag 'v3.10.107' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / gadget / inode.c
CommitLineData
1da177e4
LT
1/*
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.
1da177e4
LT
11 */
12
13
a4e3ef55 14/* #define VERBOSE_DEBUG */
1da177e4
LT
15
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>
a99bbaf5 24#include <linux/sched.h>
1da177e4 25#include <linux/slab.h>
e22fc27c 26#include <linux/poll.h>
a80bf61e 27#include <linux/mmu_context.h>
4e179bca 28#include <linux/aio.h>
1da177e4
LT
29
30#include <linux/device.h>
31#include <linux/moduleparam.h>
32
a5262dcf 33#include <linux/usb/gadgetfs.h>
9454a57a 34#include <linux/usb/gadget.h>
1da177e4
LT
35
36
37/*
38 * The gadgetfs API maps each endpoint to a file descriptor so that you
39 * can use standard synchronous read/write calls for I/O. There's some
40 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
41 * drivers show how this works in practice. You can also use AIO to
42 * eliminate I/O gaps between requests, to help when streaming data.
43 *
44 * Key parts that must be USB-specific are protocols defining how the
45 * read/write operations relate to the hardware state machines. There
46 * are two types of files. One type is for the device, implementing ep0.
47 * The other type is for each IN or OUT endpoint. In both cases, the
48 * user mode driver must configure the hardware before using it.
49 *
50 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
51 * (by writing configuration and device descriptors). Afterwards it
52 * may serve as a source of device events, used to handle all control
53 * requests other than basic enumeration.
54 *
511779fd
PE
55 * - Then, after a SET_CONFIGURATION control request, ep_config() is
56 * called when each /dev/gadget/ep* file is configured (by writing
57 * endpoint descriptors). Afterwards these files are used to write()
58 * IN data or to read() OUT data. To halt the endpoint, a "wrong
59 * direction" request is issued (like reading an IN endpoint).
1da177e4
LT
60 *
61 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
62 * not possible on all hardware. For example, precise fault handling with
63 * respect to data left in endpoint fifos after aborted operations; or
64 * selective clearing of endpoint halts, to implement SET_INTERFACE.
65 */
66
67#define DRIVER_DESC "USB Gadget filesystem"
68#define DRIVER_VERSION "24 Aug 2004"
69
70static const char driver_desc [] = DRIVER_DESC;
71static const char shortname [] = "gadgetfs";
72
73MODULE_DESCRIPTION (DRIVER_DESC);
74MODULE_AUTHOR ("David Brownell");
75MODULE_LICENSE ("GPL");
76
77
78/*----------------------------------------------------------------------*/
79
80#define GADGETFS_MAGIC 0xaee71ee7
1da177e4
LT
81
82/* /dev/gadget/$CHIP represents ep0 and the whole device */
83enum ep0_state {
84 /* DISBLED is the initial state.
85 */
86 STATE_DEV_DISABLED = 0,
87
88 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
89 * ep0/device i/o modes and binding to the controller. Driver
90 * must always write descriptors to initialize the device, then
91 * the device becomes UNCONNECTED until enumeration.
92 */
7489d149 93 STATE_DEV_OPENED,
1da177e4
LT
94
95 /* From then on, ep0 fd is in either of two basic modes:
96 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
97 * - SETUP: read/write will transfer control data and succeed;
98 * or if "wrong direction", performs protocol stall
99 */
7489d149
DB
100 STATE_DEV_UNCONNECTED,
101 STATE_DEV_CONNECTED,
102 STATE_DEV_SETUP,
1da177e4
LT
103
104 /* UNBOUND means the driver closed ep0, so the device won't be
105 * accessible again (DEV_DISABLED) until all fds are closed.
106 */
107 STATE_DEV_UNBOUND,
108};
109
110/* enough for the whole queue: most events invalidate others */
111#define N_EVENT 5
112
113struct dev_data {
114 spinlock_t lock;
115 atomic_t count;
7489d149 116 enum ep0_state state; /* P: lock */
1da177e4
LT
117 struct usb_gadgetfs_event event [N_EVENT];
118 unsigned ev_next;
119 struct fasync_struct *fasync;
120 u8 current_config;
121
122 /* drivers reading ep0 MUST handle control requests (SETUP)
123 * reported that way; else the host will time out.
124 */
125 unsigned usermode_setup : 1,
126 setup_in : 1,
127 setup_can_stall : 1,
128 setup_out_ready : 1,
129 setup_out_error : 1,
130 setup_abort : 1;
97906369 131 unsigned setup_wLength;
1da177e4
LT
132
133 /* the rest is basically write-once */
134 struct usb_config_descriptor *config, *hs_config;
135 struct usb_device_descriptor *dev;
136 struct usb_request *req;
137 struct usb_gadget *gadget;
138 struct list_head epfiles;
139 void *buf;
140 wait_queue_head_t wait;
141 struct super_block *sb;
142 struct dentry *dentry;
143
144 /* except this scratch i/o buffer for ep0 */
145 u8 rbuf [256];
146};
147
148static inline void get_dev (struct dev_data *data)
149{
150 atomic_inc (&data->count);
151}
152
153static void put_dev (struct dev_data *data)
154{
155 if (likely (!atomic_dec_and_test (&data->count)))
156 return;
157 /* needs no more cleanup */
158 BUG_ON (waitqueue_active (&data->wait));
159 kfree (data);
160}
161
162static struct dev_data *dev_new (void)
163{
164 struct dev_data *dev;
165
7039f422 166 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1da177e4
LT
167 if (!dev)
168 return NULL;
1da177e4
LT
169 dev->state = STATE_DEV_DISABLED;
170 atomic_set (&dev->count, 1);
171 spin_lock_init (&dev->lock);
172 INIT_LIST_HEAD (&dev->epfiles);
173 init_waitqueue_head (&dev->wait);
174 return dev;
175}
176
177/*----------------------------------------------------------------------*/
178
179/* other /dev/gadget/$ENDPOINT files represent endpoints */
180enum ep_state {
181 STATE_EP_DISABLED = 0,
182 STATE_EP_READY,
1da177e4
LT
183 STATE_EP_ENABLED,
184 STATE_EP_UNBOUND,
185};
186
187struct ep_data {
a79df50b 188 struct mutex lock;
1da177e4
LT
189 enum ep_state state;
190 atomic_t count;
191 struct dev_data *dev;
192 /* must hold dev->lock before accessing ep or req */
193 struct usb_ep *ep;
194 struct usb_request *req;
195 ssize_t status;
196 char name [16];
197 struct usb_endpoint_descriptor desc, hs_desc;
198 struct list_head epfiles;
199 wait_queue_head_t wait;
200 struct dentry *dentry;
201 struct inode *inode;
202};
203
204static inline void get_ep (struct ep_data *data)
205{
206 atomic_inc (&data->count);
207}
208
209static void put_ep (struct ep_data *data)
210{
211 if (likely (!atomic_dec_and_test (&data->count)))
212 return;
213 put_dev (data->dev);
214 /* needs no more cleanup */
215 BUG_ON (!list_empty (&data->epfiles));
216 BUG_ON (waitqueue_active (&data->wait));
1da177e4
LT
217 kfree (data);
218}
219
220/*----------------------------------------------------------------------*/
221
222/* most "how to use the hardware" policy choices are in userspace:
223 * mapping endpoint roles (which the driver needs) to the capabilities
224 * which the usb controller has. most of those capabilities are exposed
225 * implicitly, starting with the driver name and then endpoint names.
226 */
227
228static const char *CHIP;
229
230/*----------------------------------------------------------------------*/
231
232/* NOTE: don't use dev_printk calls before binding to the gadget
233 * at the end of ep0 configuration, or after unbind.
234 */
235
236/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
237#define xprintk(d,level,fmt,args...) \
238 printk(level "%s: " fmt , shortname , ## args)
239
240#ifdef DEBUG
241#define DBG(dev,fmt,args...) \
242 xprintk(dev , KERN_DEBUG , fmt , ## args)
243#else
244#define DBG(dev,fmt,args...) \
245 do { } while (0)
246#endif /* DEBUG */
247
a4e3ef55 248#ifdef VERBOSE_DEBUG
1da177e4
LT
249#define VDEBUG DBG
250#else
251#define VDEBUG(dev,fmt,args...) \
252 do { } while (0)
253#endif /* DEBUG */
254
255#define ERROR(dev,fmt,args...) \
256 xprintk(dev , KERN_ERR , fmt , ## args)
1da177e4
LT
257#define INFO(dev,fmt,args...) \
258 xprintk(dev , KERN_INFO , fmt , ## args)
259
260
261/*----------------------------------------------------------------------*/
262
263/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
264 *
265 * After opening, configure non-control endpoints. Then use normal
266 * stream read() and write() requests; and maybe ioctl() to get more
093cf723 267 * precise FIFO status when recovering from cancellation.
1da177e4
LT
268 */
269
270static void epio_complete (struct usb_ep *ep, struct usb_request *req)
271{
272 struct ep_data *epdata = ep->driver_data;
273
274 if (!req->context)
275 return;
276 if (req->status)
277 epdata->status = req->status;
278 else
279 epdata->status = req->actual;
280 complete ((struct completion *)req->context);
281}
282
283/* tasklock endpoint, returning when it's connected.
284 * still need dev->lock to use epdata->ep.
285 */
286static int
287get_ready_ep (unsigned f_flags, struct ep_data *epdata)
288{
289 int val;
290
291 if (f_flags & O_NONBLOCK) {
a79df50b 292 if (!mutex_trylock(&epdata->lock))
1da177e4
LT
293 goto nonblock;
294 if (epdata->state != STATE_EP_ENABLED) {
a79df50b 295 mutex_unlock(&epdata->lock);
1da177e4
LT
296nonblock:
297 val = -EAGAIN;
298 } else
299 val = 0;
300 return val;
301 }
302
a79df50b
TG
303 val = mutex_lock_interruptible(&epdata->lock);
304 if (val < 0)
1da177e4 305 return val;
511779fd 306
1da177e4
LT
307 switch (epdata->state) {
308 case STATE_EP_ENABLED:
309 break;
1da177e4
LT
310 // case STATE_EP_DISABLED: /* "can't happen" */
311 // case STATE_EP_READY: /* "can't happen" */
312 default: /* error! */
313 pr_debug ("%s: ep %p not available, state %d\n",
314 shortname, epdata, epdata->state);
315 // FALLTHROUGH
316 case STATE_EP_UNBOUND: /* clean disconnect */
317 val = -ENODEV;
a79df50b 318 mutex_unlock(&epdata->lock);
1da177e4
LT
319 }
320 return val;
321}
322
323static ssize_t
324ep_io (struct ep_data *epdata, void *buf, unsigned len)
325{
6e9a4738 326 DECLARE_COMPLETION_ONSTACK (done);
1da177e4
LT
327 int value;
328
329 spin_lock_irq (&epdata->dev->lock);
330 if (likely (epdata->ep != NULL)) {
331 struct usb_request *req = epdata->req;
332
333 req->context = &done;
334 req->complete = epio_complete;
335 req->buf = buf;
336 req->length = len;
337 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
338 } else
339 value = -ENODEV;
340 spin_unlock_irq (&epdata->dev->lock);
341
342 if (likely (value == 0)) {
343 value = wait_event_interruptible (done.wait, done.done);
344 if (value != 0) {
345 spin_lock_irq (&epdata->dev->lock);
346 if (likely (epdata->ep != NULL)) {
347 DBG (epdata->dev, "%s i/o interrupted\n",
348 epdata->name);
349 usb_ep_dequeue (epdata->ep, epdata->req);
350 spin_unlock_irq (&epdata->dev->lock);
351
352 wait_event (done.wait, done.done);
353 if (epdata->status == -ECONNRESET)
354 epdata->status = -EINTR;
355 } else {
356 spin_unlock_irq (&epdata->dev->lock);
357
358 DBG (epdata->dev, "endpoint gone\n");
359 epdata->status = -ENODEV;
360 }
361 }
362 return epdata->status;
363 }
364 return value;
365}
366
367
368/* handle a synchronous OUT bulk/intr/iso transfer */
369static ssize_t
370ep_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
371{
372 struct ep_data *data = fd->private_data;
373 void *kbuf;
374 ssize_t value;
375
376 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
377 return value;
378
379 /* halt any endpoint by doing a "wrong direction" i/o call */
fa4c86a0 380 if (usb_endpoint_dir_in(&data->desc)) {
00cc7a5f
AK
381 if (usb_endpoint_xfer_isoc(&data->desc)) {
382 mutex_unlock(&data->lock);
1da177e4 383 return -EINVAL;
00cc7a5f 384 }
1da177e4
LT
385 DBG (data->dev, "%s halt\n", data->name);
386 spin_lock_irq (&data->dev->lock);
387 if (likely (data->ep != NULL))
388 usb_ep_set_halt (data->ep);
389 spin_unlock_irq (&data->dev->lock);
a79df50b 390 mutex_unlock(&data->lock);
1da177e4
LT
391 return -EBADMSG;
392 }
393
394 /* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */
395
396 value = -ENOMEM;
e94b1766 397 kbuf = kmalloc (len, GFP_KERNEL);
1da177e4
LT
398 if (unlikely (!kbuf))
399 goto free1;
400
401 value = ep_io (data, kbuf, len);
1bbc1696
DB
402 VDEBUG (data->dev, "%s read %zu OUT, status %d\n",
403 data->name, len, (int) value);
1da177e4
LT
404 if (value >= 0 && copy_to_user (buf, kbuf, value))
405 value = -EFAULT;
406
407free1:
a79df50b 408 mutex_unlock(&data->lock);
1da177e4
LT
409 kfree (kbuf);
410 return value;
411}
412
413/* handle a synchronous IN bulk/intr/iso transfer */
414static ssize_t
415ep_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
416{
417 struct ep_data *data = fd->private_data;
418 void *kbuf;
419 ssize_t value;
420
421 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
422 return value;
423
424 /* halt any endpoint by doing a "wrong direction" i/o call */
fa4c86a0 425 if (!usb_endpoint_dir_in(&data->desc)) {
38981158
AK
426 if (usb_endpoint_xfer_isoc(&data->desc)) {
427 mutex_unlock(&data->lock);
1da177e4 428 return -EINVAL;
38981158 429 }
1da177e4
LT
430 DBG (data->dev, "%s halt\n", data->name);
431 spin_lock_irq (&data->dev->lock);
432 if (likely (data->ep != NULL))
433 usb_ep_set_halt (data->ep);
434 spin_unlock_irq (&data->dev->lock);
a79df50b 435 mutex_unlock(&data->lock);
1da177e4
LT
436 return -EBADMSG;
437 }
438
439 /* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */
440
441 value = -ENOMEM;
e94b1766 442 kbuf = kmalloc (len, GFP_KERNEL);
1da177e4
LT
443 if (!kbuf)
444 goto free1;
445 if (copy_from_user (kbuf, buf, len)) {
446 value = -EFAULT;
447 goto free1;
448 }
449
450 value = ep_io (data, kbuf, len);
1bbc1696
DB
451 VDEBUG (data->dev, "%s write %zu IN, status %d\n",
452 data->name, len, (int) value);
1da177e4 453free1:
a79df50b 454 mutex_unlock(&data->lock);
1da177e4
LT
455 kfree (kbuf);
456 return value;
457}
458
459static int
460ep_release (struct inode *inode, struct file *fd)
461{
462 struct ep_data *data = fd->private_data;
ba307f58
MS
463 int value;
464
a79df50b
TG
465 value = mutex_lock_interruptible(&data->lock);
466 if (value < 0)
ba307f58 467 return value;
1da177e4
LT
468
469 /* clean up if this can be reopened */
470 if (data->state != STATE_EP_UNBOUND) {
471 data->state = STATE_EP_DISABLED;
472 data->desc.bDescriptorType = 0;
473 data->hs_desc.bDescriptorType = 0;
4809ecc2 474 usb_ep_disable(data->ep);
1da177e4 475 }
a79df50b 476 mutex_unlock(&data->lock);
1da177e4
LT
477 put_ep (data);
478 return 0;
479}
480
44c389a0 481static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
1da177e4
LT
482{
483 struct ep_data *data = fd->private_data;
484 int status;
485
486 if ((status = get_ready_ep (fd->f_flags, data)) < 0)
487 return status;
488
489 spin_lock_irq (&data->dev->lock);
490 if (likely (data->ep != NULL)) {
491 switch (code) {
492 case GADGETFS_FIFO_STATUS:
493 status = usb_ep_fifo_status (data->ep);
494 break;
495 case GADGETFS_FIFO_FLUSH:
496 usb_ep_fifo_flush (data->ep);
497 break;
498 case GADGETFS_CLEAR_HALT:
499 status = usb_ep_clear_halt (data->ep);
500 break;
501 default:
502 status = -ENOTTY;
503 }
504 } else
505 status = -ENODEV;
506 spin_unlock_irq (&data->dev->lock);
a79df50b 507 mutex_unlock(&data->lock);
1da177e4
LT
508 return status;
509}
510
511/*----------------------------------------------------------------------*/
512
513/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
514
515struct kiocb_priv {
516 struct usb_request *req;
517 struct ep_data *epdata;
a80bf61e
ZB
518 struct kiocb *iocb;
519 struct mm_struct *mm;
520 struct work_struct work;
1da177e4 521 void *buf;
027445c3
BP
522 const struct iovec *iv;
523 unsigned long nr_segs;
1da177e4
LT
524 unsigned actual;
525};
526
527static int ep_aio_cancel(struct kiocb *iocb, struct io_event *e)
528{
529 struct kiocb_priv *priv = iocb->private;
530 struct ep_data *epdata;
531 int value;
532
533 local_irq_disable();
534 epdata = priv->epdata;
535 // spin_lock(&epdata->dev->lock);
1da177e4
LT
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
a80bf61e 547static ssize_t ep_copy_to_user(struct kiocb_priv *priv)
1da177e4 548{
027445c3 549 ssize_t len, total;
50f97a1f 550 void *to_copy;
027445c3
BP
551 int i;
552
2505107d
DB
553 /* copy stuff into user buffers */
554 total = priv->actual;
555 len = 0;
50f97a1f 556 to_copy = priv->buf;
2505107d
DB
557 for (i=0; i < priv->nr_segs; i++) {
558 ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total);
559
50f97a1f 560 if (copy_to_user(priv->iv[i].iov_base, to_copy, this)) {
2505107d
DB
561 if (len == 0)
562 len = -EFAULT;
563 break;
564 }
565
566 total -= this;
567 len += this;
50f97a1f 568 to_copy += this;
2505107d
DB
569 if (total == 0)
570 break;
571 }
a80bf61e
ZB
572
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
2505107d
DB
590 kfree(priv->buf);
591 kfree(priv);
1da177e4
LT
592}
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;
49631ca7
AS
604
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)) {
1da177e4
LT
610 kfree(req->buf);
611 kfree(priv);
612 iocb->private = NULL;
613 /* aio_complete() reports bytes-transferred _and_ faults */
49631ca7 614 aio_complete(iocb, req->actual ? req->actual : req->status,
1da177e4
LT
615 req->status);
616 } else {
a80bf61e 617 /* ep_copy_to_user() won't report both; we hide some faults */
1da177e4
LT
618 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;
a80bf61e 624 schedule_work(&priv->work);
1da177e4
LT
625 }
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,
027445c3 638 const struct iovec *iv,
2505107d 639 unsigned long nr_segs
1da177e4
LT
640)
641{
83196b52 642 struct kiocb_priv *priv;
1da177e4
LT
643 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;
a80bf61e 654 priv->iocb = iocb;
027445c3
BP
655 priv->iv = iv;
656 priv->nr_segs = nr_segs;
a80bf61e 657 INIT_WORK(&priv->work, ep_user_copy_worker);
1da177e4
LT
658
659 value = get_ready_ep(iocb->ki_filp->f_flags, epdata);
660 if (unlikely(value < 0)) {
661 kfree(priv);
662 goto fail;
663 }
664
0460fef2 665 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
1da177e4
LT
666 get_ep(epdata);
667 priv->epdata = epdata;
668 priv->actual = 0;
a80bf61e 669 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
1da177e4
LT
670
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
a79df50b 692 mutex_unlock(&epdata->lock);
1da177e4
LT
693
694 if (unlikely(value)) {
695 kfree(priv);
696 put_ep(epdata);
697 } else
a80bf61e 698 value = -EIOCBQUEUED;
1da177e4
LT
699 return value;
700}
701
702static ssize_t
027445c3
BP
703ep_aio_read(struct kiocb *iocb, const struct iovec *iov,
704 unsigned long nr_segs, loff_t o)
1da177e4
LT
705{
706 struct ep_data *epdata = iocb->ki_filp->private_data;
707 char *buf;
708
fa4c86a0 709 if (unlikely(usb_endpoint_dir_in(&epdata->desc)))
1da177e4 710 return -EINVAL;
027445c3
BP
711
712 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
1da177e4
LT
713 if (unlikely(!buf))
714 return -ENOMEM;
027445c3 715
027445c3 716 return ep_aio_rwtail(iocb, buf, iocb->ki_left, epdata, iov, nr_segs);
1da177e4
LT
717}
718
719static ssize_t
027445c3
BP
720ep_aio_write(struct kiocb *iocb, const struct iovec *iov,
721 unsigned long nr_segs, loff_t o)
1da177e4
LT
722{
723 struct ep_data *epdata = iocb->ki_filp->private_data;
724 char *buf;
027445c3
BP
725 size_t len = 0;
726 int i = 0;
1da177e4 727
fa4c86a0 728 if (unlikely(!usb_endpoint_dir_in(&epdata->desc)))
1da177e4 729 return -EINVAL;
027445c3
BP
730
731 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
1da177e4
LT
732 if (unlikely(!buf))
733 return -ENOMEM;
027445c3
BP
734
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;
1da177e4 742 }
027445c3 743 return ep_aio_rwtail(iocb, buf, len, epdata, NULL, 0);
1da177e4
LT
744}
745
746/*----------------------------------------------------------------------*/
747
748/* used after endpoint configuration */
066202dd 749static const struct file_operations ep_io_operations = {
1da177e4
LT
750 .owner = THIS_MODULE,
751 .llseek = no_llseek,
752
753 .read = ep_read,
754 .write = ep_write,
44c389a0 755 .unlocked_ioctl = ep_ioctl,
1da177e4
LT
756 .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;
8a7471ab 781 int value, length = len;
1da177e4 782
a79df50b
TG
783 value = mutex_lock_interruptible(&data->lock);
784 if (value < 0)
1da177e4
LT
785 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 }
1da177e4
LT
833
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:
72c973dd
TB
845 ep->desc = &data->desc;
846 value = usb_ep_enable(ep);
1da177e4
LT
847 if (value == 0)
848 data->state = STATE_EP_ENABLED;
849 break;
1da177e4
LT
850 case USB_SPEED_HIGH:
851 /* fails if caller didn't provide that descriptor... */
72c973dd
TB
852 ep->desc = &data->hs_desc;
853 value = usb_ep_enable(ep);
1da177e4
LT
854 if (value == 0)
855 data->state = STATE_EP_ENABLED;
856 break;
1da177e4 857 default:
511779fd 858 DBG(data->dev, "unconnected, %s init abandoned\n",
1da177e4 859 data->name);
511779fd 860 value = -EINVAL;
1da177e4 861 }
8a7471ab 862 if (value == 0) {
1da177e4 863 fd->f_op = &ep_io_operations;
8a7471ab
MS
864 value = length;
865 }
1da177e4
LT
866gone:
867 spin_unlock_irq (&data->dev->lock);
868 if (value < 0) {
869fail:
870 data->desc.bDescriptorType = 0;
871 data->hs_desc.bDescriptorType = 0;
872 }
a79df50b 873 mutex_unlock(&data->lock);
1da177e4
LT
874 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{
8e18e294 886 struct ep_data *data = inode->i_private;
1da177e4
LT
887 int value = -EBUSY;
888
a79df50b 889 if (mutex_lock_interruptible(&data->lock) != 0)
1da177e4
LT
890 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);
a79df50b 904 mutex_unlock(&data->lock);
1da177e4
LT
905 return value;
906}
907
908/* used before endpoint configuration */
066202dd 909static const struct file_operations ep_config_operations = {
1da177e4
LT
910 .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) {
9d8bab58 937 kfree(req->buf);
1da177e4 938 req->buf = dev->rbuf;
1da177e4
LT
939 }
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;
5b89db02 947 unsigned long flags;
1da177e4
LT
948 int free = 1;
949
950 /* for control OUT, data must still get to userspace */
5b89db02 951 spin_lock_irqsave(&dev->lock, flags);
1da177e4
LT
952 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);
7489d149 958 }
1da177e4
LT
959
960 /* clean up as appropriate */
961 if (free && req->buf != &dev->rbuf)
962 clean_req (ep, req);
963 req->complete = epio_complete;
5b89db02 964 spin_unlock_irqrestore(&dev->lock, flags);
1da177e4
LT
965}
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))
9d8bab58 976 req->buf = kmalloc(len, GFP_ATOMIC);
a9475226 977 if (req->buf == NULL) {
1da177e4
LT
978 req->buf = dev->rbuf;
979 return -ENOMEM;
980 }
981 req->complete = ep0_complete;
982 req->length = len;
97906369 983 req->zero = 0;
1da177e4
LT
984 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 */
7489d149 1004 if ((state = dev->state) == STATE_DEV_SETUP) {
1da177e4
LT
1005
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;
7489d149 1010 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1011
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);
7489d149 1018 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1019
1020 /* assume that was SET_CONFIGURATION */
1021 if (dev->current_config) {
1022 unsigned power;
a4e3ef55
DB
1023
1024 if (gadget_is_dualspeed(dev->gadget)
1025 && (dev->gadget->speed
1026 == USB_SPEED_HIGH))
1da177e4
LT
1027 power = dev->hs_config->bMaxPower;
1028 else
1da177e4
LT
1029 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;
5b89db02
DB
1047
1048 if (dev->state != STATE_DEV_SETUP) {
1049 retval = -ECANCELED;
1050 goto done;
1051 }
1052 dev->state = STATE_DEV_CONNECTED;
1053
1da177e4
LT
1054 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 ...
997694de 1059 if (copy_to_user (buf, dev->req->buf, len))
1da177e4 1060 retval = -EFAULT;
85b4b3c8
TF
1061 else
1062 retval = len;
1da177e4
LT
1063 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;
1da177e4 1082
1da177e4 1083 n = len / sizeof (struct usb_gadgetfs_event);
0864c7a9
DB
1084 if (dev->ev_next < n)
1085 n = dev->ev_next;
1da177e4 1086
0864c7a9 1087 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
1da177e4
LT
1088 for (i = 0; i < n; i++) {
1089 if (dev->event [i].type == GADGETFS_SETUP) {
0864c7a9
DB
1090 dev->state = STATE_DEV_SETUP;
1091 n = i + 1;
1da177e4
LT
1092 break;
1093 }
1094 }
1095 spin_unlock_irq (&dev->lock);
0864c7a9 1096 len = n * sizeof (struct usb_gadgetfs_event);
1da177e4
LT
1097 if (copy_to_user (buf, &dev->event, len))
1098 retval = -EFAULT;
1099 else
1100 retval = len;
1101 if (len > 0) {
1da177e4
LT
1102 /* NOTE this doesn't guard against broken drivers;
1103 * concurrent ep0 readers may lose events.
1104 */
1105 spin_lock_irq (&dev->lock);
0864c7a9
DB
1106 if (dev->ev_next > n) {
1107 memmove(&dev->event[0], &dev->event[n],
1da177e4 1108 sizeof (struct usb_gadgetfs_event)
0864c7a9
DB
1109 * (dev->ev_next - n));
1110 }
1111 dev->ev_next -= n;
1da177e4
LT
1112 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:
441b62c1 1123 DBG (dev, "fail %s, state %d\n", __func__, state);
1da177e4
LT
1124 retval = -ESRCH;
1125 break;
7489d149
DB
1126 case STATE_DEV_UNCONNECTED:
1127 case STATE_DEV_CONNECTED:
1da177e4 1128 spin_unlock_irq (&dev->lock);
441b62c1 1129 DBG (dev, "%s wait\n", __func__);
1da177e4
LT
1130
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:
7489d149 1154 if (dev->state == STATE_DEV_SETUP)
1da177e4
LT
1155 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;
0864c7a9 1166 DBG(dev, "discard old event[%d] %d\n", i, type);
1da177e4
LT
1167 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 }
0864c7a9 1179 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
1da177e4
LT
1180 event = &dev->event [dev->ev_next++];
1181 BUG_ON (dev->ev_next > N_EVENT);
1da177e4
LT
1182 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 */
7489d149 1201 } else if (dev->state == STATE_DEV_SETUP) {
1da177e4 1202
66e87b46 1203 len = min_t(size_t, len, dev->setup_wLength);
1da177e4
LT
1204 if (dev->setup_in) {
1205 retval = setup_req (dev->gadget->ep0, dev->req, len);
1206 if (retval == 0) {
5b89db02 1207 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1208 spin_unlock_irq (&dev->lock);
1209 if (copy_from_user (dev->req->buf, buf, len))
1210 retval = -EFAULT;
97906369
AS
1211 else {
1212 if (len < dev->setup_wLength)
1213 dev->req->zero = 1;
1da177e4
LT
1214 retval = usb_ep_queue (
1215 dev->gadget->ep0, dev->req,
1216 GFP_KERNEL);
97906369 1217 }
1da177e4
LT
1218 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;
7489d149 1233 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1234 } else {
1235 DBG(dev, "bogus ep0out stall!\n");
1236 }
1237 } else
441b62c1 1238 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
1da177e4
LT
1239
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
441b62c1 1249 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
1da177e4
LT
1250 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
1da177e4
LT
1269 kfree (dev->buf);
1270 dev->buf = NULL;
1271 put_dev (dev);
1272
1273 /* other endpoints were all decoupled from this device */
7489d149 1274 spin_lock_irq(&dev->lock);
1da177e4 1275 dev->state = STATE_DEV_DISABLED;
7489d149 1276 spin_unlock_irq(&dev->lock);
1da177e4
LT
1277 return 0;
1278}
1279
e22fc27c
MS
1280static 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
7489d149 1297 if (dev->state == STATE_DEV_SETUP) {
e22fc27c
MS
1298 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
44c389a0 1309static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
1da177e4
LT
1310{
1311 struct dev_data *dev = fd->private_data;
1312 struct usb_gadget *gadget = dev->gadget;
44c389a0 1313 long ret = -ENOTTY;
1da177e4 1314
1548b13b 1315 if (gadget->ops->ioctl)
44c389a0 1316 ret = gadget->ops->ioctl (gadget, code, value);
1548b13b 1317
44c389a0 1318 return ret;
1da177e4
LT
1319}
1320
1321/* used after device configuration */
066202dd 1322static const struct file_operations ep0_io_operations = {
1da177e4
LT
1323 .owner = THIS_MODULE,
1324 .llseek = no_llseek,
1325
1326 .read = ep0_read,
1327 .write = ep0_write,
1328 .fasync = ep0_fasync,
e22fc27c 1329 .poll = ep0_poll,
44c389a0 1330 .unlocked_ioctl = dev_ioctl,
1da177e4
LT
1331 .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
1da177e4
LT
1342static 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;
551509d2 1349 qual.bcdUSB = cpu_to_le16 (0x0200);
1da177e4
LT
1350
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 ... */
765f5b83 1357 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1da177e4
LT
1358
1359 qual.bNumConfigurations = 1;
1360 qual.bRESERVED = 0;
1361
1362 memcpy (dev->rbuf, &qual, sizeof qual);
1363}
1da177e4
LT
1364
1365static int
1366config_buf (struct dev_data *dev, u8 type, unsigned index)
1367{
1368 int len;
a4e3ef55 1369 int hs = 0;
1da177e4
LT
1370
1371 /* only one configuration */
1372 if (index > 0)
1373 return -EINVAL;
1374
a4e3ef55
DB
1375 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 }
1da177e4
LT
1380 if (hs) {
1381 dev->req->buf = dev->hs_config;
01ee7d70 1382 len = le16_to_cpu(dev->hs_config->wTotalLength);
a4e3ef55 1383 } else {
1da177e4 1384 dev->req->buf = dev->config;
01ee7d70 1385 len = le16_to_cpu(dev->config->wTotalLength);
1da177e4
LT
1386 }
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;
1bbc1696
DB
1398 u16 w_value = le16_to_cpu(ctrl->wValue);
1399 u16 w_length = le16_to_cpu(ctrl->wLength);
1da177e4
LT
1400
1401 spin_lock (&dev->lock);
1402 dev->setup_abort = 0;
7489d149 1403 if (dev->state == STATE_DEV_UNCONNECTED) {
a4e3ef55
DB
1404 if (gadget_is_dualspeed(gadget)
1405 && gadget->speed == USB_SPEED_HIGH
1406 && dev->hs_config == NULL) {
ce46794f 1407 spin_unlock(&dev->lock);
1da177e4
LT
1408 ERROR (dev, "no high speed config??\n");
1409 return -EINVAL;
1410 }
1da177e4 1411
ce46794f 1412 dev->state = STATE_DEV_CONNECTED;
ce46794f 1413
1da177e4
LT
1414 INFO (dev, "connected\n");
1415 event = next_event (dev, GADGETFS_CONNECT);
1416 event->u.speed = gadget->speed;
1417 ep0_readable (dev);
1418
1da177e4
LT
1419 /* 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 */
7489d149 1424 } else if (dev->state == STATE_DEV_SETUP)
1da177e4
LT
1425 dev->setup_abort = 1;
1426
1427 req->buf = dev->rbuf;
1da177e4
LT
1428 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);
765f5b83 1439 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1da177e4
LT
1440 req->buf = dev->dev;
1441 break;
1da177e4
LT
1442 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
1da177e4
LT
1451 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)
12cd5b98 1469 goto unrecognized;
1da177e4
LT
1470 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;
a4e3ef55
DB
1477
1478 if (gadget_is_dualspeed(gadget)
1479 && gadget->speed == USB_SPEED_HIGH) {
1da177e4
LT
1480 config = dev->hs_config->bConfigurationValue;
1481 power = dev->hs_config->bMaxPower;
a4e3ef55 1482 } else {
1da177e4
LT
1483 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
0a0fac88 1512#ifndef CONFIG_USB_PXA25X
1da177e4
LT
1513 /* PXA automagically handles this request too */
1514 case USB_REQ_GET_CONFIGURATION:
1515 if (ctrl->bRequestType != 0x80)
12cd5b98 1516 goto unrecognized;
1da177e4
LT
1517 *(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;
97906369 1535 dev->setup_wLength = w_length;
1da177e4
LT
1536 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? */
7489d149 1567 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
1da177e4
LT
1568 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{
441b62c1 1584 DBG (dev, "%s %d\n", __func__, dev->state);
1da177e4
LT
1585
1586 /* dev->state must prevent interference */
1da177e4 1587 spin_lock_irq (&dev->lock);
104bb37d 1588 while (!list_empty(&dev->epfiles)) {
1da177e4
LT
1589 struct ep_data *ep;
1590 struct inode *parent;
1591 struct dentry *dentry;
1592
1593 /* break link to FS */
104bb37d 1594 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
1da177e4
LT
1595 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 */
1b1dcc1b 1612 mutex_lock (&parent->i_mutex);
1da177e4
LT
1613 d_delete (dentry);
1614 dput (dentry);
1b1dcc1b 1615 mutex_unlock (&parent->i_mutex);
1da177e4 1616
104bb37d 1617 spin_lock_irq (&dev->lock);
1da177e4
LT
1618 }
1619 spin_unlock_irq (&dev->lock);
1620}
1621
1622
1623static struct inode *
1624gadgetfs_create_file (struct super_block *sb, char const *name,
99ac48f5 1625 void *data, const struct file_operations *fops,
1da177e4
LT
1626 struct dentry **dentry_p);
1627
1628static int activate_ep_files (struct dev_data *dev)
1629{
1630 struct usb_ep *ep;
0ae4ea80 1631 struct ep_data *data;
1da177e4
LT
1632
1633 gadget_for_each_ep (ep, dev->gadget) {
1da177e4 1634
7039f422 1635 data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4 1636 if (!data)
0ae4ea80 1637 goto enomem0;
1da177e4 1638 data->state = STATE_EP_DISABLED;
a79df50b 1639 mutex_init(&data->lock);
1da177e4
LT
1640 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)
0ae4ea80 1652 goto enomem1;
1da177e4
LT
1653
1654 data->inode = gadgetfs_create_file (dev->sb, data->name,
1655 data, &ep_config_operations,
1656 &data->dentry);
0ae4ea80
AS
1657 if (!data->inode)
1658 goto enomem2;
1da177e4
LT
1659 list_add_tail (&data->epfiles, &dev->epfiles);
1660 }
1661 return 0;
1662
0ae4ea80
AS
1663enomem2:
1664 usb_ep_free_request (ep, data->req);
1665enomem1:
1666 put_dev (dev);
1667 kfree (data);
1668enomem0:
441b62c1 1669 DBG (dev, "%s enomem\n", __func__);
1da177e4
LT
1670 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
441b62c1 1679 DBG (dev, "%s\n", __func__);
1da177e4
LT
1680
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);
441b62c1 1692 DBG (dev, "%s done\n", __func__);
1da177e4
LT
1693 put_dev (dev);
1694}
1695
1696static struct dev_data *the_device;
1697
ffe0b335
SAS
1698static int gadgetfs_bind(struct usb_gadget *gadget,
1699 struct usb_gadget_driver *driver)
1da177e4
LT
1700{
1701 struct dev_data *dev = the_device;
1702
1703 if (!dev)
1704 return -ESRCH;
1705 if (0 != strcmp (CHIP, gadget->name)) {
00274921 1706 pr_err("%s expected %s controller not %s\n",
1da177e4
LT
1707 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;
1da177e4
LT
1714
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);
7489d149
DB
1726 spin_lock_irq(&dev->lock);
1727 dev->state = STATE_DEV_UNCONNECTED;
1728 spin_unlock_irq(&dev->lock);
1da177e4
LT
1729 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);
001428e4 1741 unsigned long flags;
1da177e4 1742
001428e4 1743 spin_lock_irqsave (&dev->lock, flags);
7489d149 1744 if (dev->state == STATE_DEV_UNCONNECTED)
07cb7f23 1745 goto exit;
7489d149 1746 dev->state = STATE_DEV_UNCONNECTED;
1da177e4
LT
1747
1748 INFO (dev, "disconnected\n");
1da177e4
LT
1749 next_event (dev, GADGETFS_DISCONNECT);
1750 ep0_readable (dev);
07cb7f23 1751exit:
001428e4 1752 spin_unlock_irqrestore (&dev->lock, flags);
1da177e4
LT
1753}
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) {
7489d149
DB
1763 case STATE_DEV_SETUP: // VERY odd... host died??
1764 case STATE_DEV_CONNECTED:
1765 case STATE_DEV_UNCONNECTED:
1da177e4
LT
1766 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 = {
1da177e4 1776 .function = (char *) driver_desc,
93952956 1777 .bind = gadgetfs_bind,
1da177e4
LT
1778 .unbind = gadgetfs_unbind,
1779 .setup = gadgetfs_setup,
1780 .disconnect = gadgetfs_disconnect,
1781 .suspend = gadgetfs_suspend,
1782
2505107d 1783 .driver = {
1da177e4 1784 .name = (char *) shortname,
1da177e4
LT
1785 },
1786};
1787
1788/*----------------------------------------------------------------------*/
1789
1790static void gadgetfs_nop(struct usb_gadget *arg) { }
1791
ffe0b335
SAS
1792static int gadgetfs_probe(struct usb_gadget *gadget,
1793 struct usb_gadget_driver *driver)
1da177e4
LT
1794{
1795 CHIP = gadget->name;
1796 return -EISNAM;
1797}
1798
1799static struct usb_gadget_driver probe_driver = {
7177aed4 1800 .max_speed = USB_SPEED_HIGH,
93952956 1801 .bind = gadgetfs_probe,
1da177e4
LT
1802 .unbind = gadgetfs_nop,
1803 .setup = (void *)gadgetfs_nop,
1804 .disconnect = gadgetfs_nop,
2505107d 1805 .driver = {
1da177e4
LT
1806 .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;
2505107d 1825 * this one's optional except for high-speed hardware
1da177e4
LT
1826 * . device descriptor
1827 *
511779fd
PE
1828 * Endpoints are not yet enabled. Drivers must wait until device
1829 * configuration and interface altsetting changes create
1da177e4
LT
1830 * the need to configure (or unconfigure) them.
1831 *
1832 * After initialization, the device stays active for as long as that
511779fd
PE
1833 * $CHIP file is open. Events must then be read from that descriptor,
1834 * such as configuration notifications.
1da177e4
LT
1835 */
1836
bde22e32
AS
1837static int is_valid_config(struct usb_config_descriptor *config,
1838 unsigned int total)
1da177e4
LT
1839{
1840 return config->bDescriptorType == USB_DT_CONFIG
1841 && config->bLength == USB_DT_CONFIG_SIZE
bde22e32 1842 && total >= USB_DT_CONFIG_SIZE
1da177e4
LT
1843 && config->bConfigurationValue != 0
1844 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1845 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1846 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1847 /* FIXME check lengths: walk to end */
1848}
1849
1850static ssize_t
1851dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1852{
1853 struct dev_data *dev = fd->private_data;
1854 ssize_t value = len, length = len;
1855 unsigned total;
1856 u32 tag;
1857 char *kbuf;
1858
133caaf5
GKH
1859 if ((len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4)) ||
1860 (len > PAGE_SIZE * 4))
1da177e4
LT
1861 return -EINVAL;
1862
1863 /* we might need to change message format someday */
1864 if (copy_from_user (&tag, buf, 4))
1865 return -EFAULT;
1866 if (tag != 0)
1867 return -EINVAL;
1868 buf += 4;
1869 length -= 4;
1870
be8a058b
JL
1871 kbuf = memdup_user(buf, length);
1872 if (IS_ERR(kbuf))
1873 return PTR_ERR(kbuf);
1da177e4
LT
1874
1875 spin_lock_irq (&dev->lock);
1876 value = -EINVAL;
1877 if (dev->buf)
1878 goto fail;
1879 dev->buf = kbuf;
1880
1881 /* full or low speed config */
1882 dev->config = (void *) kbuf;
01ee7d70 1883 total = le16_to_cpu(dev->config->wTotalLength);
bde22e32
AS
1884 if (!is_valid_config(dev->config, total) ||
1885 total > length - USB_DT_DEVICE_SIZE)
1da177e4
LT
1886 goto fail;
1887 kbuf += total;
1888 length -= total;
1889
1890 /* optional high speed config */
1891 if (kbuf [1] == USB_DT_CONFIG) {
1892 dev->hs_config = (void *) kbuf;
01ee7d70 1893 total = le16_to_cpu(dev->hs_config->wTotalLength);
bde22e32
AS
1894 if (!is_valid_config(dev->hs_config, total) ||
1895 total > length - USB_DT_DEVICE_SIZE)
1da177e4
LT
1896 goto fail;
1897 kbuf += total;
1898 length -= total;
6ccec4b1
AS
1899 } else {
1900 dev->hs_config = NULL;
1da177e4
LT
1901 }
1902
1903 /* could support multiple configs, using another encoding! */
1904
1905 /* device descriptor (tweaked for paranoia) */
1906 if (length != USB_DT_DEVICE_SIZE)
1907 goto fail;
1908 dev->dev = (void *)kbuf;
1909 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1910 || dev->dev->bDescriptorType != USB_DT_DEVICE
1911 || dev->dev->bNumConfigurations != 1)
1912 goto fail;
1913 dev->dev->bNumConfigurations = 1;
551509d2 1914 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
1da177e4
LT
1915
1916 /* triggers gadgetfs_bind(); then we can enumerate. */
1917 spin_unlock_irq (&dev->lock);
85b8614d
MN
1918 if (dev->hs_config)
1919 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1920 else
1921 gadgetfs_driver.max_speed = USB_SPEED_FULL;
93952956
SAS
1922
1923 value = usb_gadget_probe_driver(&gadgetfs_driver);
1da177e4
LT
1924 if (value != 0) {
1925 kfree (dev->buf);
1926 dev->buf = NULL;
1927 } else {
1928 /* at this point "good" hardware has for the first time
1929 * let the USB the host see us. alternatively, if users
1930 * unplug/replug that will clear all the error state.
1931 *
1932 * note: everything running before here was guaranteed
1933 * to choke driver model style diagnostics. from here
1934 * on, they can work ... except in cleanup paths that
1935 * kick in after the ep0 descriptor is closed.
1936 */
1937 fd->f_op = &ep0_io_operations;
1938 value = len;
1939 }
1940 return value;
1941
1942fail:
1943 spin_unlock_irq (&dev->lock);
441b62c1 1944 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
1da177e4
LT
1945 kfree (dev->buf);
1946 dev->buf = NULL;
1947 return value;
1948}
1949
1950static int
1951dev_open (struct inode *inode, struct file *fd)
1952{
8e18e294 1953 struct dev_data *dev = inode->i_private;
1da177e4
LT
1954 int value = -EBUSY;
1955
7489d149 1956 spin_lock_irq(&dev->lock);
1da177e4
LT
1957 if (dev->state == STATE_DEV_DISABLED) {
1958 dev->ev_next = 0;
7489d149 1959 dev->state = STATE_DEV_OPENED;
1da177e4
LT
1960 fd->private_data = dev;
1961 get_dev (dev);
1962 value = 0;
1963 }
7489d149 1964 spin_unlock_irq(&dev->lock);
1da177e4
LT
1965 return value;
1966}
1967
066202dd 1968static const struct file_operations dev_init_operations = {
1da177e4
LT
1969 .llseek = no_llseek,
1970
1971 .open = dev_open,
1972 .write = dev_config,
1973 .fasync = ep0_fasync,
44c389a0 1974 .unlocked_ioctl = dev_ioctl,
1da177e4
LT
1975 .release = dev_release,
1976};
1977
1978/*----------------------------------------------------------------------*/
1979
1980/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1981 *
1982 * Mounting the filesystem creates a controller file, used first for
1983 * device configuration then later for event monitoring.
1984 */
1985
1986
1987/* FIXME PAM etc could set this security policy without mount options
1988 * if epfiles inherited ownership and permissons from ep0 ...
1989 */
1990
1991static unsigned default_uid;
1992static unsigned default_gid;
1993static unsigned default_perm = S_IRUSR | S_IWUSR;
1994
1995module_param (default_uid, uint, 0644);
1996module_param (default_gid, uint, 0644);
1997module_param (default_perm, uint, 0644);
1998
1999
2000static struct inode *
2001gadgetfs_make_inode (struct super_block *sb,
99ac48f5 2002 void *data, const struct file_operations *fops,
1da177e4
LT
2003 int mode)
2004{
2005 struct inode *inode = new_inode (sb);
2006
2007 if (inode) {
85fe4025 2008 inode->i_ino = get_next_ino();
1da177e4 2009 inode->i_mode = mode;
32d639c6
EB
2010 inode->i_uid = make_kuid(&init_user_ns, default_uid);
2011 inode->i_gid = make_kgid(&init_user_ns, default_gid);
1da177e4
LT
2012 inode->i_atime = inode->i_mtime = inode->i_ctime
2013 = CURRENT_TIME;
8e18e294 2014 inode->i_private = data;
1da177e4
LT
2015 inode->i_fop = fops;
2016 }
2017 return inode;
2018}
2019
2020/* creates in fs root directory, so non-renamable and non-linkable.
2021 * so inode and dentry are paired, until device reconfig.
2022 */
2023static struct inode *
2024gadgetfs_create_file (struct super_block *sb, char const *name,
99ac48f5 2025 void *data, const struct file_operations *fops,
1da177e4
LT
2026 struct dentry **dentry_p)
2027{
2028 struct dentry *dentry;
2029 struct inode *inode;
2030
2031 dentry = d_alloc_name(sb->s_root, name);
2032 if (!dentry)
2033 return NULL;
2034
2035 inode = gadgetfs_make_inode (sb, data, fops,
2036 S_IFREG | (default_perm & S_IRWXUGO));
2037 if (!inode) {
2038 dput(dentry);
2039 return NULL;
2040 }
2041 d_add (dentry, inode);
2042 *dentry_p = dentry;
2043 return inode;
2044}
2045
b87221de 2046static const struct super_operations gadget_fs_operations = {
1da177e4
LT
2047 .statfs = simple_statfs,
2048 .drop_inode = generic_delete_inode,
2049};
2050
2051static int
2052gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2053{
2054 struct inode *inode;
1da177e4
LT
2055 struct dev_data *dev;
2056
2057 if (the_device)
2058 return -ESRCH;
2059
2060 /* fake probe to determine $CHIP */
93952956 2061 usb_gadget_probe_driver(&probe_driver);
1da177e4
LT
2062 if (!CHIP)
2063 return -ENODEV;
2064
2065 /* superblock */
2066 sb->s_blocksize = PAGE_CACHE_SIZE;
2067 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2068 sb->s_magic = GADGETFS_MAGIC;
2069 sb->s_op = &gadget_fs_operations;
2070 sb->s_time_gran = 1;
2071
2072 /* root inode */
2073 inode = gadgetfs_make_inode (sb,
2074 NULL, &simple_dir_operations,
2075 S_IFDIR | S_IRUGO | S_IXUGO);
2076 if (!inode)
87da5b32 2077 goto Enomem;
1da177e4 2078 inode->i_op = &simple_dir_inode_operations;
48fde701 2079 if (!(sb->s_root = d_make_root (inode)))
87da5b32 2080 goto Enomem;
1da177e4
LT
2081
2082 /* the ep0 file is named after the controller we expect;
2083 * user mode code can use it for sanity checks, like we do.
2084 */
2085 dev = dev_new ();
2086 if (!dev)
87da5b32 2087 goto Enomem;
1da177e4
LT
2088
2089 dev->sb = sb;
0ae4ea80 2090 if (!gadgetfs_create_file (sb, CHIP,
1da177e4 2091 dev, &dev_init_operations,
87da5b32
AV
2092 &dev->dentry)) {
2093 put_dev(dev);
2094 goto Enomem;
2095 }
1da177e4
LT
2096
2097 /* other endpoint files are available after hardware setup,
2098 * from binding to a controller.
2099 */
2100 the_device = dev;
2101 return 0;
0ae4ea80 2102
87da5b32 2103Enomem:
0ae4ea80 2104 return -ENOMEM;
1da177e4
LT
2105}
2106
2107/* "mount -t gadgetfs path /dev/gadget" ends up here */
fc14f2fe
AV
2108static struct dentry *
2109gadgetfs_mount (struct file_system_type *t, int flags,
2110 const char *path, void *opts)
1da177e4 2111{
fc14f2fe 2112 return mount_single (t, flags, opts, gadgetfs_fill_super);
1da177e4
LT
2113}
2114
2115static void
2116gadgetfs_kill_sb (struct super_block *sb)
2117{
2118 kill_litter_super (sb);
2119 if (the_device) {
2120 put_dev (the_device);
2121 the_device = NULL;
2122 }
2123}
2124
2125/*----------------------------------------------------------------------*/
2126
2127static struct file_system_type gadgetfs_type = {
2128 .owner = THIS_MODULE,
2129 .name = shortname,
fc14f2fe 2130 .mount = gadgetfs_mount,
1da177e4
LT
2131 .kill_sb = gadgetfs_kill_sb,
2132};
7f78e035 2133MODULE_ALIAS_FS("gadgetfs");
1da177e4
LT
2134
2135/*----------------------------------------------------------------------*/
2136
2137static int __init init (void)
2138{
2139 int status;
2140
2141 status = register_filesystem (&gadgetfs_type);
2142 if (status == 0)
2143 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2144 shortname, driver_desc);
2145 return status;
2146}
2147module_init (init);
2148
2149static void __exit cleanup (void)
2150{
2151 pr_debug ("unregister %s\n", shortname);
2152 unregister_filesystem (&gadgetfs_type);
2153}
2154module_exit (cleanup);
2155