blob: 5415353ab2c14185c463fe6a6a93647eed97b45b [file] [log] [blame]
Benoit Goby2b6862d2011-12-19 14:38:41 -08001/*
2 * Gadget Driver for Android ADB
3 *
4 * Copyright (C) 2008 Google, Inc.
5 * Author: Mike Lockwood <lockwood@android.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
20#include <linux/poll.h>
21#include <linux/delay.h>
22#include <linux/wait.h>
23#include <linux/err.h>
24#include <linux/interrupt.h>
25#include <linux/sched.h>
26#include <linux/types.h>
27#include <linux/device.h>
28#include <linux/miscdevice.h>
29
30#define ADB_BULK_BUFFER_SIZE 4096
31
32/* number of tx requests to allocate */
33#define TX_REQ_MAX 4
34
35static const char adb_shortname[] = "android_adb";
36
37struct adb_dev {
38 struct usb_function function;
39 struct usb_composite_dev *cdev;
40 spinlock_t lock;
41
42 struct usb_ep *ep_in;
43 struct usb_ep *ep_out;
44
45 int online;
46 int error;
47
48 atomic_t read_excl;
49 atomic_t write_excl;
50 atomic_t open_excl;
51
52 struct list_head tx_idle;
53
54 wait_queue_head_t read_wq;
55 wait_queue_head_t write_wq;
56 struct usb_request *rx_req;
57 int rx_done;
58};
59
60static struct usb_interface_descriptor adb_interface_desc = {
61 .bLength = USB_DT_INTERFACE_SIZE,
62 .bDescriptorType = USB_DT_INTERFACE,
63 .bInterfaceNumber = 0,
64 .bNumEndpoints = 2,
65 .bInterfaceClass = 0xFF,
66 .bInterfaceSubClass = 0x42,
67 .bInterfaceProtocol = 1,
68};
69
70static struct usb_endpoint_descriptor adb_highspeed_in_desc = {
71 .bLength = USB_DT_ENDPOINT_SIZE,
72 .bDescriptorType = USB_DT_ENDPOINT,
73 .bEndpointAddress = USB_DIR_IN,
74 .bmAttributes = USB_ENDPOINT_XFER_BULK,
75 .wMaxPacketSize = __constant_cpu_to_le16(512),
76};
77
78static struct usb_endpoint_descriptor adb_highspeed_out_desc = {
79 .bLength = USB_DT_ENDPOINT_SIZE,
80 .bDescriptorType = USB_DT_ENDPOINT,
81 .bEndpointAddress = USB_DIR_OUT,
82 .bmAttributes = USB_ENDPOINT_XFER_BULK,
83 .wMaxPacketSize = __constant_cpu_to_le16(512),
84};
85
86static struct usb_endpoint_descriptor adb_fullspeed_in_desc = {
87 .bLength = USB_DT_ENDPOINT_SIZE,
88 .bDescriptorType = USB_DT_ENDPOINT,
89 .bEndpointAddress = USB_DIR_IN,
90 .bmAttributes = USB_ENDPOINT_XFER_BULK,
91};
92
93static struct usb_endpoint_descriptor adb_fullspeed_out_desc = {
94 .bLength = USB_DT_ENDPOINT_SIZE,
95 .bDescriptorType = USB_DT_ENDPOINT,
96 .bEndpointAddress = USB_DIR_OUT,
97 .bmAttributes = USB_ENDPOINT_XFER_BULK,
98};
99
100static struct usb_descriptor_header *fs_adb_descs[] = {
101 (struct usb_descriptor_header *) &adb_interface_desc,
102 (struct usb_descriptor_header *) &adb_fullspeed_in_desc,
103 (struct usb_descriptor_header *) &adb_fullspeed_out_desc,
104 NULL,
105};
106
107static struct usb_descriptor_header *hs_adb_descs[] = {
108 (struct usb_descriptor_header *) &adb_interface_desc,
109 (struct usb_descriptor_header *) &adb_highspeed_in_desc,
110 (struct usb_descriptor_header *) &adb_highspeed_out_desc,
111 NULL,
112};
113
114
115/* temporary variable used between adb_open() and adb_gadget_bind() */
116static struct adb_dev *_adb_dev;
117
118static inline struct adb_dev *func_to_adb(struct usb_function *f)
119{
120 return container_of(f, struct adb_dev, function);
121}
122
123
124static struct usb_request *adb_request_new(struct usb_ep *ep, int buffer_size)
125{
126 struct usb_request *req = usb_ep_alloc_request(ep, GFP_KERNEL);
127 if (!req)
128 return NULL;
129
130 /* now allocate buffers for the requests */
131 req->buf = kmalloc(buffer_size, GFP_KERNEL);
132 if (!req->buf) {
133 usb_ep_free_request(ep, req);
134 return NULL;
135 }
136
137 return req;
138}
139
140static void adb_request_free(struct usb_request *req, struct usb_ep *ep)
141{
142 if (req) {
143 kfree(req->buf);
144 usb_ep_free_request(ep, req);
145 }
146}
147
148static inline int adb_lock(atomic_t *excl)
149{
150 if (atomic_inc_return(excl) == 1) {
151 return 0;
152 } else {
153 atomic_dec(excl);
154 return -1;
155 }
156}
157
158static inline void adb_unlock(atomic_t *excl)
159{
160 atomic_dec(excl);
161}
162
163/* add a request to the tail of a list */
164void adb_req_put(struct adb_dev *dev, struct list_head *head,
165 struct usb_request *req)
166{
167 unsigned long flags;
168
169 spin_lock_irqsave(&dev->lock, flags);
170 list_add_tail(&req->list, head);
171 spin_unlock_irqrestore(&dev->lock, flags);
172}
173
174/* remove a request from the head of a list */
175struct usb_request *adb_req_get(struct adb_dev *dev, struct list_head *head)
176{
177 unsigned long flags;
178 struct usb_request *req;
179
180 spin_lock_irqsave(&dev->lock, flags);
181 if (list_empty(head)) {
182 req = 0;
183 } else {
184 req = list_first_entry(head, struct usb_request, list);
185 list_del(&req->list);
186 }
187 spin_unlock_irqrestore(&dev->lock, flags);
188 return req;
189}
190
191static void adb_complete_in(struct usb_ep *ep, struct usb_request *req)
192{
193 struct adb_dev *dev = _adb_dev;
194
195 if (req->status != 0)
196 dev->error = 1;
197
198 adb_req_put(dev, &dev->tx_idle, req);
199
200 wake_up(&dev->write_wq);
201}
202
203static void adb_complete_out(struct usb_ep *ep, struct usb_request *req)
204{
205 struct adb_dev *dev = _adb_dev;
206
207 dev->rx_done = 1;
208 if (req->status != 0)
209 dev->error = 1;
210
211 wake_up(&dev->read_wq);
212}
213
214static int adb_create_bulk_endpoints(struct adb_dev *dev,
215 struct usb_endpoint_descriptor *in_desc,
216 struct usb_endpoint_descriptor *out_desc)
217{
218 struct usb_composite_dev *cdev = dev->cdev;
219 struct usb_request *req;
220 struct usb_ep *ep;
221 int i;
222
223 DBG(cdev, "create_bulk_endpoints dev: %p\n", dev);
224
225 ep = usb_ep_autoconfig(cdev->gadget, in_desc);
226 if (!ep) {
227 DBG(cdev, "usb_ep_autoconfig for ep_in failed\n");
228 return -ENODEV;
229 }
230 DBG(cdev, "usb_ep_autoconfig for ep_in got %s\n", ep->name);
231 ep->driver_data = dev; /* claim the endpoint */
232 dev->ep_in = ep;
233
234 ep = usb_ep_autoconfig(cdev->gadget, out_desc);
235 if (!ep) {
236 DBG(cdev, "usb_ep_autoconfig for ep_out failed\n");
237 return -ENODEV;
238 }
239 DBG(cdev, "usb_ep_autoconfig for adb ep_out got %s\n", ep->name);
240 ep->driver_data = dev; /* claim the endpoint */
241 dev->ep_out = ep;
242
243 /* now allocate requests for our endpoints */
244 req = adb_request_new(dev->ep_out, ADB_BULK_BUFFER_SIZE);
245 if (!req)
246 goto fail;
247 req->complete = adb_complete_out;
248 dev->rx_req = req;
249
250 for (i = 0; i < TX_REQ_MAX; i++) {
251 req = adb_request_new(dev->ep_in, ADB_BULK_BUFFER_SIZE);
252 if (!req)
253 goto fail;
254 req->complete = adb_complete_in;
255 adb_req_put(dev, &dev->tx_idle, req);
256 }
257
258 return 0;
259
260fail:
261 printk(KERN_ERR "adb_bind() could not allocate requests\n");
262 return -1;
263}
264
265static ssize_t adb_read(struct file *fp, char __user *buf,
266 size_t count, loff_t *pos)
267{
268 struct adb_dev *dev = fp->private_data;
269 struct usb_request *req;
270 int r = count, xfer;
271 int ret;
272
273 pr_debug("adb_read(%d)\n", count);
274 if (!_adb_dev)
275 return -ENODEV;
276
277 if (count > ADB_BULK_BUFFER_SIZE)
278 return -EINVAL;
279
280 if (adb_lock(&dev->read_excl))
281 return -EBUSY;
282
283 /* we will block until we're online */
284 while (!(dev->online || dev->error)) {
285 pr_debug("adb_read: waiting for online state\n");
286 ret = wait_event_interruptible(dev->read_wq,
287 (dev->online || dev->error));
288 if (ret < 0) {
289 adb_unlock(&dev->read_excl);
290 return ret;
291 }
292 }
293 if (dev->error) {
294 r = -EIO;
295 goto done;
296 }
297
298requeue_req:
299 /* queue a request */
300 req = dev->rx_req;
301 req->length = count;
302 dev->rx_done = 0;
303 ret = usb_ep_queue(dev->ep_out, req, GFP_ATOMIC);
304 if (ret < 0) {
305 pr_debug("adb_read: failed to queue req %p (%d)\n", req, ret);
306 r = -EIO;
307 dev->error = 1;
308 goto done;
309 } else {
310 pr_debug("rx %p queue\n", req);
311 }
312
313 /* wait for a request to complete */
314 ret = wait_event_interruptible(dev->read_wq, dev->rx_done);
315 if (ret < 0) {
316 dev->error = 1;
317 r = ret;
318 usb_ep_dequeue(dev->ep_out, req);
319 goto done;
320 }
321 if (!dev->error) {
322 /* If we got a 0-len packet, throw it back and try again. */
323 if (req->actual == 0)
324 goto requeue_req;
325
326 pr_debug("rx %p %d\n", req, req->actual);
327 xfer = (req->actual < count) ? req->actual : count;
328 if (copy_to_user(buf, req->buf, xfer))
329 r = -EFAULT;
330
331 } else
332 r = -EIO;
333
334done:
335 adb_unlock(&dev->read_excl);
336 pr_debug("adb_read returning %d\n", r);
337 return r;
338}
339
340static ssize_t adb_write(struct file *fp, const char __user *buf,
341 size_t count, loff_t *pos)
342{
343 struct adb_dev *dev = fp->private_data;
344 struct usb_request *req = 0;
345 int r = count, xfer;
346 int ret;
347
348 if (!_adb_dev)
349 return -ENODEV;
350 pr_debug("adb_write(%d)\n", count);
351
352 if (adb_lock(&dev->write_excl))
353 return -EBUSY;
354
355 while (count > 0) {
356 if (dev->error) {
357 pr_debug("adb_write dev->error\n");
358 r = -EIO;
359 break;
360 }
361
362 /* get an idle tx request to use */
363 req = 0;
364 ret = wait_event_interruptible(dev->write_wq,
365 (req = adb_req_get(dev, &dev->tx_idle)) || dev->error);
366
367 if (ret < 0) {
368 r = ret;
369 break;
370 }
371
372 if (req != 0) {
373 if (count > ADB_BULK_BUFFER_SIZE)
374 xfer = ADB_BULK_BUFFER_SIZE;
375 else
376 xfer = count;
377 if (copy_from_user(req->buf, buf, xfer)) {
378 r = -EFAULT;
379 break;
380 }
381
382 req->length = xfer;
383 ret = usb_ep_queue(dev->ep_in, req, GFP_ATOMIC);
384 if (ret < 0) {
385 pr_debug("adb_write: xfer error %d\n", ret);
386 dev->error = 1;
387 r = -EIO;
388 break;
389 }
390
391 buf += xfer;
392 count -= xfer;
393
394 /* zero this so we don't try to free it on error exit */
395 req = 0;
396 }
397 }
398
399 if (req)
400 adb_req_put(dev, &dev->tx_idle, req);
401
402 adb_unlock(&dev->write_excl);
403 pr_debug("adb_write returning %d\n", r);
404 return r;
405}
406
407static int adb_open(struct inode *ip, struct file *fp)
408{
409 printk(KERN_INFO "adb_open\n");
410 if (!_adb_dev)
411 return -ENODEV;
412
413 if (adb_lock(&_adb_dev->open_excl))
414 return -EBUSY;
415
416 fp->private_data = _adb_dev;
417
418 /* clear the error latch */
419 _adb_dev->error = 0;
420
421 return 0;
422}
423
424static int adb_release(struct inode *ip, struct file *fp)
425{
426 printk(KERN_INFO "adb_release\n");
427 adb_unlock(&_adb_dev->open_excl);
428 return 0;
429}
430
431/* file operations for ADB device /dev/android_adb */
432static const struct file_operations adb_fops = {
433 .owner = THIS_MODULE,
434 .read = adb_read,
435 .write = adb_write,
436 .open = adb_open,
437 .release = adb_release,
438};
439
440static struct miscdevice adb_device = {
441 .minor = MISC_DYNAMIC_MINOR,
442 .name = adb_shortname,
443 .fops = &adb_fops,
444};
445
446
447
448
449static int
450adb_function_bind(struct usb_configuration *c, struct usb_function *f)
451{
452 struct usb_composite_dev *cdev = c->cdev;
453 struct adb_dev *dev = func_to_adb(f);
454 int id;
455 int ret;
456
457 dev->cdev = cdev;
458 DBG(cdev, "adb_function_bind dev: %p\n", dev);
459
460 /* allocate interface ID(s) */
461 id = usb_interface_id(c, f);
462 if (id < 0)
463 return id;
464 adb_interface_desc.bInterfaceNumber = id;
465
466 /* allocate endpoints */
467 ret = adb_create_bulk_endpoints(dev, &adb_fullspeed_in_desc,
468 &adb_fullspeed_out_desc);
469 if (ret)
470 return ret;
471
472 /* support high speed hardware */
473 if (gadget_is_dualspeed(c->cdev->gadget)) {
474 adb_highspeed_in_desc.bEndpointAddress =
475 adb_fullspeed_in_desc.bEndpointAddress;
476 adb_highspeed_out_desc.bEndpointAddress =
477 adb_fullspeed_out_desc.bEndpointAddress;
478 }
479
480 DBG(cdev, "%s speed %s: IN/%s, OUT/%s\n",
481 gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
482 f->name, dev->ep_in->name, dev->ep_out->name);
483 return 0;
484}
485
486static void
487adb_function_unbind(struct usb_configuration *c, struct usb_function *f)
488{
489 struct adb_dev *dev = func_to_adb(f);
490 struct usb_request *req;
491
492
493 dev->online = 0;
494 dev->error = 1;
495
496 wake_up(&dev->read_wq);
497
498 adb_request_free(dev->rx_req, dev->ep_out);
499 while ((req = adb_req_get(dev, &dev->tx_idle)))
500 adb_request_free(req, dev->ep_in);
501}
502
503static int adb_function_set_alt(struct usb_function *f,
504 unsigned intf, unsigned alt)
505{
506 struct adb_dev *dev = func_to_adb(f);
507 struct usb_composite_dev *cdev = f->config->cdev;
508 int ret;
509
510 DBG(cdev, "adb_function_set_alt intf: %d alt: %d\n", intf, alt);
511
512 ret = config_ep_by_speed(cdev->gadget, f, dev->ep_in);
513 if (ret)
514 return ret;
515
516 ret = usb_ep_enable(dev->ep_in);
517 if (ret)
518 return ret;
519
520 ret = config_ep_by_speed(cdev->gadget, f, dev->ep_out);
521 if (ret)
522 return ret;
523
524 ret = usb_ep_enable(dev->ep_out);
525 if (ret) {
526 usb_ep_disable(dev->ep_in);
527 return ret;
528 }
529 dev->online = 1;
530
531 /* readers may be blocked waiting for us to go online */
532 wake_up(&dev->read_wq);
533 return 0;
534}
535
536static void adb_function_disable(struct usb_function *f)
537{
538 struct adb_dev *dev = func_to_adb(f);
539 struct usb_composite_dev *cdev = dev->cdev;
540
541 DBG(cdev, "adb_function_disable cdev %p\n", cdev);
542 dev->online = 0;
543 dev->error = 1;
544 usb_ep_disable(dev->ep_in);
545 usb_ep_disable(dev->ep_out);
546
547 /* readers may be blocked waiting for us to go online */
548 wake_up(&dev->read_wq);
549
550 VDBG(cdev, "%s disabled\n", dev->function.name);
551}
552
553static int adb_bind_config(struct usb_configuration *c)
554{
555 struct adb_dev *dev = _adb_dev;
556
557 printk(KERN_INFO "adb_bind_config\n");
558
559 dev->cdev = c->cdev;
560 dev->function.name = "adb";
561 dev->function.descriptors = fs_adb_descs;
562 dev->function.hs_descriptors = hs_adb_descs;
563 dev->function.bind = adb_function_bind;
564 dev->function.unbind = adb_function_unbind;
565 dev->function.set_alt = adb_function_set_alt;
566 dev->function.disable = adb_function_disable;
567
568 return usb_add_function(c, &dev->function);
569}
570
571static int adb_setup(void)
572{
573 struct adb_dev *dev;
574 int ret;
575
576 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
577 if (!dev)
578 return -ENOMEM;
579
580 spin_lock_init(&dev->lock);
581
582 init_waitqueue_head(&dev->read_wq);
583 init_waitqueue_head(&dev->write_wq);
584
585 atomic_set(&dev->open_excl, 0);
586 atomic_set(&dev->read_excl, 0);
587 atomic_set(&dev->write_excl, 0);
588
589 INIT_LIST_HEAD(&dev->tx_idle);
590
591 _adb_dev = dev;
592
593 ret = misc_register(&adb_device);
594 if (ret)
595 goto err;
596
597 return 0;
598
599err:
600 kfree(dev);
601 printk(KERN_ERR "adb gadget driver failed to initialize\n");
602 return ret;
603}
604
605static void adb_cleanup(void)
606{
607 misc_deregister(&adb_device);
608
609 kfree(_adb_dev);
610 _adb_dev = NULL;
611}