OSDN Git Service

2.4: USB: fix DoS in pwc USB video driver
[linux-kernel-docs/linux-2.4.36.git] / drivers / char / lp.c
1 /*
2  * Generic parallel printer driver
3  *
4  * Copyright (C) 1992 by Jim Weigand and Linus Torvalds
5  * Copyright (C) 1992,1993 by Michael K. Johnson
6  * - Thanks much to Gunter Windau for pointing out to me where the error
7  *   checking ought to be.
8  * Copyright (C) 1993 by Nigel Gamble (added interrupt code)
9  * Copyright (C) 1994 by Alan Cox (Modularised it)
10  * LPCAREFUL, LPABORT, LPGETSTATUS added by Chris Metcalf, metcalf@lcs.mit.edu
11  * Statistics and support for slow printers by Rob Janssen, rob@knoware.nl
12  * "lp=" command line parameters added by Grant Guenther, grant@torque.net
13  * lp_read (Status readback) support added by Carsten Gross,
14  *                                             carsten@sol.wohnheim.uni-ulm.de
15  * Support for parport by Philip Blundell <philb@gnu.org>
16  * Parport sharing hacking by Andrea Arcangeli
17  * Fixed kernel_(to/from)_user memory copy to check for errors
18  *                              by Riccardo Facchetti <fizban@tin.it>
19  * 22-JAN-1998  Added support for devfs  Richard Gooch <rgooch@atnf.csiro.au>
20  * Redesigned interrupt handling for handle printers with buggy handshake
21  *                              by Andrea Arcangeli, 11 May 1998
22  * Full efficient handling of printer with buggy irq handshake (now I have
23  * understood the meaning of the strange handshake). This is done sending new
24  * characters if the interrupt is just happened, even if the printer say to
25  * be still BUSY. This is needed at least with Epson Stylus Color. To enable
26  * the new TRUST_IRQ mode read the `LP OPTIMIZATION' section below...
27  * Fixed the irq on the rising edge of the strobe case.
28  * Obsoleted the CAREFUL flag since a printer that doesn' t work with
29  * CAREFUL will block a bit after in lp_check_status().
30  *                              Andrea Arcangeli, 15 Oct 1998
31  * Obsoleted and removed all the lowlevel stuff implemented in the last
32  * month to use the IEEE1284 functions (that handle the _new_ compatibilty
33  * mode fine).
34  */
35
36 /* This driver should, in theory, work with any parallel port that has an
37  * appropriate low-level driver; all I/O is done through the parport
38  * abstraction layer.
39  *
40  * If this driver is built into the kernel, you can configure it using the
41  * kernel command-line.  For example:
42  *
43  *      lp=parport1,none,parport2       (bind lp0 to parport1, disable lp1 and
44  *                                       bind lp2 to parport2)
45  *
46  *      lp=auto                         (assign lp devices to all ports that
47  *                                       have printers attached, as determined
48  *                                       by the IEEE-1284 autoprobe)
49  * 
50  *      lp=reset                        (reset the printer during 
51  *                                       initialisation)
52  *
53  *      lp=off                          (disable the printer driver entirely)
54  *
55  * If the driver is loaded as a module, similar functionality is available
56  * using module parameters.  The equivalent of the above commands would be:
57  *
58  *      # insmod lp.o parport=1,none,2
59  *
60  *      # insmod lp.o parport=auto
61  *
62  *      # insmod lp.o reset=1
63  */
64
65 /* COMPATIBILITY WITH OLD KERNELS
66  *
67  * Under Linux 2.0 and previous versions, lp devices were bound to ports at
68  * particular I/O addresses, as follows:
69  *
70  *      lp0             0x3bc
71  *      lp1             0x378
72  *      lp2             0x278
73  *
74  * The new driver, by default, binds lp devices to parport devices as it
75  * finds them.  This means that if you only have one port, it will be bound
76  * to lp0 regardless of its I/O address.  If you need the old behaviour, you
77  * can force it using the parameters described above.
78  */
79
80 /*
81  * The new interrupt handling code take care of the buggy handshake
82  * of some HP and Epson printer:
83  * ___
84  * ACK    _______________    ___________
85  *                       |__|
86  * ____
87  * BUSY   _________              _______
88  *                 |____________|
89  *
90  * I discovered this using the printer scanner that you can find at:
91  *
92  *      ftp://e-mind.com/pub/linux/pscan/
93  *
94  *                                      11 May 98, Andrea Arcangeli
95  *
96  * My printer scanner run on an Epson Stylus Color show that such printer
97  * generates the irq on the _rising_ edge of the STROBE. Now lp handle
98  * this case fine too.
99  *
100  *                                      15 Oct 1998, Andrea Arcangeli
101  *
102  * The so called `buggy' handshake is really the well documented
103  * compatibility mode IEEE1284 handshake. They changed the well known
104  * Centronics handshake acking in the middle of busy expecting to not
105  * break drivers or legacy application, while they broken linux lp
106  * until I fixed it reverse engineering the protocol by hand some
107  * month ago...
108  *
109  *                                     14 Dec 1998, Andrea Arcangeli
110  *
111  * Copyright (C) 2000 by Tim Waugh (added LPSETTIMEOUT ioctl)
112  */
113
114 #include <linux/module.h>
115 #include <linux/init.h>
116
117 #include <linux/config.h>
118 #include <linux/errno.h>
119 #include <linux/kernel.h>
120 #include <linux/major.h>
121 #include <linux/sched.h>
122 #include <linux/smp_lock.h>
123 #include <linux/devfs_fs_kernel.h>
124 #include <linux/slab.h>
125 #include <linux/fcntl.h>
126 #include <linux/delay.h>
127 #include <linux/poll.h>
128 #include <linux/console.h>
129
130 #include <linux/parport.h>
131 #undef LP_STATS
132 #include <linux/lp.h>
133
134 #include <asm/irq.h>
135 #include <asm/uaccess.h>
136 #include <asm/system.h>
137
138 /* if you have more than 8 printers, remember to increase LP_NO */
139 #define LP_NO 8
140
141 /* ROUND_UP macro from fs/select.c */
142 #define ROUND_UP(x,y) (((x)+(y)-1)/(y))
143
144 static devfs_handle_t devfs_handle = NULL;
145
146 struct lp_struct lp_table[LP_NO];
147
148 static unsigned int lp_count = 0;
149
150 #ifdef CONFIG_LP_CONSOLE
151 static struct parport *console_registered; // initially NULL
152 #endif /* CONFIG_LP_CONSOLE */
153
154 #undef LP_DEBUG
155
156 /* Bits used to manage claiming the parport device */
157 #define LP_PREEMPT_REQUEST 1
158 #define LP_PARPORT_CLAIMED 2
159
160 /* --- low-level port access ----------------------------------- */
161
162 #define r_dtr(x)        (parport_read_data(lp_table[(x)].dev->port))
163 #define r_str(x)        (parport_read_status(lp_table[(x)].dev->port))
164 #define w_ctr(x,y)      do { parport_write_control(lp_table[(x)].dev->port, (y)); } while (0)
165 #define w_dtr(x,y)      do { parport_write_data(lp_table[(x)].dev->port, (y)); } while (0)
166
167 /* Claim the parport or block trying unless we've already claimed it */
168 static void lp_claim_parport_or_block(struct lp_struct *this_lp)
169 {
170         if (!test_and_set_bit(LP_PARPORT_CLAIMED, &this_lp->bits)) {
171                 parport_claim_or_block (this_lp->dev);
172         }
173 }
174
175 /* Claim the parport or block trying unless we've already claimed it */
176 static void lp_release_parport(struct lp_struct *this_lp)
177 {
178         if (test_and_clear_bit(LP_PARPORT_CLAIMED, &this_lp->bits)) {
179                 parport_release (this_lp->dev);
180         }
181 }
182
183
184
185 static int lp_preempt(void *handle)
186 {
187         struct lp_struct *this_lp = (struct lp_struct *)handle;
188         set_bit(LP_PREEMPT_REQUEST, &this_lp->bits);
189         return (1);
190 }
191
192
193 /* 
194  * Try to negotiate to a new mode; if unsuccessful negotiate to
195  * compatibility mode.  Return the mode we ended up in.
196  */
197 static int lp_negotiate(struct parport * port, int mode)
198 {
199         if (parport_negotiate (port, mode) != 0) {
200                 mode = IEEE1284_MODE_COMPAT;
201                 parport_negotiate (port, mode);
202         }
203
204         return (mode);
205 }
206
207 static int lp_reset(int minor)
208 {
209         int retval;
210         lp_claim_parport_or_block (&lp_table[minor]);
211         w_ctr(minor, LP_PSELECP);
212         udelay (LP_DELAY);
213         w_ctr(minor, LP_PSELECP | LP_PINITP);
214         retval = r_str(minor);
215         lp_release_parport (&lp_table[minor]);
216         return retval;
217 }
218
219 static void lp_error (int minor)
220 {
221         int polling;
222
223         if (LP_F(minor) & LP_ABORT)
224                 return;
225
226         polling = lp_table[minor].dev->port->irq == PARPORT_IRQ_NONE;
227         if (polling) lp_release_parport (&lp_table[minor]);
228         interruptible_sleep_on_timeout (&lp_table[minor].waitq,
229                                         LP_TIMEOUT_POLLED);
230         if (polling) lp_claim_parport_or_block (&lp_table[minor]);
231         else parport_yield_blocking (lp_table[minor].dev);
232 }
233
234 static int lp_check_status(int minor)
235 {
236         int error = 0;
237         unsigned int last = lp_table[minor].last_error;
238         unsigned char status = r_str(minor);
239         if ((status & LP_PERRORP) && !(LP_F(minor) & LP_CAREFUL))
240                 /* No error. */
241                 last = 0;
242         else if ((status & LP_POUTPA)) {
243                 if (last != LP_POUTPA) {
244                         last = LP_POUTPA;
245                         printk(KERN_INFO "lp%d out of paper\n", minor);
246                 }
247                 error = -ENOSPC;
248         } else if (!(status & LP_PSELECD)) {
249                 if (last != LP_PSELECD) {
250                         last = LP_PSELECD;
251                         printk(KERN_INFO "lp%d off-line\n", minor);
252                 }
253                 error = -EIO;
254         } else if (!(status & LP_PERRORP)) {
255                 if (last != LP_PERRORP) {
256                         last = LP_PERRORP;
257                         printk(KERN_INFO "lp%d on fire\n", minor);
258                 }
259                 error = -EIO;
260         } else {
261                 last = 0; /* Come here if LP_CAREFUL is set and no
262                              errors are reported. */
263         }
264
265         lp_table[minor].last_error = last;
266
267         if (last != 0)
268                 lp_error(minor);
269
270         return error;
271 }
272
273 static int lp_wait_ready(int minor, int nonblock)
274 {
275         int error = 0;
276
277         /* If we're not in compatibility mode, we're ready now! */
278         if (lp_table[minor].current_mode != IEEE1284_MODE_COMPAT) {
279           return (0);
280         }
281
282         do {
283                 error = lp_check_status (minor);
284                 if (error && (nonblock || (LP_F(minor) & LP_ABORT)))
285                         break;
286                 if (signal_pending (current)) {
287                         error = -EINTR;
288                         break;
289                 }
290         } while (error);
291         return error;
292 }
293
294 static ssize_t lp_write(struct file * file, const char * buf,
295                         size_t count, loff_t *ppos)
296 {
297         unsigned int minor = MINOR(file->f_dentry->d_inode->i_rdev);
298         struct parport *port = lp_table[minor].dev->port;
299         char *kbuf = lp_table[minor].lp_buffer;
300         ssize_t retv = 0;
301         ssize_t written;
302         size_t copy_size = count;
303         int nonblock = ((file->f_flags & O_NONBLOCK) ||
304                         (LP_F(minor) & LP_ABORT));
305
306 #ifdef LP_STATS
307         if (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
308                 lp_table[minor].runchars = 0;
309
310         lp_table[minor].lastcall = jiffies;
311 #endif
312
313         /* Need to copy the data from user-space. */
314         if (copy_size > LP_BUFFER_SIZE)
315                 copy_size = LP_BUFFER_SIZE;
316
317         if (down_interruptible (&lp_table[minor].port_mutex))
318                 return -EINTR;
319
320         if (copy_from_user (kbuf, buf, copy_size)) {
321                 retv = -EFAULT;
322                 goto out_unlock;
323         }
324
325         /* Claim Parport or sleep until it becomes available
326          */
327         lp_claim_parport_or_block (&lp_table[minor]);
328         /* Go to the proper mode. */
329         lp_table[minor].current_mode = lp_negotiate (port, 
330                                                      lp_table[minor].best_mode);
331
332         parport_set_timeout (lp_table[minor].dev,
333                              (nonblock ? PARPORT_INACTIVITY_O_NONBLOCK
334                               : lp_table[minor].timeout));
335
336         if ((retv = lp_wait_ready (minor, nonblock)) == 0)
337         do {
338                 /* Write the data. */
339                 written = parport_write (port, kbuf, copy_size);
340                 if (written >= 0) {
341                         copy_size -= written;
342                         count -= written;
343                         buf  += written;
344                         retv += written;
345                 }
346
347                 if (signal_pending (current)) {
348                         if (retv == 0)
349                                 retv = -EINTR;
350
351                         break;
352                 }
353
354                 if (copy_size > 0) {
355                         /* incomplete write -> check error ! */
356                         int error;
357
358                         parport_negotiate (lp_table[minor].dev->port, 
359                                            IEEE1284_MODE_COMPAT);
360                         lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
361
362                         error = lp_wait_ready (minor, nonblock);
363
364                         if (error) {
365                                 if (retv == 0)
366                                         retv = error;
367                                 break;
368                         } else if (nonblock) {
369                                 if (retv == 0)
370                                         retv = -EAGAIN;
371                                 break;
372                         }
373
374                         parport_yield_blocking (lp_table[minor].dev);
375                         lp_table[minor].current_mode 
376                           = lp_negotiate (port, 
377                                           lp_table[minor].best_mode);
378
379                 } else if (current->need_resched)
380                         schedule ();
381
382                 if (count) {
383                         copy_size = count;
384                         if (copy_size > LP_BUFFER_SIZE)
385                                 copy_size = LP_BUFFER_SIZE;
386
387                         if (copy_from_user(kbuf, buf, copy_size)) {
388                                 if (retv == 0)
389                                         retv = -EFAULT;
390                                 break;
391                         }
392                 }       
393         } while (count > 0);
394
395         if (test_and_clear_bit(LP_PREEMPT_REQUEST, 
396                                &lp_table[minor].bits)) {
397                 printk(KERN_INFO "lp%d releasing parport\n", minor);
398                 parport_negotiate (lp_table[minor].dev->port, 
399                                    IEEE1284_MODE_COMPAT);
400                 lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
401                 lp_release_parport (&lp_table[minor]);
402         }
403 out_unlock:
404         up (&lp_table[minor].port_mutex);
405
406         return retv;
407 }
408
409 #ifdef CONFIG_PARPORT_1284
410
411 /* Status readback conforming to ieee1284 */
412 static ssize_t lp_read(struct file * file, char * buf,
413                        size_t count, loff_t *ppos)
414 {
415         unsigned int minor=MINOR(file->f_dentry->d_inode->i_rdev);
416         struct parport *port = lp_table[minor].dev->port;
417         ssize_t retval = 0;
418         char *kbuf = lp_table[minor].lp_buffer;
419         int nonblock = ((file->f_flags & O_NONBLOCK) ||
420                         (LP_F(minor) & LP_ABORT));
421
422         if (count > LP_BUFFER_SIZE)
423                 count = LP_BUFFER_SIZE;
424
425         if (down_interruptible (&lp_table[minor].port_mutex))
426                 return -EINTR;
427
428         lp_claim_parport_or_block (&lp_table[minor]);
429
430         parport_set_timeout (lp_table[minor].dev,
431                              (nonblock ? PARPORT_INACTIVITY_O_NONBLOCK
432                               : lp_table[minor].timeout));
433
434         parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
435         if (parport_negotiate (lp_table[minor].dev->port,
436                                IEEE1284_MODE_NIBBLE)) {
437                 retval = -EIO;
438                 goto out;
439         }
440
441         while (retval == 0) {
442                 retval = parport_read (port, kbuf, count);
443
444                 if (retval > 0)
445                         break;
446
447                 if (nonblock) {
448                         retval = -EAGAIN;
449                         break;
450                 }
451
452                 /* Wait for data. */
453
454                 if (lp_table[minor].dev->port->irq == PARPORT_IRQ_NONE) {
455                         parport_negotiate (lp_table[minor].dev->port,
456                                            IEEE1284_MODE_COMPAT);
457                         lp_error (minor);
458                         if (parport_negotiate (lp_table[minor].dev->port,
459                                                IEEE1284_MODE_NIBBLE)) {
460                                 retval = -EIO;
461                                 goto out;
462                         }
463                 } else
464                         interruptible_sleep_on_timeout (&lp_table[minor].waitq,
465                                                         LP_TIMEOUT_POLLED);
466
467                 if (signal_pending (current)) {
468                         retval = -ERESTARTSYS;
469                         break;
470                 }
471
472                 if (current->need_resched)
473                         schedule ();
474         }
475         parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
476  out:
477         lp_release_parport (&lp_table[minor]);
478
479         if (retval > 0 && copy_to_user (buf, kbuf, retval))
480                 retval = -EFAULT;
481
482         up (&lp_table[minor].port_mutex);
483
484         return retval;
485 }
486
487 #endif /* IEEE 1284 support */
488
489 static int lp_open(struct inode * inode, struct file * file)
490 {
491         unsigned int minor = MINOR(inode->i_rdev);
492
493         if (minor >= LP_NO)
494                 return -ENXIO;
495         if ((LP_F(minor) & LP_EXIST) == 0)
496                 return -ENXIO;
497         if (test_and_set_bit(LP_BUSY_BIT_POS, &LP_F(minor)))
498                 return -EBUSY;
499
500         /* If ABORTOPEN is set and the printer is offline or out of paper,
501            we may still want to open it to perform ioctl()s.  Therefore we
502            have commandeered O_NONBLOCK, even though it is being used in
503            a non-standard manner.  This is strictly a Linux hack, and
504            should most likely only ever be used by the tunelp application. */
505         if ((LP_F(minor) & LP_ABORTOPEN) && !(file->f_flags & O_NONBLOCK)) {
506                 int status;
507                 lp_claim_parport_or_block (&lp_table[minor]);
508                 status = r_str(minor);
509                 lp_release_parport (&lp_table[minor]);
510                 if (status & LP_POUTPA) {
511                         printk(KERN_INFO "lp%d out of paper\n", minor);
512                         LP_F(minor) &= ~LP_BUSY;
513                         return -ENOSPC;
514                 } else if (!(status & LP_PSELECD)) {
515                         printk(KERN_INFO "lp%d off-line\n", minor);
516                         LP_F(minor) &= ~LP_BUSY;
517                         return -EIO;
518                 } else if (!(status & LP_PERRORP)) {
519                         printk(KERN_ERR "lp%d printer error\n", minor);
520                         LP_F(minor) &= ~LP_BUSY;
521                         return -EIO;
522                 }
523         }
524         lp_table[minor].lp_buffer = (char *) kmalloc(LP_BUFFER_SIZE, GFP_KERNEL);
525         if (!lp_table[minor].lp_buffer) {
526                 LP_F(minor) &= ~LP_BUSY;
527                 return -ENOMEM;
528         }
529         /* Determine if the peripheral supports ECP mode */
530         lp_claim_parport_or_block (&lp_table[minor]);
531         if ( (lp_table[minor].dev->port->modes & PARPORT_MODE_ECP) &&
532              !parport_negotiate (lp_table[minor].dev->port, 
533                                  IEEE1284_MODE_ECP)) {
534                 printk (KERN_INFO "lp%d: ECP mode\n", minor);
535                 lp_table[minor].best_mode = IEEE1284_MODE_ECP;
536         } else {
537                 lp_table[minor].best_mode = IEEE1284_MODE_COMPAT;
538         }
539         /* Leave peripheral in compatibility mode */
540         parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
541         lp_release_parport (&lp_table[minor]);
542         lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
543         return 0;
544 }
545
546 static int lp_release(struct inode * inode, struct file * file)
547 {
548         unsigned int minor = MINOR(inode->i_rdev);
549
550         lp_claim_parport_or_block (&lp_table[minor]);
551         parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
552         lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
553         lp_release_parport (&lp_table[minor]);
554         lock_kernel();
555         kfree(lp_table[minor].lp_buffer);
556         lp_table[minor].lp_buffer = NULL;
557         LP_F(minor) &= ~LP_BUSY;
558         unlock_kernel();
559         return 0;
560 }
561
562 static int lp_ioctl(struct inode *inode, struct file *file,
563                     unsigned int cmd, unsigned long arg)
564 {
565         unsigned int minor = MINOR(inode->i_rdev);
566         int status;
567         int retval = 0;
568
569 #ifdef LP_DEBUG
570         printk(KERN_DEBUG "lp%d ioctl, cmd: 0x%x, arg: 0x%lx\n", minor, cmd, arg);
571 #endif
572         if (minor >= LP_NO)
573                 return -ENODEV;
574         if ((LP_F(minor) & LP_EXIST) == 0)
575                 return -ENODEV;
576         switch ( cmd ) {
577                 struct timeval par_timeout;
578                 long to_jiffies;
579
580                 case LPTIME:
581                         LP_TIME(minor) = arg * HZ/100;
582                         break;
583                 case LPCHAR:
584                         LP_CHAR(minor) = arg;
585                         break;
586                 case LPABORT:
587                         if (arg)
588                                 LP_F(minor) |= LP_ABORT;
589                         else
590                                 LP_F(minor) &= ~LP_ABORT;
591                         break;
592                 case LPABORTOPEN:
593                         if (arg)
594                                 LP_F(minor) |= LP_ABORTOPEN;
595                         else
596                                 LP_F(minor) &= ~LP_ABORTOPEN;
597                         break;
598                 case LPCAREFUL:
599                         if (arg)
600                                 LP_F(minor) |= LP_CAREFUL;
601                         else
602                                 LP_F(minor) &= ~LP_CAREFUL;
603                         break;
604                 case LPWAIT:
605                         LP_WAIT(minor) = arg;
606                         break;
607                 case LPSETIRQ: 
608                         return -EINVAL;
609                         break;
610                 case LPGETIRQ:
611                         if (copy_to_user((int *) arg, &LP_IRQ(minor),
612                                         sizeof(int)))
613                                 return -EFAULT;
614                         break;
615                 case LPGETSTATUS:
616                         lp_claim_parport_or_block (&lp_table[minor]);
617                         status = r_str(minor);
618                         lp_release_parport (&lp_table[minor]);
619
620                         if (copy_to_user((int *) arg, &status, sizeof(int)))
621                                 return -EFAULT;
622                         break;
623                 case LPRESET:
624                         lp_reset(minor);
625                         break;
626 #ifdef LP_STATS
627                 case LPGETSTATS:
628                         if (copy_to_user((int *) arg, &LP_STAT(minor),
629                                         sizeof(struct lp_stats)))
630                                 return -EFAULT;
631                         if (capable(CAP_SYS_ADMIN))
632                                 memset(&LP_STAT(minor), 0,
633                                                 sizeof(struct lp_stats));
634                         break;
635 #endif
636                 case LPGETFLAGS:
637                         status = LP_F(minor);
638                         if (copy_to_user((int *) arg, &status, sizeof(int)))
639                                 return -EFAULT;
640                         break;
641
642                 case LPSETTIMEOUT:
643                         if (copy_from_user (&par_timeout,
644                                             (struct timeval *) arg,
645                                             sizeof (struct timeval))) {
646                                 return -EFAULT;
647                         }
648                         /* Convert to jiffies, place in lp_table */
649                         if ((par_timeout.tv_sec < 0) ||
650                             (par_timeout.tv_usec < 0)) {
651                                 return -EINVAL;
652                         }
653                         to_jiffies = ROUND_UP(par_timeout.tv_usec, 1000000/HZ);
654                         to_jiffies += par_timeout.tv_sec * (long) HZ;
655                         if (to_jiffies <= 0) {
656                                 return -EINVAL;
657                         }
658                         lp_table[minor].timeout = to_jiffies;
659                         break;
660
661                 default:
662                         retval = -EINVAL;
663         }
664         return retval;
665 }
666
667 static struct file_operations lp_fops = {
668         owner:          THIS_MODULE,
669         write:          lp_write,
670         ioctl:          lp_ioctl,
671         open:           lp_open,
672         release:        lp_release,
673 #ifdef CONFIG_PARPORT_1284
674         read:           lp_read,
675 #endif
676 };
677
678 /* --- support for console on the line printer ----------------- */
679
680 #ifdef CONFIG_LP_CONSOLE
681
682 #define CONSOLE_LP 0
683
684 /* If the printer is out of paper, we can either lose the messages or
685  * stall until the printer is happy again.  Define CONSOLE_LP_STRICT
686  * non-zero to get the latter behaviour. */
687 #define CONSOLE_LP_STRICT 1
688
689 /* The console must be locked when we get here. */
690
691 static void lp_console_write (struct console *co, const char *s,
692                               unsigned count)
693 {
694         struct pardevice *dev = lp_table[CONSOLE_LP].dev;
695         struct parport *port = dev->port;
696         ssize_t written;
697
698         if (parport_claim (dev))
699                 /* Nothing we can do. */
700                 return;
701
702         parport_set_timeout (dev, 0);
703
704         /* Go to compatibility mode. */
705         parport_negotiate (port, IEEE1284_MODE_COMPAT);
706
707         do {
708                 /* Write the data, converting LF->CRLF as we go. */
709                 ssize_t canwrite = count;
710                 char *lf = memchr (s, '\n', count);
711                 if (lf)
712                         canwrite = lf - s;
713
714                 if (canwrite > 0) {
715                         written = parport_write (port, s, canwrite);
716
717                         if (written <= 0)
718                                 continue;
719
720                         s += written;
721                         count -= written;
722                         canwrite -= written;
723                 }
724
725                 if (lf && canwrite <= 0) {
726                         const char *crlf = "\r\n";
727                         int i = 2;
728
729                         /* Dodge the original '\n', and put '\r\n' instead. */
730                         s++;
731                         count--;
732                         do {
733                                 written = parport_write (port, crlf, i);
734                                 if (written > 0)
735                                         i -= written, crlf += written;
736                         } while (i > 0 && (CONSOLE_LP_STRICT || written > 0));
737                 }
738         } while (count > 0 && (CONSOLE_LP_STRICT || written > 0));
739
740         parport_release (dev);
741 }
742
743 static kdev_t lp_console_device (struct console *c)
744 {
745         return MKDEV(LP_MAJOR, CONSOLE_LP);
746 }
747
748 static struct console lpcons = {
749         name:           "lp",
750         write:          lp_console_write,
751         device:         lp_console_device,
752         flags:          CON_PRINTBUFFER,
753 };
754
755 #endif /* console on line printer */
756
757 /* --- initialisation code ------------------------------------- */
758
759 static int parport_nr[LP_NO] = { [0 ... LP_NO-1] = LP_PARPORT_UNSPEC };
760 static char *parport[LP_NO] = { NULL,  };
761 static int reset = 0;
762
763 MODULE_PARM(parport, "1-" __MODULE_STRING(LP_NO) "s");
764 MODULE_PARM(reset, "i");
765
766 #ifndef MODULE
767 static int __init lp_setup (char *str)
768 {
769         static int parport_ptr; // initially zero
770         int x;
771
772         if (get_option (&str, &x)) {
773                 if (x == 0) {
774                         /* disable driver on "lp=" or "lp=0" */
775                         parport_nr[0] = LP_PARPORT_OFF;
776                 } else {
777                         printk(KERN_WARNING "warning: 'lp=0x%x' is deprecated, ignored\n", x);
778                         return 0;
779                 }
780         } else if (!strncmp(str, "parport", 7)) {
781                 int n = simple_strtoul(str+7, NULL, 10);
782                 if (parport_ptr < LP_NO)
783                         parport_nr[parport_ptr++] = n;
784                 else
785                         printk(KERN_INFO "lp: too many ports, %s ignored.\n",
786                                str);
787         } else if (!strcmp(str, "auto")) {
788                 parport_nr[0] = LP_PARPORT_AUTO;
789         } else if (!strcmp(str, "none")) {
790                 parport_nr[parport_ptr++] = LP_PARPORT_NONE;
791         } else if (!strcmp(str, "reset")) {
792                 reset = 1;
793         }
794         return 1;
795 }
796 #endif
797
798 static int lp_register(int nr, struct parport *port)
799 {
800         char name[8];
801
802         lp_table[nr].dev = parport_register_device(port, "lp", 
803                                                    lp_preempt, NULL, NULL, 0,
804                                                    (void *) &lp_table[nr]);
805         if (lp_table[nr].dev == NULL)
806                 return 1;
807         lp_table[nr].flags |= LP_EXIST;
808
809         if (reset)
810                 lp_reset(nr);
811
812         sprintf (name, "%d", nr);
813         devfs_register (devfs_handle, name,
814                         DEVFS_FL_DEFAULT, LP_MAJOR, nr,
815                         S_IFCHR | S_IRUGO | S_IWUGO,
816                         &lp_fops, NULL);
817
818         printk(KERN_INFO "lp%d: using %s (%s).\n", nr, port->name, 
819                (port->irq == PARPORT_IRQ_NONE)?"polling":"interrupt-driven");
820
821 #ifdef CONFIG_LP_CONSOLE
822         if (!nr) {
823                 if (port->modes & PARPORT_MODE_SAFEININT) {
824                         register_console (&lpcons);
825                         console_registered = port;
826                         printk (KERN_INFO "lp%d: console ready\n", CONSOLE_LP);
827                 } else
828                         printk (KERN_ERR "lp%d: cannot run console on %s\n",
829                                 CONSOLE_LP, port->name);
830         }
831 #endif
832
833         return 0;
834 }
835
836 static void lp_attach (struct parport *port)
837 {
838         unsigned int i;
839
840         switch (parport_nr[0])
841         {
842         case LP_PARPORT_UNSPEC:
843         case LP_PARPORT_AUTO:
844                 if (parport_nr[0] == LP_PARPORT_AUTO &&
845                     port->probe_info[0].class != PARPORT_CLASS_PRINTER)
846                         return;
847                 if (lp_count == LP_NO) {
848                         printk("lp: ignoring parallel port (max. %d)\n",LP_NO);
849                         return;
850                 }
851                 if (!lp_register(lp_count, port))
852                         lp_count++;
853                 break;
854
855         default:
856                 for (i = 0; i < LP_NO; i++) {
857                         if (port->number == parport_nr[i]) {
858                                 if (!lp_register(i, port))
859                                         lp_count++;
860                                 break;
861                         }
862                 }
863                 break;
864         }
865 }
866
867 static void lp_detach (struct parport *port)
868 {
869         /* Write this some day. */
870 #ifdef CONFIG_LP_CONSOLE
871         if (console_registered == port) {
872                 unregister_console (&lpcons);
873                 console_registered = NULL;
874         }
875 #endif /* CONFIG_LP_CONSOLE */
876 }
877
878 static struct parport_driver lp_driver = {
879         "lp",
880         lp_attach,
881         lp_detach,
882         NULL
883 };
884
885 int __init lp_init (void)
886 {
887         int i;
888
889         if (parport_nr[0] == LP_PARPORT_OFF)
890                 return 0;
891
892         for (i = 0; i < LP_NO; i++) {
893                 lp_table[i].dev = NULL;
894                 lp_table[i].flags = 0;
895                 lp_table[i].chars = LP_INIT_CHAR;
896                 lp_table[i].time = LP_INIT_TIME;
897                 lp_table[i].wait = LP_INIT_WAIT;
898                 lp_table[i].lp_buffer = NULL;
899 #ifdef LP_STATS
900                 lp_table[i].lastcall = 0;
901                 lp_table[i].runchars = 0;
902                 memset (&lp_table[i].stats, 0, sizeof (struct lp_stats));
903 #endif
904                 lp_table[i].last_error = 0;
905                 init_waitqueue_head (&lp_table[i].waitq);
906                 init_waitqueue_head (&lp_table[i].dataq);
907                 init_MUTEX (&lp_table[i].port_mutex);
908                 lp_table[i].timeout = 10 * HZ;
909         }
910
911         if (devfs_register_chrdev (LP_MAJOR, "lp", &lp_fops)) {
912                 printk ("lp: unable to get major %d\n", LP_MAJOR);
913                 return -EIO;
914         }
915
916         devfs_handle = devfs_mk_dir (NULL, "printers", NULL);
917
918         if (parport_register_driver (&lp_driver)) {
919                 printk ("lp: unable to register with parport\n");
920                 return -EIO;
921         }
922
923         if (!lp_count) {
924                 printk (KERN_INFO "lp: driver loaded but no devices found\n");
925 #ifndef CONFIG_PARPORT_1284
926                 if (parport_nr[0] == LP_PARPORT_AUTO)
927                         printk (KERN_INFO "lp: (is IEEE 1284 support enabled?)\n");
928 #endif
929         }
930
931         return 0;
932 }
933
934 static int __init lp_init_module (void)
935 {
936         if (parport[0]) {
937                 /* The user gave some parameters.  Let's see what they were.  */
938                 if (!strncmp(parport[0], "auto", 4))
939                         parport_nr[0] = LP_PARPORT_AUTO;
940                 else {
941                         int n;
942                         for (n = 0; n < LP_NO && parport[n]; n++) {
943                                 if (!strncmp(parport[n], "none", 4))
944                                         parport_nr[n] = LP_PARPORT_NONE;
945                                 else {
946                                         char *ep;
947                                         unsigned long r = simple_strtoul(parport[n], &ep, 0);
948                                         if (ep != parport[n]) 
949                                                 parport_nr[n] = r;
950                                         else {
951                                                 printk(KERN_ERR "lp: bad port specifier `%s'\n", parport[n]);
952                                                 return -ENODEV;
953                                         }
954                                 }
955                         }
956                 }
957         }
958
959         return lp_init();
960 }
961
962 static void lp_cleanup_module (void)
963 {
964         unsigned int offset;
965
966         parport_unregister_driver (&lp_driver);
967
968 #ifdef CONFIG_LP_CONSOLE
969         unregister_console (&lpcons);
970 #endif
971
972         devfs_unregister (devfs_handle);
973         devfs_unregister_chrdev(LP_MAJOR, "lp");
974         for (offset = 0; offset < LP_NO; offset++) {
975                 if (lp_table[offset].dev == NULL)
976                         continue;
977                 parport_unregister_device(lp_table[offset].dev);
978         }
979 }
980
981 __setup("lp=", lp_setup);
982 module_init(lp_init_module);
983 module_exit(lp_cleanup_module);
984
985 MODULE_LICENSE("GPL");
986 EXPORT_NO_SYMBOLS;