Merge tag 'v3.10.105' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / gadget / printer.c
1 /*
2 * printer.c -- Printer gadget driver
3 *
4 * Copyright (C) 2003-2005 David Brownell
5 * Copyright (C) 2006 Craig W. Nadler
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
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/delay.h>
16 #include <linux/ioport.h>
17 #include <linux/sched.h>
18 #include <linux/slab.h>
19 #include <linux/mutex.h>
20 #include <linux/errno.h>
21 #include <linux/init.h>
22 #include <linux/timer.h>
23 #include <linux/list.h>
24 #include <linux/interrupt.h>
25 #include <linux/device.h>
26 #include <linux/moduleparam.h>
27 #include <linux/fs.h>
28 #include <linux/poll.h>
29 #include <linux/types.h>
30 #include <linux/ctype.h>
31 #include <linux/cdev.h>
32
33 #include <asm/byteorder.h>
34 #include <linux/io.h>
35 #include <linux/irq.h>
36 #include <linux/uaccess.h>
37 #include <asm/unaligned.h>
38
39 #include <linux/usb/ch9.h>
40 #include <linux/usb/composite.h>
41 #include <linux/usb/gadget.h>
42 #include <linux/usb/g_printer.h>
43
44 #include "gadget_chips.h"
45
46 USB_GADGET_COMPOSITE_OPTIONS();
47
48 #define DRIVER_DESC "Printer Gadget"
49 #define DRIVER_VERSION "2007 OCT 06"
50
51 static DEFINE_MUTEX(printer_mutex);
52 static const char shortname [] = "printer";
53 static const char driver_desc [] = DRIVER_DESC;
54
55 static dev_t g_printer_devno;
56
57 static struct class *usb_gadget_class;
58
59 /*-------------------------------------------------------------------------*/
60
61 struct printer_dev {
62 spinlock_t lock; /* lock this structure */
63 /* lock buffer lists during read/write calls */
64 struct mutex lock_printer_io;
65 struct usb_gadget *gadget;
66 s8 interface;
67 struct usb_ep *in_ep, *out_ep;
68
69 struct list_head rx_reqs; /* List of free RX structs */
70 struct list_head rx_reqs_active; /* List of Active RX xfers */
71 struct list_head rx_buffers; /* List of completed xfers */
72 /* wait until there is data to be read. */
73 wait_queue_head_t rx_wait;
74 struct list_head tx_reqs; /* List of free TX structs */
75 struct list_head tx_reqs_active; /* List of Active TX xfers */
76 /* Wait until there are write buffers available to use. */
77 wait_queue_head_t tx_wait;
78 /* Wait until all write buffers have been sent. */
79 wait_queue_head_t tx_flush_wait;
80 struct usb_request *current_rx_req;
81 size_t current_rx_bytes;
82 u8 *current_rx_buf;
83 u8 printer_status;
84 u8 reset_printer;
85 struct cdev printer_cdev;
86 struct device *pdev;
87 u8 printer_cdev_open;
88 wait_queue_head_t wait;
89 struct usb_function function;
90 };
91
92 static struct printer_dev usb_printer_gadget;
93
94 /*-------------------------------------------------------------------------*/
95
96 /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
97 * Instead: allocate your own, using normal USB-IF procedures.
98 */
99
100 /* Thanks to NetChip Technologies for donating this product ID.
101 */
102 #define PRINTER_VENDOR_NUM 0x0525 /* NetChip */
103 #define PRINTER_PRODUCT_NUM 0xa4a8 /* Linux-USB Printer Gadget */
104
105 /* Some systems will want different product identifiers published in the
106 * device descriptor, either numbers or strings or both. These string
107 * parameters are in UTF-8 (superset of ASCII's 7 bit characters).
108 */
109
110 module_param_named(iSerialNum, coverwrite.serial_number, charp, S_IRUGO);
111 MODULE_PARM_DESC(iSerialNum, "1");
112
113 static char *iPNPstring;
114 module_param(iPNPstring, charp, S_IRUGO);
115 MODULE_PARM_DESC(iPNPstring, "MFG:linux;MDL:g_printer;CLS:PRINTER;SN:1;");
116
117 /* Number of requests to allocate per endpoint, not used for ep0. */
118 static unsigned qlen = 10;
119 module_param(qlen, uint, S_IRUGO|S_IWUSR);
120
121 #define QLEN qlen
122
123 /*-------------------------------------------------------------------------*/
124
125 /*
126 * DESCRIPTORS ... most are static, but strings and (full) configuration
127 * descriptors are built on demand.
128 */
129
130 /* holds our biggest descriptor */
131 #define USB_DESC_BUFSIZE 256
132 #define USB_BUFSIZE 8192
133
134 static struct usb_device_descriptor device_desc = {
135 .bLength = sizeof device_desc,
136 .bDescriptorType = USB_DT_DEVICE,
137 .bcdUSB = cpu_to_le16(0x0200),
138 .bDeviceClass = USB_CLASS_PER_INTERFACE,
139 .bDeviceSubClass = 0,
140 .bDeviceProtocol = 0,
141 .idVendor = cpu_to_le16(PRINTER_VENDOR_NUM),
142 .idProduct = cpu_to_le16(PRINTER_PRODUCT_NUM),
143 .bNumConfigurations = 1
144 };
145
146 static struct usb_interface_descriptor intf_desc = {
147 .bLength = sizeof intf_desc,
148 .bDescriptorType = USB_DT_INTERFACE,
149 .bNumEndpoints = 2,
150 .bInterfaceClass = USB_CLASS_PRINTER,
151 .bInterfaceSubClass = 1, /* Printer Sub-Class */
152 .bInterfaceProtocol = 2, /* Bi-Directional */
153 .iInterface = 0
154 };
155
156 static struct usb_endpoint_descriptor fs_ep_in_desc = {
157 .bLength = USB_DT_ENDPOINT_SIZE,
158 .bDescriptorType = USB_DT_ENDPOINT,
159 .bEndpointAddress = USB_DIR_IN,
160 .bmAttributes = USB_ENDPOINT_XFER_BULK
161 };
162
163 static struct usb_endpoint_descriptor fs_ep_out_desc = {
164 .bLength = USB_DT_ENDPOINT_SIZE,
165 .bDescriptorType = USB_DT_ENDPOINT,
166 .bEndpointAddress = USB_DIR_OUT,
167 .bmAttributes = USB_ENDPOINT_XFER_BULK
168 };
169
170 static struct usb_descriptor_header *fs_printer_function[] = {
171 (struct usb_descriptor_header *) &intf_desc,
172 (struct usb_descriptor_header *) &fs_ep_in_desc,
173 (struct usb_descriptor_header *) &fs_ep_out_desc,
174 NULL
175 };
176
177 /*
178 * usb 2.0 devices need to expose both high speed and full speed
179 * descriptors, unless they only run at full speed.
180 */
181
182 static struct usb_endpoint_descriptor hs_ep_in_desc = {
183 .bLength = USB_DT_ENDPOINT_SIZE,
184 .bDescriptorType = USB_DT_ENDPOINT,
185 .bmAttributes = USB_ENDPOINT_XFER_BULK,
186 .wMaxPacketSize = cpu_to_le16(512)
187 };
188
189 static struct usb_endpoint_descriptor hs_ep_out_desc = {
190 .bLength = USB_DT_ENDPOINT_SIZE,
191 .bDescriptorType = USB_DT_ENDPOINT,
192 .bmAttributes = USB_ENDPOINT_XFER_BULK,
193 .wMaxPacketSize = cpu_to_le16(512)
194 };
195
196 static struct usb_qualifier_descriptor dev_qualifier = {
197 .bLength = sizeof dev_qualifier,
198 .bDescriptorType = USB_DT_DEVICE_QUALIFIER,
199 .bcdUSB = cpu_to_le16(0x0200),
200 .bDeviceClass = USB_CLASS_PRINTER,
201 .bNumConfigurations = 1
202 };
203
204 static struct usb_descriptor_header *hs_printer_function[] = {
205 (struct usb_descriptor_header *) &intf_desc,
206 (struct usb_descriptor_header *) &hs_ep_in_desc,
207 (struct usb_descriptor_header *) &hs_ep_out_desc,
208 NULL
209 };
210
211 static struct usb_otg_descriptor otg_descriptor = {
212 .bLength = sizeof otg_descriptor,
213 .bDescriptorType = USB_DT_OTG,
214 .bmAttributes = USB_OTG_SRP,
215 };
216
217 static const struct usb_descriptor_header *otg_desc[] = {
218 (struct usb_descriptor_header *) &otg_descriptor,
219 NULL,
220 };
221
222 /* maxpacket and other transfer characteristics vary by speed. */
223 #define ep_desc(g, hs, fs) (((g)->speed == USB_SPEED_HIGH)?(hs):(fs))
224
225 /*-------------------------------------------------------------------------*/
226
227 /* descriptors that are built on-demand */
228
229 static char product_desc [40] = DRIVER_DESC;
230 static char serial_num [40] = "1";
231 static char pnp_string [1024] =
232 "XXMFG:linux;MDL:g_printer;CLS:PRINTER;SN:1;";
233
234 /* static strings, in UTF-8 */
235 static struct usb_string strings [] = {
236 [USB_GADGET_MANUFACTURER_IDX].s = "",
237 [USB_GADGET_PRODUCT_IDX].s = product_desc,
238 [USB_GADGET_SERIAL_IDX].s = serial_num,
239 { } /* end of list */
240 };
241
242 static struct usb_gadget_strings stringtab_dev = {
243 .language = 0x0409, /* en-us */
244 .strings = strings,
245 };
246
247 static struct usb_gadget_strings *dev_strings[] = {
248 &stringtab_dev,
249 NULL,
250 };
251
252 /*-------------------------------------------------------------------------*/
253
254 static struct usb_request *
255 printer_req_alloc(struct usb_ep *ep, unsigned len, gfp_t gfp_flags)
256 {
257 struct usb_request *req;
258
259 req = usb_ep_alloc_request(ep, gfp_flags);
260
261 if (req != NULL) {
262 req->length = len;
263 req->buf = kmalloc(len, gfp_flags);
264 if (req->buf == NULL) {
265 usb_ep_free_request(ep, req);
266 return NULL;
267 }
268 }
269
270 return req;
271 }
272
273 static void
274 printer_req_free(struct usb_ep *ep, struct usb_request *req)
275 {
276 if (ep != NULL && req != NULL) {
277 kfree(req->buf);
278 usb_ep_free_request(ep, req);
279 }
280 }
281
282 /*-------------------------------------------------------------------------*/
283
284 static void rx_complete(struct usb_ep *ep, struct usb_request *req)
285 {
286 struct printer_dev *dev = ep->driver_data;
287 int status = req->status;
288 unsigned long flags;
289
290 spin_lock_irqsave(&dev->lock, flags);
291
292 list_del_init(&req->list); /* Remode from Active List */
293
294 switch (status) {
295
296 /* normal completion */
297 case 0:
298 if (req->actual > 0) {
299 list_add_tail(&req->list, &dev->rx_buffers);
300 DBG(dev, "G_Printer : rx length %d\n", req->actual);
301 } else {
302 list_add(&req->list, &dev->rx_reqs);
303 }
304 break;
305
306 /* software-driven interface shutdown */
307 case -ECONNRESET: /* unlink */
308 case -ESHUTDOWN: /* disconnect etc */
309 VDBG(dev, "rx shutdown, code %d\n", status);
310 list_add(&req->list, &dev->rx_reqs);
311 break;
312
313 /* for hardware automagic (such as pxa) */
314 case -ECONNABORTED: /* endpoint reset */
315 DBG(dev, "rx %s reset\n", ep->name);
316 list_add(&req->list, &dev->rx_reqs);
317 break;
318
319 /* data overrun */
320 case -EOVERFLOW:
321 /* FALLTHROUGH */
322
323 default:
324 DBG(dev, "rx status %d\n", status);
325 list_add(&req->list, &dev->rx_reqs);
326 break;
327 }
328
329 wake_up_interruptible(&dev->rx_wait);
330 spin_unlock_irqrestore(&dev->lock, flags);
331 }
332
333 static void tx_complete(struct usb_ep *ep, struct usb_request *req)
334 {
335 struct printer_dev *dev = ep->driver_data;
336
337 switch (req->status) {
338 default:
339 VDBG(dev, "tx err %d\n", req->status);
340 /* FALLTHROUGH */
341 case -ECONNRESET: /* unlink */
342 case -ESHUTDOWN: /* disconnect etc */
343 break;
344 case 0:
345 break;
346 }
347
348 spin_lock(&dev->lock);
349 /* Take the request struct off the active list and put it on the
350 * free list.
351 */
352 list_del_init(&req->list);
353 list_add(&req->list, &dev->tx_reqs);
354 wake_up_interruptible(&dev->tx_wait);
355 if (likely(list_empty(&dev->tx_reqs_active)))
356 wake_up_interruptible(&dev->tx_flush_wait);
357
358 spin_unlock(&dev->lock);
359 }
360
361 /*-------------------------------------------------------------------------*/
362
363 static int
364 printer_open(struct inode *inode, struct file *fd)
365 {
366 struct printer_dev *dev;
367 unsigned long flags;
368 int ret = -EBUSY;
369
370 mutex_lock(&printer_mutex);
371 dev = container_of(inode->i_cdev, struct printer_dev, printer_cdev);
372
373 spin_lock_irqsave(&dev->lock, flags);
374
375 if (!dev->printer_cdev_open) {
376 dev->printer_cdev_open = 1;
377 fd->private_data = dev;
378 ret = 0;
379 /* Change the printer status to show that it's on-line. */
380 dev->printer_status |= PRINTER_SELECTED;
381 }
382
383 spin_unlock_irqrestore(&dev->lock, flags);
384
385 DBG(dev, "printer_open returned %x\n", ret);
386 mutex_unlock(&printer_mutex);
387 return ret;
388 }
389
390 static int
391 printer_close(struct inode *inode, struct file *fd)
392 {
393 struct printer_dev *dev = fd->private_data;
394 unsigned long flags;
395
396 spin_lock_irqsave(&dev->lock, flags);
397 dev->printer_cdev_open = 0;
398 fd->private_data = NULL;
399 /* Change printer status to show that the printer is off-line. */
400 dev->printer_status &= ~PRINTER_SELECTED;
401 spin_unlock_irqrestore(&dev->lock, flags);
402
403 DBG(dev, "printer_close\n");
404
405 return 0;
406 }
407
408 /* This function must be called with interrupts turned off. */
409 static void
410 setup_rx_reqs(struct printer_dev *dev)
411 {
412 struct usb_request *req;
413
414 while (likely(!list_empty(&dev->rx_reqs))) {
415 int error;
416
417 req = container_of(dev->rx_reqs.next,
418 struct usb_request, list);
419 list_del_init(&req->list);
420
421 /* The USB Host sends us whatever amount of data it wants to
422 * so we always set the length field to the full USB_BUFSIZE.
423 * If the amount of data is more than the read() caller asked
424 * for it will be stored in the request buffer until it is
425 * asked for by read().
426 */
427 req->length = USB_BUFSIZE;
428 req->complete = rx_complete;
429
430 error = usb_ep_queue(dev->out_ep, req, GFP_ATOMIC);
431 if (error) {
432 DBG(dev, "rx submit --> %d\n", error);
433 list_add(&req->list, &dev->rx_reqs);
434 break;
435 } else {
436 list_add(&req->list, &dev->rx_reqs_active);
437 }
438 }
439 }
440
441 static ssize_t
442 printer_read(struct file *fd, char __user *buf, size_t len, loff_t *ptr)
443 {
444 struct printer_dev *dev = fd->private_data;
445 unsigned long flags;
446 size_t size;
447 size_t bytes_copied;
448 struct usb_request *req;
449 /* This is a pointer to the current USB rx request. */
450 struct usb_request *current_rx_req;
451 /* This is the number of bytes in the current rx buffer. */
452 size_t current_rx_bytes;
453 /* This is a pointer to the current rx buffer. */
454 u8 *current_rx_buf;
455
456 if (len == 0)
457 return -EINVAL;
458
459 DBG(dev, "printer_read trying to read %d bytes\n", (int)len);
460
461 mutex_lock(&dev->lock_printer_io);
462 spin_lock_irqsave(&dev->lock, flags);
463
464 /* We will use this flag later to check if a printer reset happened
465 * after we turn interrupts back on.
466 */
467 dev->reset_printer = 0;
468
469 setup_rx_reqs(dev);
470
471 bytes_copied = 0;
472 current_rx_req = dev->current_rx_req;
473 current_rx_bytes = dev->current_rx_bytes;
474 current_rx_buf = dev->current_rx_buf;
475 dev->current_rx_req = NULL;
476 dev->current_rx_bytes = 0;
477 dev->current_rx_buf = NULL;
478
479 /* Check if there is any data in the read buffers. Please note that
480 * current_rx_bytes is the number of bytes in the current rx buffer.
481 * If it is zero then check if there are any other rx_buffers that
482 * are on the completed list. We are only out of data if all rx
483 * buffers are empty.
484 */
485 if ((current_rx_bytes == 0) &&
486 (likely(list_empty(&dev->rx_buffers)))) {
487 /* Turn interrupts back on before sleeping. */
488 spin_unlock_irqrestore(&dev->lock, flags);
489
490 /*
491 * If no data is available check if this is a NON-Blocking
492 * call or not.
493 */
494 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) {
495 mutex_unlock(&dev->lock_printer_io);
496 return -EAGAIN;
497 }
498
499 /* Sleep until data is available */
500 wait_event_interruptible(dev->rx_wait,
501 (likely(!list_empty(&dev->rx_buffers))));
502 spin_lock_irqsave(&dev->lock, flags);
503 }
504
505 /* We have data to return then copy it to the caller's buffer.*/
506 while ((current_rx_bytes || likely(!list_empty(&dev->rx_buffers)))
507 && len) {
508 if (current_rx_bytes == 0) {
509 req = container_of(dev->rx_buffers.next,
510 struct usb_request, list);
511 list_del_init(&req->list);
512
513 if (req->actual && req->buf) {
514 current_rx_req = req;
515 current_rx_bytes = req->actual;
516 current_rx_buf = req->buf;
517 } else {
518 list_add(&req->list, &dev->rx_reqs);
519 continue;
520 }
521 }
522
523 /* Don't leave irqs off while doing memory copies */
524 spin_unlock_irqrestore(&dev->lock, flags);
525
526 if (len > current_rx_bytes)
527 size = current_rx_bytes;
528 else
529 size = len;
530
531 size -= copy_to_user(buf, current_rx_buf, size);
532 bytes_copied += size;
533 len -= size;
534 buf += size;
535
536 spin_lock_irqsave(&dev->lock, flags);
537
538 /* We've disconnected or reset so return. */
539 if (dev->reset_printer) {
540 list_add(&current_rx_req->list, &dev->rx_reqs);
541 spin_unlock_irqrestore(&dev->lock, flags);
542 mutex_unlock(&dev->lock_printer_io);
543 return -EAGAIN;
544 }
545
546 /* If we not returning all the data left in this RX request
547 * buffer then adjust the amount of data left in the buffer.
548 * Othewise if we are done with this RX request buffer then
549 * requeue it to get any incoming data from the USB host.
550 */
551 if (size < current_rx_bytes) {
552 current_rx_bytes -= size;
553 current_rx_buf += size;
554 } else {
555 list_add(&current_rx_req->list, &dev->rx_reqs);
556 current_rx_bytes = 0;
557 current_rx_buf = NULL;
558 current_rx_req = NULL;
559 }
560 }
561
562 dev->current_rx_req = current_rx_req;
563 dev->current_rx_bytes = current_rx_bytes;
564 dev->current_rx_buf = current_rx_buf;
565
566 spin_unlock_irqrestore(&dev->lock, flags);
567 mutex_unlock(&dev->lock_printer_io);
568
569 DBG(dev, "printer_read returned %d bytes\n", (int)bytes_copied);
570
571 if (bytes_copied)
572 return bytes_copied;
573 else
574 return -EAGAIN;
575 }
576
577 static ssize_t
578 printer_write(struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
579 {
580 struct printer_dev *dev = fd->private_data;
581 unsigned long flags;
582 size_t size; /* Amount of data in a TX request. */
583 size_t bytes_copied = 0;
584 struct usb_request *req;
585
586 DBG(dev, "printer_write trying to send %d bytes\n", (int)len);
587
588 if (len == 0)
589 return -EINVAL;
590
591 mutex_lock(&dev->lock_printer_io);
592 spin_lock_irqsave(&dev->lock, flags);
593
594 /* Check if a printer reset happens while we have interrupts on */
595 dev->reset_printer = 0;
596
597 /* Check if there is any available write buffers */
598 if (likely(list_empty(&dev->tx_reqs))) {
599 /* Turn interrupts back on before sleeping. */
600 spin_unlock_irqrestore(&dev->lock, flags);
601
602 /*
603 * If write buffers are available check if this is
604 * a NON-Blocking call or not.
605 */
606 if (fd->f_flags & (O_NONBLOCK|O_NDELAY)) {
607 mutex_unlock(&dev->lock_printer_io);
608 return -EAGAIN;
609 }
610
611 /* Sleep until a write buffer is available */
612 wait_event_interruptible(dev->tx_wait,
613 (likely(!list_empty(&dev->tx_reqs))));
614 spin_lock_irqsave(&dev->lock, flags);
615 }
616
617 while (likely(!list_empty(&dev->tx_reqs)) && len) {
618
619 if (len > USB_BUFSIZE)
620 size = USB_BUFSIZE;
621 else
622 size = len;
623
624 req = container_of(dev->tx_reqs.next, struct usb_request,
625 list);
626 list_del_init(&req->list);
627
628 req->complete = tx_complete;
629 req->length = size;
630
631 /* Check if we need to send a zero length packet. */
632 if (len > size)
633 /* They will be more TX requests so no yet. */
634 req->zero = 0;
635 else
636 /* If the data amount is not a multple of the
637 * maxpacket size then send a zero length packet.
638 */
639 req->zero = ((len % dev->in_ep->maxpacket) == 0);
640
641 /* Don't leave irqs off while doing memory copies */
642 spin_unlock_irqrestore(&dev->lock, flags);
643
644 if (copy_from_user(req->buf, buf, size)) {
645 list_add(&req->list, &dev->tx_reqs);
646 mutex_unlock(&dev->lock_printer_io);
647 return bytes_copied;
648 }
649
650 bytes_copied += size;
651 len -= size;
652 buf += size;
653
654 spin_lock_irqsave(&dev->lock, flags);
655
656 /* We've disconnected or reset so free the req and buffer */
657 if (dev->reset_printer) {
658 list_add(&req->list, &dev->tx_reqs);
659 spin_unlock_irqrestore(&dev->lock, flags);
660 mutex_unlock(&dev->lock_printer_io);
661 return -EAGAIN;
662 }
663
664 if (usb_ep_queue(dev->in_ep, req, GFP_ATOMIC)) {
665 list_add(&req->list, &dev->tx_reqs);
666 spin_unlock_irqrestore(&dev->lock, flags);
667 mutex_unlock(&dev->lock_printer_io);
668 return -EAGAIN;
669 }
670
671 list_add(&req->list, &dev->tx_reqs_active);
672
673 }
674
675 spin_unlock_irqrestore(&dev->lock, flags);
676 mutex_unlock(&dev->lock_printer_io);
677
678 DBG(dev, "printer_write sent %d bytes\n", (int)bytes_copied);
679
680 if (bytes_copied) {
681 return bytes_copied;
682 } else {
683 return -EAGAIN;
684 }
685 }
686
687 static int
688 printer_fsync(struct file *fd, loff_t start, loff_t end, int datasync)
689 {
690 struct printer_dev *dev = fd->private_data;
691 struct inode *inode = file_inode(fd);
692 unsigned long flags;
693 int tx_list_empty;
694
695 mutex_lock(&inode->i_mutex);
696 spin_lock_irqsave(&dev->lock, flags);
697 tx_list_empty = (likely(list_empty(&dev->tx_reqs)));
698 spin_unlock_irqrestore(&dev->lock, flags);
699
700 if (!tx_list_empty) {
701 /* Sleep until all data has been sent */
702 wait_event_interruptible(dev->tx_flush_wait,
703 (likely(list_empty(&dev->tx_reqs_active))));
704 }
705 mutex_unlock(&inode->i_mutex);
706
707 return 0;
708 }
709
710 static unsigned int
711 printer_poll(struct file *fd, poll_table *wait)
712 {
713 struct printer_dev *dev = fd->private_data;
714 unsigned long flags;
715 int status = 0;
716
717 mutex_lock(&dev->lock_printer_io);
718 spin_lock_irqsave(&dev->lock, flags);
719 setup_rx_reqs(dev);
720 spin_unlock_irqrestore(&dev->lock, flags);
721 mutex_unlock(&dev->lock_printer_io);
722
723 poll_wait(fd, &dev->rx_wait, wait);
724 poll_wait(fd, &dev->tx_wait, wait);
725
726 spin_lock_irqsave(&dev->lock, flags);
727 if (likely(!list_empty(&dev->tx_reqs)))
728 status |= POLLOUT | POLLWRNORM;
729
730 if (likely(dev->current_rx_bytes) ||
731 likely(!list_empty(&dev->rx_buffers)))
732 status |= POLLIN | POLLRDNORM;
733
734 spin_unlock_irqrestore(&dev->lock, flags);
735
736 return status;
737 }
738
739 static long
740 printer_ioctl(struct file *fd, unsigned int code, unsigned long arg)
741 {
742 struct printer_dev *dev = fd->private_data;
743 unsigned long flags;
744 int status = 0;
745
746 DBG(dev, "printer_ioctl: cmd=0x%4.4x, arg=%lu\n", code, arg);
747
748 /* handle ioctls */
749
750 spin_lock_irqsave(&dev->lock, flags);
751
752 switch (code) {
753 case GADGET_GET_PRINTER_STATUS:
754 status = (int)dev->printer_status;
755 break;
756 case GADGET_SET_PRINTER_STATUS:
757 dev->printer_status = (u8)arg;
758 break;
759 default:
760 /* could not handle ioctl */
761 DBG(dev, "printer_ioctl: ERROR cmd=0x%4.4xis not supported\n",
762 code);
763 status = -ENOTTY;
764 }
765
766 spin_unlock_irqrestore(&dev->lock, flags);
767
768 return status;
769 }
770
771 /* used after endpoint configuration */
772 static const struct file_operations printer_io_operations = {
773 .owner = THIS_MODULE,
774 .open = printer_open,
775 .read = printer_read,
776 .write = printer_write,
777 .fsync = printer_fsync,
778 .poll = printer_poll,
779 .unlocked_ioctl = printer_ioctl,
780 .release = printer_close,
781 .llseek = noop_llseek,
782 };
783
784 /*-------------------------------------------------------------------------*/
785
786 static int
787 set_printer_interface(struct printer_dev *dev)
788 {
789 int result = 0;
790
791 dev->in_ep->desc = ep_desc(dev->gadget, &hs_ep_in_desc, &fs_ep_in_desc);
792 dev->in_ep->driver_data = dev;
793
794 dev->out_ep->desc = ep_desc(dev->gadget, &hs_ep_out_desc,
795 &fs_ep_out_desc);
796 dev->out_ep->driver_data = dev;
797
798 result = usb_ep_enable(dev->in_ep);
799 if (result != 0) {
800 DBG(dev, "enable %s --> %d\n", dev->in_ep->name, result);
801 goto done;
802 }
803
804 result = usb_ep_enable(dev->out_ep);
805 if (result != 0) {
806 DBG(dev, "enable %s --> %d\n", dev->in_ep->name, result);
807 goto done;
808 }
809
810 done:
811 /* on error, disable any endpoints */
812 if (result != 0) {
813 (void) usb_ep_disable(dev->in_ep);
814 (void) usb_ep_disable(dev->out_ep);
815 dev->in_ep->desc = NULL;
816 dev->out_ep->desc = NULL;
817 }
818
819 /* caller is responsible for cleanup on error */
820 return result;
821 }
822
823 static void printer_reset_interface(struct printer_dev *dev)
824 {
825 if (dev->interface < 0)
826 return;
827
828 DBG(dev, "%s\n", __func__);
829
830 if (dev->in_ep->desc)
831 usb_ep_disable(dev->in_ep);
832
833 if (dev->out_ep->desc)
834 usb_ep_disable(dev->out_ep);
835
836 dev->in_ep->desc = NULL;
837 dev->out_ep->desc = NULL;
838 dev->interface = -1;
839 }
840
841 /* Change our operational Interface. */
842 static int set_interface(struct printer_dev *dev, unsigned number)
843 {
844 int result = 0;
845
846 /* Free the current interface */
847 printer_reset_interface(dev);
848
849 result = set_printer_interface(dev);
850 if (result)
851 printer_reset_interface(dev);
852 else
853 dev->interface = number;
854
855 if (!result)
856 INFO(dev, "Using interface %x\n", number);
857
858 return result;
859 }
860
861 static void printer_soft_reset(struct printer_dev *dev)
862 {
863 struct usb_request *req;
864
865 INFO(dev, "Received Printer Reset Request\n");
866
867 if (usb_ep_disable(dev->in_ep))
868 DBG(dev, "Failed to disable USB in_ep\n");
869 if (usb_ep_disable(dev->out_ep))
870 DBG(dev, "Failed to disable USB out_ep\n");
871
872 if (dev->current_rx_req != NULL) {
873 list_add(&dev->current_rx_req->list, &dev->rx_reqs);
874 dev->current_rx_req = NULL;
875 }
876 dev->current_rx_bytes = 0;
877 dev->current_rx_buf = NULL;
878 dev->reset_printer = 1;
879
880 while (likely(!(list_empty(&dev->rx_buffers)))) {
881 req = container_of(dev->rx_buffers.next, struct usb_request,
882 list);
883 list_del_init(&req->list);
884 list_add(&req->list, &dev->rx_reqs);
885 }
886
887 while (likely(!(list_empty(&dev->rx_reqs_active)))) {
888 req = container_of(dev->rx_buffers.next, struct usb_request,
889 list);
890 list_del_init(&req->list);
891 list_add(&req->list, &dev->rx_reqs);
892 }
893
894 while (likely(!(list_empty(&dev->tx_reqs_active)))) {
895 req = container_of(dev->tx_reqs_active.next,
896 struct usb_request, list);
897 list_del_init(&req->list);
898 list_add(&req->list, &dev->tx_reqs);
899 }
900
901 if (usb_ep_enable(dev->in_ep))
902 DBG(dev, "Failed to enable USB in_ep\n");
903 if (usb_ep_enable(dev->out_ep))
904 DBG(dev, "Failed to enable USB out_ep\n");
905
906 wake_up_interruptible(&dev->rx_wait);
907 wake_up_interruptible(&dev->tx_wait);
908 wake_up_interruptible(&dev->tx_flush_wait);
909 }
910
911 /*-------------------------------------------------------------------------*/
912
913 /*
914 * The setup() callback implements all the ep0 functionality that's not
915 * handled lower down.
916 */
917 static int printer_func_setup(struct usb_function *f,
918 const struct usb_ctrlrequest *ctrl)
919 {
920 struct printer_dev *dev = container_of(f, struct printer_dev, function);
921 struct usb_composite_dev *cdev = f->config->cdev;
922 struct usb_request *req = cdev->req;
923 int value = -EOPNOTSUPP;
924 u16 wIndex = le16_to_cpu(ctrl->wIndex);
925 u16 wValue = le16_to_cpu(ctrl->wValue);
926 u16 wLength = le16_to_cpu(ctrl->wLength);
927
928 DBG(dev, "ctrl req%02x.%02x v%04x i%04x l%d\n",
929 ctrl->bRequestType, ctrl->bRequest, wValue, wIndex, wLength);
930
931 switch (ctrl->bRequestType&USB_TYPE_MASK) {
932 case USB_TYPE_CLASS:
933 switch (ctrl->bRequest) {
934 case 0: /* Get the IEEE-1284 PNP String */
935 /* Only one printer interface is supported. */
936 if ((wIndex>>8) != dev->interface)
937 break;
938
939 value = (pnp_string[0]<<8)|pnp_string[1];
940 memcpy(req->buf, pnp_string, value);
941 DBG(dev, "1284 PNP String: %x %s\n", value,
942 &pnp_string[2]);
943 break;
944
945 case 1: /* Get Port Status */
946 /* Only one printer interface is supported. */
947 if (wIndex != dev->interface)
948 break;
949
950 *(u8 *)req->buf = dev->printer_status;
951 value = min(wLength, (u16) 1);
952 break;
953
954 case 2: /* Soft Reset */
955 /* Only one printer interface is supported. */
956 if (wIndex != dev->interface)
957 break;
958
959 printer_soft_reset(dev);
960
961 value = 0;
962 break;
963
964 default:
965 goto unknown;
966 }
967 break;
968
969 default:
970 unknown:
971 VDBG(dev,
972 "unknown ctrl req%02x.%02x v%04x i%04x l%d\n",
973 ctrl->bRequestType, ctrl->bRequest,
974 wValue, wIndex, wLength);
975 break;
976 }
977 /* host either stalls (value < 0) or reports success */
978 if (value >= 0) {
979 req->length = value;
980 req->zero = value < wLength;
981 value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
982 if (value < 0) {
983 ERROR(dev, "%s:%d Error!\n", __func__, __LINE__);
984 req->status = 0;
985 }
986 }
987 return value;
988 }
989
990 static int __init printer_func_bind(struct usb_configuration *c,
991 struct usb_function *f)
992 {
993 struct printer_dev *dev = container_of(f, struct printer_dev, function);
994 struct usb_composite_dev *cdev = c->cdev;
995 struct usb_ep *in_ep;
996 struct usb_ep *out_ep = NULL;
997 int id;
998 int ret;
999
1000 id = usb_interface_id(c, f);
1001 if (id < 0)
1002 return id;
1003 intf_desc.bInterfaceNumber = id;
1004
1005 /* all we really need is bulk IN/OUT */
1006 in_ep = usb_ep_autoconfig(cdev->gadget, &fs_ep_in_desc);
1007 if (!in_ep) {
1008 autoconf_fail:
1009 dev_err(&cdev->gadget->dev, "can't autoconfigure on %s\n",
1010 cdev->gadget->name);
1011 return -ENODEV;
1012 }
1013 in_ep->driver_data = in_ep; /* claim */
1014
1015 out_ep = usb_ep_autoconfig(cdev->gadget, &fs_ep_out_desc);
1016 if (!out_ep)
1017 goto autoconf_fail;
1018 out_ep->driver_data = out_ep; /* claim */
1019
1020 /* assumes that all endpoints are dual-speed */
1021 hs_ep_in_desc.bEndpointAddress = fs_ep_in_desc.bEndpointAddress;
1022 hs_ep_out_desc.bEndpointAddress = fs_ep_out_desc.bEndpointAddress;
1023
1024 ret = usb_assign_descriptors(f, fs_printer_function,
1025 hs_printer_function, NULL);
1026 if (ret)
1027 return ret;
1028
1029 dev->in_ep = in_ep;
1030 dev->out_ep = out_ep;
1031 return 0;
1032 }
1033
1034 static void printer_func_unbind(struct usb_configuration *c,
1035 struct usb_function *f)
1036 {
1037 usb_free_all_descriptors(f);
1038 }
1039
1040 static int printer_func_set_alt(struct usb_function *f,
1041 unsigned intf, unsigned alt)
1042 {
1043 struct printer_dev *dev = container_of(f, struct printer_dev, function);
1044 int ret = -ENOTSUPP;
1045
1046 if (!alt)
1047 ret = set_interface(dev, intf);
1048
1049 return ret;
1050 }
1051
1052 static void printer_func_disable(struct usb_function *f)
1053 {
1054 struct printer_dev *dev = container_of(f, struct printer_dev, function);
1055 unsigned long flags;
1056
1057 DBG(dev, "%s\n", __func__);
1058
1059 spin_lock_irqsave(&dev->lock, flags);
1060 printer_reset_interface(dev);
1061 spin_unlock_irqrestore(&dev->lock, flags);
1062 }
1063
1064 static void printer_cfg_unbind(struct usb_configuration *c)
1065 {
1066 struct printer_dev *dev;
1067 struct usb_request *req;
1068
1069 dev = &usb_printer_gadget;
1070
1071 DBG(dev, "%s\n", __func__);
1072
1073 /* Remove sysfs files */
1074 device_destroy(usb_gadget_class, g_printer_devno);
1075
1076 /* Remove Character Device */
1077 cdev_del(&dev->printer_cdev);
1078
1079 /* we must already have been disconnected ... no i/o may be active */
1080 WARN_ON(!list_empty(&dev->tx_reqs_active));
1081 WARN_ON(!list_empty(&dev->rx_reqs_active));
1082
1083 /* Free all memory for this driver. */
1084 while (!list_empty(&dev->tx_reqs)) {
1085 req = container_of(dev->tx_reqs.next, struct usb_request,
1086 list);
1087 list_del(&req->list);
1088 printer_req_free(dev->in_ep, req);
1089 }
1090
1091 if (dev->current_rx_req != NULL)
1092 printer_req_free(dev->out_ep, dev->current_rx_req);
1093
1094 while (!list_empty(&dev->rx_reqs)) {
1095 req = container_of(dev->rx_reqs.next,
1096 struct usb_request, list);
1097 list_del(&req->list);
1098 printer_req_free(dev->out_ep, req);
1099 }
1100
1101 while (!list_empty(&dev->rx_buffers)) {
1102 req = container_of(dev->rx_buffers.next,
1103 struct usb_request, list);
1104 list_del(&req->list);
1105 printer_req_free(dev->out_ep, req);
1106 }
1107 }
1108
1109 static struct usb_configuration printer_cfg_driver = {
1110 .label = "printer",
1111 .unbind = printer_cfg_unbind,
1112 .bConfigurationValue = 1,
1113 .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
1114 };
1115
1116 static int __init printer_bind_config(struct usb_configuration *c)
1117 {
1118 struct usb_gadget *gadget = c->cdev->gadget;
1119 struct printer_dev *dev;
1120 int status = -ENOMEM;
1121 size_t len;
1122 u32 i;
1123 struct usb_request *req;
1124
1125 usb_ep_autoconfig_reset(gadget);
1126
1127 dev = &usb_printer_gadget;
1128
1129 dev->function.name = shortname;
1130 dev->function.bind = printer_func_bind;
1131 dev->function.setup = printer_func_setup;
1132 dev->function.unbind = printer_func_unbind;
1133 dev->function.set_alt = printer_func_set_alt;
1134 dev->function.disable = printer_func_disable;
1135
1136 status = usb_add_function(c, &dev->function);
1137 if (status)
1138 return status;
1139
1140 /* Setup the sysfs files for the printer gadget. */
1141 dev->pdev = device_create(usb_gadget_class, NULL, g_printer_devno,
1142 NULL, "g_printer");
1143 if (IS_ERR(dev->pdev)) {
1144 ERROR(dev, "Failed to create device: g_printer\n");
1145 goto fail;
1146 }
1147
1148 /*
1149 * Register a character device as an interface to a user mode
1150 * program that handles the printer specific functionality.
1151 */
1152 cdev_init(&dev->printer_cdev, &printer_io_operations);
1153 dev->printer_cdev.owner = THIS_MODULE;
1154 status = cdev_add(&dev->printer_cdev, g_printer_devno, 1);
1155 if (status) {
1156 ERROR(dev, "Failed to open char device\n");
1157 goto fail;
1158 }
1159
1160 if (iPNPstring)
1161 strlcpy(&pnp_string[2], iPNPstring, (sizeof pnp_string)-2);
1162
1163 len = strlen(pnp_string);
1164 pnp_string[0] = (len >> 8) & 0xFF;
1165 pnp_string[1] = len & 0xFF;
1166
1167 usb_gadget_set_selfpowered(gadget);
1168
1169 if (gadget->is_otg) {
1170 otg_descriptor.bmAttributes |= USB_OTG_HNP;
1171 printer_cfg_driver.descriptors = otg_desc;
1172 printer_cfg_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP;
1173 }
1174
1175 spin_lock_init(&dev->lock);
1176 mutex_init(&dev->lock_printer_io);
1177 INIT_LIST_HEAD(&dev->tx_reqs);
1178 INIT_LIST_HEAD(&dev->tx_reqs_active);
1179 INIT_LIST_HEAD(&dev->rx_reqs);
1180 INIT_LIST_HEAD(&dev->rx_reqs_active);
1181 INIT_LIST_HEAD(&dev->rx_buffers);
1182 init_waitqueue_head(&dev->rx_wait);
1183 init_waitqueue_head(&dev->tx_wait);
1184 init_waitqueue_head(&dev->tx_flush_wait);
1185
1186 dev->interface = -1;
1187 dev->printer_cdev_open = 0;
1188 dev->printer_status = PRINTER_NOT_ERROR;
1189 dev->current_rx_req = NULL;
1190 dev->current_rx_bytes = 0;
1191 dev->current_rx_buf = NULL;
1192
1193 for (i = 0; i < QLEN; i++) {
1194 req = printer_req_alloc(dev->in_ep, USB_BUFSIZE, GFP_KERNEL);
1195 if (!req) {
1196 while (!list_empty(&dev->tx_reqs)) {
1197 req = container_of(dev->tx_reqs.next,
1198 struct usb_request, list);
1199 list_del(&req->list);
1200 printer_req_free(dev->in_ep, req);
1201 }
1202 return -ENOMEM;
1203 }
1204 list_add(&req->list, &dev->tx_reqs);
1205 }
1206
1207 for (i = 0; i < QLEN; i++) {
1208 req = printer_req_alloc(dev->out_ep, USB_BUFSIZE, GFP_KERNEL);
1209 if (!req) {
1210 while (!list_empty(&dev->rx_reqs)) {
1211 req = container_of(dev->rx_reqs.next,
1212 struct usb_request, list);
1213 list_del(&req->list);
1214 printer_req_free(dev->out_ep, req);
1215 }
1216 return -ENOMEM;
1217 }
1218 list_add(&req->list, &dev->rx_reqs);
1219 }
1220
1221 /* finish hookup to lower layer ... */
1222 dev->gadget = gadget;
1223
1224 INFO(dev, "%s, version: " DRIVER_VERSION "\n", driver_desc);
1225 return 0;
1226
1227 fail:
1228 printer_cfg_unbind(c);
1229 return status;
1230 }
1231
1232 static int printer_unbind(struct usb_composite_dev *cdev)
1233 {
1234 return 0;
1235 }
1236
1237 static int __init printer_bind(struct usb_composite_dev *cdev)
1238 {
1239 int ret;
1240
1241 ret = usb_string_ids_tab(cdev, strings);
1242 if (ret < 0)
1243 return ret;
1244 device_desc.iManufacturer = strings[USB_GADGET_MANUFACTURER_IDX].id;
1245 device_desc.iProduct = strings[USB_GADGET_PRODUCT_IDX].id;
1246 device_desc.iSerialNumber = strings[USB_GADGET_SERIAL_IDX].id;
1247
1248 ret = usb_add_config(cdev, &printer_cfg_driver, printer_bind_config);
1249 if (ret)
1250 return ret;
1251 usb_composite_overwrite_options(cdev, &coverwrite);
1252 return ret;
1253 }
1254
1255 static __refdata struct usb_composite_driver printer_driver = {
1256 .name = shortname,
1257 .dev = &device_desc,
1258 .strings = dev_strings,
1259 .max_speed = USB_SPEED_HIGH,
1260 .bind = printer_bind,
1261 .unbind = printer_unbind,
1262 };
1263
1264 static int __init
1265 init(void)
1266 {
1267 int status;
1268
1269 usb_gadget_class = class_create(THIS_MODULE, "usb_printer_gadget");
1270 if (IS_ERR(usb_gadget_class)) {
1271 status = PTR_ERR(usb_gadget_class);
1272 pr_err("unable to create usb_gadget class %d\n", status);
1273 return status;
1274 }
1275
1276 status = alloc_chrdev_region(&g_printer_devno, 0, 1,
1277 "USB printer gadget");
1278 if (status) {
1279 pr_err("alloc_chrdev_region %d\n", status);
1280 class_destroy(usb_gadget_class);
1281 return status;
1282 }
1283
1284 status = usb_composite_probe(&printer_driver);
1285 if (status) {
1286 class_destroy(usb_gadget_class);
1287 unregister_chrdev_region(g_printer_devno, 1);
1288 pr_err("usb_gadget_probe_driver %x\n", status);
1289 }
1290
1291 return status;
1292 }
1293 module_init(init);
1294
1295 static void __exit
1296 cleanup(void)
1297 {
1298 mutex_lock(&usb_printer_gadget.lock_printer_io);
1299 usb_composite_unregister(&printer_driver);
1300 unregister_chrdev_region(g_printer_devno, 1);
1301 class_destroy(usb_gadget_class);
1302 mutex_unlock(&usb_printer_gadget.lock_printer_io);
1303 }
1304 module_exit(cleanup);
1305
1306 MODULE_DESCRIPTION(DRIVER_DESC);
1307 MODULE_AUTHOR("Craig Nadler");
1308 MODULE_LICENSE("GPL");