VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / usb / class / usblp.c
1 /*
2  * usblp.c  Version 0.13
3  *
4  * Copyright (c) 1999 Michael Gee       <michael@linuxspecific.com>
5  * Copyright (c) 1999 Pavel Machek      <pavel@suse.cz>
6  * Copyright (c) 2000 Randy Dunlap      <rddunlap@osdl.org>
7  * Copyright (c) 2000 Vojtech Pavlik    <vojtech@suse.cz>
8  # Copyright (c) 2001 Pete Zaitcev      <zaitcev@redhat.com>
9  # Copyright (c) 2001 David Paschal     <paschal@rcsis.com>
10  *
11  * USB Printer Device Class driver for USB printers and printer cables
12  *
13  * Sponsored by SuSE
14  *
15  * ChangeLog:
16  *      v0.1 - thorough cleaning, URBification, almost a rewrite
17  *      v0.2 - some more cleanups
18  *      v0.3 - cleaner again, waitqueue fixes
19  *      v0.4 - fixes in unidirectional mode
20  *      v0.5 - add DEVICE_ID string support
21  *      v0.6 - never time out
22  *      v0.7 - fixed bulk-IN read and poll (David Paschal)
23  *      v0.8 - add devfs support
24  *      v0.9 - fix unplug-while-open paths
25  *      v0.10- remove sleep_on, fix error on oom (oliver@neukum.org)
26  *      v0.11 - add proto_bias option (Pete Zaitcev)
27  *      v0.12 - add hpoj.sourceforge.net ioctls (David Paschal)
28  *      v0.13 - alloc space for statusbuf (<status> not on stack);
29  *              use usb_buffer_alloc() for read buf & write buf;
30  */
31
32 /*
33  * This program is free software; you can redistribute it and/or modify
34  * it under the terms of the GNU General Public License as published by
35  * the Free Software Foundation; either version 2 of the License, or
36  * (at your option) any later version.
37  *
38  * This program is distributed in the hope that it will be useful,
39  * but WITHOUT ANY WARRANTY; without even the implied warranty of
40  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
41  * GNU General Public License for more details.
42  *
43  * You should have received a copy of the GNU General Public License
44  * along with this program; if not, write to the Free Software
45  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46  */
47
48 #include <linux/module.h>
49 #include <linux/kernel.h>
50 #include <linux/sched.h>
51 #include <linux/smp_lock.h>
52 #include <linux/signal.h>
53 #include <linux/poll.h>
54 #include <linux/init.h>
55 #include <linux/slab.h>
56 #include <linux/lp.h>
57 #undef DEBUG
58 #include <linux/usb.h>
59
60 /*
61  * Version Information
62  */
63 #define DRIVER_VERSION "v0.13"
64 #define DRIVER_AUTHOR "Michael Gee, Pavel Machek, Vojtech Pavlik, Randy Dunlap, Pete Zaitcev, David Paschal"
65 #define DRIVER_DESC "USB Printer Device Class driver"
66
67 #define USBLP_BUF_SIZE          8192
68 #define USBLP_DEVICE_ID_SIZE    1024
69
70 /* ioctls: */
71 #define LPGETSTATUS             0x060b          /* same as in drivers/char/lp.c */
72 #define IOCNR_GET_DEVICE_ID             1
73 #define IOCNR_GET_PROTOCOLS             2
74 #define IOCNR_SET_PROTOCOL              3
75 #define IOCNR_HP_SET_CHANNEL            4
76 #define IOCNR_GET_BUS_ADDRESS           5
77 #define IOCNR_GET_VID_PID               6
78 #define IOCNR_SOFT_RESET                7
79 /* Get device_id string: */
80 #define LPIOC_GET_DEVICE_ID(len) _IOC(_IOC_READ, 'P', IOCNR_GET_DEVICE_ID, len)
81 /* The following ioctls were added for http://hpoj.sourceforge.net: */
82 /* Get two-int array:
83  * [0]=current protocol (1=7/1/1, 2=7/1/2, 3=7/1/3),
84  * [1]=supported protocol mask (mask&(1<<n)!=0 means 7/1/n supported): */
85 #define LPIOC_GET_PROTOCOLS(len) _IOC(_IOC_READ, 'P', IOCNR_GET_PROTOCOLS, len)
86 /* Set protocol (arg: 1=7/1/1, 2=7/1/2, 3=7/1/3): */
87 #define LPIOC_SET_PROTOCOL _IOC(_IOC_WRITE, 'P', IOCNR_SET_PROTOCOL, 0)
88 /* Set channel number (HP Vendor-specific command): */
89 #define LPIOC_HP_SET_CHANNEL _IOC(_IOC_WRITE, 'P', IOCNR_HP_SET_CHANNEL, 0)
90 /* Get two-int array: [0]=bus number, [1]=device address: */
91 #define LPIOC_GET_BUS_ADDRESS(len) _IOC(_IOC_READ, 'P', IOCNR_GET_BUS_ADDRESS, len)
92 /* Get two-int array: [0]=vendor ID, [1]=product ID: */
93 #define LPIOC_GET_VID_PID(len) _IOC(_IOC_READ, 'P', IOCNR_GET_VID_PID, len)
94 /* Perform class specific soft reset */
95 #define LPIOC_SOFT_RESET _IOC(_IOC_NONE, 'P', IOCNR_SOFT_RESET, 0);
96
97 /*
98  * A DEVICE_ID string may include the printer's serial number.
99  * It should end with a semi-colon (';').
100  * An example from an HP 970C DeskJet printer is (this is one long string,
101  * with the serial number changed):
102 MFG:HEWLETT-PACKARD;MDL:DESKJET 970C;CMD:MLC,PCL,PML;CLASS:PRINTER;DESCRIPTION:Hewlett-Packard DeskJet 970C;SERN:US970CSEPROF;VSTATUS:$HB0$NC0,ff,DN,IDLE,CUT,K1,C0,DP,NR,KP000,CP027;VP:0800,FL,B0;VJ:                    ;
103  */
104
105 /*
106  * USB Printer Requests
107  */
108
109 #define USBLP_REQ_GET_ID                        0x00
110 #define USBLP_REQ_GET_STATUS                    0x01
111 #define USBLP_REQ_RESET                         0x02
112 #define USBLP_REQ_HP_CHANNEL_CHANGE_REQUEST     0x00    /* HP Vendor-specific */
113
114 #define USBLP_MINORS            16
115 #define USBLP_MINOR_BASE        0
116
117 #define USBLP_WRITE_TIMEOUT     (5*HZ)                  /* 5 seconds */
118
119 #define USBLP_FIRST_PROTOCOL    1
120 #define USBLP_LAST_PROTOCOL     3
121 #define USBLP_MAX_PROTOCOLS     (USBLP_LAST_PROTOCOL+1)
122
123 /*
124  * some arbitrary status buffer size;
125  * need a status buffer that is allocated via kmalloc(), not on stack
126  */
127 #define STATUS_BUF_SIZE         8
128
129 struct usblp {
130         struct usb_device       *dev;                   /* USB device */
131         struct semaphore        sem;                    /* locks this struct, especially "dev" */
132         char                    *writebuf;              /* write transfer_buffer */
133         char                    *readbuf;               /* read transfer_buffer */
134         char                    *statusbuf;             /* status transfer_buffer */
135         struct urb              *readurb, *writeurb;    /* The urbs */
136         wait_queue_head_t       wait;                   /* Zzzzz ... */
137         int                     readcount;              /* Counter for reads */
138         int                     ifnum;                  /* Interface number */
139         struct usb_interface    *intf;                  /* The interface */
140         /* Alternate-setting numbers and endpoints for each protocol
141          * (7/1/{index=1,2,3}) that the device supports: */
142         struct {
143                 int                             alt_setting;
144                 struct usb_endpoint_descriptor  *epwrite;
145                 struct usb_endpoint_descriptor  *epread;
146         }                       protocol[USBLP_MAX_PROTOCOLS];
147         int                     current_protocol;
148         int                     minor;                  /* minor number of device */
149         int                     wcomplete;              /* writing is completed */
150         int                     rcomplete;              /* reading is completed */
151         unsigned int            quirks;                 /* quirks flags */
152         unsigned char           used;                   /* True if open */
153         unsigned char           present;                /* True if not disconnected */
154         unsigned char           bidir;                  /* interface is bidirectional */
155         unsigned char           *device_id_string;      /* IEEE 1284 DEVICE ID string (ptr) */
156                                                         /* first 2 bytes are (big-endian) length */
157 };
158
159 #ifdef DEBUG
160 static void usblp_dump(struct usblp *usblp) {
161         int p;
162
163         dbg("usblp=0x%p", usblp);
164         dbg("dev=0x%p", usblp->dev);
165         dbg("present=%d", usblp->present);
166         dbg("readbuf=0x%p", usblp->readbuf);
167         dbg("writebuf=0x%p", usblp->writebuf);
168         dbg("readurb=0x%p", usblp->readurb);
169         dbg("writeurb=0x%p", usblp->writeurb);
170         dbg("readcount=%d", usblp->readcount);
171         dbg("ifnum=%d", usblp->ifnum);
172     for (p = USBLP_FIRST_PROTOCOL; p <= USBLP_LAST_PROTOCOL; p++) {
173         dbg("protocol[%d].alt_setting=%d", p, usblp->protocol[p].alt_setting);
174         dbg("protocol[%d].epwrite=%p", p, usblp->protocol[p].epwrite);
175         dbg("protocol[%d].epread=%p", p, usblp->protocol[p].epread);
176     }
177         dbg("current_protocol=%d", usblp->current_protocol);
178         dbg("minor=%d", usblp->minor);
179         dbg("wcomplete=%d", usblp->wcomplete);
180         dbg("rcomplete=%d", usblp->rcomplete);
181         dbg("quirks=%d", usblp->quirks);
182         dbg("used=%d", usblp->used);
183         dbg("bidir=%d", usblp->bidir);
184         dbg("device_id_string=\"%s\"",
185                 usblp->device_id_string ?
186                         usblp->device_id_string + 2 :
187                         (unsigned char *)"(null)");
188 }
189 #endif
190
191 /* Quirks: various printer quirks are handled by this table & its flags. */
192
193 struct quirk_printer_struct {
194         __u16 vendorId;
195         __u16 productId;
196         unsigned int quirks;
197 };
198
199 #define USBLP_QUIRK_BIDIR       0x1     /* reports bidir but requires unidirectional mode (no INs/reads) */
200 #define USBLP_QUIRK_USB_INIT    0x2     /* needs vendor USB init string */
201
202 static struct quirk_printer_struct quirk_printers[] = {
203         { 0x03f0, 0x0004, USBLP_QUIRK_BIDIR }, /* HP DeskJet 895C */
204         { 0x03f0, 0x0104, USBLP_QUIRK_BIDIR }, /* HP DeskJet 880C */
205         { 0x03f0, 0x0204, USBLP_QUIRK_BIDIR }, /* HP DeskJet 815C */
206         { 0x03f0, 0x0304, USBLP_QUIRK_BIDIR }, /* HP DeskJet 810C/812C */
207         { 0x03f0, 0x0404, USBLP_QUIRK_BIDIR }, /* HP DeskJet 830C */
208         { 0x03f0, 0x0504, USBLP_QUIRK_BIDIR }, /* HP DeskJet 885C */
209         { 0x03f0, 0x0604, USBLP_QUIRK_BIDIR }, /* HP DeskJet 840C */   
210         { 0x03f0, 0x0804, USBLP_QUIRK_BIDIR }, /* HP DeskJet 816C */   
211         { 0x03f0, 0x1104, USBLP_QUIRK_BIDIR }, /* HP Deskjet 959C */
212         { 0x0409, 0xefbe, USBLP_QUIRK_BIDIR }, /* NEC Picty900 (HP OEM) */
213         { 0x0409, 0xbef4, USBLP_QUIRK_BIDIR }, /* NEC Picty760 (HP OEM) */
214         { 0x0409, 0xf0be, USBLP_QUIRK_BIDIR }, /* NEC Picty920 (HP OEM) */
215         { 0x0409, 0xf1be, USBLP_QUIRK_BIDIR }, /* NEC Picty800 (HP OEM) */
216         { 0, 0 }
217 };
218
219 static int usblp_select_alts(struct usblp *usblp);
220 static int usblp_set_protocol(struct usblp *usblp, int protocol);
221 static int usblp_cache_device_id_string(struct usblp *usblp);
222
223 /* forward reference to make our lives easier */
224 extern struct usb_driver usblp_driver;
225
226 /*
227  * Functions for usblp control messages.
228  */
229
230 static int usblp_ctrl_msg(struct usblp *usblp, int request, int type, int dir, int recip, int value, void *buf, int len)
231 {
232         int retval;
233         int index = usblp->ifnum;
234
235         /* High byte has the interface index.
236            Low byte has the alternate setting.
237          */
238         if ((request == USBLP_REQ_GET_ID) && (type == USB_TYPE_CLASS)) {
239           index = (usblp->ifnum<<8)|usblp->protocol[usblp->current_protocol].alt_setting;
240         }
241
242         retval = usb_control_msg(usblp->dev,
243                 dir ? usb_rcvctrlpipe(usblp->dev, 0) : usb_sndctrlpipe(usblp->dev, 0),
244                 request, type | dir | recip, value, index, buf, len, USBLP_WRITE_TIMEOUT);
245         dbg("usblp_control_msg: rq: 0x%02x dir: %d recip: %d value: %d idx: %d len: %#x result: %d",
246                 request, !!dir, recip, value, index, len, retval);
247         return retval < 0 ? retval : 0;
248 }
249
250 #define usblp_read_status(usblp, status)\
251         usblp_ctrl_msg(usblp, USBLP_REQ_GET_STATUS, USB_TYPE_CLASS, USB_DIR_IN, USB_RECIP_INTERFACE, 0, status, 1)
252 #define usblp_get_id(usblp, config, id, maxlen)\
253         usblp_ctrl_msg(usblp, USBLP_REQ_GET_ID, USB_TYPE_CLASS, USB_DIR_IN, USB_RECIP_INTERFACE, config, id, maxlen)
254 #define usblp_reset(usblp)\
255         usblp_ctrl_msg(usblp, USBLP_REQ_RESET, USB_TYPE_CLASS, USB_DIR_OUT, USB_RECIP_OTHER, 0, NULL, 0)
256
257 #define usblp_hp_channel_change_request(usblp, channel, buffer) \
258         usblp_ctrl_msg(usblp, USBLP_REQ_HP_CHANNEL_CHANGE_REQUEST, USB_TYPE_VENDOR, USB_DIR_IN, USB_RECIP_INTERFACE, channel, buffer, 1)
259
260 /*
261  * See the description for usblp_select_alts() below for the usage
262  * explanation.  Look into your /proc/bus/usb/devices and dmesg in
263  * case of any trouble.
264  */
265 static int proto_bias = -1;
266
267 /*
268  * URB callback.
269  */
270
271 static void usblp_bulk_read(struct urb *urb, struct pt_regs *regs)
272 {
273         struct usblp *usblp = urb->context;
274
275         if (!usblp || !usblp->dev || !usblp->used || !usblp->present)
276                 return;
277
278         if (unlikely(urb->status))
279                 warn("usblp%d: nonzero read/write bulk status received: %d",
280                         usblp->minor, urb->status);
281         usblp->rcomplete = 1;
282         wake_up_interruptible(&usblp->wait);
283 }
284
285 static void usblp_bulk_write(struct urb *urb, struct pt_regs *regs)
286 {
287         struct usblp *usblp = urb->context;
288
289         if (!usblp || !usblp->dev || !usblp->used || !usblp->present)
290                 return;
291
292         if (unlikely(urb->status))
293                 warn("usblp%d: nonzero read/write bulk status received: %d",
294                         usblp->minor, urb->status);
295         usblp->wcomplete = 1;
296         wake_up_interruptible(&usblp->wait);
297 }
298
299 /*
300  * Get and print printer errors.
301  */
302
303 static char *usblp_messages[] = { "ok", "out of paper", "off-line", "on fire" };
304
305 static int usblp_check_status(struct usblp *usblp, int err)
306 {
307         unsigned char status, newerr = 0;
308         int error;
309
310         error = usblp_read_status (usblp, usblp->statusbuf);
311         if (error < 0) {
312                 err("usblp%d: error %d reading printer status",
313                         usblp->minor, error);
314                 return 0;
315         }
316
317         status = *usblp->statusbuf;
318
319         if (~status & LP_PERRORP)
320                 newerr = 3;
321         if (status & LP_POUTPA)
322                 newerr = 1;
323         if (~status & LP_PSELECD)
324                 newerr = 2;
325
326         if (newerr != err)
327                 info("usblp%d: %s", usblp->minor, usblp_messages[newerr]);
328
329         return newerr;
330 }
331
332 /*
333  * File op functions.
334  */
335
336 static int usblp_open(struct inode *inode, struct file *file)
337 {
338         int minor = iminor(inode);
339         struct usblp *usblp;
340         struct usb_interface *intf;
341         int retval;
342
343         if (minor < 0)
344                 return -ENODEV;
345
346         lock_kernel();
347
348         retval = -ENODEV;
349         intf = usb_find_interface(&usblp_driver, minor);
350         if (!intf) {
351                 goto out;
352         }
353         usblp = usb_get_intfdata (intf);
354         if (!usblp || !usblp->dev || !usblp->present)
355                 goto out;
356
357         retval = -EBUSY;
358         if (usblp->used)
359                 goto out;
360
361         /*
362          * TODO: need to implement LP_ABORTOPEN + O_NONBLOCK as in drivers/char/lp.c ???
363          * This is #if 0-ed because we *don't* want to fail an open
364          * just because the printer is off-line.
365          */
366 #if 0
367         if ((retval = usblp_check_status(usblp, 0))) {
368                 retval = retval > 1 ? -EIO : -ENOSPC;
369                 goto out;
370         }
371 #else
372         retval = 0;
373 #endif
374
375         usblp->used = 1;
376         file->private_data = usblp;
377
378         usblp->writeurb->transfer_buffer_length = 0;
379         usblp->wcomplete = 1; /* we begin writeable */
380         usblp->rcomplete = 0;
381
382         if (usblp->bidir) {
383                 usblp->readcount = 0;
384                 usblp->readurb->dev = usblp->dev;
385                 if (usb_submit_urb(usblp->readurb, GFP_KERNEL) < 0) {
386                         retval = -EIO;
387                         usblp->used = 0;
388                         file->private_data = NULL;
389                 }
390         }
391 out:
392         unlock_kernel();
393         return retval;
394 }
395
396 static void usblp_cleanup (struct usblp *usblp)
397 {
398         info("usblp%d: removed", usblp->minor);
399
400         usb_buffer_free (usblp->dev, USBLP_BUF_SIZE,
401                         usblp->writebuf, usblp->writeurb->transfer_dma);
402         usb_buffer_free (usblp->dev, USBLP_BUF_SIZE,
403                         usblp->readbuf, usblp->readurb->transfer_dma);
404         kfree (usblp->device_id_string);
405         kfree (usblp->statusbuf);
406         usb_free_urb(usblp->writeurb);
407         usb_free_urb(usblp->readurb);
408         kfree (usblp);
409 }
410
411 static void usblp_unlink_urbs(struct usblp *usblp)
412 {
413         usb_unlink_urb(usblp->writeurb);
414         if (usblp->bidir)
415                 usb_unlink_urb(usblp->readurb);
416 }
417
418 static int usblp_release(struct inode *inode, struct file *file)
419 {
420         struct usblp *usblp = file->private_data;
421
422         down (&usblp->sem);
423         usblp->used = 0;
424         if (usblp->present) {
425                 usblp_unlink_urbs(usblp);
426                 up(&usblp->sem);
427         } else          /* finish cleanup from disconnect */
428                 usblp_cleanup (usblp);
429         return 0;
430 }
431
432 /* No kernel lock - fine */
433 static unsigned int usblp_poll(struct file *file, struct poll_table_struct *wait)
434 {
435         struct usblp *usblp = file->private_data;
436         poll_wait(file, &usblp->wait, wait);
437         return ((!usblp->bidir || !usblp->rcomplete) ? 0 : POLLIN  | POLLRDNORM)
438                                | (!usblp->wcomplete ? 0 : POLLOUT | POLLWRNORM);
439 }
440
441 static int usblp_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
442 {
443         struct usblp *usblp = file->private_data;
444         int length, err, i;
445         unsigned char newChannel;
446         int status;
447         int twoints[2];
448         int retval = 0;
449
450         down (&usblp->sem);
451         if (!usblp->present) {
452                 retval = -ENODEV;
453                 goto done;
454         }
455
456         dbg("usblp_ioctl: cmd=0x%x (%c nr=%d len=%d dir=%d)", cmd, _IOC_TYPE(cmd),
457                 _IOC_NR(cmd), _IOC_SIZE(cmd), _IOC_DIR(cmd) );
458
459         if (_IOC_TYPE(cmd) == 'P')      /* new-style ioctl number */
460
461                 switch (_IOC_NR(cmd)) {
462
463                         case IOCNR_GET_DEVICE_ID: /* get the DEVICE_ID string */
464                                 if (_IOC_DIR(cmd) != _IOC_READ) {
465                                         retval = -EINVAL;
466                                         goto done;
467                                 }
468
469                                 length = usblp_cache_device_id_string(usblp);
470                                 if (length < 0) {
471                                         retval = length;
472                                         goto done;
473                                 }
474                                 if (length > _IOC_SIZE(cmd))
475                                         length = _IOC_SIZE(cmd); /* truncate */
476
477                                 if (copy_to_user((void __user *) arg,
478                                                 usblp->device_id_string,
479                                                 (unsigned long) length)) {
480                                         retval = -EFAULT;
481                                         goto done;
482                                 }
483
484                                 break;
485
486                         case IOCNR_GET_PROTOCOLS:
487                                 if (_IOC_DIR(cmd) != _IOC_READ ||
488                                     _IOC_SIZE(cmd) < sizeof(twoints)) {
489                                         retval = -EINVAL;
490                                         goto done;
491                                 }
492
493                                 twoints[0] = usblp->current_protocol;
494                                 twoints[1] = 0;
495                                 for (i = USBLP_FIRST_PROTOCOL;
496                                      i <= USBLP_LAST_PROTOCOL; i++) {
497                                         if (usblp->protocol[i].alt_setting >= 0)
498                                                 twoints[1] |= (1<<i);
499                                 }
500
501                                 if (copy_to_user((void __user *)arg,
502                                                 (unsigned char *)twoints,
503                                                 sizeof(twoints))) {
504                                         retval = -EFAULT;
505                                         goto done;
506                                 }
507
508                                 break;
509
510                         case IOCNR_SET_PROTOCOL:
511                                 if (_IOC_DIR(cmd) != _IOC_WRITE) {
512                                         retval = -EINVAL;
513                                         goto done;
514                                 }
515
516 #ifdef DEBUG
517                                 if (arg == -10) {
518                                         usblp_dump(usblp);
519                                         break;
520                                 }
521 #endif
522
523                                 usblp_unlink_urbs(usblp);
524                                 retval = usblp_set_protocol(usblp, arg);
525                                 if (retval < 0) {
526                                         usblp_set_protocol(usblp,
527                                                 usblp->current_protocol);
528                                 }
529                                 break;
530
531                         case IOCNR_HP_SET_CHANNEL:
532                                 if (_IOC_DIR(cmd) != _IOC_WRITE ||
533                                     usblp->dev->descriptor.idVendor != 0x03F0 ||
534                                     usblp->quirks & USBLP_QUIRK_BIDIR) {
535                                         retval = -EINVAL;
536                                         goto done;
537                                 }
538
539                                 err = usblp_hp_channel_change_request(usblp,
540                                         arg, &newChannel);
541                                 if (err < 0) {
542                                         err("usblp%d: error = %d setting "
543                                                 "HP channel",
544                                                 usblp->minor, err);
545                                         retval = -EIO;
546                                         goto done;
547                                 }
548
549                                 dbg("usblp%d requested/got HP channel %ld/%d",
550                                         usblp->minor, arg, newChannel);
551                                 break;
552
553                         case IOCNR_GET_BUS_ADDRESS:
554                                 if (_IOC_DIR(cmd) != _IOC_READ ||
555                                     _IOC_SIZE(cmd) < sizeof(twoints)) {
556                                         retval = -EINVAL;
557                                         goto done;
558                                 }
559
560                                 twoints[0] = usblp->dev->bus->busnum;
561                                 twoints[1] = usblp->dev->devnum;
562                                 if (copy_to_user((void __user *)arg,
563                                                 (unsigned char *)twoints,
564                                                 sizeof(twoints))) {
565                                         retval = -EFAULT;
566                                         goto done;
567                                 }
568
569                                 dbg("usblp%d is bus=%d, device=%d",
570                                         usblp->minor, twoints[0], twoints[1]);
571                                 break;
572
573                         case IOCNR_GET_VID_PID:
574                                 if (_IOC_DIR(cmd) != _IOC_READ ||
575                                     _IOC_SIZE(cmd) < sizeof(twoints)) {
576                                         retval = -EINVAL;
577                                         goto done;
578                                 }
579
580                                 twoints[0] = usblp->dev->descriptor.idVendor;
581                                 twoints[1] = usblp->dev->descriptor.idProduct;
582                                 if (copy_to_user((void __user *)arg,
583                                                 (unsigned char *)twoints,
584                                                 sizeof(twoints))) {
585                                         retval = -EFAULT;
586                                         goto done;
587                                 }
588
589                                 dbg("usblp%d is VID=0x%4.4X, PID=0x%4.4X",
590                                         usblp->minor, twoints[0], twoints[1]);
591                                 break;
592
593                         case IOCNR_SOFT_RESET:
594                                 if (_IOC_DIR(cmd) != _IOC_NONE) {
595                                         retval = -EINVAL;
596                                         goto done;
597                                 }
598                                 retval = usblp_reset(usblp);
599                                 break;
600                         default:
601                                 retval = -ENOTTY;
602                 }
603         else    /* old-style ioctl value */
604                 switch (cmd) {
605
606                         case LPGETSTATUS:
607                                 if (usblp_read_status(usblp, usblp->statusbuf)) {
608                                         err("usblp%d: failed reading printer status", usblp->minor);
609                                         retval = -EIO;
610                                         goto done;
611                                 }
612                                 status = *usblp->statusbuf;
613                                 if (copy_to_user ((void __user *)arg, &status, sizeof(int)))
614                                         retval = -EFAULT;
615                                 break;
616
617                         default:
618                                 retval = -ENOTTY;
619                 }
620
621 done:
622         up (&usblp->sem);
623         return retval;
624 }
625
626 static ssize_t usblp_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
627 {
628         DECLARE_WAITQUEUE(wait, current);
629         struct usblp *usblp = file->private_data;
630         int timeout, err = 0, transfer_length = 0;
631         size_t writecount = 0;
632
633         while (writecount < count) {
634                 if (!usblp->wcomplete) {
635                         barrier();
636                         if (file->f_flags & O_NONBLOCK) {
637                                 writecount += transfer_length;
638                                 return writecount ? writecount : -EAGAIN;
639                         }
640
641                         timeout = USBLP_WRITE_TIMEOUT;
642                         add_wait_queue(&usblp->wait, &wait);
643                         while ( 1==1 ) {
644
645                                 if (signal_pending(current)) {
646                                         remove_wait_queue(&usblp->wait, &wait);
647                                         return writecount ? writecount : -EINTR;
648                                 }
649                                 set_current_state(TASK_INTERRUPTIBLE);
650                                 if (timeout && !usblp->wcomplete) {
651                                         timeout = schedule_timeout(timeout);
652                                 } else {
653                                         set_current_state(TASK_RUNNING);
654                                         break;
655                                 }
656                         }
657                         remove_wait_queue(&usblp->wait, &wait);
658                 }
659
660                 down (&usblp->sem);
661                 if (!usblp->present) {
662                         up (&usblp->sem);
663                         return -ENODEV;
664                 }
665
666                 if (usblp->writeurb->status != 0) {
667                         if (usblp->quirks & USBLP_QUIRK_BIDIR) {
668                                 if (!usblp->wcomplete)
669                                         err("usblp%d: error %d writing to printer",
670                                                 usblp->minor, usblp->writeurb->status);
671                                 err = usblp->writeurb->status;
672                         } else
673                                 err = usblp_check_status(usblp, err);
674                         up (&usblp->sem);
675
676                         /* if the fault was due to disconnect, let khubd's
677                          * call to usblp_disconnect() grab usblp->sem ...
678                          */
679                         schedule ();
680                         continue;
681                 }
682
683                 /* We must increment writecount here, and not at the
684                  * end of the loop. Otherwise, the final loop iteration may
685                  * be skipped, leading to incomplete printer output.
686                  */
687                 writecount += transfer_length;
688                 if (writecount == count) {
689                         up(&usblp->sem);
690                         break;
691                 }
692
693                 transfer_length=(count - writecount);
694                 if (transfer_length > USBLP_BUF_SIZE)
695                         transfer_length = USBLP_BUF_SIZE;
696
697                 usblp->writeurb->transfer_buffer_length = transfer_length;
698
699                 if (copy_from_user(usblp->writeurb->transfer_buffer, 
700                                    buffer + writecount, transfer_length)) {
701                         up(&usblp->sem);
702                         return writecount ? writecount : -EFAULT;
703                 }
704
705                 usblp->writeurb->dev = usblp->dev;
706                 usblp->wcomplete = 0;
707                 err = usb_submit_urb(usblp->writeurb, GFP_KERNEL);
708                 if (err) {
709                         if (err != -ENOMEM)
710                                 count = -EIO;
711                         else
712                                 count = writecount ? writecount : -ENOMEM;
713                         up (&usblp->sem);
714                         break;
715                 }
716                 up (&usblp->sem);
717         }
718
719         return count;
720 }
721
722 static ssize_t usblp_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
723 {
724         struct usblp *usblp = file->private_data;
725         DECLARE_WAITQUEUE(wait, current);
726
727         if (!usblp->bidir)
728                 return -EINVAL;
729
730         down (&usblp->sem);
731         if (!usblp->present) {
732                 count = -ENODEV;
733                 goto done;
734         }
735
736         if (!usblp->rcomplete) {
737                 barrier();
738
739                 if (file->f_flags & O_NONBLOCK) {
740                         count = -EAGAIN;
741                         goto done;
742                 }
743
744                 add_wait_queue(&usblp->wait, &wait);
745                 while (1==1) {
746                         if (signal_pending(current)) {
747                                 count = -EINTR;
748                                 remove_wait_queue(&usblp->wait, &wait);
749                                 goto done;
750                         }
751                         up (&usblp->sem);
752                         set_current_state(TASK_INTERRUPTIBLE);
753                         if (!usblp->rcomplete) {
754                                 schedule();
755                         } else {
756                                 set_current_state(TASK_RUNNING);
757                                 break;
758                         }
759                         down (&usblp->sem);
760                 }
761                 remove_wait_queue(&usblp->wait, &wait);
762         }
763
764         if (!usblp->present) {
765                 count = -ENODEV;
766                 goto done;
767         }
768
769         if (usblp->readurb->status) {
770                 err("usblp%d: error %d reading from printer",
771                         usblp->minor, usblp->readurb->status);
772                 usblp->readurb->dev = usblp->dev;
773                 usblp->readcount = 0;
774                 usblp->rcomplete = 0;
775                 if (usb_submit_urb(usblp->readurb, GFP_KERNEL) < 0)
776                         dbg("error submitting urb");
777                 count = -EIO;
778                 goto done;
779         }
780
781         count = count < usblp->readurb->actual_length - usblp->readcount ?
782                 count : usblp->readurb->actual_length - usblp->readcount;
783
784         if (copy_to_user(buffer, usblp->readurb->transfer_buffer + usblp->readcount, count)) {
785                 count = -EFAULT;
786                 goto done;
787         }
788
789         if ((usblp->readcount += count) == usblp->readurb->actual_length) {
790                 usblp->readcount = 0;
791                 usblp->readurb->dev = usblp->dev;
792                 usblp->rcomplete = 0;
793                 if (usb_submit_urb(usblp->readurb, GFP_KERNEL)) {
794                         count = -EIO;
795                         goto done;
796                 }
797         }
798
799 done:
800         up (&usblp->sem);
801         return count;
802 }
803
804 /*
805  * Checks for printers that have quirks, such as requiring unidirectional
806  * communication but reporting bidirectional; currently some HP printers
807  * have this flaw (HP 810, 880, 895, etc.), or needing an init string
808  * sent at each open (like some Epsons).
809  * Returns 1 if found, 0 if not found.
810  *
811  * HP recommended that we use the bidirectional interface but
812  * don't attempt any bulk IN transfers from the IN endpoint.
813  * Here's some more detail on the problem:
814  * The problem is not that it isn't bidirectional though. The problem
815  * is that if you request a device ID, or status information, while
816  * the buffers are full, the return data will end up in the print data
817  * buffer. For example if you make sure you never request the device ID
818  * while you are sending print data, and you don't try to query the
819  * printer status every couple of milliseconds, you will probably be OK.
820  */
821 static unsigned int usblp_quirks (__u16 vendor, __u16 product)
822 {
823         int i;
824
825         for (i = 0; quirk_printers[i].vendorId; i++) {
826                 if (vendor == quirk_printers[i].vendorId &&
827                     product == quirk_printers[i].productId)
828                         return quirk_printers[i].quirks;
829         }
830         return 0;
831 }
832
833 static struct file_operations usblp_fops = {
834         .owner =        THIS_MODULE,
835         .read =         usblp_read,
836         .write =        usblp_write,
837         .poll =         usblp_poll,
838         .ioctl =        usblp_ioctl,
839         .open =         usblp_open,
840         .release =      usblp_release,
841 };
842
843 static struct usb_class_driver usblp_class = {
844         .name =         "usb/lp%d",
845         .fops =         &usblp_fops,
846         .mode =         S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP,
847         .minor_base =   USBLP_MINOR_BASE,
848 };
849
850 static int usblp_probe(struct usb_interface *intf,
851                        const struct usb_device_id *id)
852 {
853         struct usb_device *dev = interface_to_usbdev (intf);
854         struct usblp *usblp = NULL;
855         int protocol;
856         int retval;
857
858         /* Malloc and start initializing usblp structure so we can use it
859          * directly. */
860         if (!(usblp = kmalloc(sizeof(struct usblp), GFP_KERNEL))) {
861                 err("out of memory for usblp");
862                 goto abort;
863         }
864         memset(usblp, 0, sizeof(struct usblp));
865         usblp->dev = dev;
866         init_MUTEX (&usblp->sem);
867         init_waitqueue_head(&usblp->wait);
868         usblp->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
869         usblp->intf = intf;
870
871         usblp->writeurb = usb_alloc_urb(0, GFP_KERNEL);
872         if (!usblp->writeurb) {
873                 err("out of memory");
874                 goto abort;
875         }
876         usblp->readurb = usb_alloc_urb(0, GFP_KERNEL);
877         if (!usblp->readurb) {
878                 err("out of memory");
879                 goto abort;
880         }
881
882         /* Malloc device ID string buffer to the largest expected length,
883          * since we can re-query it on an ioctl and a dynamic string
884          * could change in length. */
885         if (!(usblp->device_id_string = kmalloc(USBLP_DEVICE_ID_SIZE, GFP_KERNEL))) {
886                 err("out of memory for device_id_string");
887                 goto abort;
888         }
889
890         usblp->writebuf = usblp->readbuf = NULL;
891         usblp->writeurb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
892         usblp->readurb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
893         /* Malloc write & read buffers.  We somewhat wastefully
894          * malloc both regardless of bidirectionality, because the
895          * alternate setting can be changed later via an ioctl. */
896         if (!(usblp->writebuf = usb_buffer_alloc(dev, USBLP_BUF_SIZE,
897                                 GFP_KERNEL, &usblp->writeurb->transfer_dma))) {
898                 err("out of memory for write buf");
899                 goto abort;
900         }
901         if (!(usblp->readbuf = usb_buffer_alloc(dev, USBLP_BUF_SIZE,
902                                 GFP_KERNEL, &usblp->readurb->transfer_dma))) {
903                 err("out of memory for read buf");
904                 goto abort;
905         }
906
907         /* Allocate buffer for printer status */
908         usblp->statusbuf = kmalloc(STATUS_BUF_SIZE, GFP_KERNEL);
909         if (!usblp->statusbuf) {
910                 err("out of memory for statusbuf");
911                 goto abort;
912         }
913
914         /* Lookup quirks for this printer. */
915         usblp->quirks = usblp_quirks(
916                 dev->descriptor.idVendor,
917                 dev->descriptor.idProduct);
918
919         /* Analyze and pick initial alternate settings and endpoints. */
920         protocol = usblp_select_alts(usblp);
921         if (protocol < 0) {
922                 dbg("incompatible printer-class device 0x%4.4X/0x%4.4X",
923                         dev->descriptor.idVendor,
924                         dev->descriptor.idProduct);
925                 goto abort;
926         }
927
928         /* Setup the selected alternate setting and endpoints. */
929         if (usblp_set_protocol(usblp, protocol) < 0)
930                 goto abort;
931
932         /* Retrieve and store the device ID string. */
933         usblp_cache_device_id_string(usblp);
934
935 #ifdef DEBUG
936         usblp_check_status(usblp, 0);
937 #endif
938
939         info("usblp%d: USB %sdirectional printer dev %d "
940                 "if %d alt %d proto %d vid 0x%4.4X pid 0x%4.4X",
941                 usblp->minor, usblp->bidir ? "Bi" : "Uni", dev->devnum,
942                 usblp->ifnum,
943                 usblp->protocol[usblp->current_protocol].alt_setting,
944                 usblp->current_protocol, usblp->dev->descriptor.idVendor,
945                 usblp->dev->descriptor.idProduct);
946
947         usb_set_intfdata (intf, usblp);
948
949         usblp->present = 1;
950
951         retval = usb_register_dev(intf, &usblp_class);
952         if (retval) {
953                 err("Not able to get a minor for this device.");
954                 goto abort_intfdata;
955         }
956         usblp->minor = intf->minor;
957
958         return 0;
959
960 abort_intfdata:
961         usb_set_intfdata (intf, NULL);
962 abort:
963         if (usblp) {
964                 if (usblp->writebuf)
965                         usb_buffer_free (usblp->dev, USBLP_BUF_SIZE,
966                                 usblp->writebuf, usblp->writeurb->transfer_dma);
967                 if (usblp->readbuf)
968                         usb_buffer_free (usblp->dev, USBLP_BUF_SIZE,
969                                 usblp->readbuf, usblp->writeurb->transfer_dma);
970                 kfree(usblp->statusbuf);
971                 kfree(usblp->device_id_string);
972                 usb_free_urb(usblp->writeurb);
973                 usb_free_urb(usblp->readurb);
974                 kfree(usblp);
975         }
976         return -EIO;
977 }
978
979 /*
980  * We are a "new" style driver with usb_device_id table,
981  * but our requirements are too intricate for simple match to handle.
982  *
983  * The "proto_bias" option may be used to specify the preferred protocol
984  * for all USB printers (1=7/1/1, 2=7/1/2, 3=7/1/3).  If the device
985  * supports the preferred protocol, then we bind to it.
986  *
987  * The best interface for us is 7/1/2, because it is compatible
988  * with a stream of characters. If we find it, we bind to it.
989  *
990  * Note that the people from hpoj.sourceforge.net need to be able to
991  * bind to 7/1/3 (MLC/1284.4), so we provide them ioctls for this purpose.
992  *
993  * Failing 7/1/2, we look for 7/1/3, even though it's probably not
994  * stream-compatible, because this matches the behaviour of the old code.
995  *
996  * If nothing else, we bind to 7/1/1 - the unidirectional interface.
997  */
998 static int usblp_select_alts(struct usblp *usblp)
999 {
1000         struct usb_interface *if_alt;
1001         struct usb_host_interface *ifd;
1002         struct usb_endpoint_descriptor *epd, *epwrite, *epread;
1003         int p, i, e;
1004
1005         if_alt = usblp->intf;
1006
1007         for (p = 0; p < USBLP_MAX_PROTOCOLS; p++)
1008                 usblp->protocol[p].alt_setting = -1;
1009
1010         /* Find out what we have. */
1011         for (i = 0; i < if_alt->num_altsetting; i++) {
1012                 ifd = &if_alt->altsetting[i];
1013
1014                 if (ifd->desc.bInterfaceClass != 7 || ifd->desc.bInterfaceSubClass != 1)
1015                         continue;
1016
1017                 if (ifd->desc.bInterfaceProtocol < USBLP_FIRST_PROTOCOL ||
1018                     ifd->desc.bInterfaceProtocol > USBLP_LAST_PROTOCOL)
1019                         continue;
1020
1021                 /* Look for bulk OUT and IN endpoints. */
1022                 epwrite = epread = NULL;
1023                 for (e = 0; e < ifd->desc.bNumEndpoints; e++) {
1024                         epd = &ifd->endpoint[e].desc;
1025
1026                         if ((epd->bmAttributes&USB_ENDPOINT_XFERTYPE_MASK)!=
1027                             USB_ENDPOINT_XFER_BULK)
1028                                 continue;
1029
1030                         if (!(epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK)) {
1031                                 if (!epwrite)
1032                                         epwrite = epd;
1033
1034                         } else {
1035                                 if (!epread)
1036                                         epread = epd;
1037                         }
1038                 }
1039
1040                 /* Ignore buggy hardware without the right endpoints. */
1041                 if (!epwrite || (ifd->desc.bInterfaceProtocol > 1 && !epread))
1042                         continue;
1043
1044                 /* Turn off reads for 7/1/1 (unidirectional) interfaces
1045                  * and buggy bidirectional printers. */
1046                 if (ifd->desc.bInterfaceProtocol == 1) {
1047                         epread = NULL;
1048                 } else if (usblp->quirks & USBLP_QUIRK_BIDIR) {
1049                         info("Disabling reads from problem bidirectional "
1050                                 "printer on usblp%d", usblp->minor);
1051                         epread = NULL;
1052                 }
1053
1054                 usblp->protocol[ifd->desc.bInterfaceProtocol].alt_setting =
1055                                 ifd->desc.bAlternateSetting;
1056                 usblp->protocol[ifd->desc.bInterfaceProtocol].epwrite = epwrite;
1057                 usblp->protocol[ifd->desc.bInterfaceProtocol].epread = epread;
1058         }
1059
1060         /* If our requested protocol is supported, then use it. */
1061         if (proto_bias >= USBLP_FIRST_PROTOCOL &&
1062             proto_bias <= USBLP_LAST_PROTOCOL &&
1063             usblp->protocol[proto_bias].alt_setting != -1)
1064                 return proto_bias;
1065
1066         /* Ordering is important here. */
1067         if (usblp->protocol[2].alt_setting != -1)
1068                 return 2;
1069         if (usblp->protocol[1].alt_setting != -1)
1070                 return 1;
1071         if (usblp->protocol[3].alt_setting != -1)
1072                 return 3;
1073
1074         /* If nothing is available, then don't bind to this device. */
1075         return -1;
1076 }
1077
1078 static int usblp_set_protocol(struct usblp *usblp, int protocol)
1079 {
1080         int r, alts;
1081
1082         if (protocol < USBLP_FIRST_PROTOCOL || protocol > USBLP_LAST_PROTOCOL)
1083                 return -EINVAL;
1084
1085         alts = usblp->protocol[protocol].alt_setting;
1086         if (alts < 0)
1087                 return -EINVAL;
1088         r = usb_set_interface(usblp->dev, usblp->ifnum, alts);
1089         if (r < 0) {
1090                 err("can't set desired altsetting %d on interface %d",
1091                         alts, usblp->ifnum);
1092                 return r;
1093         }
1094
1095         usb_fill_bulk_urb(usblp->writeurb, usblp->dev,
1096                 usb_sndbulkpipe(usblp->dev,
1097                   usblp->protocol[protocol].epwrite->bEndpointAddress),
1098                 usblp->writebuf, 0,
1099                 usblp_bulk_write, usblp);
1100
1101         usblp->bidir = (usblp->protocol[protocol].epread != 0);
1102         if (usblp->bidir)
1103                 usb_fill_bulk_urb(usblp->readurb, usblp->dev,
1104                         usb_rcvbulkpipe(usblp->dev,
1105                           usblp->protocol[protocol].epread->bEndpointAddress),
1106                         usblp->readbuf, USBLP_BUF_SIZE,
1107                         usblp_bulk_read, usblp);
1108
1109         usblp->current_protocol = protocol;
1110         dbg("usblp%d set protocol %d", usblp->minor, protocol);
1111         return 0;
1112 }
1113
1114 /* Retrieves and caches device ID string.
1115  * Returns length, including length bytes but not null terminator.
1116  * On error, returns a negative errno value. */
1117 static int usblp_cache_device_id_string(struct usblp *usblp)
1118 {
1119         int err, length;
1120
1121         err = usblp_get_id(usblp, 0, usblp->device_id_string, USBLP_DEVICE_ID_SIZE - 1);
1122         if (err < 0) {
1123                 dbg("usblp%d: error = %d reading IEEE-1284 Device ID string",
1124                         usblp->minor, err);
1125                 usblp->device_id_string[0] = usblp->device_id_string[1] = '\0';
1126                 return -EIO;
1127         }
1128
1129         /* First two bytes are length in big-endian.
1130          * They count themselves, and we copy them into
1131          * the user's buffer. */
1132         length = be16_to_cpu(*((u16 *)usblp->device_id_string));
1133         if (length < 2)
1134                 length = 2;
1135         else if (length >= USBLP_DEVICE_ID_SIZE)
1136                 length = USBLP_DEVICE_ID_SIZE - 1;
1137         usblp->device_id_string[length] = '\0';
1138
1139         dbg("usblp%d Device ID string [len=%d]=\"%s\"",
1140                 usblp->minor, length, &usblp->device_id_string[2]);
1141
1142         return length;
1143 }
1144
1145 static void usblp_disconnect(struct usb_interface *intf)
1146 {
1147         struct usblp *usblp = usb_get_intfdata (intf);
1148
1149         usb_deregister_dev(intf, &usblp_class);
1150
1151         if (!usblp || !usblp->dev) {
1152                 err("bogus disconnect");
1153                 BUG ();
1154         }
1155
1156         down (&usblp->sem);
1157         lock_kernel();
1158         usblp->present = 0;
1159         usb_set_intfdata (intf, NULL);
1160
1161         usblp_unlink_urbs(usblp);
1162
1163         if (!usblp->used)
1164                 usblp_cleanup (usblp);
1165         else    /* cleanup later, on release */
1166                 up (&usblp->sem);
1167         unlock_kernel();
1168 }
1169
1170 static struct usb_device_id usblp_ids [] = {
1171         { USB_DEVICE_INFO(7, 1, 1) },
1172         { USB_DEVICE_INFO(7, 1, 2) },
1173         { USB_DEVICE_INFO(7, 1, 3) },
1174         { USB_INTERFACE_INFO(7, 1, 1) },
1175         { USB_INTERFACE_INFO(7, 1, 2) },
1176         { USB_INTERFACE_INFO(7, 1, 3) },
1177         { }                                             /* Terminating entry */
1178 };
1179
1180 MODULE_DEVICE_TABLE (usb, usblp_ids);
1181
1182 static struct usb_driver usblp_driver = {
1183         .owner =        THIS_MODULE,
1184         .name =         "usblp",
1185         .probe =        usblp_probe,
1186         .disconnect =   usblp_disconnect,
1187         .id_table =     usblp_ids,
1188 };
1189
1190 static int __init usblp_init(void)
1191 {
1192         int retval;
1193         retval = usb_register(&usblp_driver);
1194         if (retval)
1195                 goto out;
1196         info(DRIVER_VERSION ": " DRIVER_DESC);
1197 out:
1198         return retval;
1199 }
1200
1201 static void __exit usblp_exit(void)
1202 {
1203         usb_deregister(&usblp_driver);
1204 }
1205
1206 module_init(usblp_init);
1207 module_exit(usblp_exit);
1208
1209 MODULE_AUTHOR( DRIVER_AUTHOR );
1210 MODULE_DESCRIPTION( DRIVER_DESC );
1211 MODULE_PARM(proto_bias, "i");
1212 MODULE_PARM_DESC(proto_bias, "Favourite protocol number");
1213 MODULE_LICENSE("GPL");