2 * Generic parallel printer driver
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
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
40 * If this driver is built into the kernel, you can configure it using the
41 * kernel command-line. For example:
43 * lp=parport1,none,parport2 (bind lp0 to parport1, disable lp1 and
44 * bind lp2 to parport2)
46 * lp=auto (assign lp devices to all ports that
47 * have printers attached, as determined
48 * by the IEEE-1284 autoprobe)
50 * lp=reset (reset the printer during
53 * lp=off (disable the printer driver entirely)
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:
58 * # insmod lp.o parport=1,none,2
60 * # insmod lp.o parport=auto
62 * # insmod lp.o reset=1
65 /* COMPATIBILITY WITH OLD KERNELS
67 * Under Linux 2.0 and previous versions, lp devices were bound to ports at
68 * particular I/O addresses, as follows:
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.
81 * The new interrupt handling code take care of the buggy handshake
82 * of some HP and Epson printer:
84 * ACK _______________ ___________
87 * BUSY _________ _______
90 * I discovered this using the printer scanner that you can find at:
92 * ftp://e-mind.com/pub/linux/pscan/
94 * 11 May 98, Andrea Arcangeli
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
100 * 15 Oct 1998, Andrea Arcangeli
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
109 * 14 Dec 1998, Andrea Arcangeli
111 * Copyright (C) 2000 by Tim Waugh (added LPSETTIMEOUT ioctl)
114 #include <linux/module.h>
115 #include <linux/init.h>
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 #include <linux/device.h>
130 #include <linux/wait.h>
132 #include <linux/parport.h>
134 #include <linux/lp.h>
137 #include <asm/uaccess.h>
138 #include <asm/system.h>
140 /* if you have more than 8 printers, remember to increase LP_NO */
143 /* ROUND_UP macro from fs/select.c */
144 #define ROUND_UP(x,y) (((x)+(y)-1)/(y))
146 static struct lp_struct lp_table
[LP_NO
];
148 static unsigned int lp_count
= 0;
149 static struct class_simple
*lp_class
;
151 #ifdef CONFIG_LP_CONSOLE
152 static struct parport
*console_registered
; // initially NULL
153 #endif /* CONFIG_LP_CONSOLE */
157 /* Bits used to manage claiming the parport device */
158 #define LP_PREEMPT_REQUEST 1
159 #define LP_PARPORT_CLAIMED 2
161 /* --- low-level port access ----------------------------------- */
163 #define r_dtr(x) (parport_read_data(lp_table[(x)].dev->port))
164 #define r_str(x) (parport_read_status(lp_table[(x)].dev->port))
165 #define w_ctr(x,y) do { parport_write_control(lp_table[(x)].dev->port, (y)); } while (0)
166 #define w_dtr(x,y) do { parport_write_data(lp_table[(x)].dev->port, (y)); } while (0)
168 /* Claim the parport or block trying unless we've already claimed it */
169 static void lp_claim_parport_or_block(struct lp_struct
*this_lp
)
171 if (!test_and_set_bit(LP_PARPORT_CLAIMED
, &this_lp
->bits
)) {
172 parport_claim_or_block (this_lp
->dev
);
176 /* Claim the parport or block trying unless we've already claimed it */
177 static void lp_release_parport(struct lp_struct
*this_lp
)
179 if (test_and_clear_bit(LP_PARPORT_CLAIMED
, &this_lp
->bits
)) {
180 parport_release (this_lp
->dev
);
186 static int lp_preempt(void *handle
)
188 struct lp_struct
*this_lp
= (struct lp_struct
*)handle
;
189 set_bit(LP_PREEMPT_REQUEST
, &this_lp
->bits
);
195 * Try to negotiate to a new mode; if unsuccessful negotiate to
196 * compatibility mode. Return the mode we ended up in.
198 static int lp_negotiate(struct parport
* port
, int mode
)
200 if (parport_negotiate (port
, mode
) != 0) {
201 mode
= IEEE1284_MODE_COMPAT
;
202 parport_negotiate (port
, mode
);
208 static int lp_reset(int minor
)
211 lp_claim_parport_or_block (&lp_table
[minor
]);
212 w_ctr(minor
, LP_PSELECP
);
214 w_ctr(minor
, LP_PSELECP
| LP_PINITP
);
215 retval
= r_str(minor
);
216 lp_release_parport (&lp_table
[minor
]);
220 static void lp_error (int minor
)
225 if (LP_F(minor
) & LP_ABORT
)
228 polling
= lp_table
[minor
].dev
->port
->irq
== PARPORT_IRQ_NONE
;
229 if (polling
) lp_release_parport (&lp_table
[minor
]);
230 prepare_to_wait(&lp_table
[minor
].waitq
, &wait
, TASK_INTERRUPTIBLE
);
231 schedule_timeout(LP_TIMEOUT_POLLED
);
232 finish_wait(&lp_table
[minor
].waitq
, &wait
);
233 if (polling
) lp_claim_parport_or_block (&lp_table
[minor
]);
234 else parport_yield_blocking (lp_table
[minor
].dev
);
237 static int lp_check_status(int minor
)
240 unsigned int last
= lp_table
[minor
].last_error
;
241 unsigned char status
= r_str(minor
);
242 if ((status
& LP_PERRORP
) && !(LP_F(minor
) & LP_CAREFUL
))
245 else if ((status
& LP_POUTPA
)) {
246 if (last
!= LP_POUTPA
) {
248 printk(KERN_INFO
"lp%d out of paper\n", minor
);
251 } else if (!(status
& LP_PSELECD
)) {
252 if (last
!= LP_PSELECD
) {
254 printk(KERN_INFO
"lp%d off-line\n", minor
);
257 } else if (!(status
& LP_PERRORP
)) {
258 if (last
!= LP_PERRORP
) {
260 printk(KERN_INFO
"lp%d on fire\n", minor
);
264 last
= 0; /* Come here if LP_CAREFUL is set and no
265 errors are reported. */
268 lp_table
[minor
].last_error
= last
;
276 static int lp_wait_ready(int minor
, int nonblock
)
280 /* If we're not in compatibility mode, we're ready now! */
281 if (lp_table
[minor
].current_mode
!= IEEE1284_MODE_COMPAT
) {
286 error
= lp_check_status (minor
);
287 if (error
&& (nonblock
|| (LP_F(minor
) & LP_ABORT
)))
289 if (signal_pending (current
)) {
297 static ssize_t
lp_write(struct file
* file
, const char __user
* buf
,
298 size_t count
, loff_t
*ppos
)
300 unsigned int minor
= iminor(file
->f_dentry
->d_inode
);
301 struct parport
*port
= lp_table
[minor
].dev
->port
;
302 char *kbuf
= lp_table
[minor
].lp_buffer
;
305 size_t copy_size
= count
;
306 int nonblock
= ((file
->f_flags
& O_NONBLOCK
) ||
307 (LP_F(minor
) & LP_ABORT
));
310 if (jiffies
-lp_table
[minor
].lastcall
> LP_TIME(minor
))
311 lp_table
[minor
].runchars
= 0;
313 lp_table
[minor
].lastcall
= jiffies
;
316 /* Need to copy the data from user-space. */
317 if (copy_size
> LP_BUFFER_SIZE
)
318 copy_size
= LP_BUFFER_SIZE
;
320 if (down_interruptible (&lp_table
[minor
].port_mutex
))
323 if (copy_from_user (kbuf
, buf
, copy_size
)) {
328 /* Claim Parport or sleep until it becomes available
330 lp_claim_parport_or_block (&lp_table
[minor
]);
331 /* Go to the proper mode. */
332 lp_table
[minor
].current_mode
= lp_negotiate (port
,
333 lp_table
[minor
].best_mode
);
335 parport_set_timeout (lp_table
[minor
].dev
,
336 (nonblock
? PARPORT_INACTIVITY_O_NONBLOCK
337 : lp_table
[minor
].timeout
));
339 if ((retv
= lp_wait_ready (minor
, nonblock
)) == 0)
341 /* Write the data. */
342 written
= parport_write (port
, kbuf
, copy_size
);
344 copy_size
-= written
;
350 if (signal_pending (current
)) {
358 /* incomplete write -> check error ! */
361 parport_negotiate (lp_table
[minor
].dev
->port
,
362 IEEE1284_MODE_COMPAT
);
363 lp_table
[minor
].current_mode
= IEEE1284_MODE_COMPAT
;
365 error
= lp_wait_ready (minor
, nonblock
);
371 } else if (nonblock
) {
377 parport_yield_blocking (lp_table
[minor
].dev
);
378 lp_table
[minor
].current_mode
379 = lp_negotiate (port
,
380 lp_table
[minor
].best_mode
);
382 } else if (need_resched())
387 if (copy_size
> LP_BUFFER_SIZE
)
388 copy_size
= LP_BUFFER_SIZE
;
390 if (copy_from_user(kbuf
, buf
, copy_size
)) {
398 if (test_and_clear_bit(LP_PREEMPT_REQUEST
,
399 &lp_table
[minor
].bits
)) {
400 printk(KERN_INFO
"lp%d releasing parport\n", minor
);
401 parport_negotiate (lp_table
[minor
].dev
->port
,
402 IEEE1284_MODE_COMPAT
);
403 lp_table
[minor
].current_mode
= IEEE1284_MODE_COMPAT
;
404 lp_release_parport (&lp_table
[minor
]);
407 up (&lp_table
[minor
].port_mutex
);
412 #ifdef CONFIG_PARPORT_1284
414 /* Status readback conforming to ieee1284 */
415 static ssize_t
lp_read(struct file
* file
, char __user
* buf
,
416 size_t count
, loff_t
*ppos
)
419 unsigned int minor
=iminor(file
->f_dentry
->d_inode
);
420 struct parport
*port
= lp_table
[minor
].dev
->port
;
422 char *kbuf
= lp_table
[minor
].lp_buffer
;
423 int nonblock
= ((file
->f_flags
& O_NONBLOCK
) ||
424 (LP_F(minor
) & LP_ABORT
));
426 if (count
> LP_BUFFER_SIZE
)
427 count
= LP_BUFFER_SIZE
;
429 if (down_interruptible (&lp_table
[minor
].port_mutex
))
432 lp_claim_parport_or_block (&lp_table
[minor
]);
434 parport_set_timeout (lp_table
[minor
].dev
,
435 (nonblock
? PARPORT_INACTIVITY_O_NONBLOCK
436 : lp_table
[minor
].timeout
));
438 parport_negotiate (lp_table
[minor
].dev
->port
, IEEE1284_MODE_COMPAT
);
439 if (parport_negotiate (lp_table
[minor
].dev
->port
,
440 IEEE1284_MODE_NIBBLE
)) {
445 while (retval
== 0) {
446 retval
= parport_read (port
, kbuf
, count
);
458 if (lp_table
[minor
].dev
->port
->irq
== PARPORT_IRQ_NONE
) {
459 parport_negotiate (lp_table
[minor
].dev
->port
,
460 IEEE1284_MODE_COMPAT
);
462 if (parport_negotiate (lp_table
[minor
].dev
->port
,
463 IEEE1284_MODE_NIBBLE
)) {
468 prepare_to_wait(&lp_table
[minor
].waitq
, &wait
, TASK_INTERRUPTIBLE
);
469 schedule_timeout(LP_TIMEOUT_POLLED
);
470 finish_wait(&lp_table
[minor
].waitq
, &wait
);
473 if (signal_pending (current
)) {
474 retval
= -ERESTARTSYS
;
480 parport_negotiate (lp_table
[minor
].dev
->port
, IEEE1284_MODE_COMPAT
);
482 lp_release_parport (&lp_table
[minor
]);
484 if (retval
> 0 && copy_to_user (buf
, kbuf
, retval
))
487 up (&lp_table
[minor
].port_mutex
);
492 #endif /* IEEE 1284 support */
494 static int lp_open(struct inode
* inode
, struct file
* file
)
496 unsigned int minor
= iminor(inode
);
500 if ((LP_F(minor
) & LP_EXIST
) == 0)
502 if (test_and_set_bit(LP_BUSY_BIT_POS
, &LP_F(minor
)))
505 /* If ABORTOPEN is set and the printer is offline or out of paper,
506 we may still want to open it to perform ioctl()s. Therefore we
507 have commandeered O_NONBLOCK, even though it is being used in
508 a non-standard manner. This is strictly a Linux hack, and
509 should most likely only ever be used by the tunelp application. */
510 if ((LP_F(minor
) & LP_ABORTOPEN
) && !(file
->f_flags
& O_NONBLOCK
)) {
512 lp_claim_parport_or_block (&lp_table
[minor
]);
513 status
= r_str(minor
);
514 lp_release_parport (&lp_table
[minor
]);
515 if (status
& LP_POUTPA
) {
516 printk(KERN_INFO
"lp%d out of paper\n", minor
);
517 LP_F(minor
) &= ~LP_BUSY
;
519 } else if (!(status
& LP_PSELECD
)) {
520 printk(KERN_INFO
"lp%d off-line\n", minor
);
521 LP_F(minor
) &= ~LP_BUSY
;
523 } else if (!(status
& LP_PERRORP
)) {
524 printk(KERN_ERR
"lp%d printer error\n", minor
);
525 LP_F(minor
) &= ~LP_BUSY
;
529 lp_table
[minor
].lp_buffer
= (char *) kmalloc(LP_BUFFER_SIZE
, GFP_KERNEL
);
530 if (!lp_table
[minor
].lp_buffer
) {
531 LP_F(minor
) &= ~LP_BUSY
;
534 /* Determine if the peripheral supports ECP mode */
535 lp_claim_parport_or_block (&lp_table
[minor
]);
536 if ( (lp_table
[minor
].dev
->port
->modes
& PARPORT_MODE_ECP
) &&
537 !parport_negotiate (lp_table
[minor
].dev
->port
,
538 IEEE1284_MODE_ECP
)) {
539 printk (KERN_INFO
"lp%d: ECP mode\n", minor
);
540 lp_table
[minor
].best_mode
= IEEE1284_MODE_ECP
;
542 lp_table
[minor
].best_mode
= IEEE1284_MODE_COMPAT
;
544 /* Leave peripheral in compatibility mode */
545 parport_negotiate (lp_table
[minor
].dev
->port
, IEEE1284_MODE_COMPAT
);
546 lp_release_parport (&lp_table
[minor
]);
547 lp_table
[minor
].current_mode
= IEEE1284_MODE_COMPAT
;
551 static int lp_release(struct inode
* inode
, struct file
* file
)
553 unsigned int minor
= iminor(inode
);
555 lp_claim_parport_or_block (&lp_table
[minor
]);
556 parport_negotiate (lp_table
[minor
].dev
->port
, IEEE1284_MODE_COMPAT
);
557 lp_table
[minor
].current_mode
= IEEE1284_MODE_COMPAT
;
558 lp_release_parport (&lp_table
[minor
]);
559 kfree(lp_table
[minor
].lp_buffer
);
560 lp_table
[minor
].lp_buffer
= NULL
;
561 LP_F(minor
) &= ~LP_BUSY
;
565 static int lp_ioctl(struct inode
*inode
, struct file
*file
,
566 unsigned int cmd
, unsigned long arg
)
568 unsigned int minor
= iminor(inode
);
571 void __user
*argp
= (void __user
*)arg
;
574 printk(KERN_DEBUG
"lp%d ioctl, cmd: 0x%x, arg: 0x%lx\n", minor
, cmd
, arg
);
578 if ((LP_F(minor
) & LP_EXIST
) == 0)
581 struct timeval par_timeout
;
585 LP_TIME(minor
) = arg
* HZ
/100;
588 LP_CHAR(minor
) = arg
;
592 LP_F(minor
) |= LP_ABORT
;
594 LP_F(minor
) &= ~LP_ABORT
;
598 LP_F(minor
) |= LP_ABORTOPEN
;
600 LP_F(minor
) &= ~LP_ABORTOPEN
;
604 LP_F(minor
) |= LP_CAREFUL
;
606 LP_F(minor
) &= ~LP_CAREFUL
;
609 LP_WAIT(minor
) = arg
;
615 if (copy_to_user(argp
, &LP_IRQ(minor
),
620 lp_claim_parport_or_block (&lp_table
[minor
]);
621 status
= r_str(minor
);
622 lp_release_parport (&lp_table
[minor
]);
624 if (copy_to_user(argp
, &status
, sizeof(int)))
632 if (copy_to_user(argp
, &LP_STAT(minor
),
633 sizeof(struct lp_stats
)))
635 if (capable(CAP_SYS_ADMIN
))
636 memset(&LP_STAT(minor
), 0,
637 sizeof(struct lp_stats
));
641 status
= LP_F(minor
);
642 if (copy_to_user(argp
, &status
, sizeof(int)))
647 if (copy_from_user (&par_timeout
, argp
,
648 sizeof (struct timeval
))) {
651 /* Convert to jiffies, place in lp_table */
652 if ((par_timeout
.tv_sec
< 0) ||
653 (par_timeout
.tv_usec
< 0)) {
656 to_jiffies
= ROUND_UP(par_timeout
.tv_usec
, 1000000/HZ
);
657 to_jiffies
+= par_timeout
.tv_sec
* (long) HZ
;
658 if (to_jiffies
<= 0) {
661 lp_table
[minor
].timeout
= to_jiffies
;
670 static struct file_operations lp_fops
= {
671 .owner
= THIS_MODULE
,
675 .release
= lp_release
,
676 #ifdef CONFIG_PARPORT_1284
681 /* --- support for console on the line printer ----------------- */
683 #ifdef CONFIG_LP_CONSOLE
687 /* If the printer is out of paper, we can either lose the messages or
688 * stall until the printer is happy again. Define CONSOLE_LP_STRICT
689 * non-zero to get the latter behaviour. */
690 #define CONSOLE_LP_STRICT 1
692 /* The console must be locked when we get here. */
694 static void lp_console_write (struct console
*co
, const char *s
,
697 struct pardevice
*dev
= lp_table
[CONSOLE_LP
].dev
;
698 struct parport
*port
= dev
->port
;
701 if (parport_claim (dev
))
702 /* Nothing we can do. */
705 parport_set_timeout (dev
, 0);
707 /* Go to compatibility mode. */
708 parport_negotiate (port
, IEEE1284_MODE_COMPAT
);
711 /* Write the data, converting LF->CRLF as we go. */
712 ssize_t canwrite
= count
;
713 char *lf
= memchr (s
, '\n', count
);
718 written
= parport_write (port
, s
, canwrite
);
728 if (lf
&& canwrite
<= 0) {
729 const char *crlf
= "\r\n";
732 /* Dodge the original '\n', and put '\r\n' instead. */
736 written
= parport_write (port
, crlf
, i
);
738 i
-= written
, crlf
+= written
;
739 } while (i
> 0 && (CONSOLE_LP_STRICT
|| written
> 0));
741 } while (count
> 0 && (CONSOLE_LP_STRICT
|| written
> 0));
743 parport_release (dev
);
746 static struct console lpcons
= {
748 .write
= lp_console_write
,
749 .flags
= CON_PRINTBUFFER
,
752 #endif /* console on line printer */
754 /* --- initialisation code ------------------------------------- */
756 static int parport_nr
[LP_NO
] = { [0 ... LP_NO
-1] = LP_PARPORT_UNSPEC
};
757 static char *parport
[LP_NO
] = { NULL
, };
758 static int reset
= 0;
760 module_param_array(parport
, charp
, NULL
, 0);
761 module_param(reset
, bool, 0);
764 static int __init
lp_setup (char *str
)
766 static int parport_ptr
; // initially zero
769 if (get_option (&str
, &x
)) {
771 /* disable driver on "lp=" or "lp=0" */
772 parport_nr
[0] = LP_PARPORT_OFF
;
774 printk(KERN_WARNING
"warning: 'lp=0x%x' is deprecated, ignored\n", x
);
777 } else if (!strncmp(str
, "parport", 7)) {
778 int n
= simple_strtoul(str
+7, NULL
, 10);
779 if (parport_ptr
< LP_NO
)
780 parport_nr
[parport_ptr
++] = n
;
782 printk(KERN_INFO
"lp: too many ports, %s ignored.\n",
784 } else if (!strcmp(str
, "auto")) {
785 parport_nr
[0] = LP_PARPORT_AUTO
;
786 } else if (!strcmp(str
, "none")) {
787 parport_nr
[parport_ptr
++] = LP_PARPORT_NONE
;
788 } else if (!strcmp(str
, "reset")) {
795 static int lp_register(int nr
, struct parport
*port
)
797 lp_table
[nr
].dev
= parport_register_device(port
, "lp",
798 lp_preempt
, NULL
, NULL
, 0,
799 (void *) &lp_table
[nr
]);
800 if (lp_table
[nr
].dev
== NULL
)
802 lp_table
[nr
].flags
|= LP_EXIST
;
807 class_simple_device_add(lp_class
, MKDEV(LP_MAJOR
, nr
), NULL
,
809 devfs_mk_cdev(MKDEV(LP_MAJOR
, nr
), S_IFCHR
| S_IRUGO
| S_IWUGO
,
812 printk(KERN_INFO
"lp%d: using %s (%s).\n", nr
, port
->name
,
813 (port
->irq
== PARPORT_IRQ_NONE
)?"polling":"interrupt-driven");
815 #ifdef CONFIG_LP_CONSOLE
817 if (port
->modes
& PARPORT_MODE_SAFEININT
) {
818 register_console (&lpcons
);
819 console_registered
= port
;
820 printk (KERN_INFO
"lp%d: console ready\n", CONSOLE_LP
);
822 printk (KERN_ERR
"lp%d: cannot run console on %s\n",
823 CONSOLE_LP
, port
->name
);
830 static void lp_attach (struct parport
*port
)
834 switch (parport_nr
[0])
836 case LP_PARPORT_UNSPEC
:
837 case LP_PARPORT_AUTO
:
838 if (parport_nr
[0] == LP_PARPORT_AUTO
&&
839 port
->probe_info
[0].class != PARPORT_CLASS_PRINTER
)
841 if (lp_count
== LP_NO
) {
842 printk(KERN_INFO
"lp: ignoring parallel port (max. %d)\n",LP_NO
);
845 if (!lp_register(lp_count
, port
))
850 for (i
= 0; i
< LP_NO
; i
++) {
851 if (port
->number
== parport_nr
[i
]) {
852 if (!lp_register(i
, port
))
861 static void lp_detach (struct parport
*port
)
863 /* Write this some day. */
864 #ifdef CONFIG_LP_CONSOLE
865 if (console_registered
== port
) {
866 unregister_console (&lpcons
);
867 console_registered
= NULL
;
869 #endif /* CONFIG_LP_CONSOLE */
872 static struct parport_driver lp_driver
= {
878 static int __init
lp_init (void)
882 if (parport_nr
[0] == LP_PARPORT_OFF
)
885 for (i
= 0; i
< LP_NO
; i
++) {
886 lp_table
[i
].dev
= NULL
;
887 lp_table
[i
].flags
= 0;
888 lp_table
[i
].chars
= LP_INIT_CHAR
;
889 lp_table
[i
].time
= LP_INIT_TIME
;
890 lp_table
[i
].wait
= LP_INIT_WAIT
;
891 lp_table
[i
].lp_buffer
= NULL
;
893 lp_table
[i
].lastcall
= 0;
894 lp_table
[i
].runchars
= 0;
895 memset (&lp_table
[i
].stats
, 0, sizeof (struct lp_stats
));
897 lp_table
[i
].last_error
= 0;
898 init_waitqueue_head (&lp_table
[i
].waitq
);
899 init_waitqueue_head (&lp_table
[i
].dataq
);
900 init_MUTEX (&lp_table
[i
].port_mutex
);
901 lp_table
[i
].timeout
= 10 * HZ
;
904 if (register_chrdev (LP_MAJOR
, "lp", &lp_fops
)) {
905 printk (KERN_ERR
"lp: unable to get major %d\n", LP_MAJOR
);
909 devfs_mk_dir("printers");
910 lp_class
= class_simple_create(THIS_MODULE
, "printer");
911 if (IS_ERR(lp_class
)) {
912 err
= PTR_ERR(lp_class
);
916 if (parport_register_driver (&lp_driver
)) {
917 printk (KERN_ERR
"lp: unable to register with parport\n");
923 printk (KERN_INFO
"lp: driver loaded but no devices found\n");
924 #ifndef CONFIG_PARPORT_1284
925 if (parport_nr
[0] == LP_PARPORT_AUTO
)
926 printk (KERN_INFO
"lp: (is IEEE 1284 support enabled?)\n");
933 class_simple_destroy(lp_class
);
935 devfs_remove("printers");
936 unregister_chrdev(LP_MAJOR
, "lp");
940 static int __init
lp_init_module (void)
943 /* The user gave some parameters. Let's see what they were. */
944 if (!strncmp(parport
[0], "auto", 4))
945 parport_nr
[0] = LP_PARPORT_AUTO
;
948 for (n
= 0; n
< LP_NO
&& parport
[n
]; n
++) {
949 if (!strncmp(parport
[n
], "none", 4))
950 parport_nr
[n
] = LP_PARPORT_NONE
;
953 unsigned long r
= simple_strtoul(parport
[n
], &ep
, 0);
954 if (ep
!= parport
[n
])
957 printk(KERN_ERR
"lp: bad port specifier `%s'\n", parport
[n
]);
968 static void lp_cleanup_module (void)
972 parport_unregister_driver (&lp_driver
);
974 #ifdef CONFIG_LP_CONSOLE
975 unregister_console (&lpcons
);
978 unregister_chrdev(LP_MAJOR
, "lp");
979 for (offset
= 0; offset
< LP_NO
; offset
++) {
980 if (lp_table
[offset
].dev
== NULL
)
982 parport_unregister_device(lp_table
[offset
].dev
);
983 devfs_remove("printers/%d", offset
);
984 class_simple_device_remove(MKDEV(LP_MAJOR
, offset
));
986 devfs_remove("printers");
987 class_simple_destroy(lp_class
);
990 __setup("lp=", lp_setup
);
991 module_init(lp_init_module
);
992 module_exit(lp_cleanup_module
);
994 MODULE_ALIAS_CHARDEV_MAJOR(LP_MAJOR
);
995 MODULE_LICENSE("GPL");