lpt.c revision 1.7.4.14 1 1.1 cgd /*
2 1.7.4.9 mycroft * Copyright (c) 1993 Charles Hannum.
3 1.1 cgd * Copyright (c) 1990 William F. Jolitz, TeleMuse
4 1.1 cgd * All rights reserved.
5 1.1 cgd *
6 1.1 cgd * Redistribution and use in source and binary forms, with or without
7 1.1 cgd * modification, are permitted provided that the following conditions
8 1.1 cgd * are met:
9 1.1 cgd * 1. Redistributions of source code must retain the above copyright
10 1.1 cgd * notice, this list of conditions and the following disclaimer.
11 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 cgd * notice, this list of conditions and the following disclaimer in the
13 1.1 cgd * documentation and/or other materials provided with the distribution.
14 1.1 cgd * 3. All advertising materials mentioning features or use of this software
15 1.1 cgd * must display the following acknowledgement:
16 1.1 cgd * This software is a component of "386BSD" developed by
17 1.1 cgd * William F. Jolitz, TeleMuse.
18 1.1 cgd * 4. Neither the name of the developer nor the name "386BSD"
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
23 1.1 cgd * AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
24 1.1 cgd * SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
25 1.1 cgd * THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
26 1.1 cgd * NOT MAKE USE OF THIS WORK.
27 1.1 cgd *
28 1.1 cgd * FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
29 1.1 cgd * BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
30 1.1 cgd * REFERENCES SUCH AS THE "PORTING UNIX TO THE 386" SERIES
31 1.1 cgd * (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
32 1.1 cgd * JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
33 1.1 cgd * LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
34 1.1 cgd * ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
35 1.1 cgd * OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
36 1.1 cgd *
37 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
38 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE DEVELOPER BE LIABLE
41 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
43 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
45 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
46 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47 1.1 cgd * SUCH DAMAGE.
48 1.1 cgd *
49 1.7.4.14 mycroft * $Id: lpt.c,v 1.7.4.14 1993/10/29 20:03:39 mycroft Exp $
50 1.1 cgd */
51 1.1 cgd
52 1.1 cgd /*
53 1.1 cgd * Device Driver for AT parallel printer port
54 1.1 cgd */
55 1.1 cgd
56 1.7.4.11 mycroft #include <sys/param.h>
57 1.7.4.11 mycroft #include <sys/systm.h>
58 1.7.4.11 mycroft #include <sys/proc.h>
59 1.7.4.11 mycroft #include <sys/user.h>
60 1.7.4.11 mycroft #include <sys/buf.h>
61 1.7.4.11 mycroft #include <sys/kernel.h>
62 1.7.4.11 mycroft #include <sys/ioctl.h>
63 1.7.4.11 mycroft #include <sys/uio.h>
64 1.7.4.11 mycroft #include <sys/device.h>
65 1.7.4.11 mycroft #include <sys/syslog.h>
66 1.7.4.11 mycroft
67 1.7.4.11 mycroft #include <machine/cpu.h>
68 1.7.4.11 mycroft #include <machine/pio.h>
69 1.7.4.11 mycroft
70 1.7.4.11 mycroft #include <i386/isa/isavar.h>
71 1.7.4.11 mycroft #include <i386/isa/icu.h>
72 1.7.4.11 mycroft #include <i386/isa/lptreg.h>
73 1.1 cgd
74 1.7.4.2 mycroft #define TIMEOUT hz*16 /* wait up to 4 seconds for a ready */
75 1.7.4.2 mycroft #define STEP hz/4
76 1.7.4.2 mycroft
77 1.7.4.2 mycroft #define MAX_SPIN 255
78 1.1 cgd
79 1.7.4.2 mycroft #define LPTPRI (PZERO+8)
80 1.7.4.2 mycroft #define LPT_BSIZE 1024
81 1.7.4.2 mycroft
82 1.1 cgd #ifndef DEBUG
83 1.1 cgd #define lprintf
84 1.1 cgd #else
85 1.7.4.2 mycroft #define lprintf if (lptdebug) printf
86 1.7.4.2 mycroft int lptdebug = 1;
87 1.1 cgd #endif
88 1.1 cgd
89 1.1 cgd struct lpt_softc {
90 1.7.4.3 mycroft struct device sc_dev;
91 1.7.4.3 mycroft struct isadev sc_id;
92 1.7.4.3 mycroft struct intrhand sc_ih;
93 1.7.4.3 mycroft
94 1.7.4.2 mycroft size_t sc_count;
95 1.1 cgd struct buf *sc_inbuf;
96 1.7.4.2 mycroft u_char *sc_cp ;
97 1.7.4.2 mycroft u_short sc_iobase;
98 1.7.4.2 mycroft u_short sc_irq;
99 1.7.4.2 mycroft u_char sc_state;
100 1.1 cgd /* bits for state */
101 1.7.4.2 mycroft #define LPT_OPEN 0x01 /* device is open */
102 1.7.4.2 mycroft #define LPT_OBUSY 0x02 /* printer is busy doing output */
103 1.7.4.2 mycroft #define LPT_INIT 0x04 /* waiting to initialize for open */
104 1.7.4.2 mycroft u_char sc_flags;
105 1.7.4.2 mycroft #define LPT_AUTOLF 0x20 /* automatic LF on CR */
106 1.7.4.2 mycroft #define LPT_NOPRIME 0x40 /* don't prime on open */
107 1.7.4.2 mycroft #define LPT_NOINTR 0x80 /* do not use interrupt */
108 1.7.4.2 mycroft u_char sc_control;
109 1.7.4.2 mycroft u_char sc_smax;
110 1.7.4.2 mycroft };
111 1.1 cgd
112 1.7.4.2 mycroft static int lptprobe __P((struct device *, struct cfdata *, void *));
113 1.7.4.13 mycroft #if 0 /* XXX */
114 1.7.4.13 mycroft static void lptforceintr __P((void *));
115 1.7.4.13 mycroft #endif
116 1.7.4.2 mycroft static void lptattach __P((struct device *, struct device *, void *));
117 1.7.4.2 mycroft static int lptintr __P((void *));
118 1.7.4.2 mycroft
119 1.7.4.2 mycroft struct cfdriver lptcd =
120 1.7.4.10 mycroft { NULL, "lpt", lptprobe, lptattach, DV_TTY, sizeof(struct lpt_softc) };
121 1.7.4.2 mycroft
122 1.7.4.2 mycroft #define LPTUNIT(s) ((s)&0x1f)
123 1.7.4.2 mycroft #define LPTFLAGS(s) ((s)&0xe0)
124 1.7.4.2 mycroft
125 1.7.4.6 mycroft #define LPS_INVERT (LPS_SELECT|LPS_NERR|LPS_NBSY|LPS_NACK)
126 1.7.4.6 mycroft #define LPS_MASK (LPS_SELECT|LPS_NERR|LPS_NBSY|LPS_NACK|LPS_NOPAPER)
127 1.7.4.11 mycroft #define NOT_READY() isready(inb(iobase + lpt_status), sc)
128 1.7.4.2 mycroft
129 1.7.4.11 mycroft static int isready __P((u_char, struct lpt_softc *));
130 1.7.4.2 mycroft static void lptout __P((struct lpt_softc *));
131 1.7.4.2 mycroft static int pushbytes __P((struct lpt_softc *));
132 1.7.4.2 mycroft
133 1.2 cgd /*
134 1.2 cgd * Internal routine to lptprobe to do port tests of one byte value
135 1.2 cgd */
136 1.2 cgd int
137 1.7.4.1 mycroft lpt_port_test(port, data, mask)
138 1.7.4.1 mycroft u_short port;
139 1.7.4.1 mycroft u_char data, mask;
140 1.7.4.1 mycroft {
141 1.7.4.2 mycroft int timeout;
142 1.7.4.2 mycroft u_char temp;
143 1.2 cgd
144 1.7.4.2 mycroft data &= mask;
145 1.2 cgd outb(port, data);
146 1.5 cgd timeout = 100;
147 1.7.4.2 mycroft do {
148 1.5 cgd temp = inb(port) & mask;
149 1.7.4.2 mycroft } while (temp != data && --timeout);
150 1.7.4.2 mycroft lprintf("lpt: port=0x%x out=0x%x in=0x%x\n", port, data, temp);
151 1.2 cgd return (temp == data);
152 1.7.4.1 mycroft }
153 1.2 cgd
154 1.2 cgd /*
155 1.2 cgd * Logic:
156 1.2 cgd * 1) You should be able to write to and read back the same value
157 1.2 cgd * to the data port. Do an alternating zeros, alternating ones,
158 1.2 cgd * walking zero, and walking one test to check for stuck bits.
159 1.2 cgd *
160 1.2 cgd * 2) You should be able to write to and read back the same value
161 1.2 cgd * to the control port lower 5 bits, the upper 3 bits are reserved
162 1.2 cgd * per the IBM PC technical reference manauls and different boards
163 1.2 cgd * do different things with them. Do an alternating zeros, alternating
164 1.2 cgd * ones, walking zero, and walking one test to check for stuck bits.
165 1.2 cgd *
166 1.2 cgd * Some printers drag the strobe line down when the are powered off
167 1.2 cgd * so this bit has been masked out of the control port test.
168 1.2 cgd *
169 1.2 cgd * XXX Some printers may not like a fast pulse on init or strobe, I
170 1.2 cgd * don't know at this point, if that becomes a problem these bits
171 1.2 cgd * should be turned off in the mask byte for the control port test.
172 1.2 cgd *
173 1.2 cgd * 3) Set the data and control ports to a value of 0
174 1.2 cgd */
175 1.2 cgd
176 1.7.4.2 mycroft static int
177 1.7.4.2 mycroft lptprobe(parent, cf, aux)
178 1.7.4.2 mycroft struct device *parent;
179 1.7.4.2 mycroft struct cfdata *cf;
180 1.7.4.2 mycroft void *aux;
181 1.7.4.1 mycroft {
182 1.7.4.2 mycroft struct isa_attach_args *ia = aux;
183 1.7.4.2 mycroft u_short iobase = ia->ia_iobase;
184 1.7.4.2 mycroft u_short port = iobase + lpt_data;
185 1.7.4.2 mycroft u_char mask = 0xff;
186 1.2 cgd u_char data;
187 1.2 cgd int i;
188 1.2 cgd
189 1.7.4.4 mycroft if (iobase == IOBASEUNK)
190 1.7.4.4 mycroft return 0;
191 1.7.4.4 mycroft
192 1.7.4.14 mycroft #ifdef DEBUG
193 1.7.4.14 mycroft #define ABORT do {printf("lptprobe: mask %x data %x failed\n", mask, data); \
194 1.7.4.14 mycroft return 0;} while (0)
195 1.7.4.14 mycroft #else
196 1.7.4.14 mycroft #define ABORT return 0
197 1.7.4.14 mycroft #endif
198 1.7.4.14 mycroft
199 1.7.4.2 mycroft for (;;) {
200 1.2 cgd data = 0x55; /* Alternating zeros */
201 1.7.4.2 mycroft if (!lpt_port_test(port, data, mask))
202 1.7.4.14 mycroft ABORT;
203 1.2 cgd
204 1.2 cgd data = 0xaa; /* Alternating ones */
205 1.7.4.2 mycroft if (!lpt_port_test(port, data, mask))
206 1.7.4.14 mycroft ABORT;
207 1.2 cgd
208 1.7.4.2 mycroft for (i = 0; i < CHAR_BIT; i++) { /* Walking zero */
209 1.2 cgd data = ~(1 << i);
210 1.7.4.2 mycroft if (!lpt_port_test(port, data, mask))
211 1.7.4.14 mycroft ABORT;
212 1.7.4.2 mycroft }
213 1.2 cgd
214 1.7.4.2 mycroft for (i = 0; i < CHAR_BIT; i++) { /* Walking one */
215 1.2 cgd data = (1 << i);
216 1.7.4.2 mycroft if (!lpt_port_test(port, data, mask))
217 1.7.4.14 mycroft ABORT;
218 1.7.4.2 mycroft }
219 1.2 cgd
220 1.7.4.2 mycroft if (port == iobase + lpt_data) {
221 1.7.4.2 mycroft port = iobase + lpt_control;
222 1.7.4.13 mycroft #if 1 /* XXX */
223 1.7.4.13 mycroft mask = 0x04;
224 1.7.4.13 mycroft #else
225 1.2 cgd mask = 0x1e;
226 1.7.4.13 mycroft #endif
227 1.7.4.2 mycroft } else
228 1.7.4.2 mycroft break;
229 1.7.4.1 mycroft }
230 1.7.4.2 mycroft outb(iobase + lpt_data, 0);
231 1.7.4.2 mycroft outb(iobase + lpt_control, 0);
232 1.7.4.2 mycroft
233 1.7.4.4 mycroft if (ia->ia_irq == IRQUNK)
234 1.7.4.13 mycroft #if 0 /* XXX */
235 1.7.4.13 mycroft ia->ia_irq = isa_discoverintr(lptforceintr, aux);
236 1.7.4.13 mycroft #else
237 1.7.4.12 mycroft ia->ia_irq = IRQNONE;
238 1.7.4.13 mycroft #endif
239 1.7.4.4 mycroft /* okay if we don't have an irq; will force polling */
240 1.7.4.2 mycroft
241 1.7.4.2 mycroft ia->ia_iosize = LPT_NPORTS;
242 1.7.4.2 mycroft ia->ia_drq = DRQUNK;
243 1.7.4.2 mycroft ia->ia_msize = 0;
244 1.7.4.2 mycroft return 1;
245 1.7.4.1 mycroft }
246 1.7.4.13 mycroft
247 1.7.4.13 mycroft #if 0 /* XXX */
248 1.7.4.13 mycroft static void
249 1.7.4.13 mycroft lptforceintr(aux)
250 1.7.4.13 mycroft void *aux;
251 1.7.4.13 mycroft {
252 1.7.4.13 mycroft struct isa_attach_args *ia = aux;
253 1.7.4.13 mycroft u_short iobase = ia->ia_iobase;
254 1.7.4.13 mycroft
255 1.7.4.13 mycroft outb(iobase + lpt_control, LPC_IENABLE);
256 1.7.4.13 mycroft delay(100);
257 1.7.4.13 mycroft outb(iobase + lpt_control, 0);
258 1.7.4.13 mycroft }
259 1.7.4.13 mycroft #endif
260 1.1 cgd
261 1.7.4.2 mycroft static void
262 1.7.4.2 mycroft lptattach(parent, self, aux)
263 1.7.4.2 mycroft struct device *parent, *self;
264 1.7.4.2 mycroft void *aux;
265 1.1 cgd {
266 1.7.4.2 mycroft struct isa_attach_args *ia = aux;
267 1.7.4.2 mycroft struct lpt_softc *sc = (struct lpt_softc *)self;
268 1.7.4.2 mycroft u_short iobase = ia->ia_iobase;
269 1.7.4.2 mycroft u_short irq = ia->ia_irq;
270 1.1 cgd
271 1.7.4.2 mycroft sc->sc_iobase = iobase;
272 1.7.4.2 mycroft sc->sc_irq = irq;
273 1.6 mycroft sc->sc_state = 0;
274 1.7.4.2 mycroft outb(iobase + lpt_control, LPC_NINIT);
275 1.7.4.2 mycroft
276 1.7.4.4 mycroft printf(": %sparallel port\n", irq == IRQNONE ? "polled " : "");
277 1.7.4.4 mycroft isa_establish(&sc->sc_id, &sc->sc_dev);
278 1.7.4.4 mycroft
279 1.7.4.4 mycroft if (irq != IRQNONE) {
280 1.7.4.4 mycroft sc->sc_ih.ih_fun = lptintr;
281 1.7.4.4 mycroft sc->sc_ih.ih_arg = sc;
282 1.7.4.4 mycroft intr_establish(ia->ia_irq, &sc->sc_ih, DV_TTY);
283 1.7.4.4 mycroft }
284 1.1 cgd }
285 1.1 cgd
286 1.1 cgd /*
287 1.1 cgd * lptopen -- reset the printer, then wait until it's selected and not busy.
288 1.1 cgd */
289 1.7.4.1 mycroft int
290 1.1 cgd lptopen(dev, flag)
291 1.1 cgd dev_t dev;
292 1.1 cgd int flag;
293 1.1 cgd {
294 1.7.4.2 mycroft int unit = LPTUNIT(minor(dev));
295 1.7.4.2 mycroft u_char flags = LPTFLAGS(minor(dev));
296 1.7.4.2 mycroft struct lpt_softc *sc;
297 1.7.4.2 mycroft u_short iobase;
298 1.7.4.2 mycroft u_char control;
299 1.7.4.2 mycroft int error;
300 1.7.4.6 mycroft int spin;
301 1.7.4.1 mycroft
302 1.7.4.2 mycroft if (unit >= lptcd.cd_ndevs)
303 1.7.4.1 mycroft return ENXIO;
304 1.7.4.3 mycroft sc = lptcd.cd_devs[unit];
305 1.7.4.2 mycroft if (!sc)
306 1.7.4.2 mycroft return ENXIO;
307 1.1 cgd
308 1.7.4.4 mycroft if (sc->sc_irq == IRQNONE && (flags & LPT_NOINTR) == 0)
309 1.7.4.2 mycroft return ENXIO;
310 1.7.4.2 mycroft
311 1.7.4.2 mycroft if (sc->sc_state)
312 1.7.4.2 mycroft return EBUSY;
313 1.7.4.2 mycroft
314 1.7.4.2 mycroft #ifdef DIAGNOSTIC
315 1.7.4.2 mycroft if (sc->sc_state)
316 1.7.4.10 mycroft printf("%s: state=0x%x not zero\n", sc->sc_dev.dv_xname,
317 1.7.4.10 mycroft sc->sc_state);
318 1.7.4.2 mycroft #endif
319 1.7.4.2 mycroft
320 1.7.4.2 mycroft sc->sc_state = LPT_INIT;
321 1.7.4.2 mycroft
322 1.7.4.2 mycroft sc->sc_flags = flags;
323 1.7.4.10 mycroft lprintf("%s: open flags=0x%x\n", sc->sc_dev.dv_xname, flags);
324 1.7.4.2 mycroft iobase = sc->sc_iobase;
325 1.1 cgd
326 1.7.4.6 mycroft if ((flags & LPT_NOPRIME) == 0) {
327 1.7.4.6 mycroft /* assert INIT for 100 usec to start up printer */
328 1.7.4.6 mycroft outb(iobase + lpt_control, LPC_SELECT);
329 1.7.4.6 mycroft delay(100);
330 1.7.4.6 mycroft }
331 1.7.4.2 mycroft
332 1.7.4.6 mycroft control = LPC_SELECT | LPC_NINIT;
333 1.7.4.6 mycroft outb(iobase + lpt_control, control);
334 1.7.4.2 mycroft
335 1.1 cgd /* wait till ready (printer running diagnostics) */
336 1.7.4.6 mycroft for (spin = 0; NOT_READY(); spin += STEP) {
337 1.7.4.6 mycroft if (spin >= TIMEOUT) {
338 1.1 cgd sc->sc_state = 0;
339 1.7.4.2 mycroft return EBUSY;
340 1.1 cgd }
341 1.1 cgd
342 1.1 cgd /* wait 1/4 second, give up if we get a signal */
343 1.7.4.2 mycroft if (error = tsleep((caddr_t)sc,
344 1.7.4.6 mycroft LPTPRI | PCATCH, "lptopen", STEP) != EWOULDBLOCK) {
345 1.1 cgd sc->sc_state = 0;
346 1.7.4.2 mycroft return error;
347 1.1 cgd }
348 1.1 cgd }
349 1.7.4.2 mycroft
350 1.7.4.6 mycroft if ((flags & LPT_NOINTR) == 0)
351 1.7.4.6 mycroft control |= LPC_IENABLE;
352 1.7.4.6 mycroft if (flags & LPT_AUTOLF)
353 1.7.4.6 mycroft control |= LPC_AUTOLF;
354 1.7.4.2 mycroft sc->sc_control = control;
355 1.7.4.2 mycroft outb(iobase + lpt_control, control);
356 1.7.4.2 mycroft
357 1.7.4.2 mycroft sc->sc_state = LPT_OPEN;
358 1.7.4.2 mycroft sc->sc_inbuf = geteblk(LPT_BSIZE);
359 1.7.4.2 mycroft sc->sc_count = 0;
360 1.7.4.2 mycroft lptout(sc);
361 1.1 cgd
362 1.7.4.10 mycroft lprintf("%s: opened\n", sc->sc_dev.dv_xname);
363 1.7.4.2 mycroft return 0;
364 1.1 cgd }
365 1.1 cgd
366 1.7.4.11 mycroft static int
367 1.7.4.11 mycroft isready(status, sc)
368 1.7.4.11 mycroft u_char status;
369 1.7.4.11 mycroft struct lpt_softc *sc;
370 1.7.4.11 mycroft {
371 1.7.4.11 mycroft status ^= LPS_INVERT;
372 1.7.4.11 mycroft
373 1.7.4.11 mycroft if (status & LPS_NOPAPER)
374 1.7.4.11 mycroft log(LOG_NOTICE, "%s: out of paper\n", sc->sc_dev.dv_xname);
375 1.7.4.11 mycroft else if (status & LPS_SELECT)
376 1.7.4.11 mycroft log(LOG_NOTICE, "%s: offline\n", sc->sc_dev.dv_xname);
377 1.7.4.11 mycroft else if (status & LPS_NERR)
378 1.7.4.11 mycroft log(LOG_NOTICE, "%s: output error\n", sc->sc_dev.dv_xname);
379 1.7.4.11 mycroft
380 1.7.4.11 mycroft return status;
381 1.7.4.11 mycroft }
382 1.7.4.11 mycroft
383 1.7.4.2 mycroft static void
384 1.7.4.1 mycroft lptout(sc)
385 1.1 cgd struct lpt_softc *sc;
386 1.7.4.2 mycroft {
387 1.7.4.2 mycroft int s;
388 1.1 cgd
389 1.7.4.2 mycroft if ((sc->sc_state & LPT_OPEN) == 0)
390 1.7.4.2 mycroft return;
391 1.7.4.2 mycroft if (sc->sc_flags & LPT_NOINTR)
392 1.7.4.2 mycroft return;
393 1.1 cgd
394 1.1 cgd /*
395 1.7.4.2 mycroft * Avoid possible hangs due to missed interrupts
396 1.1 cgd */
397 1.7.4.2 mycroft if (sc->sc_count) {
398 1.7.4.2 mycroft s = spltty();
399 1.7.4.11 mycroft (void) lptintr(sc);
400 1.7.4.2 mycroft splx(s);
401 1.1 cgd } else {
402 1.7.4.2 mycroft sc->sc_state &= ~LPT_OBUSY;
403 1.1 cgd wakeup((caddr_t)sc);
404 1.1 cgd }
405 1.7.4.2 mycroft
406 1.7.4.2 mycroft timeout((timeout_t)lptout, (caddr_t)sc, STEP);
407 1.1 cgd }
408 1.1 cgd
409 1.1 cgd /*
410 1.1 cgd * lptclose -- close the device, free the local line buffer.
411 1.1 cgd */
412 1.7.4.1 mycroft int
413 1.1 cgd lptclose(dev, flag)
414 1.7.4.1 mycroft dev_t dev;
415 1.1 cgd int flag;
416 1.1 cgd {
417 1.7.4.2 mycroft int unit = LPTUNIT(minor(dev));
418 1.7.4.3 mycroft struct lpt_softc *sc = lptcd.cd_devs[unit];
419 1.7.4.2 mycroft u_short iobase = sc->sc_iobase;
420 1.7.4.2 mycroft int error;
421 1.1 cgd
422 1.7.4.2 mycroft if (error = pushbytes(sc))
423 1.7.4.2 mycroft return error;
424 1.1 cgd
425 1.7.4.2 mycroft outb(iobase + lpt_control, LPC_NINIT);
426 1.1 cgd brelse(sc->sc_inbuf);
427 1.7.4.2 mycroft sc->sc_state = 0;
428 1.7.4.2 mycroft
429 1.7.4.10 mycroft lprintf("%s: closed\n", sc->sc_dev.dv_xname);
430 1.7.4.2 mycroft return 0;
431 1.7.4.2 mycroft }
432 1.7.4.2 mycroft
433 1.7.4.2 mycroft static int
434 1.7.4.2 mycroft pushbytes(sc)
435 1.7.4.2 mycroft struct lpt_softc *sc;
436 1.7.4.2 mycroft {
437 1.7.4.2 mycroft u_short iobase = sc->sc_iobase;
438 1.7.4.2 mycroft int error;
439 1.7.4.2 mycroft
440 1.7.4.2 mycroft if (sc->sc_flags & LPT_NOINTR) {
441 1.7.4.2 mycroft int spin, tic;
442 1.7.4.2 mycroft u_char control = sc->sc_control;
443 1.7.4.2 mycroft u_char ch;
444 1.7.4.2 mycroft
445 1.7.4.2 mycroft while (sc->sc_count > 0) {
446 1.7.4.2 mycroft spin = tic = 0;
447 1.7.4.2 mycroft while (NOT_READY())
448 1.7.4.2 mycroft if (++spin >= sc->sc_smax) {
449 1.7.4.2 mycroft /* exponential backoff */
450 1.7.4.2 mycroft tic = tic + tic + 1;
451 1.7.4.2 mycroft if (error = tsleep((caddr_t)sc,
452 1.7.4.6 mycroft LPTPRI | PCATCH, "lptwrite1", tic))
453 1.7.4.2 mycroft return error;
454 1.7.4.2 mycroft }
455 1.7.4.2 mycroft
456 1.7.4.2 mycroft outb(iobase + lpt_data, *sc->sc_cp++);
457 1.7.4.6 mycroft outb(iobase + lpt_control, control | LPC_STROBE);
458 1.7.4.2 mycroft sc->sc_count--;
459 1.7.4.6 mycroft outb(iobase + lpt_control, control);
460 1.7.4.2 mycroft
461 1.7.4.2 mycroft /* adapt busy-wait algorithm */
462 1.7.4.2 mycroft if (spin >= sc->sc_smax && sc->sc_smax < MAX_SPIN)
463 1.7.4.2 mycroft sc->sc_smax++;
464 1.7.4.2 mycroft if (spin*2 < sc->sc_smax)
465 1.7.4.2 mycroft sc->sc_smax--;
466 1.7.4.2 mycroft }
467 1.7.4.2 mycroft } else {
468 1.7.4.2 mycroft int s;
469 1.7.4.2 mycroft
470 1.7.4.2 mycroft while (sc->sc_count > 0) {
471 1.7.4.2 mycroft /* if the printer is ready for a char, give it one */
472 1.7.4.2 mycroft if ((sc->sc_state & LPT_OBUSY) == 0) {
473 1.7.4.10 mycroft lprintf("%s: write %d\n", sc->sc_dev.dv_xname,
474 1.7.4.10 mycroft sc->sc_count);
475 1.7.4.2 mycroft s = spltty();
476 1.7.4.11 mycroft (void) lptintr(sc);
477 1.7.4.2 mycroft splx(s);
478 1.7.4.2 mycroft }
479 1.7.4.2 mycroft if (error = tsleep((caddr_t)sc,
480 1.7.4.6 mycroft LPTPRI | PCATCH, "lptwrite2", 0))
481 1.7.4.2 mycroft return error;
482 1.7.4.2 mycroft }
483 1.7.4.2 mycroft }
484 1.1 cgd }
485 1.1 cgd
486 1.1 cgd /*
487 1.7.4.2 mycroft * copy a line from user space to a local buffer, then call
488 1.1 cgd * putc to get the chars moved to the output queue.
489 1.1 cgd */
490 1.7.4.1 mycroft int
491 1.1 cgd lptwrite(dev, uio)
492 1.1 cgd dev_t dev;
493 1.1 cgd struct uio *uio;
494 1.1 cgd {
495 1.7.4.2 mycroft int unit = LPTUNIT(minor(dev));
496 1.7.4.3 mycroft struct lpt_softc *sc = lptcd.cd_devs[unit];
497 1.7.4.2 mycroft size_t n;
498 1.7.4.2 mycroft int error = 0;
499 1.7.4.2 mycroft
500 1.7.4.2 mycroft while (n = MIN(LPT_BSIZE, uio->uio_resid)) {
501 1.7.4.2 mycroft uiomove(sc->sc_cp = sc->sc_inbuf->b_un.b_addr, n, uio);
502 1.7.4.2 mycroft sc->sc_count = n;
503 1.7.4.2 mycroft error = pushbytes(sc);
504 1.7.4.2 mycroft if (error) {
505 1.7.4.2 mycroft /* return accurate residual if interrupted or
506 1.7.4.2 mycroft timed out */
507 1.7.4.2 mycroft uio->uio_resid += sc->sc_count;
508 1.7.4.2 mycroft sc->sc_count = 0;
509 1.7.4.2 mycroft return error;
510 1.1 cgd }
511 1.1 cgd }
512 1.7.4.2 mycroft return 0;
513 1.1 cgd }
514 1.1 cgd
515 1.1 cgd /*
516 1.1 cgd * lptintr -- handle printer interrupts which occur when the printer is
517 1.1 cgd * ready to accept another char.
518 1.1 cgd */
519 1.7.4.2 mycroft static int
520 1.7.4.2 mycroft lptintr(arg)
521 1.7.4.2 mycroft void *arg;
522 1.1 cgd {
523 1.7.4.2 mycroft struct lpt_softc *sc = (struct lpt_softc *)arg;
524 1.7.4.2 mycroft u_short iobase = sc->sc_iobase;
525 1.7.4.2 mycroft u_char control = sc->sc_control;
526 1.7.4.2 mycroft u_char status;
527 1.6 mycroft
528 1.7.4.2 mycroft if ((sc->sc_state & LPT_OPEN) == 0)
529 1.7.4.2 mycroft return 0;
530 1.6 mycroft
531 1.1 cgd /* is printer online and ready for output */
532 1.7.4.11 mycroft if (NOT_READY())
533 1.7.4.11 mycroft return 0;
534 1.7.4.11 mycroft
535 1.7.4.11 mycroft if (sc->sc_count) {
536 1.7.4.11 mycroft /* send char */
537 1.7.4.11 mycroft sc->sc_state |= LPT_OBUSY;
538 1.7.4.11 mycroft while (sc->sc_count && !NOT_READY()) {
539 1.7.4.11 mycroft outb(iobase + lpt_data, *sc->sc_cp++);
540 1.7.4.11 mycroft outb(iobase + lpt_control, control | LPC_STROBE);
541 1.7.4.11 mycroft sc->sc_count--;
542 1.7.4.11 mycroft outb(iobase + lpt_control, control);
543 1.1 cgd }
544 1.7.4.11 mycroft } else {
545 1.7.4.11 mycroft /* none, wake up the top half to get more */
546 1.7.4.11 mycroft sc->sc_state &= ~LPT_OBUSY;
547 1.7.4.11 mycroft wakeup((caddr_t)sc);
548 1.7.4.2 mycroft }
549 1.1 cgd
550 1.7.4.2 mycroft return 1;
551 1.1 cgd }
552 1.1 cgd
553 1.2 cgd int
554 1.7.4.1 mycroft lptioctl(dev, cmd, data, flag)
555 1.7.4.1 mycroft dev_t dev;
556 1.7.4.1 mycroft int cmd;
557 1.7.4.1 mycroft caddr_t data;
558 1.7.4.1 mycroft int flag;
559 1.2 cgd {
560 1.7.4.2 mycroft int error = 0;
561 1.2 cgd
562 1.2 cgd switch (cmd) {
563 1.7.4.2 mycroft default:
564 1.2 cgd error = ENODEV;
565 1.2 cgd }
566 1.2 cgd
567 1.7.4.2 mycroft return error;
568 1.2 cgd }
569