xref: /freebsd/sys/dev/ppbus/lpt.c (revision 7660b554bc59a07be0431c17e0e33815818baa69)
1 /*
2  * Copyright (c) 1990 William F. Jolitz, TeleMuse
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This software is a component of "386BSD" developed by
16  *	William F. Jolitz, TeleMuse.
17  * 4. Neither the name of the developer nor the name "386BSD"
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
22  * AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
23  * SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
24  * THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
25  * NOT MAKE USE OF THIS WORK.
26  *
27  * FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
28  * BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
29  * REFERENCES SUCH AS THE  "PORTING UNIX TO THE 386" SERIES
30  * (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
31  * JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
32  * LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
33  * ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
34  * OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
37  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39  * ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER BE LIABLE
40  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
42  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
44  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
45  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  *
48  *	from: unknown origin, 386BSD 0.1
49  *	From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp
50  *	From Id: nlpt.c,v 1.14 1999/02/08 13:55:43 des Exp
51  */
52 
53 #include <sys/cdefs.h>
54 __FBSDID("$FreeBSD$");
55 
56 /*
57  * Device Driver for AT parallel printer port
58  * Written by William Jolitz 12/18/90
59  */
60 
61 /*
62  * Updated for ppbus by Nicolas Souchu
63  * [Mon Jul 28 1997]
64  */
65 
66 #include "opt_lpt.h"
67 
68 #include <sys/param.h>
69 #include <sys/systm.h>
70 #include <sys/module.h>
71 #include <sys/bus.h>
72 #include <sys/conf.h>
73 #include <sys/kernel.h>
74 #include <sys/uio.h>
75 #include <sys/syslog.h>
76 #include <sys/malloc.h>
77 
78 #include <machine/bus.h>
79 #include <machine/resource.h>
80 #include <sys/rman.h>
81 
82 #include <dev/ppbus/lptio.h>
83 #include <dev/ppbus/ppbconf.h>
84 #include <dev/ppbus/ppb_1284.h>
85 #include <dev/ppbus/lpt.h>
86 #include "ppbus_if.h"
87 #include <dev/ppbus/ppbio.h>
88 
89 #ifndef LPT_DEBUG
90 #define lprintf(args)
91 #else
92 #define lprintf(args)						\
93 		do {						\
94 			if (lptflag)				\
95 				printf args;			\
96 		} while (0)
97 static int volatile lptflag = 1;
98 #endif
99 
100 #define	LPINITRDY	4	/* wait up to 4 seconds for a ready */
101 #define	LPTOUTINITIAL	10	/* initial timeout to wait for ready 1/10 s */
102 #define	LPTOUTMAX	1	/* maximal timeout 1 s */
103 #define	LPPRI		(PZERO+8)
104 #define	BUFSIZE		1024
105 #define	BUFSTATSIZE	32
106 
107 #define	LPTUNIT(s)	((s)&0x03)
108 #define	LPTFLAGS(s)	((s)&0xfc)
109 
110 struct lpt_data {
111 
112 	short	sc_state;
113 	/* default case: negative prime, negative ack, handshake strobe,
114 	   prime once */
115 	u_char	sc_control;
116 	char	sc_flags;
117 #define LP_POS_INIT	0x04	/* if we are a postive init signal */
118 #define LP_POS_ACK	0x08	/* if we are a positive going ack */
119 #define LP_NO_PRIME	0x10	/* don't prime the printer at all */
120 #define LP_PRIMEOPEN	0x20	/* prime on every open */
121 #define LP_AUTOLF	0x40	/* tell printer to do an automatic lf */
122 #define LP_BYPASS	0x80	/* bypass  printer ready checks */
123 	void	*sc_inbuf;
124 	void	*sc_statbuf;
125 	short	sc_xfercnt ;
126 	char	sc_primed;
127 	char	*sc_cp ;
128 	u_short	sc_irq ;	/* IRQ status of port */
129 #define LP_HAS_IRQ	0x01	/* we have an irq available */
130 #define LP_USE_IRQ	0x02	/* we are using our irq */
131 #define LP_ENABLE_IRQ	0x04	/* enable IRQ on open */
132 #define LP_ENABLE_EXT	0x10	/* we shall use advanced mode when possible */
133 	u_char	sc_backoff ;	/* time to call lptout() again */
134 
135 	struct resource *intr_resource;	/* interrupt resource */
136 	void *intr_cookie;		/* interrupt registration cookie */
137 
138 };
139 
140 #define LPT_NAME	"lpt"		/* our official name */
141 
142 static timeout_t lptout;
143 static int	lpt_port_test(device_t dev, u_char data, u_char mask);
144 static int	lpt_detect(device_t dev);
145 
146 #define DEVTOSOFTC(dev) \
147 	((struct lpt_data *)device_get_softc(dev))
148 #define UNITOSOFTC(unit) \
149 	((struct lpt_data *)devclass_get_softc(lpt_devclass, (unit)))
150 #define UNITODEVICE(unit) \
151 	(devclass_get_device(lpt_devclass, (unit)))
152 
153 static void lptintr(device_t dev);
154 static void lpt_intr(void *arg);	/* without spls */
155 
156 static devclass_t lpt_devclass;
157 
158 
159 /* bits for state */
160 #define	OPEN		(1<<0)	/* device is open */
161 #define	ASLP		(1<<1)	/* awaiting draining of printer */
162 #define	EERROR		(1<<2)	/* error was received from printer */
163 #define	OBUSY		(1<<3)	/* printer is busy doing output */
164 #define LPTOUT		(1<<4)	/* timeout while not selected */
165 #define TOUT		(1<<5)	/* timeout while not selected */
166 #define LPTINIT		(1<<6)	/* waiting to initialize for open */
167 #define INTERRUPTED	(1<<7)	/* write call was interrupted */
168 
169 #define HAVEBUS		(1<<8)	/* the driver owns the bus */
170 
171 
172 /* status masks to interrogate printer status */
173 #define RDY_MASK	(LPS_SEL|LPS_OUT|LPS_NBSY|LPS_NERR)	/* ready ? */
174 #define LP_READY	(LPS_SEL|LPS_NBSY|LPS_NERR)
175 
176 /* Printer Ready condition  - from lpa.c */
177 /* Only used in polling code */
178 #define	LPS_INVERT	(LPS_NBSY | LPS_NACK |           LPS_SEL | LPS_NERR)
179 #define	LPS_MASK	(LPS_NBSY | LPS_NACK | LPS_OUT | LPS_SEL | LPS_NERR)
180 #define	NOT_READY(ppbus) ((ppb_rstr(ppbus)^LPS_INVERT)&LPS_MASK)
181 
182 #define	MAX_SLEEP	(hz*5)	/* Timeout while waiting for device ready */
183 #define	MAX_SPIN	20	/* Max delay for device ready in usecs */
184 
185 
186 static	d_open_t	lptopen;
187 static	d_close_t	lptclose;
188 static	d_write_t	lptwrite;
189 static	d_read_t	lptread;
190 static	d_ioctl_t	lptioctl;
191 
192 #define CDEV_MAJOR 16
193 static struct cdevsw lpt_cdevsw = {
194 	.d_open =	lptopen,
195 	.d_close =	lptclose,
196 	.d_read =	lptread,
197 	.d_write =	lptwrite,
198 	.d_ioctl =	lptioctl,
199 	.d_name =	LPT_NAME,
200 	.d_maj =	CDEV_MAJOR,
201 };
202 
203 static int
204 lpt_request_ppbus(device_t dev, int how)
205 {
206 	device_t ppbus = device_get_parent(dev);
207 	struct lpt_data *sc = DEVTOSOFTC(dev);
208 	int error;
209 
210 	if (sc->sc_state & HAVEBUS)
211 		return (0);
212 
213 	/* we have the bus only if the request succeded */
214 	if ((error = ppb_request_bus(ppbus, dev, how)) == 0)
215 		sc->sc_state |= HAVEBUS;
216 
217 	return (error);
218 }
219 
220 static int
221 lpt_release_ppbus(device_t dev)
222 {
223 	device_t ppbus = device_get_parent(dev);
224 	struct lpt_data *sc = DEVTOSOFTC(dev);
225 	int error = 0;
226 
227 	if ((error = ppb_release_bus(ppbus, dev)) == 0)
228 		sc->sc_state &= ~HAVEBUS;
229 
230 	return (error);
231 }
232 
233 /*
234  * Internal routine to lptprobe to do port tests of one byte value
235  */
236 static int
237 lpt_port_test(device_t ppbus, u_char data, u_char mask)
238 {
239 	int	temp, timeout;
240 
241 	data = data & mask;
242 	ppb_wdtr(ppbus, data);
243 	timeout = 10000;
244 	do {
245 		DELAY(10);
246 		temp = ppb_rdtr(ppbus) & mask;
247 	}
248 	while (temp != data && --timeout);
249 	lprintf(("out=%x\tin=%x\ttout=%d\n", data, temp, timeout));
250 	return (temp == data);
251 }
252 
253 /*
254  * Probe simplified by replacing multiple loops with a hardcoded
255  * test pattern - 1999/02/08 des@freebsd.org
256  *
257  * New lpt port probe Geoff Rehmet - Rhodes University - 14/2/94
258  * Based partially on Rod Grimes' printer probe
259  *
260  * Logic:
261  *	1) If no port address was given, use the bios detected ports
262  *	   and autodetect what ports the printers are on.
263  *	2) Otherwise, probe the data port at the address given,
264  *	   using the method in Rod Grimes' port probe.
265  *	   (Much code ripped off directly from Rod's probe.)
266  *
267  * Comments from Rod's probe:
268  * Logic:
269  *	1) You should be able to write to and read back the same value
270  *	   to the data port.  Do an alternating zeros, alternating ones,
271  *	   walking zero, and walking one test to check for stuck bits.
272  *
273  *	2) You should be able to write to and read back the same value
274  *	   to the control port lower 5 bits, the upper 3 bits are reserved
275  *	   per the IBM PC technical reference manauls and different boards
276  *	   do different things with them.  Do an alternating zeros, alternating
277  *	   ones, walking zero, and walking one test to check for stuck bits.
278  *
279  *	   Some printers drag the strobe line down when the are powered off
280  * 	   so this bit has been masked out of the control port test.
281  *
282  *	   XXX Some printers may not like a fast pulse on init or strobe, I
283  *	   don't know at this point, if that becomes a problem these bits
284  *	   should be turned off in the mask byte for the control port test.
285  *
286  *	   We are finally left with a mask of 0x14, due to some printers
287  *	   being adamant about holding other bits high ........
288  *
289  *	   Before probing the control port, we write a 0 to the data port -
290  *	   If not, some printers chuck out garbage when the strobe line
291  *	   gets toggled.
292  *
293  *	3) Set the data and control ports to a value of 0
294  *
295  *	This probe routine has been tested on Epson Lx-800, HP LJ3P,
296  *	Epson FX-1170 and C.Itoh 8510RM
297  *	printers.
298  *	Quick exit on fail added.
299  */
300 static int
301 lpt_detect(device_t dev)
302 {
303 	device_t ppbus = device_get_parent(dev);
304 
305 	static u_char	testbyte[18] = {
306 		0x55,			/* alternating zeros */
307 		0xaa,			/* alternating ones */
308 		0xfe, 0xfd, 0xfb, 0xf7,
309 		0xef, 0xdf, 0xbf, 0x7f,	/* walking zero */
310 		0x01, 0x02, 0x04, 0x08,
311 		0x10, 0x20, 0x40, 0x80	/* walking one */
312 	};
313 	int		i, error, status;
314 
315 	status = 1;				/* assume success */
316 
317 	if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) {
318 		printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error);
319 		status = 0;
320 		goto end_probe;
321 	}
322 
323 	for (i = 0; i < 18 && status; i++)
324 		if (!lpt_port_test(ppbus, testbyte[i], 0xff)) {
325 			status = 0;
326 			goto end_probe;
327 		}
328 
329 end_probe:
330 	/* write 0's to control and data ports */
331 	ppb_wdtr(ppbus, 0);
332 	ppb_wctr(ppbus, 0);
333 
334 	lpt_release_ppbus(dev);
335 
336 	return (status);
337 }
338 
339 static void
340 lpt_identify(driver_t *driver, device_t parent)
341 {
342 
343 	BUS_ADD_CHILD(parent, 0, LPT_NAME, -1);
344 }
345 
346 /*
347  * lpt_probe()
348  */
349 static int
350 lpt_probe(device_t dev)
351 {
352 	struct lpt_data *sc;
353 
354 	sc = DEVTOSOFTC(dev);
355 	bzero(sc, sizeof(struct lpt_data));
356 
357 	/*
358 	 * Now, try to detect the printer.
359 	 */
360 	if (!lpt_detect(dev))
361 		return (ENXIO);
362 
363 	device_set_desc(dev, "Printer");
364 
365 	return (0);
366 }
367 
368 static int
369 lpt_attach(device_t dev)
370 {
371 	device_t ppbus = device_get_parent(dev);
372 	struct lpt_data *sc = DEVTOSOFTC(dev);
373 	int zero = 0, unit = device_get_unit(dev);
374 	int error;
375 	intptr_t irq;
376 
377 	sc->sc_primed = 0;	/* not primed yet */
378 
379 	if ((error = lpt_request_ppbus(dev, PPB_DONTWAIT))) {
380 		printf(LPT_NAME ": cannot alloc ppbus (%d)!\n", error);
381 		return (0);
382 	}
383 
384 	ppb_wctr(ppbus, LPC_NINIT);
385 
386 	/* check if we can use interrupt, should be done by ppc stuff */
387 	lprintf(("oldirq %x\n", sc->sc_irq));
388 
389 	/* retrieve the ppbus irq */
390 	BUS_READ_IVAR(ppbus, dev, PPBUS_IVAR_IRQ, &irq);
391 
392 	if (irq > 0) {
393 		/* declare our interrupt handler */
394 		sc->intr_resource = bus_alloc_resource(dev, SYS_RES_IRQ,
395 						       &zero, irq, irq, 1, RF_SHAREABLE);
396 	}
397 	if (sc->intr_resource) {
398 		sc->sc_irq = LP_HAS_IRQ | LP_USE_IRQ | LP_ENABLE_IRQ;
399 		device_printf(dev, "Interrupt-driven port\n");
400 	} else {
401 		sc->sc_irq = 0;
402 		device_printf(dev, "Polled port\n");
403 	}
404 	lprintf(("irq %x %x\n", (int)irq, sc->sc_irq));
405 
406 	lpt_release_ppbus(dev);
407 
408 	make_dev(&lpt_cdevsw, unit,
409 	    UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d", unit);
410 	make_dev(&lpt_cdevsw, unit | LP_BYPASS,
411 	    UID_ROOT, GID_WHEEL, 0600, LPT_NAME "%d.ctl", unit);
412 	return (0);
413 }
414 
415 static void
416 lptout(void *arg)
417 {
418 	device_t dev = (device_t)arg;
419 	struct lpt_data *sc = DEVTOSOFTC(dev);
420 #ifdef LPT_DEBUG
421 	device_t ppbus = device_get_parent(dev);
422 #endif
423 
424 	lprintf(("T %x ", ppb_rstr(ppbus)));
425 	if (sc->sc_state & OPEN) {
426 		sc->sc_backoff++;
427 		if (sc->sc_backoff > hz/LPTOUTMAX)
428 			sc->sc_backoff = sc->sc_backoff > hz/LPTOUTMAX;
429 		timeout(lptout, (caddr_t)dev, sc->sc_backoff);
430 	} else
431 		sc->sc_state &= ~TOUT;
432 
433 	if (sc->sc_state & EERROR)
434 		sc->sc_state &= ~EERROR;
435 
436 	/*
437 	 * Avoid possible hangs due to missed interrupts
438 	 */
439 	if (sc->sc_xfercnt) {
440 		lptintr(dev);
441 	} else {
442 		sc->sc_state &= ~OBUSY;
443 		wakeup(dev);
444 	}
445 }
446 
447 /*
448  * lptopen -- reset the printer, then wait until it's selected and not busy.
449  *	If LP_BYPASS flag is selected, then we do not try to select the
450  *	printer -- this is just used for passing ioctls.
451  */
452 
453 static	int
454 lptopen(dev_t dev, int flags, int fmt, struct thread *td)
455 {
456 	int s;
457 	int trys, err;
458 	u_int unit = LPTUNIT(minor(dev));
459 	struct lpt_data *sc = UNITOSOFTC(unit);
460 	device_t lptdev = UNITODEVICE(unit);
461 	device_t ppbus = device_get_parent(lptdev);
462 
463 	if (!sc)
464 		return (ENXIO);
465 
466 	if (sc->sc_state) {
467 		lprintf((LPT_NAME ": still open %x\n", sc->sc_state));
468 		return(EBUSY);
469 	} else
470 		sc->sc_state |= LPTINIT;
471 
472 	sc->sc_flags = LPTFLAGS(minor(dev));
473 
474 	/* Check for open with BYPASS flag set. */
475 	if (sc->sc_flags & LP_BYPASS) {
476 		sc->sc_state = OPEN;
477 		return(0);
478 	}
479 
480 	/* request the ppbus only if we don't have it already */
481 	if ((err = lpt_request_ppbus(lptdev, PPB_WAIT|PPB_INTR)) != 0) {
482 		/* give it a chance to try later */
483 		sc->sc_state = 0;
484 		return (err);
485 	}
486 
487 	s = spltty();
488 	lprintf((LPT_NAME " flags 0x%x\n", sc->sc_flags));
489 
490 	/* set IRQ status according to ENABLE_IRQ flag
491 	 */
492 	if (sc->sc_irq & LP_ENABLE_IRQ)
493 		sc->sc_irq |= LP_USE_IRQ;
494 	else
495 		sc->sc_irq &= ~LP_USE_IRQ;
496 
497 	/* init printer */
498 	if ((sc->sc_flags & LP_NO_PRIME) == 0) {
499 		if((sc->sc_flags & LP_PRIMEOPEN) || sc->sc_primed == 0) {
500 			ppb_wctr(ppbus, 0);
501 			sc->sc_primed++;
502 			DELAY(500);
503 		}
504 	}
505 
506 	ppb_wctr(ppbus, LPC_SEL|LPC_NINIT);
507 
508 	/* wait till ready (printer running diagnostics) */
509 	trys = 0;
510 	do {
511 		/* ran out of waiting for the printer */
512 		if (trys++ >= LPINITRDY*4) {
513 			splx(s);
514 			sc->sc_state = 0;
515 			lprintf(("status %x\n", ppb_rstr(ppbus)));
516 
517 			lpt_release_ppbus(lptdev);
518 			return (EBUSY);
519 		}
520 
521 		/* wait 1/4 second, give up if we get a signal */
522 		if (tsleep(lptdev, LPPRI|PCATCH, "lptinit", hz/4) !=
523 		    EWOULDBLOCK) {
524 			sc->sc_state = 0;
525 			splx(s);
526 
527 			lpt_release_ppbus(lptdev);
528 			return (EBUSY);
529 		}
530 
531 		/* is printer online and ready for output */
532 	} while ((ppb_rstr(ppbus) &
533 			(LPS_SEL|LPS_OUT|LPS_NBSY|LPS_NERR)) !=
534 					(LPS_SEL|LPS_NBSY|LPS_NERR));
535 
536 	sc->sc_control = LPC_SEL|LPC_NINIT;
537 	if (sc->sc_flags & LP_AUTOLF)
538 		sc->sc_control |= LPC_AUTOL;
539 
540 	/* enable interrupt if interrupt-driven */
541 	if (sc->sc_irq & LP_USE_IRQ)
542 		sc->sc_control |= LPC_ENA;
543 
544 	ppb_wctr(ppbus, sc->sc_control);
545 
546 	sc->sc_state = OPEN;
547 	sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
548 	sc->sc_statbuf = malloc(BUFSTATSIZE, M_DEVBUF, M_WAITOK);
549 	sc->sc_xfercnt = 0;
550 	splx(s);
551 
552 	/* release the ppbus */
553 	lpt_release_ppbus(lptdev);
554 
555 	/* only use timeout if using interrupt */
556 	lprintf(("irq %x\n", sc->sc_irq));
557 	if (sc->sc_irq & LP_USE_IRQ) {
558 		sc->sc_state |= TOUT;
559 		timeout(lptout, (caddr_t)lptdev,
560 			 (sc->sc_backoff = hz/LPTOUTINITIAL));
561 	}
562 
563 	lprintf(("opened.\n"));
564 	return(0);
565 }
566 
567 /*
568  * lptclose -- close the device, free the local line buffer.
569  *
570  * Check for interrupted write call added.
571  */
572 
573 static	int
574 lptclose(dev_t dev, int flags, int fmt, struct thread *td)
575 {
576 	u_int unit = LPTUNIT(minor(dev));
577 	struct lpt_data *sc = UNITOSOFTC(unit);
578 	device_t lptdev = UNITODEVICE(unit);
579         device_t ppbus = device_get_parent(lptdev);
580 	int err;
581 
582 	if(sc->sc_flags & LP_BYPASS)
583 		goto end_close;
584 
585 	if ((err = lpt_request_ppbus(lptdev, PPB_WAIT|PPB_INTR)) != 0)
586 		return (err);
587 
588 	sc->sc_state &= ~OPEN;
589 
590 	/* if the last write was interrupted, don't complete it */
591 	if((!(sc->sc_state  & INTERRUPTED)) && (sc->sc_irq & LP_USE_IRQ))
592 		while ((ppb_rstr(ppbus) &
593 			(LPS_SEL|LPS_OUT|LPS_NBSY|LPS_NERR)) !=
594 			(LPS_SEL|LPS_NBSY|LPS_NERR) || sc->sc_xfercnt)
595 			/* wait 1/4 second, give up if we get a signal */
596 			if (tsleep(lptdev, LPPRI|PCATCH,
597 				"lpclose", hz) != EWOULDBLOCK)
598 				break;
599 
600 	ppb_wctr(ppbus, LPC_NINIT);
601 	free(sc->sc_inbuf, M_DEVBUF);
602 	free(sc->sc_statbuf, M_DEVBUF);
603 
604 end_close:
605 	/* release the bus anyway
606 	 * unregistration of interrupt forced by release
607 	 */
608 	lpt_release_ppbus(lptdev);
609 
610 	sc->sc_state = 0;
611 	sc->sc_xfercnt = 0;
612 	lprintf(("closed.\n"));
613 	return(0);
614 }
615 
616 /*
617  * lpt_pushbytes()
618  *	Workhorse for actually spinning and writing bytes to printer
619  *	Derived from lpa.c
620  *	Originally by ?
621  *
622  *	This code is only used when we are polling the port
623  */
624 static int
625 lpt_pushbytes(device_t dev)
626 {
627 	struct lpt_data *sc = DEVTOSOFTC(dev);
628 	device_t ppbus = device_get_parent(dev);
629 	int spin, err, tic;
630 	char ch;
631 
632 	lprintf(("p"));
633 	/* loop for every character .. */
634 	while (sc->sc_xfercnt > 0) {
635 		/* printer data */
636 		ch = *(sc->sc_cp);
637 		sc->sc_cp++;
638 		sc->sc_xfercnt--;
639 
640 		/*
641 		 * Wait for printer ready.
642 		 * Loop 20 usecs testing BUSY bit, then sleep
643 		 * for exponentially increasing timeout. (vak)
644 		 */
645 		for (spin = 0; NOT_READY(ppbus) && spin < MAX_SPIN; ++spin)
646 			DELAY(1);	/* XXX delay is NOT this accurate! */
647 		if (spin >= MAX_SPIN) {
648 			tic = 0;
649 			while (NOT_READY(ppbus)) {
650 				/*
651 				 * Now sleep, every cycle a
652 				 * little longer ..
653 				 */
654 				tic = tic + tic + 1;
655 				/*
656 				 * But no more than 10 seconds. (vak)
657 				 */
658 				if (tic > MAX_SLEEP)
659 					tic = MAX_SLEEP;
660 				err = tsleep(dev, LPPRI,
661 					LPT_NAME "poll", tic);
662 				if (err != EWOULDBLOCK) {
663 					return (err);
664 				}
665 			}
666 		}
667 
668 		/* output data */
669 		ppb_wdtr(ppbus, ch);
670 		/* strobe */
671 		ppb_wctr(ppbus, sc->sc_control|LPC_STB);
672 		ppb_wctr(ppbus, sc->sc_control);
673 
674 	}
675 	return(0);
676 }
677 
678 /*
679  * lptread --retrieve printer status in IEEE1284 NIBBLE mode
680  */
681 
682 static int
683 lptread(dev_t dev, struct uio *uio, int ioflag)
684 {
685         u_int	unit = LPTUNIT(minor(dev));
686 	struct lpt_data *sc = UNITOSOFTC(unit);
687 	device_t lptdev = UNITODEVICE(unit);
688         device_t ppbus = device_get_parent(lptdev);
689 	int error = 0, len;
690 
691 	if (sc->sc_flags & LP_BYPASS) {
692 		/* we can't do reads in bypass mode */
693 		return (EPERM);
694 	}
695 
696 	if ((error = ppb_1284_negociate(ppbus, PPB_NIBBLE, 0)))
697 		return (error);
698 
699 	/* read data in an other buffer, read/write may be simultaneous */
700 	len = 0;
701 	while (uio->uio_resid) {
702 		if ((error = ppb_1284_read(ppbus, PPB_NIBBLE,
703 				sc->sc_statbuf, min(BUFSTATSIZE,
704 				uio->uio_resid), &len))) {
705 			goto error;
706 		}
707 
708 		if (!len)
709 			goto error;		/* no more data */
710 
711 		if ((error = uiomove(sc->sc_statbuf, len, uio)))
712 			goto error;
713 	}
714 
715 error:
716 	ppb_1284_terminate(ppbus);
717 	return (error);
718 }
719 
720 /*
721  * lptwrite --copy a line from user space to a local buffer, then call
722  * putc to get the chars moved to the output queue.
723  *
724  * Flagging of interrupted write added.
725  */
726 
727 static	int
728 lptwrite(dev_t dev, struct uio *uio, int ioflag)
729 {
730 	register unsigned n;
731 	int err;
732         u_int	unit = LPTUNIT(minor(dev));
733 	struct lpt_data *sc = UNITOSOFTC(unit);
734 	device_t lptdev = UNITODEVICE(unit);
735         device_t ppbus = device_get_parent(lptdev);
736 
737 	if(sc->sc_flags & LP_BYPASS) {
738 		/* we can't do writes in bypass mode */
739 		return(EPERM);
740 	}
741 
742 	/* request the ppbus only if we don't have it already */
743 	/* XXX interrupt registration?! */
744 	if ((err = lpt_request_ppbus(lptdev, PPB_WAIT|PPB_INTR)) != 0)
745 		return (err);
746 
747 	/* if interrupts are working, register the handler */
748 	if (sc->sc_irq & LP_USE_IRQ) {
749 		/* register our interrupt handler */
750 		err = BUS_SETUP_INTR(ppbus, lptdev, sc->intr_resource,
751 			       INTR_TYPE_TTY, lpt_intr, lptdev,
752 			       &sc->intr_cookie);
753 		if (err) {
754 			device_printf(lptdev, "handler registration failed, polled mode.\n");
755 			sc->sc_irq &= ~LP_USE_IRQ;
756 		}
757 	}
758 
759 	sc->sc_state &= ~INTERRUPTED;
760 	while ((n = min(BUFSIZE, uio->uio_resid)) != 0) {
761 		sc->sc_cp = sc->sc_inbuf;
762 		uiomove(sc->sc_cp, n, uio);
763 		sc->sc_xfercnt = n ;
764 
765 		if (sc->sc_irq & LP_ENABLE_EXT) {
766 			/* try any extended mode */
767 			err = ppb_write(ppbus, sc->sc_cp,
768 					sc->sc_xfercnt, 0);
769 			switch (err) {
770 			case 0:
771 				/* if not all data was sent, we could rely
772 				 * on polling for the last bytes */
773 				sc->sc_xfercnt = 0;
774 				break;
775 			case EINTR:
776 				sc->sc_state |= INTERRUPTED;
777 				return(err);
778 			case EINVAL:
779 				/* advanced mode not avail */
780 				log(LOG_NOTICE, LPT_NAME "%d: advanced mode not avail, polling\n", unit);
781 				break;
782 			default:
783 				return(err);
784 			}
785 		} else while ((sc->sc_xfercnt > 0)&&(sc->sc_irq & LP_USE_IRQ)) {
786 			lprintf(("i"));
787 			/* if the printer is ready for a char, */
788 			/* give it one */
789 			if ((sc->sc_state & OBUSY) == 0){
790 				lprintf(("\nC %d. ", sc->sc_xfercnt));
791 				lptintr(lptdev);
792 			}
793 			lprintf(("W "));
794 			if (sc->sc_state & OBUSY)
795 				if ((err = tsleep(lptdev,
796 					 LPPRI|PCATCH, LPT_NAME "write", 0))) {
797 					sc->sc_state |= INTERRUPTED;
798 					return(err);
799 				}
800 		}
801 
802 		/* check to see if we must do a polled write */
803 		if(!(sc->sc_irq & LP_USE_IRQ) && (sc->sc_xfercnt)) {
804 			lprintf(("p"));
805 
806 			err = lpt_pushbytes(lptdev);
807 
808 			if (err)
809 				return(err);
810 		}
811 	}
812 
813 	/* we have not been interrupted, release the ppbus */
814 	lpt_release_ppbus(lptdev);
815 
816 	return(0);
817 }
818 
819 /*
820  * lpt_intr -- handle printer interrupts which occur when the printer is
821  * ready to accept another char.
822  *
823  * do checking for interrupted write call.
824  */
825 
826 static void
827 lpt_intr(void *arg)
828 {
829 	device_t lptdev = (device_t)arg;
830         device_t ppbus = device_get_parent(lptdev);
831 	struct lpt_data *sc = DEVTOSOFTC(lptdev);
832 	int sts = 0;
833 	int i;
834 
835 	/* we must own the bus to use it */
836 	if ((sc->sc_state & HAVEBUS) == 0)
837 		return;
838 
839 	/*
840 	 * Is printer online and ready for output?
841 	 *
842 	 * Avoid falling back to lptout() too quickly.  First spin-loop
843 	 * to see if the printer will become ready ``really soon now''.
844 	 */
845 	for (i = 0; i < 100 &&
846 	     ((sts=ppb_rstr(ppbus)) & RDY_MASK) != LP_READY; i++) ;
847 
848 	if ((sts & RDY_MASK) == LP_READY) {
849 		sc->sc_state = (sc->sc_state | OBUSY) & ~EERROR;
850 		sc->sc_backoff = hz/LPTOUTINITIAL;
851 
852 		if (sc->sc_xfercnt) {
853 			/* send char */
854 			/*lprintf(("%x ", *sc->sc_cp)); */
855 			ppb_wdtr(ppbus, *sc->sc_cp++) ;
856 			ppb_wctr(ppbus, sc->sc_control|LPC_STB);
857 			/* DELAY(X) */
858 			ppb_wctr(ppbus, sc->sc_control);
859 
860 			/* any more data for printer */
861 			if(--(sc->sc_xfercnt) > 0) return;
862 		}
863 
864 		/*
865 		 * No more data waiting for printer.
866 		 * Wakeup is not done if write call was not interrupted.
867 		 */
868 		sc->sc_state &= ~OBUSY;
869 
870 		if(!(sc->sc_state & INTERRUPTED))
871 			wakeup(lptdev);
872 		lprintf(("w "));
873 		return;
874 	} else	{	/* check for error */
875 		if(((sts & (LPS_NERR | LPS_OUT) ) != LPS_NERR) &&
876 				(sc->sc_state & OPEN))
877 			sc->sc_state |= EERROR;
878 		/* lptout() will jump in and try to restart. */
879 	}
880 	lprintf(("sts %x ", sts));
881 }
882 
883 static void
884 lptintr(device_t dev)
885 {
886 	/* call the interrupt at required spl level */
887 	int s = spltty();
888 
889 	lpt_intr(dev);
890 
891 	splx(s);
892 	return;
893 }
894 
895 static	int
896 lptioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct thread *td)
897 {
898 	int	error = 0;
899         u_int	unit = LPTUNIT(minor(dev));
900         struct	lpt_data *sc = UNITOSOFTC(unit);
901 	u_char	old_sc_irq;	/* old printer IRQ status */
902 
903 	switch (cmd) {
904 	case LPT_IRQ :
905 		if(sc->sc_irq & LP_HAS_IRQ) {
906 			/*
907 			 * NOTE:
908 			 * If the IRQ status is changed,
909 			 * this will only be visible on the
910 			 * next open.
911 			 *
912 			 * If interrupt status changes,
913 			 * this gets syslog'd.
914 			 */
915 			old_sc_irq = sc->sc_irq;
916 			switch(*(int*)data) {
917 			case 0:
918 				sc->sc_irq &= (~LP_ENABLE_IRQ);
919 				break;
920 			case 1:
921 				sc->sc_irq &= (~LP_ENABLE_EXT);
922 				sc->sc_irq |= LP_ENABLE_IRQ;
923 				break;
924 			case 2:
925 				/* classic irq based transfer and advanced
926 				 * modes are in conflict
927 				 */
928 				sc->sc_irq &= (~LP_ENABLE_IRQ);
929 				sc->sc_irq |= LP_ENABLE_EXT;
930 				break;
931 			case 3:
932 				sc->sc_irq &= (~LP_ENABLE_EXT);
933 				break;
934 			default:
935 				break;
936 			}
937 
938 			if (old_sc_irq != sc->sc_irq )
939 				log(LOG_NOTICE, LPT_NAME "%d: switched to %s %s mode\n",
940 					unit,
941 					(sc->sc_irq & LP_ENABLE_IRQ)?
942 					"interrupt-driven":"polled",
943 					(sc->sc_irq & LP_ENABLE_EXT)?
944 					"extended":"standard");
945 		} else /* polled port */
946 			error = EOPNOTSUPP;
947 		break;
948 	default:
949 		error = ENODEV;
950 	}
951 
952 	return(error);
953 }
954 
955 static device_method_t lpt_methods[] = {
956 	/* device interface */
957 	DEVMETHOD(device_identify,	lpt_identify),
958 	DEVMETHOD(device_probe,		lpt_probe),
959 	DEVMETHOD(device_attach,	lpt_attach),
960 
961 	{ 0, 0 }
962 };
963 
964 static driver_t lpt_driver = {
965 	LPT_NAME,
966 	lpt_methods,
967 	sizeof(struct lpt_data),
968 };
969 
970 DRIVER_MODULE(lpt, ppbus, lpt_driver, lpt_devclass, 0, 0);
971