Home | History | Annotate | Line # | Download | only in dev
opms.c revision 1.1.4.5
      1  1.1.4.5  jdolecek /*	$NetBSD: opms.c,v 1.1.4.5 2002/10/10 18:31:38 jdolecek Exp $	*/
      2      1.1      soda /*	$OpenBSD: pccons.c,v 1.22 1999/01/30 22:39:37 imp Exp $	*/
      3      1.1      soda /*	NetBSD: pms.c,v 1.21 1995/04/18 02:25:18 mycroft Exp	*/
      4      1.1      soda 
      5      1.1      soda /*-
      6      1.1      soda  * Copyright (c) 1993, 1994, 1995 Charles M. Hannum.  All rights reserved.
      7      1.1      soda  * Copyright (c) 1990 The Regents of the University of California.
      8      1.1      soda  * All rights reserved.
      9      1.1      soda  *
     10      1.1      soda  * This code is derived from software contributed to Berkeley by
     11      1.1      soda  * William Jolitz and Don Ahn.
     12      1.1      soda  *
     13      1.1      soda  * Copyright (c) 1994 Charles M. Hannum.
     14      1.1      soda  * Copyright (c) 1992, 1993 Erik Forsberg.
     15      1.1      soda  *
     16      1.1      soda  * Redistribution and use in source and binary forms, with or without
     17      1.1      soda  * modification, are permitted provided that the following conditions
     18      1.1      soda  * are met:
     19      1.1      soda  * 1. Redistributions of source code must retain the above copyright
     20      1.1      soda  *    notice, this list of conditions and the following disclaimer.
     21      1.1      soda  * 2. Redistributions in binary form must reproduce the above copyright
     22      1.1      soda  *    notice, this list of conditions and the following disclaimer in the
     23      1.1      soda  *    documentation and/or other materials provided with the distribution.
     24      1.1      soda  * 3. All advertising materials mentioning features or use of this software
     25      1.1      soda  *    must display the following acknowledgement:
     26      1.1      soda  *	This product includes software developed by the University of
     27      1.1      soda  *	California, Berkeley and its contributors.
     28      1.1      soda  * 4. Neither the name of the University nor the names of its contributors
     29      1.1      soda  *    may be used to endorse or promote products derived from this software
     30      1.1      soda  *    without specific prior written permission.
     31      1.1      soda  *
     32      1.1      soda  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33      1.1      soda  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34      1.1      soda  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35      1.1      soda  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36      1.1      soda  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37      1.1      soda  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38      1.1      soda  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39      1.1      soda  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40      1.1      soda  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41      1.1      soda  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42      1.1      soda  * SUCH DAMAGE.
     43      1.1      soda  *
     44      1.1      soda  *	@(#)pccons.c	5.11 (Berkeley) 5/21/91
     45      1.1      soda  */
     46      1.1      soda 
     47      1.1      soda #include <sys/param.h>
     48      1.1      soda #include <sys/systm.h>
     49      1.1      soda #include <sys/vnode.h>
     50      1.1      soda #include <sys/poll.h>
     51      1.1      soda #include <sys/tty.h>
     52      1.1      soda #include <sys/device.h>
     53  1.1.4.2   thorpej #include <sys/proc.h>
     54  1.1.4.3  jdolecek #include <sys/conf.h>
     55      1.1      soda 
     56      1.1      soda #include <machine/bus.h>
     57      1.1      soda #include <machine/kbdreg.h>
     58      1.1      soda #include <machine/mouse.h>
     59      1.1      soda 
     60      1.1      soda #include <arc/dev/pcconsvar.h>
     61      1.1      soda #include <arc/dev/opmsvar.h>
     62      1.1      soda 
     63      1.1      soda #define	PMSUNIT(dev)	(minor(dev))
     64      1.1      soda 
     65      1.1      soda /* status bits */
     66      1.1      soda #define	PMS_OBUF_FULL	0x01
     67      1.1      soda #define	PMS_IBUF_FULL	0x02
     68      1.1      soda 
     69      1.1      soda /* controller commands */
     70      1.1      soda #define	PMS_INT_ENABLE	0x47	/* enable controller interrupts */
     71      1.1      soda #define	PMS_INT_DISABLE	0x65	/* disable controller interrupts */
     72      1.1      soda #define	PMS_AUX_ENABLE	0xa7	/* enable auxiliary port */
     73      1.1      soda #define	PMS_AUX_DISABLE	0xa8	/* disable auxiliary port */
     74      1.1      soda #define	PMS_MAGIC_1	0xa9	/* XXX */
     75      1.1      soda 
     76      1.1      soda #define	PMS_8042_CMD	0x65
     77      1.1      soda 
     78      1.1      soda /* mouse commands */
     79      1.1      soda #define	PMS_SET_SCALE11	0xe6	/* set scaling 1:1 */
     80      1.1      soda #define	PMS_SET_SCALE21 0xe7	/* set scaling 2:1 */
     81      1.1      soda #define	PMS_SET_RES	0xe8	/* set resolution */
     82      1.1      soda #define	PMS_GET_SCALE	0xe9	/* get scaling factor */
     83      1.1      soda #define	PMS_SET_STREAM	0xea	/* set streaming mode */
     84      1.1      soda #define	PMS_SET_SAMPLE	0xf3	/* set sampling rate */
     85      1.1      soda #define	PMS_DEV_ENABLE	0xf4	/* mouse on */
     86      1.1      soda #define	PMS_DEV_DISABLE	0xf5	/* mouse off */
     87      1.1      soda #define	PMS_RESET	0xff	/* reset */
     88      1.1      soda 
     89      1.1      soda #define	PMS_CHUNK	128	/* chunk size for read */
     90      1.1      soda #define	PMS_BSIZE	1020	/* buffer size */
     91      1.1      soda 
     92      1.1      soda #define	FLUSHQ(q) { if((q)->c_cc) ndflush(q, (q)->c_cc); }
     93      1.1      soda 
     94      1.1      soda extern struct cfdriver opms_cd;
     95      1.1      soda 
     96  1.1.4.5  jdolecek dev_type_open(opmsopen);
     97  1.1.4.5  jdolecek dev_type_close(opmsclose);
     98  1.1.4.5  jdolecek dev_type_read(opmsread);
     99  1.1.4.5  jdolecek dev_type_ioctl(opmsioctl);
    100  1.1.4.5  jdolecek dev_type_poll(opmspoll);
    101  1.1.4.5  jdolecek dev_type_kqfilter(opmskqfilter);
    102  1.1.4.5  jdolecek 
    103  1.1.4.5  jdolecek const struct cdevsw opms_cdevsw = {
    104  1.1.4.5  jdolecek 	opmsopen, opmsclose, opmsread, nowrite, opmsioctl,
    105  1.1.4.5  jdolecek 	nostop, notty, opmspoll, nommap, opmskqfilter,
    106  1.1.4.5  jdolecek };
    107  1.1.4.3  jdolecek 
    108      1.1      soda static __inline void pms_dev_cmd __P((u_char));
    109      1.1      soda static __inline void pms_aux_cmd __P((u_char));
    110      1.1      soda static __inline void pms_pit_cmd __P((u_char));
    111      1.1      soda 
    112      1.1      soda static __inline void
    113      1.1      soda pms_dev_cmd(value)
    114      1.1      soda 	u_char value;
    115      1.1      soda {
    116      1.1      soda 	kbd_flush_input();
    117      1.1      soda 	kbd_cmd_write_1(0xd4);
    118      1.1      soda 	kbd_flush_input();
    119      1.1      soda 	kbd_data_write_1(value);
    120      1.1      soda }
    121      1.1      soda 
    122      1.1      soda static __inline void
    123      1.1      soda pms_aux_cmd(value)
    124      1.1      soda 	u_char value;
    125      1.1      soda {
    126      1.1      soda 	kbd_flush_input();
    127      1.1      soda 	kbd_cmd_write_1(value);
    128      1.1      soda }
    129      1.1      soda 
    130      1.1      soda static __inline void
    131      1.1      soda pms_pit_cmd(value)
    132      1.1      soda 	u_char value;
    133      1.1      soda {
    134      1.1      soda 	kbd_flush_input();
    135      1.1      soda 	kbd_cmd_write_1(0x60);
    136      1.1      soda 	kbd_flush_input();
    137      1.1      soda 	kbd_data_write_1(value);
    138      1.1      soda }
    139      1.1      soda 
    140      1.1      soda int opms_common_match(kbd_iot, config)
    141      1.1      soda 	bus_space_tag_t kbd_iot;
    142      1.1      soda 	struct pccons_config *config;
    143      1.1      soda {
    144      1.1      soda 	u_char x;
    145      1.1      soda 
    146      1.1      soda 	kbd_context_init(kbd_iot, config);
    147      1.1      soda 
    148      1.1      soda 	pms_dev_cmd(KBC_RESET);
    149      1.1      soda 	pms_aux_cmd(PMS_MAGIC_1);
    150      1.1      soda 	delay(10000);
    151      1.1      soda 	x = kbd_data_read_1();
    152      1.1      soda 	pms_pit_cmd(PMS_INT_DISABLE);
    153      1.1      soda 	if (x & 0x04)
    154      1.1      soda 		return 0;
    155      1.1      soda 
    156      1.1      soda 	return 1;
    157      1.1      soda }
    158      1.1      soda 
    159      1.1      soda void
    160      1.1      soda opms_common_attach(sc, opms_iot, config)
    161      1.1      soda 	struct opms_softc *sc;
    162      1.1      soda 	bus_space_tag_t opms_iot;
    163      1.1      soda 	struct pccons_config *config;
    164      1.1      soda {
    165      1.1      soda 	kbd_context_init(opms_iot, config);
    166      1.1      soda 
    167      1.1      soda 	/* Other initialization was done by opmsprobe. */
    168      1.1      soda 	sc->sc_state = 0;
    169      1.1      soda }
    170      1.1      soda 
    171      1.1      soda int
    172  1.1.4.3  jdolecek opmsopen(dev, flag, mode, p)
    173      1.1      soda 	dev_t dev;
    174  1.1.4.5  jdolecek 	int flag, mode;
    175  1.1.4.3  jdolecek 	struct proc *p;
    176      1.1      soda {
    177      1.1      soda 	int unit = PMSUNIT(dev);
    178      1.1      soda 	struct opms_softc *sc;
    179      1.1      soda 
    180      1.1      soda 	if (unit >= opms_cd.cd_ndevs)
    181      1.1      soda 		return ENXIO;
    182      1.1      soda 	sc = opms_cd.cd_devs[unit];
    183      1.1      soda 	if (!sc)
    184      1.1      soda 		return ENXIO;
    185      1.1      soda 
    186      1.1      soda 	if (sc->sc_state & PMS_OPEN)
    187      1.1      soda 		return EBUSY;
    188      1.1      soda 
    189      1.1      soda 	if (clalloc(&sc->sc_q, PMS_BSIZE, 0) == -1)
    190      1.1      soda 		return ENOMEM;
    191      1.1      soda 
    192      1.1      soda 	sc->sc_state |= PMS_OPEN;
    193      1.1      soda 	sc->sc_status = 0;
    194      1.1      soda 	sc->sc_x = sc->sc_y = 0;
    195      1.1      soda 
    196      1.1      soda 	/* Enable interrupts. */
    197      1.1      soda 	pms_dev_cmd(PMS_DEV_ENABLE);
    198      1.1      soda 	pms_aux_cmd(PMS_AUX_ENABLE);
    199      1.1      soda 	pms_dev_cmd(PMS_SET_RES);
    200      1.1      soda 	pms_dev_cmd(3);		/* 8 counts/mm */
    201      1.1      soda 	pms_dev_cmd(PMS_SET_SCALE21);
    202      1.1      soda #if 0
    203      1.1      soda 	pms_dev_cmd(PMS_SET_SAMPLE);
    204      1.1      soda 	pms_dev_cmd(100);	/* 100 samples/sec */
    205      1.1      soda 	pms_dev_cmd(PMS_SET_STREAM);
    206      1.1      soda #endif
    207      1.1      soda 	pms_pit_cmd(PMS_INT_ENABLE);
    208      1.1      soda 
    209      1.1      soda 	return 0;
    210      1.1      soda }
    211      1.1      soda 
    212      1.1      soda int
    213  1.1.4.3  jdolecek opmsclose(dev, flag, mode, p)
    214      1.1      soda 	dev_t dev;
    215  1.1.4.5  jdolecek 	int flag, mode;
    216  1.1.4.3  jdolecek 	struct proc *p;
    217      1.1      soda {
    218      1.1      soda 	struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
    219      1.1      soda 
    220      1.1      soda 	/* Disable interrupts. */
    221      1.1      soda 	pms_dev_cmd(PMS_DEV_DISABLE);
    222      1.1      soda 	pms_pit_cmd(PMS_INT_DISABLE);
    223      1.1      soda 	pms_aux_cmd(PMS_AUX_DISABLE);
    224      1.1      soda 
    225      1.1      soda 	sc->sc_state &= ~PMS_OPEN;
    226      1.1      soda 
    227      1.1      soda 	clfree(&sc->sc_q);
    228      1.1      soda 
    229      1.1      soda 	return 0;
    230      1.1      soda }
    231      1.1      soda 
    232      1.1      soda int
    233      1.1      soda opmsread(dev, uio, flag)
    234      1.1      soda 	dev_t dev;
    235      1.1      soda 	struct uio *uio;
    236      1.1      soda 	int flag;
    237      1.1      soda {
    238      1.1      soda 	struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
    239      1.1      soda 	int s;
    240      1.1      soda 	int error = 0;
    241      1.1      soda 	size_t length;
    242      1.1      soda 	u_char buffer[PMS_CHUNK];
    243      1.1      soda 
    244  1.1.4.2   thorpej 	/* Block until mouse activity occurred. */
    245      1.1      soda 
    246      1.1      soda 	s = spltty();
    247      1.1      soda 	while (sc->sc_q.c_cc == 0) {
    248      1.1      soda 		if (flag & IO_NDELAY) {
    249      1.1      soda 			splx(s);
    250      1.1      soda 			return EWOULDBLOCK;
    251      1.1      soda 		}
    252      1.1      soda 		sc->sc_state |= PMS_ASLP;
    253      1.1      soda 		error = tsleep((caddr_t)sc, PZERO | PCATCH, "pmsrea", 0);
    254      1.1      soda 		if (error) {
    255      1.1      soda 			sc->sc_state &= ~PMS_ASLP;
    256      1.1      soda 			splx(s);
    257      1.1      soda 			return error;
    258      1.1      soda 		}
    259      1.1      soda 	}
    260      1.1      soda 	splx(s);
    261      1.1      soda 
    262      1.1      soda 	/* Transfer as many chunks as possible. */
    263      1.1      soda 
    264      1.1      soda 	while (sc->sc_q.c_cc > 0 && uio->uio_resid > 0) {
    265      1.1      soda 		length = min(sc->sc_q.c_cc, uio->uio_resid);
    266      1.1      soda 		if (length > sizeof(buffer))
    267      1.1      soda 			length = sizeof(buffer);
    268      1.1      soda 
    269      1.1      soda 		/* Remove a small chunk from the input queue. */
    270      1.1      soda 		(void) q_to_b(&sc->sc_q, buffer, length);
    271      1.1      soda 
    272      1.1      soda 		/* Copy the data to the user process. */
    273      1.1      soda 		error = uiomove(buffer, length, uio);
    274      1.1      soda 		if (error)
    275      1.1      soda 			break;
    276      1.1      soda 	}
    277      1.1      soda 
    278      1.1      soda 	return error;
    279      1.1      soda }
    280      1.1      soda 
    281      1.1      soda int
    282  1.1.4.3  jdolecek opmsioctl(dev, cmd, addr, flag, p)
    283      1.1      soda 	dev_t dev;
    284      1.1      soda 	u_long cmd;
    285      1.1      soda 	caddr_t addr;
    286      1.1      soda 	int flag;
    287  1.1.4.3  jdolecek 	struct proc *p;
    288      1.1      soda {
    289      1.1      soda 	struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
    290      1.1      soda 	struct mouseinfo info;
    291      1.1      soda 	int s;
    292      1.1      soda 	int error;
    293      1.1      soda 
    294      1.1      soda 	switch (cmd) {
    295      1.1      soda 	case MOUSEIOCREAD:
    296      1.1      soda 		s = spltty();
    297      1.1      soda 
    298      1.1      soda 		info.status = sc->sc_status;
    299      1.1      soda 		if (sc->sc_x || sc->sc_y)
    300      1.1      soda 			info.status |= MOVEMENT;
    301      1.1      soda 
    302      1.1      soda 		if (sc->sc_x > 127)
    303      1.1      soda 			info.xmotion = 127;
    304      1.1      soda 		else if (sc->sc_x < -127)
    305      1.1      soda 			/* Bounding at -127 avoids a bug in XFree86. */
    306      1.1      soda 			info.xmotion = -127;
    307      1.1      soda 		else
    308      1.1      soda 			info.xmotion = sc->sc_x;
    309      1.1      soda 
    310      1.1      soda 		if (sc->sc_y > 127)
    311      1.1      soda 			info.ymotion = 127;
    312      1.1      soda 		else if (sc->sc_y < -127)
    313      1.1      soda 			info.ymotion = -127;
    314      1.1      soda 		else
    315      1.1      soda 			info.ymotion = sc->sc_y;
    316      1.1      soda 
    317      1.1      soda 		/* Reset historical information. */
    318      1.1      soda 		sc->sc_x = sc->sc_y = 0;
    319      1.1      soda 		sc->sc_status &= ~BUTCHNGMASK;
    320      1.1      soda 		ndflush(&sc->sc_q, sc->sc_q.c_cc);
    321      1.1      soda 
    322      1.1      soda 		splx(s);
    323      1.1      soda 		error = copyout(&info, addr, sizeof(struct mouseinfo));
    324      1.1      soda 		break;
    325      1.1      soda 	default:
    326      1.1      soda 		error = EINVAL;
    327      1.1      soda 		break;
    328      1.1      soda 	}
    329      1.1      soda 
    330      1.1      soda 	return error;
    331      1.1      soda }
    332      1.1      soda 
    333      1.1      soda /* Masks for the first byte of a packet */
    334      1.1      soda #define PS2LBUTMASK 0x01
    335      1.1      soda #define PS2RBUTMASK 0x02
    336      1.1      soda #define PS2MBUTMASK 0x04
    337      1.1      soda 
    338      1.1      soda int
    339      1.1      soda opmsintr(arg)
    340      1.1      soda 	void *arg;
    341      1.1      soda {
    342      1.1      soda 	struct opms_softc *sc = arg;
    343      1.1      soda 	static int state = 0;
    344      1.1      soda 	static u_char buttons;
    345      1.1      soda 	u_char changed;
    346      1.1      soda 	static char dx, dy;
    347      1.1      soda 	u_char buffer[5];
    348      1.1      soda 
    349      1.1      soda 	if ((sc->sc_state & PMS_OPEN) == 0) {
    350      1.1      soda 		/* Interrupts are not expected.  Discard the byte. */
    351      1.1      soda 		kbd_flush_input();
    352      1.1      soda 		return 0;
    353      1.1      soda 	}
    354      1.1      soda 
    355      1.1      soda 	switch (state) {
    356      1.1      soda 
    357      1.1      soda 	case 0:
    358      1.1      soda 		buttons = kbd_data_read_1();
    359      1.1      soda 		if ((buttons & 0xc0) == 0)
    360      1.1      soda 			++state;
    361      1.1      soda 		break;
    362      1.1      soda 
    363      1.1      soda 	case 1:
    364      1.1      soda 		dx = kbd_data_read_1();
    365      1.1      soda 		/* Bounding at -127 avoids a bug in XFree86. */
    366      1.1      soda 		dx = (dx == -128) ? -127 : dx;
    367      1.1      soda 		++state;
    368      1.1      soda 		break;
    369      1.1      soda 
    370      1.1      soda 	case 2:
    371      1.1      soda 		dy = kbd_data_read_1();
    372      1.1      soda 		dy = (dy == -128) ? -127 : dy;
    373      1.1      soda 		state = 0;
    374      1.1      soda 
    375      1.1      soda 		buttons = ((buttons & PS2LBUTMASK) << 2) |
    376      1.1      soda 			  ((buttons & (PS2RBUTMASK | PS2MBUTMASK)) >> 1);
    377      1.1      soda 		changed = ((buttons ^ sc->sc_status) & BUTSTATMASK) << 3;
    378      1.1      soda 		sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
    379      1.1      soda 
    380      1.1      soda 		if (dx || dy || changed) {
    381      1.1      soda 			/* Update accumulated movements. */
    382      1.1      soda 			sc->sc_x += dx;
    383      1.1      soda 			sc->sc_y += dy;
    384      1.1      soda 
    385      1.1      soda 			/* Add this event to the queue. */
    386      1.1      soda 			buffer[0] = 0x80 | (buttons & BUTSTATMASK);
    387      1.1      soda 			if(dx < 0)
    388      1.1      soda 				buffer[0] |= 0x10;
    389      1.1      soda 			buffer[1] = dx & 0x7f;
    390      1.1      soda 			if(dy < 0)
    391      1.1      soda 				buffer[0] |= 0x20;
    392      1.1      soda 			buffer[2] = dy & 0x7f;
    393      1.1      soda 			buffer[3] = buffer[4] = 0;
    394      1.1      soda 			(void) b_to_q(buffer, sizeof buffer, &sc->sc_q);
    395      1.1      soda 
    396      1.1      soda 			if (sc->sc_state & PMS_ASLP) {
    397      1.1      soda 				sc->sc_state &= ~PMS_ASLP;
    398      1.1      soda 				wakeup((caddr_t)sc);
    399      1.1      soda 			}
    400  1.1.4.1   thorpej 			selnotify(&sc->sc_rsel, 0);
    401      1.1      soda 		}
    402      1.1      soda 
    403      1.1      soda 		break;
    404      1.1      soda 	}
    405      1.1      soda 	return -1;
    406      1.1      soda }
    407      1.1      soda 
    408      1.1      soda int
    409      1.1      soda opmspoll(dev, events, p)
    410      1.1      soda 	dev_t dev;
    411      1.1      soda 	int events;
    412      1.1      soda 	struct proc *p;
    413      1.1      soda {
    414      1.1      soda 	struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
    415      1.1      soda 	int revents = 0;
    416      1.1      soda 	int s = spltty();
    417      1.1      soda 
    418      1.1      soda 	if (events & (POLLIN | POLLRDNORM)) {
    419      1.1      soda 		if (sc->sc_q.c_cc > 0)
    420      1.1      soda 			revents |= events & (POLLIN | POLLRDNORM);
    421      1.1      soda 		else
    422      1.1      soda 			selrecord(p, &sc->sc_rsel);
    423      1.1      soda 	}
    424      1.1      soda 
    425      1.1      soda 	splx(s);
    426      1.1      soda 	return (revents);
    427  1.1.4.1   thorpej }
    428  1.1.4.1   thorpej 
    429  1.1.4.1   thorpej static void
    430  1.1.4.1   thorpej filt_opmsrdetach(struct knote *kn)
    431  1.1.4.1   thorpej {
    432  1.1.4.4  jdolecek 	struct opms_softc *sc = kn->kn_hook;
    433  1.1.4.1   thorpej 	int s;
    434  1.1.4.1   thorpej 
    435  1.1.4.1   thorpej 	s = spltty();
    436  1.1.4.1   thorpej 	SLIST_REMOVE(&sc->sc_rsel.si_klist, kn, knote, kn_selnext);
    437  1.1.4.1   thorpej 	splx(s);
    438  1.1.4.1   thorpej }
    439  1.1.4.1   thorpej 
    440  1.1.4.1   thorpej static int
    441  1.1.4.1   thorpej filt_opmsread(struct knote *kn, long hint)
    442  1.1.4.1   thorpej {
    443  1.1.4.4  jdolecek 	struct opms_softc *sc = kn->kn_hook;
    444  1.1.4.1   thorpej 
    445  1.1.4.1   thorpej 	kn->kn_data = sc->sc_q.c_cc;
    446  1.1.4.1   thorpej 	return (kn->kn_data > 0);
    447  1.1.4.1   thorpej }
    448  1.1.4.1   thorpej 
    449  1.1.4.1   thorpej static const struct filterops opmsread_filtops =
    450  1.1.4.1   thorpej 	{ 1, NULL, filt_opmsrdetach, filt_opmsread };
    451  1.1.4.1   thorpej 
    452  1.1.4.1   thorpej int
    453  1.1.4.1   thorpej opmskqfilter(dev_t dev, struct knote *kn)
    454  1.1.4.1   thorpej {
    455  1.1.4.5  jdolecek 	struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
    456  1.1.4.1   thorpej 	struct klist *klist;
    457  1.1.4.1   thorpej 	int s;
    458  1.1.4.1   thorpej 
    459  1.1.4.1   thorpej 	switch (kn->kn_filter) {
    460  1.1.4.1   thorpej 	case EVFILT_READ:
    461  1.1.4.1   thorpej 		klist = &sc->sc_rsel.si_klist;
    462  1.1.4.1   thorpej 		kn->kn_fop = &opmsread_filtops;
    463  1.1.4.1   thorpej 		break;
    464  1.1.4.1   thorpej 
    465  1.1.4.1   thorpej 	default:
    466  1.1.4.1   thorpej 		return (1);
    467  1.1.4.1   thorpej 	}
    468  1.1.4.1   thorpej 
    469  1.1.4.4  jdolecek 	kn->kn_hook = sc;
    470  1.1.4.1   thorpej 
    471  1.1.4.1   thorpej 	s = spltty();
    472  1.1.4.1   thorpej 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
    473  1.1.4.1   thorpej 	splx(s);
    474  1.1.4.1   thorpej 
    475  1.1.4.1   thorpej 	return (0);
    476      1.1      soda }
    477