Home | History | Annotate | Line # | Download | only in isa
lms.c revision 1.6.2.5
      1      1.1   andrew /*-
      2  1.6.2.4  mycroft  * Copyright (c) 1993 Charles Hannum
      3      1.1   andrew  * Copyright (c) 1992, 1993 Erik Forsberg.
      4      1.1   andrew  * All rights reserved.
      5      1.1   andrew  *
      6      1.1   andrew  * Redistribution and use in source and binary forms, with or without
      7      1.1   andrew  * modification, are permitted provided that the following conditions
      8      1.1   andrew  * are met:
      9      1.1   andrew  * 1. Redistributions of source code must retain the above copyright
     10      1.1   andrew  *    notice, this list of conditions and the following disclaimer.
     11      1.1   andrew  *
     12      1.1   andrew  * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
     13      1.1   andrew  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     14      1.1   andrew  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
     15      1.1   andrew  * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
     16      1.1   andrew  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     17      1.1   andrew  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
     18      1.1   andrew  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     19      1.1   andrew  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     20      1.1   andrew  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     21      1.1   andrew  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     22      1.1   andrew  *
     23  1.6.2.5  mycroft  *	$Id: lms.c,v 1.6.2.5 1993/09/30 17:33:00 mycroft Exp $
     24      1.1   andrew  */
     25      1.1   andrew 
     26      1.1   andrew #include "param.h"
     27      1.1   andrew #include "kernel.h"
     28      1.1   andrew #include "systm.h"
     29      1.1   andrew #include "buf.h"
     30      1.1   andrew #include "malloc.h"
     31      1.1   andrew #include "ioctl.h"
     32      1.1   andrew #include "tty.h"
     33      1.1   andrew #include "file.h"
     34      1.1   andrew #include "select.h"
     35      1.1   andrew #include "proc.h"
     36      1.1   andrew #include "vnode.h"
     37  1.6.2.1  mycroft #include "sys/device.h"
     38      1.1   andrew 
     39  1.6.2.1  mycroft #include "i386/isa/isavar.h"
     40      1.1   andrew #include "i386/include/mouse.h"
     41  1.6.2.1  mycroft #include "i386/include/pio.h"
     42      1.1   andrew 
     43  1.6.2.1  mycroft #define LMS_DATA	0       /* Offset for data port, read-only */
     44  1.6.2.1  mycroft #define LMS_SIGN	1       /* Offset for signature port, read-write */
     45  1.6.2.1  mycroft #define LMS_INTR	2       /* Offset for interrupt port, read-only */
     46  1.6.2.1  mycroft #define LMS_CNTRL	2       /* Offset for control port, write-only */
     47  1.6.2.1  mycroft #define LMS_CONFIG	3	/* for configuration port, read-write */
     48  1.6.2.1  mycroft #define	LMS_NPORTS	4
     49  1.6.2.1  mycroft 
     50  1.6.2.1  mycroft #define	LMS_CHUNK	128	/* chunk size for read */
     51  1.6.2.1  mycroft #define	LMS_BSIZE	1024	/* buffer size */
     52  1.6.2.1  mycroft 
     53  1.6.2.1  mycroft struct lms_softc {		/* Driver status information */
     54  1.6.2.5  mycroft 	struct	device sc_dev;
     55  1.6.2.5  mycroft 	struct	isadev sc_id;
     56  1.6.2.5  mycroft 	struct	intrhand sc_ih;
     57  1.6.2.5  mycroft 
     58  1.6.2.5  mycroft 	struct	ringbuf {	/* Input queue */
     59  1.6.2.1  mycroft 		int rb_count, rb_first, rb_last;
     60  1.6.2.1  mycroft 		char rb_data[LMS_BSIZE];
     61  1.6.2.1  mycroft 	} sc_q;
     62  1.6.2.1  mycroft 	struct	selinfo sc_rsel;
     63  1.6.2.1  mycroft 	u_short	sc_iobase;	/* I/O port base */
     64  1.6.2.1  mycroft 	u_char	sc_flags;	/* Driver flags */
     65  1.6.2.3  mycroft #define	LMS_NOBLOCK	0x01
     66  1.6.2.1  mycroft 	u_char	sc_state;	/* Mouse driver state */
     67  1.6.2.2  mycroft #define LMS_OPEN	0x01	/* Device is open */
     68  1.6.2.2  mycroft #define LMS_ASLP	0x02	/* Waiting for mouse data */
     69  1.6.2.1  mycroft 	u_char	sc_status;	/* Mouse button status */
     70  1.6.2.1  mycroft 	int	sc_x, sc_y;	/* accumulated motion in the X,Y axis */
     71      1.1   andrew };
     72      1.1   andrew 
     73  1.6.2.1  mycroft static int lmsprobe __P((struct device *, struct cfdata *, void *));
     74  1.6.2.1  mycroft static void lmsforceintr __P((void *));
     75  1.6.2.1  mycroft static void lmsattach __P((struct device *, struct device *, void *));
     76  1.6.2.1  mycroft static int lmsintr __P((void *));
     77      1.1   andrew 
     78  1.6.2.1  mycroft struct cfdriver lmscd =
     79  1.6.2.1  mycroft { NULL, "lms", lmsprobe, lmsattach, sizeof (struct lms_softc) };
     80      1.1   andrew 
     81  1.6.2.1  mycroft #define LMSUNIT(dev)	(minor(dev) >> 1)
     82  1.6.2.1  mycroft #define	LMSFLAGS(dev)	(minor(dev) & 0x01)
     83      1.1   andrew 
     84  1.6.2.1  mycroft static int
     85  1.6.2.1  mycroft lmsprobe(parent, cf, aux)
     86  1.6.2.1  mycroft 	struct device *parent;
     87  1.6.2.1  mycroft 	struct cfdata *cf;
     88  1.6.2.1  mycroft 	void *aux;
     89      1.1   andrew {
     90  1.6.2.1  mycroft 	struct	isa_attach_args *ia = aux;
     91  1.6.2.1  mycroft 	u_short	iobase = ia->ia_iobase;
     92      1.1   andrew 
     93      1.1   andrew 	/* Configure and check for port present */
     94  1.6.2.1  mycroft 	outb(iobase + LMS_CONFIG, 0x91);
     95  1.6.2.1  mycroft 	delay(10);
     96  1.6.2.1  mycroft 	outb(iobase + LMS_SIGN, 0x0c);
     97  1.6.2.1  mycroft 	delay(10);
     98  1.6.2.1  mycroft 	if (inb(iobase + LMS_SIGN) != 0x0c)
     99  1.6.2.1  mycroft 		return 0;
    100  1.6.2.1  mycroft 	outb(iobase + LMS_SIGN, 0x50);
    101  1.6.2.1  mycroft 	delay(10);
    102  1.6.2.1  mycroft 	if (inb(iobase + LMS_SIGN) != 0x50)
    103  1.6.2.1  mycroft 		return 0;
    104  1.6.2.1  mycroft 
    105  1.6.2.1  mycroft 	/* XXXX isa_discoverintr */
    106  1.6.2.1  mycroft 
    107  1.6.2.1  mycroft 	/* disable interrupts */
    108  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0x10);
    109  1.6.2.1  mycroft 
    110  1.6.2.1  mycroft 	ia->ia_iosize = LMS_NPORTS;
    111  1.6.2.1  mycroft 	ia->ia_drq = DRQUNK;
    112  1.6.2.1  mycroft 	ia->ia_msize = 0;
    113  1.6.2.1  mycroft 	return 1;
    114      1.1   andrew }
    115      1.1   andrew 
    116  1.6.2.1  mycroft static void
    117  1.6.2.1  mycroft lmsforceintr(aux)
    118  1.6.2.1  mycroft 	void *aux;
    119      1.1   andrew {
    120  1.6.2.1  mycroft 	struct	isa_attach_args *ia = aux;
    121      1.1   andrew 
    122  1.6.2.1  mycroft 	/* enable interrupts; expect to get one in 1/60 second */
    123  1.6.2.1  mycroft 	outb(ia->ia_iobase + LMS_CNTRL, 0);
    124      1.1   andrew }
    125      1.1   andrew 
    126  1.6.2.1  mycroft static void
    127  1.6.2.1  mycroft lmsattach(parent, self, aux)
    128  1.6.2.1  mycroft 	struct device *parent, *self;
    129  1.6.2.1  mycroft 	void *aux;
    130      1.1   andrew {
    131  1.6.2.1  mycroft 	struct	lms_softc *sc = (struct lms_softc *)self;
    132  1.6.2.1  mycroft 	struct	isa_attach_args *ia = aux;
    133  1.6.2.1  mycroft 	u_short	iobase = ia->ia_iobase;
    134  1.6.2.1  mycroft 
    135  1.6.2.1  mycroft 	/* other initialization done by lmsprobe */
    136  1.6.2.1  mycroft 	sc->sc_iobase = iobase;
    137  1.6.2.1  mycroft 	sc->sc_state = 0;
    138      1.1   andrew 
    139  1.6.2.5  mycroft 	printf(": Logitech mouse\n");
    140  1.6.2.5  mycroft 
    141  1.6.2.1  mycroft 	/* XXXX isa_establishintr */
    142      1.1   andrew }
    143      1.1   andrew 
    144  1.6.2.1  mycroft int
    145  1.6.2.1  mycroft lmsopen(dev, flag)
    146  1.6.2.1  mycroft 	dev_t dev;
    147  1.6.2.1  mycroft 	int flag;
    148      1.1   andrew {
    149  1.6.2.1  mycroft 	int	unit = LMSUNIT(dev);
    150  1.6.2.1  mycroft 	struct	lms_softc *sc;
    151      1.1   andrew 
    152  1.6.2.1  mycroft 	if (unit >= lmscd.cd_ndevs)
    153  1.6.2.1  mycroft 		return ENXIO;
    154  1.6.2.5  mycroft 	sc = lmscd.cd_devs[unit];
    155  1.6.2.1  mycroft 	if (!sc)
    156  1.6.2.1  mycroft 		return ENXIO;
    157  1.6.2.1  mycroft 
    158  1.6.2.2  mycroft 	if (sc->sc_state & LMS_OPEN)
    159  1.6.2.1  mycroft 		return EBUSY;
    160  1.6.2.1  mycroft 
    161  1.6.2.2  mycroft 	sc->sc_state |= LMS_OPEN;
    162  1.6.2.1  mycroft 	sc->sc_status = 0;
    163  1.6.2.1  mycroft 	sc->sc_x = sc->sc_y = 0;
    164  1.6.2.1  mycroft 	sc->sc_q.rb_count = sc->sc_q.rb_first = sc->sc_q.rb_last = 0;
    165      1.1   andrew 
    166  1.6.2.1  mycroft 	/* enable interrupts */
    167  1.6.2.1  mycroft 	outb(sc->sc_iobase + LMS_CNTRL, 0);
    168      1.1   andrew 
    169  1.6.2.1  mycroft 	return 0;
    170  1.6.2.1  mycroft }
    171      1.1   andrew 
    172  1.6.2.1  mycroft int
    173  1.6.2.1  mycroft lmsclose(dev, flag)
    174  1.6.2.1  mycroft 	dev_t dev;
    175  1.6.2.1  mycroft 	int flag;
    176  1.6.2.1  mycroft {
    177  1.6.2.1  mycroft 	int	unit = LMSUNIT(dev);
    178  1.6.2.5  mycroft 	struct	lms_softc *sc = lmscd.cd_devs[unit];
    179      1.1   andrew 
    180  1.6.2.1  mycroft 	/* disable interrupts */
    181  1.6.2.1  mycroft 	outb(sc->sc_iobase + LMS_CNTRL, 0x10);
    182      1.1   andrew 
    183  1.6.2.2  mycroft 	sc->sc_state &= ~LMS_OPEN;
    184      1.1   andrew 
    185  1.6.2.1  mycroft 	return 0;
    186      1.1   andrew }
    187      1.1   andrew 
    188  1.6.2.1  mycroft int
    189  1.6.2.1  mycroft lmsread(dev, uio, flag)
    190  1.6.2.1  mycroft 	dev_t dev;
    191  1.6.2.1  mycroft 	struct uio *uio;
    192  1.6.2.1  mycroft 	int flag;
    193      1.1   andrew {
    194  1.6.2.1  mycroft 	int	unit = LMSUNIT(dev);
    195  1.6.2.5  mycroft 	struct	lms_softc *sc = lmscd.cd_devs[unit];
    196  1.6.2.1  mycroft 	int	s;
    197  1.6.2.1  mycroft 	int	error;
    198  1.6.2.1  mycroft 	size_t	length;
    199  1.6.2.1  mycroft 	u_char	buffer[LMS_CHUNK];
    200      1.1   andrew 
    201      1.1   andrew 	/* Block until mouse activity occured */
    202      1.1   andrew 
    203      1.1   andrew 	s = spltty();
    204  1.6.2.1  mycroft 	while (sc->sc_q.rb_count == 0) {
    205  1.6.2.3  mycroft 		if (sc->sc_flags & LMS_NOBLOCK) {
    206      1.1   andrew 			splx(s);
    207  1.6.2.1  mycroft 			return EWOULDBLOCK;
    208      1.1   andrew 		}
    209  1.6.2.2  mycroft 		sc->sc_state |= LMS_ASLP;
    210  1.6.2.1  mycroft 		if (error = tsleep((caddr_t)sc, PZERO | PCATCH, "lmsrea", 0)) {
    211  1.6.2.2  mycroft 			sc->sc_state &= ~LMS_ASLP;
    212      1.1   andrew 			splx(s);
    213  1.6.2.1  mycroft 			return error;
    214      1.1   andrew 		}
    215      1.1   andrew 	}
    216      1.1   andrew 
    217      1.1   andrew 	/* Transfer as many chunks as possible */
    218      1.1   andrew 
    219  1.6.2.1  mycroft 	while (sc->sc_q.rb_count > 0 && uio->uio_resid > 0) {
    220  1.6.2.1  mycroft 		length = min(sc->sc_q.rb_count, uio->uio_resid);
    221      1.1   andrew 		if (length > sizeof(buffer))
    222      1.1   andrew 			length = sizeof(buffer);
    223      1.1   andrew 
    224      1.1   andrew 		/* Remove a small chunk from input queue */
    225      1.1   andrew 
    226  1.6.2.1  mycroft 		if (sc->sc_q.rb_first + length >= LMS_BSIZE) {
    227  1.6.2.1  mycroft 			size_t	left = LMS_BSIZE - sc->sc_q.rb_first;
    228  1.6.2.1  mycroft 			bcopy(&sc->sc_q.rb_data[sc->sc_q.rb_first], buffer,
    229  1.6.2.1  mycroft 			      left);
    230  1.6.2.1  mycroft 			bcopy(sc->sc_q.rb_data, &buffer[left], length - left);
    231  1.6.2.1  mycroft 		} else
    232  1.6.2.1  mycroft 			bcopy(&sc->sc_q.rb_data[sc->sc_q.rb_first], buffer,
    233  1.6.2.1  mycroft 			      length);
    234      1.1   andrew 
    235  1.6.2.1  mycroft 		sc->sc_q.rb_first = (sc->sc_q.rb_first + length) % LMS_BSIZE;
    236  1.6.2.1  mycroft 		sc->sc_q.rb_count -= length;
    237      1.1   andrew 
    238      1.1   andrew 		/* Copy data to user process */
    239      1.1   andrew 
    240  1.6.2.1  mycroft 		if (error = uiomove(buffer, length, uio))
    241      1.1   andrew 			break;
    242      1.1   andrew 	}
    243      1.1   andrew 
    244  1.6.2.1  mycroft 	/* reset counters */
    245  1.6.2.1  mycroft 	sc->sc_x = sc->sc_y = 0;
    246      1.1   andrew 
    247      1.1   andrew 	splx(s);
    248  1.6.2.1  mycroft 	return error;
    249      1.1   andrew }
    250      1.1   andrew 
    251  1.6.2.1  mycroft int
    252  1.6.2.1  mycroft lmsioctl(dev, cmd, addr, flag)
    253  1.6.2.1  mycroft 	dev_t dev;
    254  1.6.2.1  mycroft 	int cmd;
    255  1.6.2.1  mycroft 	caddr_t addr;
    256  1.6.2.1  mycroft 	int flag;
    257      1.1   andrew {
    258  1.6.2.1  mycroft 	int	unit = LMSUNIT(dev);
    259  1.6.2.5  mycroft 	struct	lms_softc *sc = lmscd.cd_devs[unit];
    260  1.6.2.1  mycroft 	struct	mouseinfo info;
    261  1.6.2.1  mycroft 	int	s;
    262  1.6.2.1  mycroft 	int	error;
    263      1.1   andrew 
    264      1.1   andrew 	switch (cmd) {
    265  1.6.2.1  mycroft 	    case MOUSEIOCREAD:
    266      1.1   andrew 		s = spltty();
    267      1.1   andrew 
    268  1.6.2.1  mycroft 		info.status = sc->sc_status;
    269  1.6.2.1  mycroft 		if (sc->sc_x || sc->sc_y)
    270      1.1   andrew 			info.status |= MOVEMENT;
    271      1.1   andrew 
    272  1.6.2.1  mycroft 		if (sc->sc_x > 127)
    273      1.1   andrew 			info.xmotion = 127;
    274  1.6.2.1  mycroft 		else if (sc->sc_x < -127)
    275  1.6.2.1  mycroft 			/* bounding at -127 avoids a bug in XFree86 */
    276      1.3  mycroft 			info.xmotion = -127;
    277      1.1   andrew 		else
    278  1.6.2.1  mycroft 			info.xmotion = sc->sc_x;
    279      1.1   andrew 
    280  1.6.2.1  mycroft 		if (sc->sc_y > 127)
    281      1.1   andrew 			info.ymotion = 127;
    282  1.6.2.1  mycroft 		else if (sc->sc_y < -127)
    283      1.3  mycroft 			info.ymotion = -127;
    284      1.1   andrew 		else
    285  1.6.2.1  mycroft 			info.ymotion = sc->sc_y;
    286      1.1   andrew 
    287  1.6.2.1  mycroft 		sc->sc_x = 0;
    288  1.6.2.1  mycroft 		sc->sc_y = 0;
    289  1.6.2.1  mycroft 		sc->sc_status &= ~BUTCHNGMASK;
    290      1.1   andrew 
    291      1.1   andrew 		splx(s);
    292      1.1   andrew 		error = copyout(&info, addr, sizeof(struct mouseinfo));
    293      1.1   andrew 		break;
    294      1.1   andrew 
    295  1.6.2.1  mycroft 	    default:
    296      1.1   andrew 		error = EINVAL;
    297      1.1   andrew 		break;
    298  1.6.2.1  mycroft 	}
    299      1.1   andrew 
    300  1.6.2.1  mycroft 	return error;
    301      1.1   andrew }
    302      1.1   andrew 
    303  1.6.2.1  mycroft int
    304  1.6.2.1  mycroft lmsintr(arg)
    305  1.6.2.1  mycroft 	void *arg;
    306      1.1   andrew {
    307  1.6.2.1  mycroft 	struct	lms_softc *sc = (struct lms_softc *)arg;
    308  1.6.2.1  mycroft 	u_short	iobase = sc->sc_iobase;
    309  1.6.2.1  mycroft 	u_char	hi, lo, buttons, changed;
    310  1.6.2.1  mycroft 	char	dx, dy;
    311  1.6.2.1  mycroft 
    312  1.6.2.2  mycroft 	if ((sc->sc_state & LMS_OPEN) == 0)
    313  1.6.2.1  mycroft 		/* interrupts not expected */
    314  1.6.2.1  mycroft 		return 0;
    315  1.6.2.1  mycroft 
    316  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0xab);
    317  1.6.2.1  mycroft 	hi = inb(iobase + LMS_DATA);
    318  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0x90);
    319  1.6.2.1  mycroft 	lo = inb(iobase + LMS_DATA);
    320  1.6.2.1  mycroft 	dx = ((hi & 0x0f) << 4) | (lo & 0x0f);
    321  1.6.2.1  mycroft 	/* bounding at -127 avoids a bug in XFree86 */
    322      1.3  mycroft 	dx = (dx == -128) ? -127 : dx;
    323      1.3  mycroft 
    324  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0xf0);
    325  1.6.2.1  mycroft 	hi = inb(iobase + LMS_DATA);
    326  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0xd0);
    327  1.6.2.1  mycroft 	lo = inb(iobase + LMS_DATA);
    328  1.6.2.1  mycroft 	dy = ((hi & 0x0f) << 4) | (lo & 0x0f);
    329      1.1   andrew 	dy = (dy == -128) ? 127 : -dy;
    330      1.3  mycroft 
    331  1.6.2.1  mycroft 	outb(iobase + LMS_CNTRL, 0);
    332  1.6.2.1  mycroft 
    333  1.6.2.4  mycroft 	buttons = (~hi >> 5) & 0x07;
    334  1.6.2.4  mycroft 	changed = ((buttons ^ sc->sc_status) & 0x07) << 3;
    335  1.6.2.4  mycroft 	sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
    336  1.6.2.1  mycroft 
    337  1.6.2.4  mycroft 	if (dx || dy || changed) {
    338  1.6.2.1  mycroft 		int	last = sc->sc_q.rb_last;
    339  1.6.2.1  mycroft 		char	*cp = &sc->sc_q.rb_data[last];
    340  1.6.2.1  mycroft 		int	count = sc->sc_q.rb_count;
    341  1.6.2.1  mycroft 
    342  1.6.2.1  mycroft 		/* Update accumulated movements */
    343  1.6.2.1  mycroft 		sc->sc_x += dx;
    344  1.6.2.1  mycroft 		sc->sc_y += dy;
    345  1.6.2.1  mycroft 
    346  1.6.2.1  mycroft 		if ((count += 5) > LMS_BSIZE)
    347  1.6.2.1  mycroft 			return 1;
    348  1.6.2.1  mycroft 		sc->sc_q.rb_count = count;
    349  1.6.2.1  mycroft 
    350  1.6.2.1  mycroft #define	next() \
    351  1.6.2.1  mycroft 		if (++last >= LMS_BSIZE) {	\
    352  1.6.2.1  mycroft 			last = 0;		\
    353  1.6.2.1  mycroft 			cp = sc->sc_q.rb_data;	\
    354  1.6.2.1  mycroft 		} else				\
    355  1.6.2.1  mycroft 			cp++;
    356  1.6.2.1  mycroft 		*cp = 0x80 | (buttons ^ BUTSTATMASK);
    357  1.6.2.1  mycroft 		next();
    358  1.6.2.1  mycroft 		*cp = dx;
    359  1.6.2.1  mycroft 		next();
    360  1.6.2.1  mycroft 		*cp = dy;
    361  1.6.2.1  mycroft 		next();
    362  1.6.2.1  mycroft 		*cp = 0;
    363  1.6.2.1  mycroft 		next();
    364  1.6.2.1  mycroft 		*cp = 0;
    365  1.6.2.1  mycroft 		next();
    366  1.6.2.1  mycroft 		sc->sc_q.rb_last = last;
    367      1.1   andrew 
    368  1.6.2.2  mycroft 		if (sc->sc_state & LMS_ASLP) {
    369  1.6.2.2  mycroft 			sc->sc_state &= ~LMS_ASLP;
    370      1.5   andrew 			wakeup((caddr_t)sc);
    371      1.1   andrew 		}
    372  1.6.2.1  mycroft 		selwakeup(&sc->sc_rsel);
    373      1.5   andrew 	}
    374  1.6.2.1  mycroft 
    375  1.6.2.1  mycroft 	return 1;
    376      1.1   andrew }
    377      1.1   andrew 
    378  1.6.2.1  mycroft int
    379  1.6.2.1  mycroft lmsselect(dev, rw, p)
    380  1.6.2.1  mycroft 	dev_t dev;
    381  1.6.2.1  mycroft 	int rw;
    382  1.6.2.1  mycroft 	struct proc *p;
    383      1.1   andrew {
    384  1.6.2.1  mycroft 	int	unit = LMSUNIT(dev);
    385  1.6.2.5  mycroft 	struct	lms_softc *sc = lmscd.cd_devs[unit];
    386  1.6.2.1  mycroft 	int	s;
    387  1.6.2.1  mycroft 	int	ret;
    388      1.1   andrew 
    389      1.1   andrew 	if (rw == FWRITE)
    390  1.6.2.1  mycroft 		return 0;
    391      1.1   andrew 
    392      1.1   andrew 	s = spltty();
    393  1.6.2.1  mycroft 	if (sc->sc_q.rb_count)
    394      1.1   andrew 		ret = 1;
    395      1.1   andrew 	else {
    396  1.6.2.1  mycroft 		selrecord(p, &sc->sc_rsel);
    397      1.1   andrew 		ret = 0;
    398      1.1   andrew 	}
    399      1.1   andrew 	splx(s);
    400      1.1   andrew 
    401  1.6.2.1  mycroft 	return ret;
    402      1.1   andrew }
    403