2008-03-07 20:15:51 +03:00
|
|
|
/* $NetBSD: lpt.c,v 1.74 2008/03/07 17:15:51 cube Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1998-08-15 07:02:31 +04:00
|
|
|
* Copyright (c) 1993, 1994 Charles M. Hannum.
|
1993-03-21 12:45:37 +03:00
|
|
|
* Copyright (c) 1990 William F. Jolitz, TeleMuse
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
2005-02-27 03:26:58 +03:00
|
|
|
* This software is a component of "386BSD" developed by
|
1993-03-21 12:45:37 +03:00
|
|
|
* William F. Jolitz, TeleMuse.
|
|
|
|
* 4. Neither the name of the developer nor the name "386BSD"
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
2005-02-27 03:26:58 +03:00
|
|
|
* THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
|
|
|
|
* AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
|
|
|
|
* SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
|
|
|
|
* THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
|
1993-03-21 12:45:37 +03:00
|
|
|
* NOT MAKE USE OF THIS WORK.
|
|
|
|
*
|
|
|
|
* FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
|
2005-02-27 03:26:58 +03:00
|
|
|
* BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
|
|
|
|
* REFERENCES SUCH AS THE "PORTING UNIX TO THE 386" SERIES
|
|
|
|
* (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
|
|
|
|
* JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
|
|
|
|
* LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
|
|
|
|
* ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
|
1993-03-21 12:45:37 +03:00
|
|
|
* OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE DEVELOPER BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1997-09-28 02:44:11 +04:00
|
|
|
* Device Driver for AT style parallel printer port
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 16:14:31 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-03-07 20:15:51 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: lpt.c,v 1.74 2008/03/07 17:15:51 cube Exp $");
|
2001-11-13 16:14:31 +03:00
|
|
|
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/user.h>
|
1997-12-07 19:09:36 +03:00
|
|
|
#include <sys/malloc.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/uio.h>
|
1994-02-18 22:50:56 +03:00
|
|
|
#include <sys/device.h>
|
1996-04-30 00:30:48 +04:00
|
|
|
#include <sys/conf.h>
|
1994-02-18 22:50:56 +03:00
|
|
|
#include <sys/syslog.h>
|
2007-10-09 16:45:27 +04:00
|
|
|
#include <sys/intr.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/bus.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
|
1997-09-28 02:44:11 +04:00
|
|
|
#include <dev/ic/lptreg.h>
|
|
|
|
#include <dev/ic/lptvar.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
#define TIMEOUT hz*16 /* wait up to 16 seconds for a ready */
|
|
|
|
#define STEP hz/4
|
|
|
|
|
|
|
|
#define LPTPRI (PZERO+8)
|
|
|
|
#define LPT_BSIZE 1024
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-09-28 02:44:11 +04:00
|
|
|
#define LPTDEBUG
|
|
|
|
|
1997-09-02 05:37:19 +04:00
|
|
|
#ifndef LPTDEBUG
|
1996-04-30 00:30:48 +04:00
|
|
|
#define LPRINTF(a)
|
1993-03-21 12:45:37 +03:00
|
|
|
#else
|
1997-09-02 05:37:19 +04:00
|
|
|
#define LPRINTF(a) if (lptdebug) printf a
|
|
|
|
int lptdebug = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif
|
|
|
|
|
1998-01-12 12:23:08 +03:00
|
|
|
extern struct cfdriver lpt_cd;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(lptopen);
|
|
|
|
dev_type_close(lptclose);
|
|
|
|
dev_type_write(lptwrite);
|
|
|
|
dev_type_ioctl(lptioctl);
|
|
|
|
|
|
|
|
const struct cdevsw lpt_cdevsw = {
|
|
|
|
lptopen, lptclose, noread, lptwrite, lptioctl,
|
2006-09-02 10:54:18 +04:00
|
|
|
nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
#define LPTUNIT(s) (minor(s) & 0x1f)
|
|
|
|
#define LPTFLAGS(s) (minor(s) & 0xe0)
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-10-09 16:45:27 +04:00
|
|
|
static void lptsoftintr(void *);
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
void
|
1997-09-28 02:44:11 +04:00
|
|
|
lpt_attach_subr(sc)
|
|
|
|
struct lpt_softc *sc;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot;
|
|
|
|
bus_space_handle_t ioh;
|
1994-02-18 22:50:56 +03:00
|
|
|
|
1993-06-15 05:50:32 +04:00
|
|
|
sc->sc_state = 0;
|
1996-03-09 01:17:58 +03:00
|
|
|
|
1997-09-28 02:44:11 +04:00
|
|
|
iot = sc->sc_iot;
|
|
|
|
ioh = sc->sc_ioh;
|
1996-03-09 01:17:58 +03:00
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
|
1998-02-03 01:54:55 +03:00
|
|
|
|
2007-07-10 00:51:58 +04:00
|
|
|
callout_init(&sc->sc_wakeup_ch, 0);
|
2007-10-09 16:45:27 +04:00
|
|
|
sc->sc_sih = softint_establish(SOFTINT_SERIAL, lptsoftintr, sc);
|
2000-03-23 10:01:25 +03:00
|
|
|
|
1998-02-03 01:54:55 +03:00
|
|
|
sc->sc_dev_ok = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2008-02-22 23:53:58 +03:00
|
|
|
int
|
|
|
|
lpt_detach_subr(device_t self, int flags)
|
|
|
|
{
|
|
|
|
struct lpt_softc *sc = device_private(self);
|
|
|
|
|
|
|
|
sc->sc_dev_ok = 0;
|
|
|
|
softint_disestablish(sc->sc_sih);
|
|
|
|
callout_destroy(&sc->sc_wakeup_ch);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-02-18 22:50:56 +03:00
|
|
|
* Reset the printer, then wait until it's selected and not busy.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-02-18 22:50:56 +03:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
lptopen(dev_t dev, int flag, int mode, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-02-18 22:50:56 +03:00
|
|
|
u_char flags = LPTFLAGS(dev);
|
|
|
|
struct lpt_softc *sc;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot;
|
|
|
|
bus_space_handle_t ioh;
|
1994-02-18 22:50:56 +03:00
|
|
|
u_char control;
|
|
|
|
int error;
|
|
|
|
int spin;
|
|
|
|
|
2008-03-07 20:15:51 +03:00
|
|
|
sc = device_private(device_lookup(&lpt_cd, LPTUNIT(dev)));
|
1998-02-03 01:54:55 +03:00
|
|
|
if (!sc || !sc->sc_dev_ok)
|
1994-02-18 22:50:56 +03:00
|
|
|
return ENXIO;
|
|
|
|
|
1997-09-28 02:44:11 +04:00
|
|
|
#if 0 /* XXX what to do? */
|
1994-11-19 00:57:40 +03:00
|
|
|
if (sc->sc_irq == IRQUNK && (flags & LPT_NOINTR) == 0)
|
1994-02-18 22:50:56 +03:00
|
|
|
return ENXIO;
|
1997-09-28 02:44:11 +04:00
|
|
|
#endif
|
1994-02-18 22:50:56 +03:00
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (sc->sc_state)
|
2008-03-07 20:15:51 +03:00
|
|
|
aprint_verbose_dev(sc->sc_dev, "stat=0x%x not zero\n",
|
1994-02-18 22:50:56 +03:00
|
|
|
sc->sc_state);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (sc->sc_state)
|
|
|
|
return EBUSY;
|
|
|
|
|
|
|
|
sc->sc_state = LPT_INIT;
|
|
|
|
sc->sc_flags = flags;
|
2008-03-07 20:15:51 +03:00
|
|
|
LPRINTF(("%s: open: flags=0x%x\n", device_xname(sc->sc_dev),
|
1997-09-02 05:37:19 +04:00
|
|
|
(unsigned)flags));
|
1996-10-22 02:34:38 +04:00
|
|
|
iot = sc->sc_iot;
|
1996-03-09 01:17:58 +03:00
|
|
|
ioh = sc->sc_ioh;
|
1994-02-18 22:50:56 +03:00
|
|
|
|
|
|
|
if ((flags & LPT_NOPRIME) == 0) {
|
|
|
|
/* assert INIT for 100 usec to start up printer */
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, LPC_SELECT);
|
1994-03-06 20:18:43 +03:00
|
|
|
delay(100);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-02-18 22:50:56 +03:00
|
|
|
|
|
|
|
control = LPC_SELECT | LPC_NINIT;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, control);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* wait till ready (printer running diagnostics) */
|
1994-11-19 00:57:40 +03:00
|
|
|
for (spin = 0; NOT_READY_ERR(); spin += STEP) {
|
1994-02-18 22:50:56 +03:00
|
|
|
if (spin >= TIMEOUT) {
|
1993-03-21 12:45:37 +03:00
|
|
|
sc->sc_state = 0;
|
1994-02-18 22:50:56 +03:00
|
|
|
return EBUSY;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* wait 1/4 second, give up if we get a signal */
|
2007-03-04 08:59:00 +03:00
|
|
|
error = tsleep((void *)sc, LPTPRI | PCATCH, "lptopen", STEP);
|
1996-04-30 00:30:48 +04:00
|
|
|
if (error != EWOULDBLOCK) {
|
1993-03-21 12:45:37 +03:00
|
|
|
sc->sc_state = 0;
|
1994-02-18 22:50:56 +03:00
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
if ((flags & LPT_NOINTR) == 0)
|
|
|
|
control |= LPC_IENABLE;
|
|
|
|
if (flags & LPT_AUTOLF)
|
|
|
|
control |= LPC_AUTOLF;
|
|
|
|
sc->sc_control = control;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, control);
|
1994-02-18 22:50:56 +03:00
|
|
|
|
1997-12-07 19:09:36 +03:00
|
|
|
sc->sc_inbuf = malloc(LPT_BSIZE, M_DEVBUF, M_WAITOK);
|
1994-02-18 22:50:56 +03:00
|
|
|
sc->sc_count = 0;
|
|
|
|
sc->sc_state = LPT_OPEN;
|
1994-11-19 00:57:40 +03:00
|
|
|
|
|
|
|
if ((sc->sc_flags & LPT_NOINTR) == 0)
|
|
|
|
lptwakeup(sc);
|
1994-02-18 22:50:56 +03:00
|
|
|
|
2008-03-07 20:15:51 +03:00
|
|
|
LPRINTF(("%s: opened\n", device_xname(sc->sc_dev)));
|
1994-02-18 22:50:56 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
int
|
1997-10-14 19:50:15 +04:00
|
|
|
lptnotready(status, sc)
|
1994-02-18 22:50:56 +03:00
|
|
|
u_char status;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct lpt_softc *sc;
|
1994-02-18 22:50:56 +03:00
|
|
|
{
|
1994-05-27 12:54:52 +04:00
|
|
|
u_char new;
|
|
|
|
|
1994-11-19 00:57:40 +03:00
|
|
|
status = (status ^ LPS_INVERT) & LPS_MASK;
|
1994-05-27 12:54:52 +04:00
|
|
|
new = status & ~sc->sc_laststatus;
|
|
|
|
sc->sc_laststatus = status;
|
1994-02-18 22:50:56 +03:00
|
|
|
|
1998-10-15 00:09:06 +04:00
|
|
|
if (sc->sc_state & LPT_OPEN) {
|
|
|
|
if (new & LPS_SELECT)
|
|
|
|
log(LOG_NOTICE,
|
2008-03-07 20:15:51 +03:00
|
|
|
"%s: offline\n", device_xname(sc->sc_dev));
|
1998-10-15 00:09:06 +04:00
|
|
|
else if (new & LPS_NOPAPER)
|
|
|
|
log(LOG_NOTICE,
|
2008-03-07 20:15:51 +03:00
|
|
|
"%s: out of paper\n", device_xname(sc->sc_dev));
|
1998-10-15 00:09:06 +04:00
|
|
|
else if (new & LPS_NERR)
|
|
|
|
log(LOG_NOTICE,
|
2008-03-07 20:15:51 +03:00
|
|
|
"%s: output error\n", device_xname(sc->sc_dev));
|
1998-10-15 00:09:06 +04:00
|
|
|
}
|
2005-02-27 03:26:58 +03:00
|
|
|
|
1994-11-19 00:57:40 +03:00
|
|
|
return status;
|
1994-02-18 22:50:56 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
void
|
1994-11-19 00:57:40 +03:00
|
|
|
lptwakeup(arg)
|
1994-05-05 09:35:42 +04:00
|
|
|
void *arg;
|
1994-02-18 22:50:56 +03:00
|
|
|
{
|
1994-11-19 00:57:40 +03:00
|
|
|
struct lpt_softc *sc = arg;
|
1994-02-18 22:50:56 +03:00
|
|
|
int s;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-07-19 01:27:25 +04:00
|
|
|
s = spllpt();
|
1994-04-07 10:48:19 +04:00
|
|
|
lptintr(sc);
|
1994-02-19 06:36:12 +03:00
|
|
|
splx(s);
|
1994-02-18 22:50:56 +03:00
|
|
|
|
2000-03-23 10:01:25 +03:00
|
|
|
callout_reset(&sc->sc_wakeup_ch, STEP, lptwakeup, sc);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-02-18 22:50:56 +03:00
|
|
|
* Close the device, and free the local line buffer.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1996-04-10 23:03:46 +04:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
lptclose(dev_t dev, int flag, int mode,
|
|
|
|
struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-03-07 20:15:51 +03:00
|
|
|
struct lpt_softc *sc =
|
|
|
|
device_private(device_lookup(&lpt_cd, LPTUNIT(dev)));
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = sc->sc_iot;
|
|
|
|
bus_space_handle_t ioh = sc->sc_ioh;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
if (sc->sc_count)
|
1997-10-14 19:50:15 +04:00
|
|
|
(void) lptpushbytes(sc);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-11-19 00:57:40 +03:00
|
|
|
if ((sc->sc_flags & LPT_NOINTR) == 0)
|
2000-03-23 10:01:25 +03:00
|
|
|
callout_stop(&sc->sc_wakeup_ch);
|
1994-11-19 00:57:40 +03:00
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
|
1993-03-21 12:45:37 +03:00
|
|
|
sc->sc_state = 0;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, LPC_NINIT);
|
1997-12-07 19:09:36 +03:00
|
|
|
free(sc->sc_inbuf, M_DEVBUF);
|
1994-02-18 22:50:56 +03:00
|
|
|
|
2008-03-07 20:15:51 +03:00
|
|
|
LPRINTF(("%s: closed\n", device_xname(sc->sc_dev)));
|
1994-02-18 22:50:56 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1997-10-14 19:50:15 +04:00
|
|
|
lptpushbytes(sc)
|
1994-02-18 22:50:56 +03:00
|
|
|
struct lpt_softc *sc;
|
|
|
|
{
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = sc->sc_iot;
|
|
|
|
bus_space_handle_t ioh = sc->sc_ioh;
|
1994-02-18 22:50:56 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (sc->sc_flags & LPT_NOINTR) {
|
|
|
|
int spin, tic;
|
|
|
|
u_char control = sc->sc_control;
|
|
|
|
|
|
|
|
while (sc->sc_count > 0) {
|
|
|
|
spin = 0;
|
1994-11-19 00:57:40 +03:00
|
|
|
while (NOT_READY()) {
|
|
|
|
if (++spin < sc->sc_spinmax)
|
|
|
|
continue;
|
1994-02-18 22:50:56 +03:00
|
|
|
tic = 0;
|
1994-02-19 05:43:53 +03:00
|
|
|
/* adapt busy-wait algorithm */
|
|
|
|
sc->sc_spinmax++;
|
1994-11-19 00:57:40 +03:00
|
|
|
while (NOT_READY_ERR()) {
|
1994-02-18 22:50:56 +03:00
|
|
|
/* exponential backoff */
|
|
|
|
tic = tic + tic + 1;
|
|
|
|
if (tic > TIMEOUT)
|
|
|
|
tic = TIMEOUT;
|
2007-03-04 08:59:00 +03:00
|
|
|
error = tsleep((void *)sc,
|
1994-02-18 22:50:56 +03:00
|
|
|
LPTPRI | PCATCH, "lptpsh", tic);
|
|
|
|
if (error != EWOULDBLOCK)
|
|
|
|
return error;
|
|
|
|
}
|
1994-11-19 00:57:40 +03:00
|
|
|
break;
|
1994-02-18 22:50:56 +03:00
|
|
|
}
|
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_data, *sc->sc_cp++);
|
2002-12-10 10:19:25 +03:00
|
|
|
DELAY(1);
|
1997-09-02 05:37:19 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control,
|
|
|
|
control | LPC_STROBE);
|
2002-12-10 10:19:25 +03:00
|
|
|
DELAY(1);
|
1994-02-18 22:50:56 +03:00
|
|
|
sc->sc_count--;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, control);
|
2002-12-10 10:19:25 +03:00
|
|
|
DELAY(1);
|
1994-02-18 22:50:56 +03:00
|
|
|
|
|
|
|
/* adapt busy-wait algorithm */
|
1994-11-19 00:57:40 +03:00
|
|
|
if (spin*2 + 16 < sc->sc_spinmax)
|
1994-02-19 05:43:53 +03:00
|
|
|
sc->sc_spinmax--;
|
1994-02-18 22:50:56 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int s;
|
|
|
|
|
|
|
|
while (sc->sc_count > 0) {
|
|
|
|
/* if the printer is ready for a char, give it one */
|
|
|
|
if ((sc->sc_state & LPT_OBUSY) == 0) {
|
2008-03-07 20:15:51 +03:00
|
|
|
LPRINTF(("%s: write %lu\n",
|
|
|
|
device_xname(sc->sc_dev),
|
1999-02-12 04:51:37 +03:00
|
|
|
(u_long)sc->sc_count));
|
1998-07-19 01:27:25 +04:00
|
|
|
s = spllpt();
|
1994-04-07 10:48:19 +04:00
|
|
|
(void) lptintr(sc);
|
1994-02-18 22:50:56 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
2007-03-04 08:59:00 +03:00
|
|
|
error = tsleep((void *)sc, LPTPRI | PCATCH,
|
1996-04-30 00:30:48 +04:00
|
|
|
"lptwrite2", 0);
|
|
|
|
if (error)
|
1994-02-18 22:50:56 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
/*
|
1994-02-18 22:50:56 +03:00
|
|
|
* Copy a line from user space to a local buffer, then call putc to get the
|
|
|
|
* chars moved to the output queue.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1996-04-10 23:03:46 +04:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
lptwrite(dev_t dev, struct uio *uio, int flags)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2008-03-07 20:15:51 +03:00
|
|
|
struct lpt_softc *sc =
|
|
|
|
device_private(device_lookup(&lpt_cd, LPTUNIT(dev)));
|
1994-02-18 22:50:56 +03:00
|
|
|
size_t n;
|
|
|
|
int error = 0;
|
|
|
|
|
1996-04-30 00:30:48 +04:00
|
|
|
while ((n = min(LPT_BSIZE, uio->uio_resid)) != 0) {
|
1997-12-07 19:09:36 +03:00
|
|
|
uiomove(sc->sc_cp = sc->sc_inbuf, n, uio);
|
1994-02-18 22:50:56 +03:00
|
|
|
sc->sc_count = n;
|
1997-10-14 19:50:15 +04:00
|
|
|
error = lptpushbytes(sc);
|
1994-02-18 22:50:56 +03:00
|
|
|
if (error) {
|
|
|
|
/*
|
|
|
|
* Return accurate residual if interrupted or timed
|
|
|
|
* out.
|
|
|
|
*/
|
|
|
|
uio->uio_resid += sc->sc_count;
|
|
|
|
sc->sc_count = 0;
|
|
|
|
return error;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1994-02-18 22:50:56 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-02-18 22:50:56 +03:00
|
|
|
* Handle printer interrupts which occur when the printer is ready to accept
|
|
|
|
* another char.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-02-18 22:50:56 +03:00
|
|
|
int
|
1995-04-17 16:06:30 +04:00
|
|
|
lptintr(arg)
|
|
|
|
void *arg;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-04-17 16:06:30 +04:00
|
|
|
struct lpt_softc *sc = arg;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = sc->sc_iot;
|
|
|
|
bus_space_handle_t ioh = sc->sc_ioh;
|
1993-06-15 05:50:32 +04:00
|
|
|
|
1994-02-19 06:36:12 +03:00
|
|
|
#if 0
|
1994-02-18 22:50:56 +03:00
|
|
|
if ((sc->sc_state & LPT_OPEN) == 0)
|
|
|
|
return 0;
|
1994-02-19 06:36:12 +03:00
|
|
|
#endif
|
1993-06-15 05:50:32 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* is printer online and ready for output */
|
1994-11-19 00:57:40 +03:00
|
|
|
if (NOT_READY() && NOT_READY_ERR())
|
1994-02-18 22:50:56 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (sc->sc_count) {
|
1994-02-19 06:36:12 +03:00
|
|
|
u_char control = sc->sc_control;
|
1994-02-18 22:50:56 +03:00
|
|
|
/* send char */
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_data, *sc->sc_cp++);
|
1999-03-30 01:50:06 +04:00
|
|
|
DELAY(1);
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, control | LPC_STROBE);
|
1999-03-30 01:50:06 +04:00
|
|
|
DELAY(1);
|
1994-02-19 06:36:12 +03:00
|
|
|
sc->sc_count--;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_write_1(iot, ioh, lpt_control, control);
|
2002-12-10 10:19:25 +03:00
|
|
|
DELAY(1);
|
1994-02-18 22:50:56 +03:00
|
|
|
sc->sc_state |= LPT_OBUSY;
|
|
|
|
} else
|
|
|
|
sc->sc_state &= ~LPT_OBUSY;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-02-18 22:50:56 +03:00
|
|
|
if (sc->sc_count == 0) {
|
1993-03-21 12:45:37 +03:00
|
|
|
/* none, wake up the top half to get more */
|
2007-10-09 16:45:27 +04:00
|
|
|
softint_schedule(sc->sc_sih);
|
1994-02-18 22:50:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2007-10-09 16:45:27 +04:00
|
|
|
static void
|
|
|
|
lptsoftintr(void *cookie)
|
|
|
|
{
|
|
|
|
|
|
|
|
wakeup(cookie);
|
|
|
|
}
|
|
|
|
|
1993-05-07 09:38:55 +04:00
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
lptioctl(dev_t dev, u_long cmd, void *data,
|
2006-11-16 04:32:37 +03:00
|
|
|
int flag, struct lwp *l)
|
1993-05-07 09:38:55 +04:00
|
|
|
{
|
2006-10-12 05:30:41 +04:00
|
|
|
return ENODEV;
|
1993-05-07 09:38:55 +04:00
|
|
|
}
|