Home | History | Annotate | Line # | Download | only in ic
lpt.c revision 1.70.10.1
      1  1.70.10.1      yamt /*	$NetBSD: lpt.c,v 1.70.10.1 2007/10/14 11:48:08 yamt Exp $	*/
      2       1.23       cgd 
      3        1.1       cgd /*
      4       1.51   mycroft  * Copyright (c) 1993, 1994 Charles M. Hannum.
      5        1.1       cgd  * Copyright (c) 1990 William F. Jolitz, TeleMuse
      6        1.1       cgd  * All rights reserved.
      7        1.1       cgd  *
      8        1.1       cgd  * Redistribution and use in source and binary forms, with or without
      9        1.1       cgd  * modification, are permitted provided that the following conditions
     10        1.1       cgd  * are met:
     11        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     12        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     13        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     15        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     16        1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     17        1.1       cgd  *    must display the following acknowledgement:
     18       1.64     perry  *	This software is a component of "386BSD" developed by
     19        1.1       cgd  *	William F. Jolitz, TeleMuse.
     20        1.1       cgd  * 4. Neither the name of the developer nor the name "386BSD"
     21        1.1       cgd  *    may be used to endorse or promote products derived from this software
     22        1.1       cgd  *    without specific prior written permission.
     23        1.1       cgd  *
     24       1.64     perry  * THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
     25       1.64     perry  * AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
     26       1.64     perry  * SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
     27       1.64     perry  * THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
     28        1.1       cgd  * NOT MAKE USE OF THIS WORK.
     29        1.1       cgd  *
     30        1.1       cgd  * FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
     31       1.64     perry  * BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
     32       1.64     perry  * REFERENCES SUCH AS THE  "PORTING UNIX TO THE 386" SERIES
     33       1.64     perry  * (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
     34       1.64     perry  * JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
     35       1.64     perry  * LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
     36       1.64     perry  * ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
     37        1.1       cgd  * OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
     38        1.1       cgd  *
     39        1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
     40        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     41        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     42        1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER BE LIABLE
     43        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     44        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     45        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     46        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     47        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     48        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     49        1.1       cgd  * SUCH DAMAGE.
     50        1.1       cgd  */
     51        1.1       cgd 
     52        1.1       cgd /*
     53       1.45        is  * Device Driver for AT style parallel printer port
     54        1.1       cgd  */
     55       1.58     lukem 
     56       1.58     lukem #include <sys/cdefs.h>
     57  1.70.10.1      yamt __KERNEL_RCSID(0, "$NetBSD: lpt.c,v 1.70.10.1 2007/10/14 11:48:08 yamt Exp $");
     58        1.1       cgd 
     59        1.9   mycroft #include <sys/param.h>
     60        1.9   mycroft #include <sys/systm.h>
     61        1.9   mycroft #include <sys/proc.h>
     62        1.9   mycroft #include <sys/user.h>
     63       1.47   thorpej #include <sys/malloc.h>
     64        1.9   mycroft #include <sys/kernel.h>
     65        1.9   mycroft #include <sys/ioctl.h>
     66        1.9   mycroft #include <sys/uio.h>
     67       1.11   mycroft #include <sys/device.h>
     68       1.38  christos #include <sys/conf.h>
     69       1.11   mycroft #include <sys/syslog.h>
     70  1.70.10.1      yamt #include <sys/intr.h>
     71        1.1       cgd 
     72       1.39   mycroft #include <machine/bus.h>
     73        1.9   mycroft 
     74       1.45        is #include <dev/ic/lptreg.h>
     75       1.45        is #include <dev/ic/lptvar.h>
     76        1.1       cgd 
     77       1.11   mycroft #define	TIMEOUT		hz*16	/* wait up to 16 seconds for a ready */
     78       1.11   mycroft #define	STEP		hz/4
     79       1.11   mycroft 
     80       1.11   mycroft #define	LPTPRI		(PZERO+8)
     81       1.11   mycroft #define	LPT_BSIZE	1024
     82        1.1       cgd 
     83       1.45        is #define LPTDEBUG
     84       1.45        is 
     85       1.44     mikel #ifndef LPTDEBUG
     86       1.38  christos #define LPRINTF(a)
     87        1.1       cgd #else
     88       1.44     mikel #define LPRINTF(a)	if (lptdebug) printf a
     89       1.44     mikel int lptdebug = 0;
     90        1.1       cgd #endif
     91        1.1       cgd 
     92       1.59   gehenna extern struct cfdriver lpt_cd;
     93       1.38  christos 
     94       1.59   gehenna dev_type_open(lptopen);
     95       1.59   gehenna dev_type_close(lptclose);
     96       1.59   gehenna dev_type_write(lptwrite);
     97       1.59   gehenna dev_type_ioctl(lptioctl);
     98       1.59   gehenna 
     99       1.59   gehenna const struct cdevsw lpt_cdevsw = {
    100       1.59   gehenna 	lptopen, lptclose, noread, lptwrite, lptioctl,
    101       1.66  christos 	nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
    102       1.59   gehenna };
    103        1.1       cgd 
    104       1.11   mycroft #define	LPTUNIT(s)	(minor(s) & 0x1f)
    105       1.11   mycroft #define	LPTFLAGS(s)	(minor(s) & 0xe0)
    106        1.1       cgd 
    107  1.70.10.1      yamt static void	lptsoftintr(void *);
    108  1.70.10.1      yamt 
    109       1.15   mycroft void
    110       1.45        is lpt_attach_subr(sc)
    111       1.45        is 	struct lpt_softc *sc;
    112        1.1       cgd {
    113       1.42   thorpej 	bus_space_tag_t iot;
    114       1.42   thorpej 	bus_space_handle_t ioh;
    115       1.15   mycroft 
    116        1.6   mycroft 	sc->sc_state = 0;
    117       1.32       cgd 
    118       1.45        is 	iot = sc->sc_iot;
    119       1.45        is 	ioh = sc->sc_ioh;
    120       1.32       cgd 
    121       1.42   thorpej 	bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
    122       1.49       cgd 
    123       1.70        ad 	callout_init(&sc->sc_wakeup_ch, 0);
    124  1.70.10.1      yamt 	sc->sc_sih = softint_establish(SOFTINT_SERIAL, lptsoftintr, sc);
    125       1.56   thorpej 
    126       1.49       cgd 	sc->sc_dev_ok = 1;
    127        1.1       cgd }
    128        1.1       cgd 
    129        1.1       cgd /*
    130       1.11   mycroft  * Reset the printer, then wait until it's selected and not busy.
    131        1.1       cgd  */
    132       1.11   mycroft int
    133       1.68  christos lptopen(dev_t dev, int flag, int mode, struct lwp *l)
    134        1.1       cgd {
    135       1.11   mycroft 	u_char flags = LPTFLAGS(dev);
    136       1.11   mycroft 	struct lpt_softc *sc;
    137       1.42   thorpej 	bus_space_tag_t iot;
    138       1.42   thorpej 	bus_space_handle_t ioh;
    139       1.11   mycroft 	u_char control;
    140       1.11   mycroft 	int error;
    141       1.11   mycroft 	int spin;
    142       1.11   mycroft 
    143       1.57   thorpej 	sc = device_lookup(&lpt_cd, LPTUNIT(dev));
    144       1.49       cgd 	if (!sc || !sc->sc_dev_ok)
    145       1.11   mycroft 		return ENXIO;
    146       1.11   mycroft 
    147       1.45        is #if 0	/* XXX what to do? */
    148       1.25   mycroft 	if (sc->sc_irq == IRQUNK && (flags & LPT_NOINTR) == 0)
    149       1.11   mycroft 		return ENXIO;
    150       1.45        is #endif
    151       1.11   mycroft 
    152       1.11   mycroft #ifdef DIAGNOSTIC
    153       1.11   mycroft 	if (sc->sc_state)
    154       1.41  christos 		printf("%s: stat=0x%x not zero\n", sc->sc_dev.dv_xname,
    155       1.11   mycroft 		    sc->sc_state);
    156       1.11   mycroft #endif
    157       1.11   mycroft 
    158       1.11   mycroft 	if (sc->sc_state)
    159       1.11   mycroft 		return EBUSY;
    160        1.1       cgd 
    161       1.11   mycroft 	sc->sc_state = LPT_INIT;
    162       1.11   mycroft 	sc->sc_flags = flags;
    163       1.44     mikel 	LPRINTF(("%s: open: flags=0x%x\n", sc->sc_dev.dv_xname,
    164       1.44     mikel 	    (unsigned)flags));
    165       1.42   thorpej 	iot = sc->sc_iot;
    166       1.32       cgd 	ioh = sc->sc_ioh;
    167       1.11   mycroft 
    168       1.11   mycroft 	if ((flags & LPT_NOPRIME) == 0) {
    169       1.11   mycroft 		/* assert INIT for 100 usec to start up printer */
    170       1.42   thorpej 		bus_space_write_1(iot, ioh, lpt_control, LPC_SELECT);
    171       1.14   mycroft 		delay(100);
    172        1.1       cgd 	}
    173       1.11   mycroft 
    174       1.11   mycroft 	control = LPC_SELECT | LPC_NINIT;
    175       1.42   thorpej 	bus_space_write_1(iot, ioh, lpt_control, control);
    176        1.1       cgd 
    177        1.1       cgd 	/* wait till ready (printer running diagnostics) */
    178       1.25   mycroft 	for (spin = 0; NOT_READY_ERR(); spin += STEP) {
    179       1.11   mycroft 		if (spin >= TIMEOUT) {
    180        1.1       cgd 			sc->sc_state = 0;
    181       1.11   mycroft 			return EBUSY;
    182        1.1       cgd 		}
    183        1.1       cgd 
    184        1.1       cgd 		/* wait 1/4 second, give up if we get a signal */
    185       1.69  christos 		error = tsleep((void *)sc, LPTPRI | PCATCH, "lptopen", STEP);
    186       1.38  christos 		if (error != EWOULDBLOCK) {
    187        1.1       cgd 			sc->sc_state = 0;
    188       1.11   mycroft 			return error;
    189        1.1       cgd 		}
    190        1.1       cgd 	}
    191        1.1       cgd 
    192       1.11   mycroft 	if ((flags & LPT_NOINTR) == 0)
    193       1.11   mycroft 		control |= LPC_IENABLE;
    194       1.11   mycroft 	if (flags & LPT_AUTOLF)
    195       1.11   mycroft 		control |= LPC_AUTOLF;
    196       1.11   mycroft 	sc->sc_control = control;
    197       1.42   thorpej 	bus_space_write_1(iot, ioh, lpt_control, control);
    198       1.11   mycroft 
    199       1.47   thorpej 	sc->sc_inbuf = malloc(LPT_BSIZE, M_DEVBUF, M_WAITOK);
    200       1.11   mycroft 	sc->sc_count = 0;
    201       1.11   mycroft 	sc->sc_state = LPT_OPEN;
    202       1.25   mycroft 
    203       1.25   mycroft 	if ((sc->sc_flags & LPT_NOINTR) == 0)
    204       1.25   mycroft 		lptwakeup(sc);
    205       1.11   mycroft 
    206       1.38  christos 	LPRINTF(("%s: opened\n", sc->sc_dev.dv_xname));
    207       1.11   mycroft 	return 0;
    208        1.1       cgd }
    209        1.1       cgd 
    210       1.11   mycroft int
    211       1.46        is lptnotready(status, sc)
    212       1.11   mycroft 	u_char status;
    213        1.1       cgd 	struct lpt_softc *sc;
    214       1.11   mycroft {
    215       1.21   mycroft 	u_char new;
    216       1.21   mycroft 
    217       1.25   mycroft 	status = (status ^ LPS_INVERT) & LPS_MASK;
    218       1.21   mycroft 	new = status & ~sc->sc_laststatus;
    219       1.21   mycroft 	sc->sc_laststatus = status;
    220        1.1       cgd 
    221       1.52     perry 	if (sc->sc_state & LPT_OPEN) {
    222       1.52     perry 		if (new & LPS_SELECT)
    223       1.52     perry 			log(LOG_NOTICE,
    224       1.52     perry 			    "%s: offline\n", sc->sc_dev.dv_xname);
    225       1.52     perry 		else if (new & LPS_NOPAPER)
    226       1.52     perry 			log(LOG_NOTICE,
    227       1.52     perry 			    "%s: out of paper\n", sc->sc_dev.dv_xname);
    228       1.52     perry 		else if (new & LPS_NERR)
    229       1.52     perry 			log(LOG_NOTICE,
    230       1.52     perry 			    "%s: output error\n", sc->sc_dev.dv_xname);
    231       1.52     perry 	}
    232       1.64     perry 
    233       1.25   mycroft 	return status;
    234       1.11   mycroft }
    235       1.11   mycroft 
    236       1.11   mycroft void
    237       1.25   mycroft lptwakeup(arg)
    238       1.18       cgd 	void *arg;
    239       1.18       cgd {
    240       1.25   mycroft 	struct lpt_softc *sc = arg;
    241       1.11   mycroft 	int s;
    242       1.11   mycroft 
    243       1.50        is 	s = spllpt();
    244       1.16   mycroft 	lptintr(sc);
    245       1.13   mycroft 	splx(s);
    246       1.11   mycroft 
    247       1.56   thorpej 	callout_reset(&sc->sc_wakeup_ch, STEP, lptwakeup, sc);
    248        1.1       cgd }
    249        1.1       cgd 
    250        1.1       cgd /*
    251       1.11   mycroft  * Close the device, and free the local line buffer.
    252        1.1       cgd  */
    253       1.36   mycroft int
    254       1.68  christos lptclose(dev_t dev, int flag, int mode,
    255       1.68  christos     struct lwp *l)
    256        1.1       cgd {
    257       1.57   thorpej 	struct lpt_softc *sc = device_lookup(&lpt_cd, LPTUNIT(dev));
    258       1.42   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    259       1.42   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    260        1.1       cgd 
    261       1.11   mycroft 	if (sc->sc_count)
    262       1.46        is 		(void) lptpushbytes(sc);
    263        1.1       cgd 
    264       1.25   mycroft 	if ((sc->sc_flags & LPT_NOINTR) == 0)
    265       1.56   thorpej 		callout_stop(&sc->sc_wakeup_ch);
    266       1.25   mycroft 
    267       1.42   thorpej 	bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
    268        1.1       cgd 	sc->sc_state = 0;
    269       1.42   thorpej 	bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
    270       1.47   thorpej 	free(sc->sc_inbuf, M_DEVBUF);
    271       1.11   mycroft 
    272       1.38  christos 	LPRINTF(("%s: closed\n", sc->sc_dev.dv_xname));
    273       1.11   mycroft 	return 0;
    274       1.11   mycroft }
    275       1.11   mycroft 
    276       1.11   mycroft int
    277       1.46        is lptpushbytes(sc)
    278       1.11   mycroft 	struct lpt_softc *sc;
    279       1.11   mycroft {
    280       1.42   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    281       1.42   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    282       1.11   mycroft 	int error;
    283       1.11   mycroft 
    284       1.11   mycroft 	if (sc->sc_flags & LPT_NOINTR) {
    285       1.11   mycroft 		int spin, tic;
    286       1.11   mycroft 		u_char control = sc->sc_control;
    287       1.11   mycroft 
    288       1.11   mycroft 		while (sc->sc_count > 0) {
    289       1.11   mycroft 			spin = 0;
    290       1.25   mycroft 			while (NOT_READY()) {
    291       1.25   mycroft 				if (++spin < sc->sc_spinmax)
    292       1.25   mycroft 					continue;
    293       1.11   mycroft 				tic = 0;
    294       1.12   mycroft 				/* adapt busy-wait algorithm */
    295       1.12   mycroft 				sc->sc_spinmax++;
    296       1.25   mycroft 				while (NOT_READY_ERR()) {
    297       1.11   mycroft 					/* exponential backoff */
    298       1.11   mycroft 					tic = tic + tic + 1;
    299       1.11   mycroft 					if (tic > TIMEOUT)
    300       1.11   mycroft 						tic = TIMEOUT;
    301       1.69  christos 					error = tsleep((void *)sc,
    302       1.11   mycroft 					    LPTPRI | PCATCH, "lptpsh", tic);
    303       1.11   mycroft 					if (error != EWOULDBLOCK)
    304       1.11   mycroft 						return error;
    305       1.11   mycroft 				}
    306       1.25   mycroft 				break;
    307       1.11   mycroft 			}
    308       1.11   mycroft 
    309       1.42   thorpej 			bus_space_write_1(iot, ioh, lpt_data, *sc->sc_cp++);
    310       1.61     rafal 			DELAY(1);
    311       1.44     mikel 			bus_space_write_1(iot, ioh, lpt_control,
    312       1.44     mikel 			    control | LPC_STROBE);
    313       1.61     rafal 			DELAY(1);
    314       1.11   mycroft 			sc->sc_count--;
    315       1.42   thorpej 			bus_space_write_1(iot, ioh, lpt_control, control);
    316       1.61     rafal 			DELAY(1);
    317       1.11   mycroft 
    318       1.11   mycroft 			/* adapt busy-wait algorithm */
    319       1.25   mycroft 			if (spin*2 + 16 < sc->sc_spinmax)
    320       1.12   mycroft 				sc->sc_spinmax--;
    321       1.11   mycroft 		}
    322       1.11   mycroft 	} else {
    323       1.11   mycroft 		int s;
    324       1.11   mycroft 
    325       1.11   mycroft 		while (sc->sc_count > 0) {
    326       1.11   mycroft 			/* if the printer is ready for a char, give it one */
    327       1.11   mycroft 			if ((sc->sc_state & LPT_OBUSY) == 0) {
    328       1.53   thorpej 				LPRINTF(("%s: write %lu\n", sc->sc_dev.dv_xname,
    329       1.53   thorpej 				    (u_long)sc->sc_count));
    330       1.50        is 				s = spllpt();
    331       1.16   mycroft 				(void) lptintr(sc);
    332       1.11   mycroft 				splx(s);
    333       1.11   mycroft 			}
    334       1.69  christos 			error = tsleep((void *)sc, LPTPRI | PCATCH,
    335       1.38  christos 			    "lptwrite2", 0);
    336       1.38  christos 			if (error)
    337       1.11   mycroft 				return error;
    338       1.11   mycroft 		}
    339       1.11   mycroft 	}
    340       1.11   mycroft 	return 0;
    341        1.1       cgd }
    342        1.1       cgd 
    343       1.64     perry /*
    344       1.11   mycroft  * Copy a line from user space to a local buffer, then call putc to get the
    345       1.11   mycroft  * chars moved to the output queue.
    346        1.1       cgd  */
    347       1.36   mycroft int
    348       1.68  christos lptwrite(dev_t dev, struct uio *uio, int flags)
    349        1.1       cgd {
    350       1.57   thorpej 	struct lpt_softc *sc = device_lookup(&lpt_cd, LPTUNIT(dev));
    351       1.11   mycroft 	size_t n;
    352       1.11   mycroft 	int error = 0;
    353       1.11   mycroft 
    354       1.38  christos 	while ((n = min(LPT_BSIZE, uio->uio_resid)) != 0) {
    355       1.47   thorpej 		uiomove(sc->sc_cp = sc->sc_inbuf, n, uio);
    356       1.11   mycroft 		sc->sc_count = n;
    357       1.46        is 		error = lptpushbytes(sc);
    358       1.11   mycroft 		if (error) {
    359       1.11   mycroft 			/*
    360       1.11   mycroft 			 * Return accurate residual if interrupted or timed
    361       1.11   mycroft 			 * out.
    362       1.11   mycroft 			 */
    363       1.11   mycroft 			uio->uio_resid += sc->sc_count;
    364       1.11   mycroft 			sc->sc_count = 0;
    365       1.11   mycroft 			return error;
    366        1.1       cgd 		}
    367        1.1       cgd 	}
    368       1.11   mycroft 	return 0;
    369        1.1       cgd }
    370        1.1       cgd 
    371        1.1       cgd /*
    372       1.11   mycroft  * Handle printer interrupts which occur when the printer is ready to accept
    373       1.11   mycroft  * another char.
    374        1.1       cgd  */
    375       1.11   mycroft int
    376       1.30       cgd lptintr(arg)
    377       1.30       cgd 	void *arg;
    378        1.1       cgd {
    379       1.30       cgd 	struct lpt_softc *sc = arg;
    380       1.42   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    381       1.42   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    382        1.1       cgd 
    383       1.13   mycroft #if 0
    384       1.11   mycroft 	if ((sc->sc_state & LPT_OPEN) == 0)
    385       1.11   mycroft 		return 0;
    386       1.13   mycroft #endif
    387        1.6   mycroft 
    388       1.11   mycroft 	/* is printer online and ready for output */
    389       1.25   mycroft 	if (NOT_READY() && NOT_READY_ERR())
    390       1.11   mycroft 		return 0;
    391        1.6   mycroft 
    392       1.11   mycroft 	if (sc->sc_count) {
    393       1.13   mycroft 		u_char control = sc->sc_control;
    394       1.11   mycroft 		/* send char */
    395       1.42   thorpej 		bus_space_write_1(iot, ioh, lpt_data, *sc->sc_cp++);
    396       1.55     perry 		DELAY(1);
    397       1.42   thorpej 		bus_space_write_1(iot, ioh, lpt_control, control | LPC_STROBE);
    398       1.55     perry 		DELAY(1);
    399       1.13   mycroft 		sc->sc_count--;
    400       1.42   thorpej 		bus_space_write_1(iot, ioh, lpt_control, control);
    401       1.61     rafal 		DELAY(1);
    402       1.11   mycroft 		sc->sc_state |= LPT_OBUSY;
    403       1.11   mycroft 	} else
    404       1.11   mycroft 		sc->sc_state &= ~LPT_OBUSY;
    405        1.1       cgd 
    406       1.11   mycroft 	if (sc->sc_count == 0) {
    407        1.1       cgd 		/* none, wake up the top half to get more */
    408  1.70.10.1      yamt 		softint_schedule(sc->sc_sih);
    409       1.11   mycroft 	}
    410       1.11   mycroft 
    411       1.11   mycroft 	return 1;
    412        1.1       cgd }
    413        1.1       cgd 
    414  1.70.10.1      yamt static void
    415  1.70.10.1      yamt lptsoftintr(void *cookie)
    416  1.70.10.1      yamt {
    417  1.70.10.1      yamt 
    418  1.70.10.1      yamt 	wakeup(cookie);
    419  1.70.10.1      yamt }
    420  1.70.10.1      yamt 
    421        1.2       cgd int
    422       1.69  christos lptioctl(dev_t dev, u_long cmd, void *data,
    423       1.68  christos     int flag, struct lwp *l)
    424        1.2       cgd {
    425       1.67  christos 	return ENODEV;
    426        1.2       cgd }
    427