Home | History | Annotate | Line # | Download | only in mvme
lpt_mvme.c revision 1.11.16.1
      1  1.11.16.1       mjf /*	$NetBSD: lpt_mvme.c,v 1.11.16.1 2008/04/03 12:42:47 mjf Exp $	*/
      2        1.1       scw 
      3        1.1       scw /*-
      4        1.1       scw  * Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
      5        1.1       scw  * All rights reserved.
      6        1.1       scw  *
      7        1.1       scw  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1       scw  * by Steve C. Woodford.
      9        1.1       scw  *
     10        1.1       scw  * Redistribution and use in source and binary forms, with or without
     11        1.1       scw  * modification, are permitted provided that the following conditions
     12        1.1       scw  * are met:
     13        1.1       scw  * 1. Redistributions of source code must retain the above copyright
     14        1.1       scw  *    notice, this list of conditions and the following disclaimer.
     15        1.1       scw  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1       scw  *    notice, this list of conditions and the following disclaimer in the
     17        1.1       scw  *    documentation and/or other materials provided with the distribution.
     18        1.1       scw  * 3. All advertising materials mentioning features or use of this software
     19        1.1       scw  *    must display the following acknowledgement:
     20        1.1       scw  *	This product includes software developed by the NetBSD
     21        1.1       scw  *	Foundation, Inc. and its contributors.
     22        1.1       scw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.1       scw  *    contributors may be used to endorse or promote products derived
     24        1.1       scw  *    from this software without specific prior written permission.
     25        1.1       scw  *
     26        1.1       scw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.1       scw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.1       scw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.1       scw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.1       scw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.1       scw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.1       scw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.1       scw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.1       scw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.1       scw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.1       scw  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1       scw  */
     38        1.1       scw 
     39        1.1       scw /*
     40        1.1       scw  * Copyright (c) 1993, 1994 Charles M. Hannum.
     41        1.1       scw  * Copyright (c) 1990 William F. Jolitz, TeleMuse
     42        1.1       scw  * All rights reserved.
     43        1.1       scw  *
     44        1.1       scw  * Redistribution and use in source and binary forms, with or without
     45        1.1       scw  * modification, are permitted provided that the following conditions
     46        1.1       scw  * are met:
     47        1.1       scw  * 1. Redistributions of source code must retain the above copyright
     48        1.1       scw  *    notice, this list of conditions and the following disclaimer.
     49        1.1       scw  * 2. Redistributions in binary form must reproduce the above copyright
     50        1.1       scw  *    notice, this list of conditions and the following disclaimer in the
     51        1.1       scw  *    documentation and/or other materials provided with the distribution.
     52        1.1       scw  * 3. All advertising materials mentioning features or use of this software
     53        1.1       scw  *    must display the following acknowledgement:
     54        1.6     perry  *	This software is a component of "386BSD" developed by
     55        1.1       scw  *	William F. Jolitz, TeleMuse.
     56        1.1       scw  * 4. Neither the name of the developer nor the name "386BSD"
     57        1.1       scw  *    may be used to endorse or promote products derived from this software
     58        1.1       scw  *    without specific prior written permission.
     59        1.1       scw  *
     60        1.6     perry  * THIS SOFTWARE IS A COMPONENT OF 386BSD DEVELOPED BY WILLIAM F. JOLITZ
     61        1.6     perry  * AND IS INTENDED FOR RESEARCH AND EDUCATIONAL PURPOSES ONLY. THIS
     62        1.6     perry  * SOFTWARE SHOULD NOT BE CONSIDERED TO BE A COMMERCIAL PRODUCT.
     63        1.6     perry  * THE DEVELOPER URGES THAT USERS WHO REQUIRE A COMMERCIAL PRODUCT
     64        1.1       scw  * NOT MAKE USE OF THIS WORK.
     65        1.1       scw  *
     66        1.1       scw  * FOR USERS WHO WISH TO UNDERSTAND THE 386BSD SYSTEM DEVELOPED
     67        1.6     perry  * BY WILLIAM F. JOLITZ, WE RECOMMEND THE USER STUDY WRITTEN
     68        1.6     perry  * REFERENCES SUCH AS THE  "PORTING UNIX TO THE 386" SERIES
     69        1.6     perry  * (BEGINNING JANUARY 1991 "DR. DOBBS JOURNAL", USA AND BEGINNING
     70        1.6     perry  * JUNE 1991 "UNIX MAGAZIN", GERMANY) BY WILLIAM F. JOLITZ AND
     71        1.6     perry  * LYNNE GREER JOLITZ, AS WELL AS OTHER BOOKS ON UNIX AND THE
     72        1.6     perry  * ON-LINE 386BSD USER MANUAL BEFORE USE. A BOOK DISCUSSING THE INTERNALS
     73        1.1       scw  * OF 386BSD ENTITLED "386BSD FROM THE INSIDE OUT" WILL BE AVAILABLE LATE 1992.
     74        1.1       scw  *
     75        1.1       scw  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER ``AS IS'' AND
     76        1.1       scw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     77        1.1       scw  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     78        1.1       scw  * ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER BE LIABLE
     79        1.1       scw  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     80        1.1       scw  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     81        1.1       scw  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     82        1.1       scw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     83        1.1       scw  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     84        1.1       scw  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     85        1.1       scw  * SUCH DAMAGE.
     86        1.1       scw  */
     87        1.1       scw 
     88        1.1       scw /*
     89        1.1       scw  * Device Driver for an MVME68K/MVME88K board's parallel printer port
     90        1.1       scw  * This driver attaches above the board-specific back-end.
     91        1.1       scw  */
     92        1.4     lukem 
     93        1.4     lukem #include <sys/cdefs.h>
     94  1.11.16.1       mjf __KERNEL_RCSID(0, "$NetBSD: lpt_mvme.c,v 1.11.16.1 2008/04/03 12:42:47 mjf Exp $");
     95        1.1       scw 
     96        1.1       scw #include <sys/param.h>
     97        1.1       scw #include <sys/systm.h>
     98        1.1       scw #include <sys/proc.h>
     99        1.1       scw #include <sys/user.h>
    100        1.1       scw #include <sys/buf.h>
    101        1.1       scw #include <sys/kernel.h>
    102        1.1       scw #include <sys/ioctl.h>
    103        1.1       scw #include <sys/uio.h>
    104        1.1       scw #include <sys/device.h>
    105        1.1       scw #include <sys/conf.h>
    106        1.1       scw #include <sys/syslog.h>
    107        1.1       scw 
    108       1.11        ad #include <sys/cpu.h>
    109       1.11        ad #include <sys/bus.h>
    110        1.1       scw 
    111        1.1       scw #include <dev/mvme/lptvar.h>
    112        1.1       scw 
    113        1.1       scw 
    114        1.1       scw #define	TIMEOUT		hz*16	/* wait up to 16 seconds for a ready */
    115        1.1       scw #define	STEP		hz/4
    116        1.1       scw 
    117        1.1       scw #define	LPTPRI		(PZERO+8)
    118        1.1       scw #define	LPT_BSIZE	1024
    119        1.1       scw 
    120        1.1       scw #if !defined(DEBUG) || !defined(notdef)
    121        1.1       scw #define LPRINTF(a)
    122        1.1       scw #else
    123  1.11.16.1       mjf #define LPRINTF		if (lptdebug) aprint_verbose_dev a
    124        1.1       scw int lptdebug = 1;
    125        1.1       scw #endif
    126        1.1       scw 
    127        1.1       scw #define	LPTUNIT(s)	(minor(s) & 0x0f)
    128        1.1       scw #define	LPTFLAGS(s)	(minor(s) & 0xf0)
    129        1.1       scw 
    130        1.5     perry static void lpt_wakeup(void *arg);
    131        1.5     perry static int pushbytes(struct lpt_softc *);
    132        1.1       scw 
    133        1.1       scw extern struct cfdriver lpt_cd;
    134        1.1       scw 
    135        1.2   gehenna dev_type_open(lptopen);
    136        1.2   gehenna dev_type_close(lptclose);
    137        1.2   gehenna dev_type_write(lptwrite);
    138        1.2   gehenna dev_type_ioctl(lptioctl);
    139        1.2   gehenna 
    140        1.2   gehenna const struct cdevsw lpt_cdevsw = {
    141        1.2   gehenna 	lptopen, lptclose, noread, lptwrite, lptioctl,
    142        1.3  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter,
    143        1.2   gehenna };
    144        1.1       scw 
    145        1.1       scw void
    146        1.1       scw lpt_attach_subr(sc)
    147        1.1       scw 	struct lpt_softc *sc;
    148        1.1       scw {
    149        1.1       scw 
    150        1.1       scw 	sc->sc_state = 0;
    151        1.9        ad 	callout_init(&sc->sc_wakeup_ch, 0);
    152        1.1       scw }
    153        1.1       scw 
    154        1.1       scw /*
    155        1.1       scw  * Reset the printer, then wait until it's selected and not busy.
    156        1.1       scw  */
    157        1.1       scw int
    158        1.7  christos lptopen(dev, flag, mode, l)
    159        1.1       scw 	dev_t dev;
    160        1.1       scw 	int flag;
    161        1.1       scw 	int mode;
    162        1.7  christos 	struct lwp *l;
    163        1.1       scw {
    164        1.1       scw 	int unit;
    165        1.1       scw 	u_char flags;
    166        1.1       scw 	struct lpt_softc *sc;
    167        1.1       scw 	int error;
    168        1.1       scw 	int spin;
    169        1.1       scw 
    170        1.1       scw 	unit = LPTUNIT(dev);
    171        1.1       scw 	flags = LPTFLAGS(dev);
    172        1.1       scw 
    173        1.1       scw 	if (unit >= lpt_cd.cd_ndevs)
    174        1.1       scw 		return (ENXIO);
    175  1.11.16.1       mjf 	sc = device_private(lpt_cd.cd_devs[unit]);
    176        1.1       scw 	if (!sc)
    177        1.1       scw 		return (ENXIO);
    178        1.1       scw 
    179        1.1       scw #ifdef DIAGNOSTIC
    180        1.1       scw 	if (sc->sc_state)
    181  1.11.16.1       mjf 		aprint_verbose_dev(sc->sc_dev, "stat=0x%x not zero\n",
    182        1.1       scw 		    sc->sc_state);
    183        1.1       scw #endif
    184        1.1       scw 
    185        1.1       scw 	if (sc->sc_state)
    186        1.1       scw 		return (EBUSY);
    187        1.1       scw 
    188        1.1       scw 	sc->sc_state = LPT_INIT;
    189        1.1       scw 	sc->sc_flags = flags;
    190  1.11.16.1       mjf 	LPRINTF((sc->sc_dev, "open: flags=0x%x\n", flags));
    191        1.1       scw 
    192        1.1       scw 	if ((flags & LPT_NOPRIME) == 0) {
    193        1.1       scw 		/* assert Input Prime for 100 usec to start up printer */
    194        1.1       scw 		(sc->sc_funcs->lf_iprime) (sc);
    195        1.1       scw 	}
    196        1.1       scw 
    197        1.1       scw 	/* select fast or slow strobe depending on minor device number */
    198        1.1       scw 	if (flags & LPT_FAST_STROBE)
    199        1.1       scw 		(sc->sc_funcs->lf_speed) (sc, LPT_STROBE_FAST);
    200        1.1       scw 	else
    201        1.1       scw 		(sc->sc_funcs->lf_speed) (sc, LPT_STROBE_SLOW);
    202        1.1       scw 
    203        1.1       scw 	/* wait till ready (printer running diagnostics) */
    204        1.1       scw 	for (spin = 0; (sc->sc_funcs->lf_notrdy) (sc, 1); spin += STEP) {
    205        1.1       scw 		if (spin >= TIMEOUT) {
    206        1.1       scw 			sc->sc_state = 0;
    207        1.1       scw 			return (EBUSY);
    208        1.1       scw 		}
    209        1.1       scw 		/* wait 1/4 second, give up if we get a signal */
    210        1.8  christos 		error = tsleep((void *) sc, LPTPRI | PCATCH, "lptopen", STEP);
    211        1.1       scw 		if (error != EWOULDBLOCK) {
    212        1.1       scw 			sc->sc_state = 0;
    213        1.1       scw 			return (error);
    214        1.1       scw 		}
    215        1.1       scw 	}
    216        1.1       scw 
    217        1.1       scw 	sc->sc_inbuf = geteblk(LPT_BSIZE);
    218        1.1       scw 	sc->sc_count = 0;
    219        1.1       scw 	sc->sc_state = LPT_OPEN;
    220        1.1       scw 
    221        1.1       scw 	if ((sc->sc_flags & LPT_NOINTR) == 0)
    222        1.1       scw 		lpt_wakeup(sc);
    223        1.1       scw 
    224        1.1       scw 	(sc->sc_funcs->lf_open) (sc, sc->sc_flags & LPT_NOINTR);
    225        1.1       scw 
    226  1.11.16.1       mjf 	LPRINTF((sc->sc_dev, "opened\n"));
    227        1.1       scw 	return (0);
    228        1.1       scw }
    229        1.1       scw 
    230        1.1       scw void
    231        1.1       scw lpt_wakeup(arg)
    232        1.1       scw 	void *arg;
    233        1.1       scw {
    234        1.1       scw 	struct lpt_softc *sc;
    235        1.1       scw 	int s;
    236        1.1       scw 
    237        1.1       scw 	sc = arg;
    238        1.1       scw 
    239        1.1       scw 	s = spltty();
    240        1.1       scw 	lpt_intr(sc);
    241        1.1       scw 	splx(s);
    242        1.1       scw 
    243        1.1       scw 	callout_reset(&sc->sc_wakeup_ch, STEP, lpt_wakeup, sc);
    244        1.1       scw }
    245        1.1       scw 
    246        1.1       scw /*
    247        1.1       scw  * Close the device, and free the local line buffer.
    248        1.1       scw  */
    249        1.1       scw int
    250        1.7  christos lptclose(dev, flag, mode, l)
    251        1.1       scw 	dev_t dev;
    252        1.1       scw 	int flag;
    253        1.1       scw 	int mode;
    254        1.7  christos 	struct lwp *l;
    255        1.1       scw {
    256        1.1       scw 	struct lpt_softc *sc;
    257        1.1       scw 	int unit;
    258        1.1       scw 
    259        1.1       scw 	unit = LPTUNIT(dev);
    260  1.11.16.1       mjf 	sc = device_private(lpt_cd.cd_devs[unit]);
    261        1.1       scw 
    262        1.1       scw 	if (sc->sc_count)
    263        1.1       scw 		(void) pushbytes(sc);
    264        1.1       scw 
    265        1.1       scw 	if ((sc->sc_flags & LPT_NOINTR) == 0)
    266        1.1       scw 		callout_stop(&sc->sc_wakeup_ch);
    267        1.1       scw 
    268        1.1       scw 	(sc->sc_funcs->lf_close) (sc);
    269        1.1       scw 
    270        1.1       scw 	sc->sc_state = 0;
    271       1.10        ad 	brelse(sc->sc_inbuf, 0);
    272        1.1       scw 
    273  1.11.16.1       mjf 	LPRINTF((sc->sc_dev, "%s: closed\n"));
    274        1.1       scw 	return (0);
    275        1.1       scw }
    276        1.1       scw 
    277        1.1       scw int
    278        1.1       scw pushbytes(sc)
    279        1.1       scw 	struct lpt_softc *sc;
    280        1.1       scw {
    281        1.1       scw 	int s, error, spin, tic;
    282        1.1       scw 
    283        1.1       scw 	if (sc->sc_flags & LPT_NOINTR) {
    284        1.1       scw 		while (sc->sc_count > 0) {
    285        1.1       scw 			spin = 0;
    286        1.1       scw 			while ((sc->sc_funcs->lf_notrdy) (sc, 0)) {
    287        1.1       scw 				if (++spin < sc->sc_spinmax)
    288        1.1       scw 					continue;
    289        1.1       scw 				tic = 0;
    290        1.1       scw 				/* adapt busy-wait algorithm */
    291        1.1       scw 				sc->sc_spinmax++;
    292        1.1       scw 				while ((sc->sc_funcs->lf_notrdy) (sc, 1)) {
    293        1.1       scw 					/* exponential backoff */
    294        1.1       scw 					tic = tic + tic + 1;
    295        1.1       scw 					if (tic > TIMEOUT)
    296        1.1       scw 						tic = TIMEOUT;
    297        1.8  christos 					error = tsleep((void *) sc,
    298        1.1       scw 					    LPTPRI | PCATCH, "lptpsh", tic);
    299        1.1       scw 					if (error != EWOULDBLOCK)
    300        1.1       scw 						return (error);
    301        1.1       scw 				}
    302        1.1       scw 				break;
    303        1.1       scw 			}
    304        1.1       scw 
    305        1.1       scw 			(sc->sc_funcs->lf_wrdata) (sc, *sc->sc_cp++);
    306        1.1       scw 			sc->sc_count--;
    307        1.1       scw 
    308        1.1       scw 			/* adapt busy-wait algorithm */
    309        1.1       scw 			if (spin * 2 + 16 < sc->sc_spinmax)
    310        1.1       scw 				sc->sc_spinmax--;
    311        1.1       scw 		}
    312        1.1       scw 	} else {
    313        1.1       scw 		while (sc->sc_count > 0) {
    314        1.1       scw 			/* if the printer is ready for a char, give it one */
    315        1.1       scw 			if ((sc->sc_state & LPT_OBUSY) == 0) {
    316  1.11.16.1       mjf 				LPRINTF((sc->sc_dev, "write %d\n",
    317        1.1       scw 					sc->sc_count));
    318        1.1       scw 				s = spltty();
    319        1.1       scw 				(void) lpt_intr(sc);
    320        1.1       scw 				splx(s);
    321        1.1       scw 			}
    322        1.8  christos 			error = tsleep((void *) sc, LPTPRI | PCATCH,
    323        1.1       scw 			    "lptwrite2", 0);
    324        1.1       scw 			if (error)
    325        1.1       scw 				return (error);
    326        1.1       scw 		}
    327        1.1       scw 	}
    328        1.1       scw 	return (0);
    329        1.1       scw }
    330        1.1       scw 
    331        1.1       scw /*
    332        1.1       scw  * Copy a line from user space to a local buffer, then call putc to get the
    333        1.1       scw  * chars moved to the output queue.
    334        1.1       scw  */
    335        1.1       scw int
    336        1.1       scw lptwrite(dev, uio, flags)
    337        1.1       scw 	dev_t dev;
    338        1.1       scw 	struct uio *uio;
    339        1.1       scw 	int flags;
    340        1.1       scw {
    341        1.1       scw 	struct lpt_softc *sc;
    342        1.1       scw 	size_t n;
    343        1.1       scw 	int error;
    344        1.1       scw 
    345  1.11.16.1       mjf 	sc = device_private(lpt_cd.cd_devs[LPTUNIT(dev)]);
    346        1.1       scw 	error = 0;
    347        1.1       scw 
    348        1.1       scw 	while ((n = min(LPT_BSIZE, uio->uio_resid)) != 0) {
    349        1.1       scw 		uiomove(sc->sc_cp = sc->sc_inbuf->b_data, n, uio);
    350        1.1       scw 		sc->sc_count = n;
    351        1.1       scw 		error = pushbytes(sc);
    352        1.1       scw 		if (error) {
    353        1.1       scw 			/*
    354        1.1       scw 			 * Return accurate residual if interrupted or timed
    355        1.1       scw 			 * out.
    356        1.1       scw 			 */
    357        1.1       scw 			uio->uio_resid += sc->sc_count;
    358        1.1       scw 			sc->sc_count = 0;
    359        1.1       scw 			return (error);
    360        1.1       scw 		}
    361        1.1       scw 	}
    362        1.1       scw 	return (0);
    363        1.1       scw }
    364        1.1       scw 
    365        1.1       scw /*
    366        1.1       scw  * Handle printer interrupts which occur when the printer is ready to accept
    367        1.1       scw  * another char.
    368        1.1       scw  */
    369        1.1       scw int
    370        1.1       scw lpt_intr(sc)
    371        1.1       scw 	struct lpt_softc *sc;
    372        1.1       scw {
    373        1.1       scw 
    374        1.1       scw 	if (sc->sc_count) {
    375        1.1       scw 		/* send char */
    376        1.1       scw 		(sc->sc_funcs->lf_wrdata) (sc, *sc->sc_cp++);
    377        1.1       scw 		sc->sc_count--;
    378        1.1       scw 		sc->sc_state |= LPT_OBUSY;
    379        1.1       scw 	} else
    380        1.1       scw 		sc->sc_state &= ~LPT_OBUSY;
    381        1.1       scw 
    382        1.1       scw 	if (sc->sc_count == 0) {
    383        1.1       scw 		/* none, wake up the top half to get more */
    384        1.8  christos 		wakeup((void *) sc);
    385        1.1       scw 	}
    386        1.1       scw 
    387        1.1       scw 	return (1);
    388        1.1       scw }
    389        1.1       scw 
    390        1.1       scw /* ARGSUSED */
    391        1.1       scw int
    392        1.7  christos lptioctl(dev, cmd, data, flag, l)
    393        1.1       scw 	dev_t dev;
    394        1.1       scw 	u_long cmd;
    395        1.8  christos 	void *data;
    396        1.1       scw 	int flag;
    397        1.7  christos 	struct lwp *l;
    398        1.1       scw {
    399        1.1       scw 
    400        1.1       scw 	return (ENODEV);
    401        1.1       scw }
    402