1139825Simp/*-
248006Skato * Copyright (c) 1990 William F. Jolitz, TeleMuse
348006Skato * All rights reserved.
448006Skato *
548006Skato * Redistribution and use in source and binary forms, with or without
648006Skato * modification, are permitted provided that the following conditions
748006Skato * are met:
848006Skato * 1. Redistributions of source code must retain the above copyright
948006Skato *    notice, this list of conditions and the following disclaimer.
1048006Skato * 2. Redistributions in binary form must reproduce the above copyright
1148006Skato *    notice, this list of conditions and the following disclaimer in the
1248006Skato *    documentation and/or other materials provided with the distribution.
1348006Skato * 3. All advertising materials mentioning features or use of this software
1448006Skato *    must display the following acknowledgement:
1548006Skato *	This software is a component of "386BSD" developed by
1648006Skato *	William F. Jolitz, TeleMuse.
1748006Skato * 4. Neither the name of the developer nor the name "386BSD"
1848006Skato *    may be used to endorse or promote products derived from this software
1948006Skato *    without specific prior written permission.
2048006Skato *
2148006Skato * THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
2248006Skato * AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
2348006Skato * SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
2448006Skato * THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
2548006Skato * NOT MAKE USE OF THIS WORK.
2648006Skato *
2748006Skato * FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
2848006Skato * BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
2948006Skato * REFERENCES SUCH AS THE  "PORTING UNIX TO THE 386" SERIES
3048006Skato * (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
3148006Skato * JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
3248006Skato * LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
3348006Skato * ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
3448006Skato * OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
3548006Skato *
3648006Skato * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
3748006Skato * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3848006Skato * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3948006Skato * ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER BE LIABLE
4048006Skato * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4148006Skato * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4248006Skato * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4348006Skato * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4448006Skato * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4548006Skato * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4648006Skato * SUCH DAMAGE.
4748006Skato *
4848006Skato *	from: unknown origin, 386BSD 0.1
4950477Speter * $FreeBSD$
5048006Skato */
5148006Skato
5248006Skato/*
5348006Skato * Device Driver for AT parallel printer port
5448006Skato * Written by William Jolitz 12/18/90
5548006Skato */
5648006Skato
5748006Skato/*
5848006Skato * Parallel port TCP/IP interfaces added.  I looked at the driver from
5948006Skato * MACH but this is a complete rewrite, and btw. incompatible, and it
6048006Skato * should perform better too.  I have never run the MACH driver though.
6148006Skato *
6248006Skato * This driver sends two bytes (0x08, 0x00) in front of each packet,
6348006Skato * to allow us to distinguish another format later.
6448006Skato *
65108470Sschweikh * Now added a Linux/Crynwr compatibility mode which is enabled using
6648006Skato * IF_LINK0 - Tim Wilkinson.
6748006Skato *
6848006Skato * TODO:
6948006Skato *    Make HDLC/PPP mode, use IF_LLC1 to enable.
7048006Skato *
7148006Skato * Connect the two computers using a Laplink parallel cable to use this
7248006Skato * feature:
7348006Skato *
7448006Skato *      +----------------------------------------+
7548006Skato * 	|A-name	A-End	B-End	Descr.	Port/Bit |
7648006Skato *      +----------------------------------------+
7748006Skato *	|DATA0	2	15	Data	0/0x01   |
7848006Skato *	|-ERROR	15	2	   	1/0x08   |
7948006Skato *      +----------------------------------------+
8048006Skato *	|DATA1	3	13	Data	0/0x02	 |
8148006Skato *	|+SLCT	13	3	   	1/0x10   |
8248006Skato *      +----------------------------------------+
8348006Skato *	|DATA2	4	12	Data	0/0x04   |
8448006Skato *	|+PE	12	4	   	1/0x20   |
8548006Skato *      +----------------------------------------+
8648006Skato *	|DATA3	5	10	Strobe	0/0x08   |
8748006Skato *	|-ACK	10	5	   	1/0x40   |
8848006Skato *      +----------------------------------------+
8948006Skato *	|DATA4	6	11	Data	0/0x10   |
9048006Skato *	|BUSY	11	6	   	1/~0x80  |
9148006Skato *      +----------------------------------------+
9248006Skato *	|GND	18-25	18-25	GND	-        |
9348006Skato *      +----------------------------------------+
9448006Skato *
9548006Skato * Expect transfer-rates up to 75 kbyte/sec.
9648006Skato *
9748006Skato * If GCC could correctly grok
9848006Skato *	register int port asm("edx")
9948006Skato * the code would be cleaner
10048006Skato *
10148006Skato * Poul-Henning Kamp <phk@freebsd.org>
10248006Skato */
10348006Skato
10448006Skato#include <sys/param.h>
10548006Skato#include <sys/systm.h>
10648006Skato#include <sys/conf.h>
10761116Snyan#include <sys/bus.h>
10848006Skato#include <sys/kernel.h>
109130174Sphk#include <sys/module.h>
11048006Skato#include <sys/uio.h>
11148006Skato#include <sys/syslog.h>
112116431Sphk#include <sys/malloc.h>
11348006Skato
11480537Snyan#include <machine/bus.h>
11580537Snyan#include <machine/resource.h>
11680537Snyan#include <sys/rman.h>
11780537Snyan
11880537Snyan#include <isa/isavar.h>
11980537Snyan
120146051Snyan#include <pc98/cbus/olptreg.h>
12160950Snyan#include <dev/ppbus/lptio.h>
12248006Skato
12348006Skato#define	LPINITRDY	4	/* wait up to 4 seconds for a ready */
12448006Skato#define	LPTOUTINITIAL	10	/* initial timeout to wait for ready 1/10 s */
12548006Skato#define	LPTOUTMAX	1	/* maximal timeout 1 s */
12648006Skato#define	LPPRI		(PZERO+8)
12748006Skato#define	BUFSIZE		1024
12848006Skato
12948006Skato#ifndef DEBUG
13048006Skato#define lprintf(args)
13148006Skato#else
13248006Skato#define lprintf(args)	do {				\
13348006Skato				if (lptflag)		\
13448006Skato					printf args;	\
13548006Skato			} while (0)
13648006Skatostatic int volatile lptflag = 1;
13748006Skato#endif
13848006Skato
13980537Snyanstruct lpt_softc {
14080537Snyan	struct resource *res_port;
14180537Snyan	struct resource *res_irq;
14280537Snyan	void *sc_ih;
14380537Snyan
14448006Skato	int	sc_port;
14548006Skato	short	sc_state;
14648006Skato	/* default case: negative prime, negative ack, handshake strobe,
14748006Skato	   prime once */
14848006Skato	u_char	sc_control;
14948006Skato	char	sc_flags;
15048006Skato#define LP_POS_INIT	0x04	/* if we are a postive init signal */
15148006Skato#define LP_POS_ACK	0x08	/* if we are a positive going ack */
15248006Skato#define LP_NO_PRIME	0x10	/* don't prime the printer at all */
15348006Skato#define LP_PRIMEOPEN	0x20	/* prime on every open */
15448006Skato#define LP_AUTOLF	0x40	/* tell printer to do an automatic lf */
15548006Skato#define LP_BYPASS	0x80	/* bypass  printer ready checks */
156116431Sphk	void	*sc_inbuf;
15748006Skato	short	sc_xfercnt ;
15848006Skato	char	sc_primed;
15948006Skato	char	*sc_cp ;
16048006Skato	u_char	sc_irq ;	/* IRQ status of port */
16148006Skato#define LP_HAS_IRQ	0x01	/* we have an irq available */
16248006Skato#define LP_USE_IRQ	0x02	/* we are using our irq */
16348006Skato#define LP_ENABLE_IRQ	0x04	/* enable IRQ on open */
16448006Skato	u_char	sc_backoff ;	/* time to call lptout() again */
16580537Snyan};
16648006Skato
16748006Skato/* bits for state */
16848006Skato#define	OPEN		(1<<0)	/* device is open */
16948006Skato#define	ASLP		(1<<1)	/* awaiting draining of printer */
17048006Skato#define	ERROR		(1<<2)	/* error was received from printer */
17148006Skato#define	OBUSY		(1<<3)	/* printer is busy doing output */
17248006Skato#define LPTOUT		(1<<4)	/* timeout while not selected */
17348006Skato#define TOUT		(1<<5)	/* timeout while not selected */
17448006Skato#define INIT		(1<<6)	/* waiting to initialize for open */
17548006Skato#define INTERRUPTED	(1<<7)	/* write call was interrupted */
17648006Skato
17748006Skato
17848006Skato/* status masks to interrogate printer status */
17948006Skato#define RDY_MASK	(LPS_SEL|LPS_OUT|LPS_NBSY|LPS_NERR)	/* ready ? */
18048006Skato#define LP_READY	(LPS_SEL|LPS_NBSY|LPS_NERR)
18148006Skato
18248006Skato/* Printer Ready condition  - from lpa.c */
18348006Skato/* Only used in polling code */
18448006Skato#define	NOT_READY(x)	((inb(x) & LPS_NBSY) != LPS_NBSY)
18548006Skato
18648006Skato#define	MAX_SLEEP	(hz*5)	/* Timeout while waiting for device ready */
18748006Skato#define	MAX_SPIN	20	/* Max delay for device ready in usecs */
18848006Skato
18948006Skatostatic timeout_t lptout;
19080537Snyanstatic int lpt_probe(device_t);
19180537Snyanstatic int lpt_attach(device_t);
19280537Snyanstatic void lpt_intr(void *);
19348006Skato
19480537Snyanstatic devclass_t olpt_devclass;
19580537Snyan
19680537Snyanstatic device_method_t olpt_methods[] = {
19780537Snyan	DEVMETHOD(device_probe,		lpt_probe),
19880537Snyan	DEVMETHOD(device_attach,	lpt_attach),
19980537Snyan	{ 0, 0 }
20048006Skato};
20148006Skato
20280537Snyanstatic driver_t olpt_driver = {
20380537Snyan	"olpt",
20480537Snyan	olpt_methods,
20580537Snyan	sizeof (struct lpt_softc),
20680537Snyan};
20780537Snyan
20880537SnyanDRIVER_MODULE(olpt, isa, olpt_driver, olpt_devclass, 0, 0);
20980537Snyan
21048006Skatostatic	d_open_t	lptopen;
21148006Skatostatic	d_close_t	lptclose;
21248006Skatostatic	d_write_t	lptwrite;
21348006Skatostatic	d_ioctl_t	lptioctl;
21448006Skato
21548006Skatostatic struct cdevsw lpt_cdevsw = {
216126080Sphk	.d_version =	D_VERSION,
217126080Sphk	.d_flags =	D_NEEDGIANT,
218111815Sphk	.d_open =	lptopen,
219111815Sphk	.d_close =	lptclose,
220111815Sphk	.d_write =	lptwrite,
221111815Sphk	.d_ioctl =	lptioctl,
222111815Sphk	.d_name =	"lpt",
22348006Skato};
22448006Skato
22580537Snyanstatic bus_addr_t lpt_iat[] = {0, 2, 4, 6};
22680537Snyan
22748006Skato/*
22848006Skato * New lpt port probe Geoff Rehmet - Rhodes University - 14/2/94
22948006Skato * Based partially on Rod Grimes' printer probe
23048006Skato *
23148006Skato * Logic:
23248006Skato *	1) If no port address was given, use the bios detected ports
23348006Skato *	   and autodetect what ports the printers are on.
23448006Skato *	2) Otherwise, probe the data port at the address given,
23548006Skato *	   using the method in Rod Grimes' port probe.
23648006Skato *	   (Much code ripped off directly from Rod's probe.)
23748006Skato *
23848006Skato * Comments from Rod's probe:
23948006Skato * Logic:
24048006Skato *	1) You should be able to write to and read back the same value
24148006Skato *	   to the data port.  Do an alternating zeros, alternating ones,
24248006Skato *	   walking zero, and walking one test to check for stuck bits.
24348006Skato *
24448006Skato *	2) You should be able to write to and read back the same value
24548006Skato *	   to the control port lower 5 bits, the upper 3 bits are reserved
24648006Skato *	   per the IBM PC technical reference manauls and different boards
24748006Skato *	   do different things with them.  Do an alternating zeros, alternating
24848006Skato *	   ones, walking zero, and walking one test to check for stuck bits.
24948006Skato *
25048006Skato *	   Some printers drag the strobe line down when the are powered off
25148006Skato * 	   so this bit has been masked out of the control port test.
25248006Skato *
25348006Skato *	   XXX Some printers may not like a fast pulse on init or strobe, I
25448006Skato *	   don't know at this point, if that becomes a problem these bits
25548006Skato *	   should be turned off in the mask byte for the control port test.
25648006Skato *
25748006Skato *	   We are finally left with a mask of 0x14, due to some printers
25848006Skato *	   being adamant about holding other bits high ........
25948006Skato *
26048006Skato *	   Before probing the control port, we write a 0 to the data port -
26148006Skato *	   If not, some printers chuck out garbage when the strobe line
26248006Skato *	   gets toggled.
26348006Skato *
26448006Skato *	3) Set the data and control ports to a value of 0
26548006Skato *
26648006Skato *	This probe routine has been tested on Epson Lx-800, HP LJ3P,
26748006Skato *	Epson FX-1170 and C.Itoh 8510RM
26848006Skato *	printers.
26948006Skato *	Quick exit on fail added.
27048006Skato */
27148006Skato
27248006Skatoint
27380537Snyanlpt_probe(device_t dev)
27448006Skato{
27548006Skato#define PC98_OLD_LPT 0x40
27648006Skato#define PC98_IEEE_1284_FUNCTION 0x149
27780537Snyan	int rid;
27880537Snyan	struct resource *res;
27948006Skato
28080537Snyan	/* Check isapnp ids */
28180537Snyan	if (isa_get_vendorid(dev))
28280537Snyan		return ENXIO;
28380537Snyan
28480537Snyan	rid = 0;
28580537Snyan	res = isa_alloc_resourcev(dev, SYS_RES_IOPORT, &rid, lpt_iat, 4,
28680537Snyan				  RF_ACTIVE);
28780537Snyan	if (res == NULL)
28880537Snyan		return ENXIO;
28980537Snyan	isa_load_resourcev(res, lpt_iat, 4);
29080537Snyan
29180537Snyan	if (isa_get_port(dev) == PC98_OLD_LPT) {
29280537Snyan		unsigned int pc98_ieee_mode, tmp;
29380537Snyan
29448006Skato		tmp = inb(PC98_IEEE_1284_FUNCTION);
29548006Skato		pc98_ieee_mode = tmp;
29648006Skato		if ((tmp & 0x10) == 0x10) {
29748006Skato			outb(PC98_IEEE_1284_FUNCTION, tmp & ~0x10);
29848006Skato			tmp = inb(PC98_IEEE_1284_FUNCTION);
29948006Skato			if ((tmp & 0x10) != 0x10) {
30048006Skato				outb(PC98_IEEE_1284_FUNCTION, pc98_ieee_mode);
30180537Snyan				bus_release_resource(dev, SYS_RES_IOPORT, rid,
30280537Snyan						     res);
30380537Snyan				return ENXIO;
30448006Skato			}
30548006Skato		}
30648006Skato	}
30780537Snyan
30880537Snyan	bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
30980537Snyan	return 0;
31048006Skato}
31148006Skato
31248006Skato/* XXX Todo - try and detect if interrupt is working */
31348006Skatoint
31480537Snyanlpt_attach(device_t dev)
31548006Skato{
31680537Snyan	int	rid, unit;
31748006Skato	struct	lpt_softc	*sc;
318191114Sed	struct	cdev		*cdev;
31948006Skato
32080537Snyan	unit = device_get_unit(dev);
32180537Snyan	sc = device_get_softc(dev);
32280537Snyan
32380537Snyan	rid = 0;
32480537Snyan	sc->res_port = isa_alloc_resourcev(dev, SYS_RES_IOPORT, &rid,
32580537Snyan					   lpt_iat, 4, RF_ACTIVE);
32680537Snyan	if (sc->res_port == NULL)
32780537Snyan		return ENXIO;
32880537Snyan	isa_load_resourcev(sc->res_port, lpt_iat, 4);
32980537Snyan
33080537Snyan	sc->sc_port = rman_get_start(sc->res_port);
33148006Skato	sc->sc_primed = 0;	/* not primed yet */
332145012Snyan
33348006Skato	outb(sc->sc_port+lpt_pstb_ctrl,	LPC_DIS_PSTB);	/* PSTB disable */
33448006Skato	outb(sc->sc_port+lpt_control,	LPC_MODE8255);	/* 8255 mode set */
33548006Skato	outb(sc->sc_port+lpt_control,	LPC_NIRQ8);	/* IRQ8 inactive */
33648006Skato	outb(sc->sc_port+lpt_control,	LPC_NPSTB);	/* PSTB inactive */
33748006Skato	outb(sc->sc_port+lpt_pstb_ctrl,	LPC_EN_PSTB);	/* PSTB enable */
33848006Skato
33980537Snyan	sc->sc_irq = 0;
34080537Snyan	if (isa_get_irq(dev) != -1) {
34180537Snyan		rid = 0;
342127135Snjl		sc->res_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
343127135Snjl						     RF_ACTIVE);
34480537Snyan		if (sc->res_irq == NULL) {
34580537Snyan			bus_release_resource(dev, SYS_RES_IOPORT, 0,
34680537Snyan					     sc->res_port);
34780537Snyan			return ENXIO;
34880537Snyan		}
349166923Spiso		if (bus_setup_intr(dev, sc->res_irq, INTR_TYPE_TTY, NULL, lpt_intr,
35080537Snyan				   sc, &sc->sc_ih)) {
35180537Snyan			bus_release_resource(dev, SYS_RES_IOPORT, 0,
35280537Snyan					     sc->res_port);
35380537Snyan			bus_release_resource(dev, SYS_RES_IRQ, 0,
35480537Snyan					     sc->res_irq);
35580537Snyan			return ENXIO;
35680537Snyan		}
35748006Skato		sc->sc_irq = LP_HAS_IRQ | LP_USE_IRQ | LP_ENABLE_IRQ;
35880537Snyan		device_printf(dev, "Interrupt-driven port");
35948006Skato	}
36048006Skato
361191114Sed	cdev = make_dev(&lpt_cdevsw, 0,
362191114Sed			UID_ROOT, GID_WHEEL, 0600, "lpt%d", unit);
363191114Sed	cdev->si_drv1 = sc;
364191114Sed	cdev = make_dev(&lpt_cdevsw, LP_BYPASS,
36550436Sjulian			UID_ROOT, GID_WHEEL, 0600, "lpctl%d", unit);
366191114Sed	cdev->si_drv1 = sc;
36758142Snyan
36880537Snyan	return 0;
36948006Skato}
37048006Skato
37148006Skato/*
37248006Skato * lptopen -- reset the printer, then wait until it's selected and not busy.
37348006Skato *	If LP_BYPASS flag is selected, then we do not try to select the
37448006Skato *	printer -- this is just used for passing ioctls.
37548006Skato */
37648006Skato
37748006Skatostatic	int
378130585Sphklptopen (struct cdev *dev, int flags, int fmt, struct thread *td)
37948006Skato{
380191114Sed	struct lpt_softc *sc = dev->si_drv1;
38148006Skato	int s;
38248006Skato	int port;
38348006Skato
38480537Snyan	if (sc->sc_port == 0)
38548006Skato		return (ENXIO);
38648006Skato
38748006Skato	if (sc->sc_state) {
38848006Skato		lprintf(("lp: still open %x\n", sc->sc_state));
38948006Skato		return(EBUSY);
39048006Skato	} else
39148006Skato		sc->sc_state |= INIT;
39248006Skato
393191114Sed	sc->sc_flags = dev2unit(dev);
39448006Skato
39548006Skato	/* Check for open with BYPASS flag set. */
39648006Skato	if (sc->sc_flags & LP_BYPASS) {
39748006Skato		sc->sc_state = OPEN;
39848006Skato		return(0);
39948006Skato	}
40048006Skato
40148006Skato	s = spltty();
40248006Skato	lprintf(("lp flags 0x%x\n", sc->sc_flags));
40348006Skato	port = sc->sc_port;
40448006Skato
40548006Skato	/* set IRQ status according to ENABLE_IRQ flag */
40648006Skato	if (sc->sc_irq & LP_ENABLE_IRQ)
40748006Skato		sc->sc_irq |= LP_USE_IRQ;
40848006Skato	else
40948006Skato		sc->sc_irq &= ~LP_USE_IRQ;
41048006Skato
41148006Skato	/* init printer */
41248006Skato	sc->sc_state = OPEN;
413116431Sphk	sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
41448006Skato	sc->sc_xfercnt = 0;
41548006Skato	splx(s);
41648006Skato
41748006Skato	/* only use timeout if using interrupt */
41848006Skato	lprintf(("irq %x\n", sc->sc_irq));
41948006Skato	if (sc->sc_irq & LP_USE_IRQ) {
42048006Skato		sc->sc_state |= TOUT;
42148006Skato		timeout (lptout, (caddr_t)sc,
42248006Skato			 (sc->sc_backoff = hz/LPTOUTINITIAL));
42348006Skato	}
42448006Skato
42548006Skato	lprintf(("opened.\n"));
42648006Skato	return(0);
42748006Skato}
42848006Skato
42948006Skatostatic void
43048006Skatolptout (void *arg)
43148006Skato{
43248006Skato	struct lpt_softc *sc = arg;
43348006Skato	int pl;
43448006Skato
43548006Skato	lprintf(("T %x ", inb(sc->sc_port+lpt_status)));
43648006Skato	if (sc->sc_state & OPEN) {
43748006Skato		sc->sc_backoff++;
43848006Skato		if (sc->sc_backoff > hz/LPTOUTMAX)
43948006Skato			sc->sc_backoff = sc->sc_backoff > hz/LPTOUTMAX;
44048006Skato		timeout (lptout, (caddr_t)sc, sc->sc_backoff);
44148006Skato	} else
44248006Skato		sc->sc_state &= ~TOUT;
44348006Skato
44448006Skato	if (sc->sc_state & ERROR)
44548006Skato		sc->sc_state &= ~ERROR;
44648006Skato
44748006Skato	/*
44848006Skato	 * Avoid possible hangs do to missed interrupts
44948006Skato	 */
45048006Skato	if (sc->sc_xfercnt) {
45148006Skato		pl = spltty();
45280537Snyan		lpt_intr(sc);
45348006Skato		splx(pl);
45448006Skato	} else {
45548006Skato		sc->sc_state &= ~OBUSY;
456111748Sdes		wakeup(sc);
45748006Skato	}
45848006Skato}
45948006Skato
46048006Skato/*
46148006Skato * lptclose -- close the device, free the local line buffer.
46248006Skato *
46348006Skato * Check for interrupted write call added.
46448006Skato */
46548006Skato
46648006Skatostatic	int
467130585Sphklptclose(struct cdev *dev, int flags, int fmt, struct thread *td)
46848006Skato{
469191114Sed	struct lpt_softc *sc = dev->si_drv1;
47048006Skato
47148006Skato	if(sc->sc_flags & LP_BYPASS)
47248006Skato		goto end_close;
47348006Skato
47448006Skato	sc->sc_state &= ~OPEN;
475116431Sphk	free(sc->sc_inbuf, M_DEVBUF);
47648006Skato
47748006Skatoend_close:
47848006Skato	sc->sc_state = 0;
47948006Skato	sc->sc_xfercnt = 0;
48048006Skato	lprintf(("closed.\n"));
48148006Skato	return(0);
48248006Skato}
48348006Skato
48448006Skato/*
48548006Skato * pushbytes()
48648006Skato *	Workhorse for actually spinning and writing bytes to printer
48748006Skato *	Derived from lpa.c
48848006Skato *	Originally by ?
48948006Skato *
49048006Skato *	This code is only used when we are polling the port
49148006Skato */
49248006Skatostatic int
49348006Skatopushbytes(struct lpt_softc * sc)
49448006Skato{
49548006Skato	int spin, err, tic;
49648006Skato	char ch;
49748006Skato	int port = sc->sc_port;
49848006Skato
49948006Skato	lprintf(("p"));
50048006Skato	/* loop for every character .. */
50148006Skato	while (sc->sc_xfercnt > 0) {
50248006Skato		/* printer data */
50348006Skato		ch = *(sc->sc_cp);
50448006Skato		sc->sc_cp++;
50548006Skato		sc->sc_xfercnt--;
50648006Skato
50748006Skato		/*
50848006Skato		 * Wait for printer ready.
50948006Skato		 * Loop 20 usecs testing BUSY bit, then sleep
51048006Skato		 * for exponentially increasing timeout. (vak)
51148006Skato		 */
51248006Skato		for (spin=0; NOT_READY(port+lpt_status) && spin<MAX_SPIN; ++spin)
51348006Skato			DELAY(1);	/* XXX delay is NOT this accurate! */
51448006Skato		if (spin >= MAX_SPIN) {
51548006Skato			tic = 0;
51648006Skato			while (NOT_READY(port+lpt_status)) {
51748006Skato				/*
51848006Skato				 * Now sleep, every cycle a
51948006Skato				 * little longer ..
52048006Skato				 */
52148006Skato				tic = tic + tic + 1;
52248006Skato				/*
52348006Skato				 * But no more than 10 seconds. (vak)
52448006Skato				 */
52548006Skato				if (tic > MAX_SLEEP)
52648006Skato					tic = MAX_SLEEP;
527111748Sdes				err = tsleep(sc, LPPRI,
52848006Skato					"lptpoll", tic);
52948006Skato				if (err != EWOULDBLOCK) {
53048006Skato					return (err);
53148006Skato				}
53248006Skato			}
53348006Skato		}
53448006Skato
53548006Skato		/* output data */
53648006Skato		outb(port+lpt_data, ch);
53748006Skato		DELAY(1);
53848006Skato		outb(port+lpt_control, LPC_PSTB);
53948006Skato		DELAY(1);
54048006Skato		outb(port+lpt_control, LPC_NPSTB);
54148006Skato	}
54248006Skato	return(0);
54348006Skato}
54448006Skato
54548006Skato/*
54648006Skato * lptwrite --copy a line from user space to a local buffer, then call
54748006Skato * putc to get the chars moved to the output queue.
54848006Skato *
54948006Skato * Flagging of interrupted write added.
55048006Skato */
55148006Skato
55248006Skatostatic	int
553130585Sphklptwrite(struct cdev *dev, struct uio * uio, int ioflag)
55448006Skato{
55548006Skato	register unsigned n;
55648006Skato	int pl, err;
557191114Sed	struct lpt_softc *sc = dev->si_drv1;
55848006Skato
55948006Skato	if(sc->sc_flags & LP_BYPASS) {
56048006Skato		/* we can't do writes in bypass mode */
56148006Skato		return(EPERM);
56248006Skato	}
56348006Skato
56448006Skato	sc->sc_state &= ~INTERRUPTED;
56548006Skato	while ((n = min(BUFSIZE, uio->uio_resid)) != 0) {
566116431Sphk		sc->sc_cp = sc->sc_inbuf;
56748006Skato		uiomove(sc->sc_cp, n, uio);
56848006Skato		sc->sc_xfercnt = n ;
56948006Skato		while ((sc->sc_xfercnt > 0)&&(sc->sc_irq & LP_USE_IRQ)) {
57048006Skato			lprintf(("i"));
57148006Skato			/* if the printer is ready for a char, */
57248006Skato			/* give it one */
57348006Skato			if ((sc->sc_state & OBUSY) == 0){
57448006Skato				lprintf(("\nC %d. ", sc->sc_xfercnt));
57548006Skato				pl = spltty();
57680537Snyan				lpt_intr(sc);
57748006Skato				(void) splx(pl);
57848006Skato			}
57948006Skato			lprintf(("W "));
58048006Skato			if (sc->sc_state & OBUSY)
581111748Sdes				if ((err = tsleep (sc,
58248006Skato					 LPPRI|PCATCH, "lpwrite", 0))) {
58348006Skato					sc->sc_state |= INTERRUPTED;
58448006Skato					return(err);
58548006Skato				}
58648006Skato		}
58748006Skato		/* check to see if we must do a polled write */
58848006Skato		if(!(sc->sc_irq & LP_USE_IRQ) && (sc->sc_xfercnt)) {
58948006Skato			lprintf(("p"));
59048006Skato			if((err = pushbytes(sc)))
59148006Skato				return(err);
59248006Skato		}
59348006Skato	}
59448006Skato	return(0);
59548006Skato}
59648006Skato
59748006Skato/*
59848006Skato * lptintr -- handle printer interrupts which occur when the printer is
59948006Skato * ready to accept another char.
60048006Skato *
60148006Skato * do checking for interrupted write call.
60248006Skato */
60348006Skato
60448006Skatostatic void
60580537Snyanlpt_intr(void *arg)
60648006Skato{
60748006Skato}
60848006Skato
60948006Skatostatic	int
610130585Sphklptioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags, struct thread *td)
61148006Skato{
61248006Skato	int	error = 0;
613191114Sed	struct lpt_softc *sc = dev->si_drv1;
61448006Skato	u_char	old_sc_irq;	/* old printer IRQ status */
61548006Skato
61648006Skato	switch (cmd) {
61748006Skato	case LPT_IRQ :
61848006Skato		if(sc->sc_irq & LP_HAS_IRQ) {
61948006Skato			/*
62048006Skato			 * NOTE:
62148006Skato			 * If the IRQ status is changed,
62248006Skato			 * this will only be visible on the
62348006Skato			 * next open.
62448006Skato			 *
62548006Skato			 * If interrupt status changes,
62648006Skato			 * this gets syslog'd.
62748006Skato			 */
62848006Skato			old_sc_irq = sc->sc_irq;
62948006Skato			if(*(int*)data == 0)
63048006Skato				sc->sc_irq &= (~LP_ENABLE_IRQ);
63148006Skato			else
63248006Skato				sc->sc_irq |= LP_ENABLE_IRQ;
63348006Skato			if (old_sc_irq != sc->sc_irq )
634191114Sed				log(LOG_NOTICE, "%s switched to %s mode\n",
635191114Sed					devtoname(dev),
63648006Skato					(sc->sc_irq & LP_ENABLE_IRQ)?
63748006Skato					"interrupt-driven":"polled");
63848006Skato		} else /* polled port */
63948006Skato			error = EOPNOTSUPP;
64048006Skato		break;
64148006Skato	default:
64248006Skato		error = ENODEV;
64348006Skato	}
64448006Skato
64548006Skato	return(error);
64648006Skato}
647