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