Home | History | Annotate | Line # | Download | only in wscons
wsmouse.c revision 1.55.10.6
      1  1.55.10.4       mjf /* $NetBSD: wsmouse.c,v 1.55.10.6 2009/01/17 13:29:10 mjf Exp $ */
      2       1.39      jmmv 
      3       1.39      jmmv /*-
      4       1.39      jmmv  * Copyright (c) 2006 The NetBSD Foundation, Inc.
      5       1.39      jmmv  * All rights reserved.
      6       1.39      jmmv  *
      7       1.39      jmmv  * This code is derived from software contributed to The NetBSD Foundation
      8       1.39      jmmv  * by Julio M. Merino Vidal.
      9       1.39      jmmv  *
     10       1.39      jmmv  * Redistribution and use in source and binary forms, with or without
     11       1.39      jmmv  * modification, are permitted provided that the following conditions
     12       1.39      jmmv  * are met:
     13       1.39      jmmv  * 1. Redistributions of source code must retain the above copyright
     14       1.39      jmmv  *    notice, this list of conditions and the following disclaimer.
     15       1.39      jmmv  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.39      jmmv  *    notice, this list of conditions and the following disclaimer in the
     17       1.39      jmmv  *    documentation and/or other materials provided with the distribution.
     18       1.39      jmmv  *
     19       1.39      jmmv  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.39      jmmv  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.39      jmmv  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.39      jmmv  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.39      jmmv  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.39      jmmv  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.39      jmmv  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.39      jmmv  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.39      jmmv  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.39      jmmv  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.39      jmmv  * POSSIBILITY OF SUCH DAMAGE.
     30       1.39      jmmv  */
     31        1.1  drochner 
     32        1.1  drochner /*
     33        1.1  drochner  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
     34        1.1  drochner  *
     35        1.1  drochner  * Redistribution and use in source and binary forms, with or without
     36        1.1  drochner  * modification, are permitted provided that the following conditions
     37        1.1  drochner  * are met:
     38        1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     39        1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     40        1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     41        1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     42        1.1  drochner  *    documentation and/or other materials provided with the distribution.
     43        1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     44        1.1  drochner  *    must display the following acknowledgement:
     45        1.1  drochner  *      This product includes software developed by Christopher G. Demetriou
     46        1.1  drochner  *	for the NetBSD Project.
     47        1.1  drochner  * 4. The name of the author may not be used to endorse or promote products
     48        1.1  drochner  *    derived from this software without specific prior written permission
     49        1.1  drochner  *
     50        1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     51        1.1  drochner  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     52        1.1  drochner  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     53        1.1  drochner  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     54        1.1  drochner  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     55        1.1  drochner  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     56        1.1  drochner  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     57        1.1  drochner  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     58        1.1  drochner  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     59        1.1  drochner  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     60        1.1  drochner  */
     61        1.1  drochner 
     62        1.1  drochner /*
     63        1.1  drochner  * Copyright (c) 1992, 1993
     64        1.1  drochner  *	The Regents of the University of California.  All rights reserved.
     65        1.1  drochner  *
     66        1.1  drochner  * This software was developed by the Computer Systems Engineering group
     67        1.1  drochner  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     68        1.1  drochner  * contributed to Berkeley.
     69        1.1  drochner  *
     70        1.1  drochner  * All advertising materials mentioning features or use of this software
     71        1.1  drochner  * must display the following acknowledgement:
     72        1.1  drochner  *	This product includes software developed by the University of
     73        1.1  drochner  *	California, Lawrence Berkeley Laboratory.
     74        1.1  drochner  *
     75        1.1  drochner  * Redistribution and use in source and binary forms, with or without
     76        1.1  drochner  * modification, are permitted provided that the following conditions
     77        1.1  drochner  * are met:
     78        1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     79        1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     80        1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     81        1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     82        1.1  drochner  *    documentation and/or other materials provided with the distribution.
     83       1.32       agc  * 3. Neither the name of the University nor the names of its contributors
     84        1.1  drochner  *    may be used to endorse or promote products derived from this software
     85        1.1  drochner  *    without specific prior written permission.
     86        1.1  drochner  *
     87        1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     88        1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     89        1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     90        1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     91        1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     92        1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     93        1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     94        1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     95        1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     96        1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     97        1.1  drochner  * SUCH DAMAGE.
     98        1.1  drochner  *
     99        1.1  drochner  *	@(#)ms.c	8.1 (Berkeley) 6/11/93
    100        1.1  drochner  */
    101        1.1  drochner 
    102        1.1  drochner /*
    103        1.1  drochner  * Mouse driver.
    104        1.1  drochner  */
    105       1.21     lukem 
    106       1.21     lukem #include <sys/cdefs.h>
    107  1.55.10.4       mjf __KERNEL_RCSID(0, "$NetBSD: wsmouse.c,v 1.55.10.6 2009/01/17 13:29:10 mjf Exp $");
    108        1.1  drochner 
    109       1.17  augustss #include "wsmouse.h"
    110       1.17  augustss #include "wsdisplay.h"
    111       1.17  augustss #include "wsmux.h"
    112       1.17  augustss 
    113        1.1  drochner #include <sys/param.h>
    114        1.1  drochner #include <sys/conf.h>
    115        1.1  drochner #include <sys/ioctl.h>
    116       1.36        ws #include <sys/poll.h>
    117        1.5  augustss #include <sys/fcntl.h>
    118        1.1  drochner #include <sys/kernel.h>
    119        1.1  drochner #include <sys/proc.h>
    120        1.1  drochner #include <sys/syslog.h>
    121        1.1  drochner #include <sys/systm.h>
    122        1.1  drochner #include <sys/tty.h>
    123        1.1  drochner #include <sys/signalvar.h>
    124        1.1  drochner #include <sys/device.h>
    125        1.7  augustss #include <sys/vnode.h>
    126       1.39      jmmv #include <sys/callout.h>
    127       1.39      jmmv #include <sys/malloc.h>
    128        1.1  drochner 
    129        1.1  drochner #include <dev/wscons/wsconsio.h>
    130        1.1  drochner #include <dev/wscons/wsmousevar.h>
    131        1.1  drochner #include <dev/wscons/wseventvar.h>
    132       1.17  augustss #include <dev/wscons/wsmuxvar.h>
    133        1.1  drochner 
    134       1.17  augustss #if defined(WSMUX_DEBUG) && NWSMUX > 0
    135       1.17  augustss #define DPRINTF(x)	if (wsmuxdebug) printf x
    136       1.17  augustss #define DPRINTFN(n,x)	if (wsmuxdebug > (n)) printf x
    137       1.17  augustss extern int wsmuxdebug;
    138       1.17  augustss #else
    139       1.17  augustss #define DPRINTF(x)
    140       1.17  augustss #define DPRINTFN(n,x)
    141        1.8  augustss #endif
    142        1.3  augustss 
    143       1.11  takemura #define INVALID_X	INT_MAX
    144       1.11  takemura #define INVALID_Y	INT_MAX
    145       1.11  takemura #define INVALID_Z	INT_MAX
    146       1.11  takemura 
    147        1.1  drochner struct wsmouse_softc {
    148       1.17  augustss 	struct wsevsrc	sc_base;
    149        1.1  drochner 
    150        1.1  drochner 	const struct wsmouse_accessops *sc_accessops;
    151        1.1  drochner 	void		*sc_accesscookie;
    152        1.1  drochner 
    153        1.1  drochner 	u_int		sc_mb;		/* mouse button state */
    154        1.1  drochner 	u_int		sc_ub;		/* user button state */
    155        1.1  drochner 	int		sc_dx;		/* delta-x */
    156        1.1  drochner 	int		sc_dy;		/* delta-y */
    157        1.4  drochner 	int		sc_dz;		/* delta-z */
    158       1.37  augustss 	int		sc_dw;		/* delta-w */
    159       1.11  takemura 	int		sc_x;		/* absolute-x */
    160       1.11  takemura 	int		sc_y;		/* absolute-y */
    161       1.11  takemura 	int		sc_z;		/* absolute-z */
    162       1.37  augustss 	int		sc_w;		/* absolute-w */
    163        1.7  augustss 
    164        1.7  augustss 	int		sc_refcnt;
    165        1.7  augustss 	u_char		sc_dying;	/* device is being detached */
    166       1.39      jmmv 
    167       1.39      jmmv 	struct wsmouse_repeat	sc_repeat;
    168       1.39      jmmv 	int			sc_repeat_button;
    169       1.52        ad 	callout_t		sc_repeat_callout;
    170       1.39      jmmv 	unsigned int		sc_repeat_delay;
    171       1.17  augustss };
    172       1.17  augustss 
    173  1.55.10.2       mjf static int  wsmouse_match(device_t, cfdata_t, void *);
    174  1.55.10.2       mjf static void wsmouse_attach(device_t, device_t, void *);
    175  1.55.10.2       mjf static int  wsmouse_detach(device_t, int);
    176  1.55.10.2       mjf static int  wsmouse_activate(device_t, enum devact);
    177       1.17  augustss 
    178       1.51  christos static int  wsmouse_do_ioctl(struct wsmouse_softc *, u_long, void *,
    179       1.38  christos 			     int, struct lwp *);
    180        1.7  augustss 
    181        1.9  augustss #if NWSMUX > 0
    182       1.17  augustss static int  wsmouse_mux_open(struct wsevsrc *, struct wseventvar *);
    183       1.17  augustss static int  wsmouse_mux_close(struct wsevsrc *);
    184        1.8  augustss #endif
    185       1.15  augustss 
    186  1.55.10.2       mjf static int  wsmousedoioctl(device_t, u_long, void *, int, struct lwp *);
    187       1.15  augustss 
    188       1.17  augustss static int  wsmousedoopen(struct wsmouse_softc *, struct wseventvar *);
    189        1.8  augustss 
    190  1.55.10.2       mjf CFATTACH_DECL_NEW(wsmouse, sizeof (struct wsmouse_softc),
    191       1.27   thorpej     wsmouse_match, wsmouse_attach, wsmouse_detach, wsmouse_activate);
    192        1.1  drochner 
    193       1.39      jmmv static void wsmouse_repeat(void *v);
    194       1.39      jmmv 
    195        1.1  drochner extern struct cfdriver wsmouse_cd;
    196        1.1  drochner 
    197       1.24   gehenna dev_type_open(wsmouseopen);
    198       1.24   gehenna dev_type_close(wsmouseclose);
    199       1.24   gehenna dev_type_read(wsmouseread);
    200       1.24   gehenna dev_type_ioctl(wsmouseioctl);
    201       1.24   gehenna dev_type_poll(wsmousepoll);
    202       1.28  jdolecek dev_type_kqfilter(wsmousekqfilter);
    203       1.24   gehenna 
    204       1.24   gehenna const struct cdevsw wsmouse_cdevsw = {
    205       1.24   gehenna 	wsmouseopen, wsmouseclose, wsmouseread, nowrite, wsmouseioctl,
    206       1.47  christos 	nostop, notty, wsmousepoll, nommap, wsmousekqfilter, D_OTHER
    207       1.24   gehenna };
    208        1.1  drochner 
    209        1.9  augustss #if NWSMUX > 0
    210       1.17  augustss struct wssrcops wsmouse_srcops = {
    211       1.17  augustss 	WSMUX_MOUSE,
    212       1.17  augustss 	wsmouse_mux_open, wsmouse_mux_close, wsmousedoioctl, NULL, NULL
    213        1.8  augustss };
    214        1.9  augustss #endif
    215        1.8  augustss 
    216        1.1  drochner /*
    217        1.1  drochner  * Print function (for parent devices).
    218        1.1  drochner  */
    219        1.1  drochner int
    220       1.50  christos wsmousedevprint(void *aux, const char *pnp)
    221        1.1  drochner {
    222        1.1  drochner 
    223        1.1  drochner 	if (pnp)
    224       1.29   thorpej 		aprint_normal("wsmouse at %s", pnp);
    225        1.1  drochner 	return (UNCONF);
    226        1.1  drochner }
    227        1.1  drochner 
    228        1.1  drochner int
    229  1.55.10.2       mjf wsmouse_match(device_t parent, cfdata_t match, void *aux)
    230        1.1  drochner {
    231        1.1  drochner 	return (1);
    232        1.1  drochner }
    233        1.1  drochner 
    234        1.1  drochner void
    235  1.55.10.2       mjf wsmouse_attach(device_t parent, device_t self, void *aux)
    236        1.1  drochner {
    237  1.55.10.2       mjf         struct wsmouse_softc *sc = device_private(self);
    238        1.1  drochner 	struct wsmousedev_attach_args *ap = aux;
    239        1.9  augustss #if NWSMUX > 0
    240       1.17  augustss 	int mux, error;
    241        1.8  augustss #endif
    242  1.55.10.1       mjf 	int major;
    243        1.1  drochner 
    244  1.55.10.2       mjf 	sc->sc_base.me_dv = self;
    245        1.1  drochner 	sc->sc_accessops = ap->accessops;
    246        1.1  drochner 	sc->sc_accesscookie = ap->accesscookie;
    247        1.7  augustss 
    248       1.39      jmmv 	/* Initialize button repeating. */
    249       1.39      jmmv 	memset(&sc->sc_repeat, 0, sizeof(sc->sc_repeat));
    250       1.39      jmmv 	sc->sc_repeat_button = -1;
    251       1.39      jmmv 	sc->sc_repeat_delay = 0;
    252       1.52        ad 	callout_init(&sc->sc_repeat_callout, 0);
    253       1.53     joerg 	callout_setfunc(&sc->sc_repeat_callout, wsmouse_repeat, sc);
    254       1.39      jmmv 
    255        1.9  augustss #if NWSMUX > 0
    256       1.17  augustss 	sc->sc_base.me_ops = &wsmouse_srcops;
    257  1.55.10.2       mjf 	mux = device_cfdata(self)->wsmousedevcf_mux;
    258       1.17  augustss 	if (mux >= 0) {
    259       1.17  augustss 		error = wsmux_attach_sc(wsmux_getmux(mux), &sc->sc_base);
    260       1.17  augustss 		if (error)
    261       1.54  jmcneill 			aprint_error(" attach error=%d", error);
    262       1.17  augustss 		else
    263       1.54  jmcneill 			aprint_normal(" mux %d", mux);
    264        1.8  augustss 	}
    265       1.17  augustss #else
    266  1.55.10.2       mjf 	if (device_cfdata(self)->wsmousedevcf_mux >= 0)
    267       1.54  jmcneill 		aprint_normal(" (mux ignored)");
    268        1.8  augustss #endif
    269        1.8  augustss 
    270       1.54  jmcneill 	aprint_naive("\n");
    271       1.54  jmcneill 	aprint_normal("\n");
    272       1.55  jmcneill 
    273       1.55  jmcneill 	if (!pmf_device_register(self, NULL, NULL))
    274       1.55  jmcneill 		aprint_error_dev(self, "couldn't establish power handler\n");
    275  1.55.10.1       mjf 
    276  1.55.10.1       mjf 	major = cdevsw_lookup_major(&wsmouse_cdevsw);
    277  1.55.10.1       mjf 	device_register_name(makedev(major, device_unit(self)), self,
    278  1.55.10.1       mjf 	    true, DEV_OTHER, device_xname(self));
    279        1.7  augustss }
    280        1.7  augustss 
    281        1.7  augustss int
    282  1.55.10.2       mjf wsmouse_activate(device_t self, enum devact act)
    283        1.7  augustss {
    284  1.55.10.2       mjf 	struct wsmouse_softc *sc = device_private(self);
    285       1.17  augustss 
    286       1.17  augustss 	if (act == DVACT_DEACTIVATE)
    287       1.17  augustss 		sc->sc_dying = 1;
    288        1.7  augustss 	return (0);
    289        1.7  augustss }
    290        1.7  augustss 
    291        1.7  augustss /*
    292        1.7  augustss  * Detach a mouse.  To keep track of users of the softc we keep
    293        1.7  augustss  * a reference count that's incremented while inside, e.g., read.
    294        1.7  augustss  * If the mouse is active and the reference count is > 0 (0 is the
    295        1.7  augustss  * normal state) we post an event and then wait for the process
    296        1.7  augustss  * that had the reference to wake us up again.  Then we blow away the
    297        1.7  augustss  * vnode and return (which will deallocate the softc).
    298        1.7  augustss  */
    299        1.7  augustss int
    300  1.55.10.2       mjf wsmouse_detach(device_t self, int flags)
    301        1.7  augustss {
    302  1.55.10.2       mjf 	struct wsmouse_softc *sc = device_private(self);
    303        1.7  augustss 	struct wseventvar *evar;
    304        1.7  augustss 	int maj, mn;
    305        1.7  augustss 	int s;
    306        1.7  augustss 
    307        1.9  augustss #if NWSMUX > 0
    308       1.17  augustss 	/* Tell parent mux we're leaving. */
    309       1.19  augustss 	if (sc->sc_base.me_parent != NULL) {
    310       1.19  augustss 		DPRINTF(("wsmouse_detach:\n"));
    311       1.17  augustss 		wsmux_detach_sc(&sc->sc_base);
    312       1.19  augustss 	}
    313        1.8  augustss #endif
    314        1.8  augustss 
    315       1.17  augustss 	/* If we're open ... */
    316       1.17  augustss 	evar = sc->sc_base.me_evp;
    317       1.17  augustss 	if (evar != NULL && evar->io != NULL) {
    318        1.7  augustss 		s = spltty();
    319        1.7  augustss 		if (--sc->sc_refcnt >= 0) {
    320       1.40      jmmv 			struct wscons_event event;
    321       1.40      jmmv 
    322        1.7  augustss 			/* Wake everyone by generating a dummy event. */
    323       1.40      jmmv 			event.type = 0;
    324       1.40      jmmv 			event.value = 0;
    325       1.40      jmmv 			if (wsevent_inject(evar, &event, 1) != 0)
    326       1.40      jmmv 				wsevent_wakeup(evar);
    327       1.40      jmmv 
    328        1.7  augustss 			/* Wait for processes to go away. */
    329        1.7  augustss 			if (tsleep(sc, PZERO, "wsmdet", hz * 60))
    330        1.7  augustss 				printf("wsmouse_detach: %s didn't detach\n",
    331  1.55.10.2       mjf 				       device_xname(self));
    332        1.7  augustss 		}
    333        1.7  augustss 		splx(s);
    334        1.7  augustss 	}
    335        1.7  augustss 
    336  1.55.10.3       mjf 	device_deregister_all(self);
    337  1.55.10.3       mjf 
    338        1.7  augustss 	/* locate the major number */
    339       1.24   gehenna 	maj = cdevsw_lookup_major(&wsmouse_cdevsw);
    340        1.7  augustss 
    341        1.7  augustss 	/* Nuke the vnodes for any open instances (calls close). */
    342       1.44   thorpej 	mn = device_unit(self);
    343        1.7  augustss 	vdevgone(maj, mn, mn, VCHR);
    344        1.7  augustss 
    345        1.7  augustss 	return (0);
    346        1.1  drochner }
    347        1.1  drochner 
    348        1.1  drochner void
    349  1.55.10.2       mjf wsmouse_input(device_t wsmousedev, u_int btns /* 0 is up */,
    350       1.37  augustss 	int x, int y, int z, int w, u_int flags)
    351        1.1  drochner {
    352  1.55.10.2       mjf 	struct wsmouse_softc *sc = device_private(wsmousedev);
    353        1.7  augustss 	struct wseventvar *evar;
    354       1.40      jmmv 	int mb, ub, d, nevents;
    355       1.41  christos 	/* one for each dimension (4) + a bit for each button */
    356       1.40      jmmv 	struct wscons_event events[4 + sizeof(d) * 8];
    357        1.1  drochner 
    358        1.1  drochner         /*
    359       1.17  augustss          * Discard input if not open.
    360        1.1  drochner          */
    361       1.17  augustss 	evar = sc->sc_base.me_evp;
    362       1.17  augustss 	if (evar == NULL)
    363        1.1  drochner 		return;
    364       1.22  augustss 
    365       1.22  augustss #ifdef DIAGNOSTIC
    366       1.22  augustss 	if (evar->q == NULL) {
    367       1.22  augustss 		printf("wsmouse_input: evar->q=NULL\n");
    368       1.22  augustss 		return;
    369       1.22  augustss 	}
    370       1.22  augustss #endif
    371        1.1  drochner 
    372        1.9  augustss #if NWSMUX > 0
    373       1.17  augustss 	DPRINTFN(5,("wsmouse_input: %s mux=%p, evar=%p\n",
    374  1.55.10.2       mjf 		    device_xname(sc->sc_base.me_dv),
    375  1.55.10.2       mjf 		    sc->sc_base.me_parent, evar));
    376        1.8  augustss #endif
    377        1.7  augustss 
    378        1.1  drochner 	sc->sc_mb = btns;
    379       1.11  takemura 	if (!(flags & WSMOUSE_INPUT_ABSOLUTE_X))
    380       1.11  takemura 		sc->sc_dx += x;
    381       1.11  takemura 	if (!(flags & WSMOUSE_INPUT_ABSOLUTE_Y))
    382       1.11  takemura 		sc->sc_dy += y;
    383       1.11  takemura 	if (!(flags & WSMOUSE_INPUT_ABSOLUTE_Z))
    384       1.11  takemura 		sc->sc_dz += z;
    385       1.37  augustss 	if (!(flags & WSMOUSE_INPUT_ABSOLUTE_W))
    386       1.37  augustss 		sc->sc_dw += w;
    387        1.1  drochner 
    388        1.1  drochner 	/*
    389        1.1  drochner 	 * We have at least one event (mouse button, delta-X, or
    390        1.1  drochner 	 * delta-Y; possibly all three, and possibly three separate
    391        1.1  drochner 	 * button events).  Deliver these events until we are out
    392        1.1  drochner 	 * of changes or out of room.  As events get delivered,
    393        1.1  drochner 	 * mark them `unchanged'.
    394        1.1  drochner 	 */
    395       1.13     bjh21 	ub = sc->sc_ub;
    396       1.40      jmmv 	nevents = 0;
    397        1.1  drochner 
    398       1.11  takemura 	if (flags & WSMOUSE_INPUT_ABSOLUTE_X) {
    399       1.11  takemura 		if (sc->sc_x != x) {
    400       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_ABSOLUTE_X;
    401       1.40      jmmv 			events[nevents].value = x;
    402       1.40      jmmv 			nevents++;
    403       1.11  takemura 		}
    404       1.11  takemura 	} else {
    405       1.11  takemura 		if (sc->sc_dx) {
    406       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_DELTA_X;
    407       1.40      jmmv 			events[nevents].value = sc->sc_dx;
    408       1.40      jmmv 			nevents++;
    409       1.11  takemura 		}
    410        1.1  drochner 	}
    411       1.11  takemura 	if (flags & WSMOUSE_INPUT_ABSOLUTE_Y) {
    412       1.11  takemura 		if (sc->sc_y != y) {
    413       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_ABSOLUTE_Y;
    414       1.40      jmmv 			events[nevents].value = y;
    415       1.40      jmmv 			nevents++;
    416       1.11  takemura 		}
    417       1.11  takemura 	} else {
    418       1.11  takemura 		if (sc->sc_dy) {
    419       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_DELTA_Y;
    420       1.40      jmmv 			events[nevents].value = sc->sc_dy;
    421       1.40      jmmv 			nevents++;
    422       1.11  takemura 		}
    423        1.4  drochner 	}
    424       1.11  takemura 	if (flags & WSMOUSE_INPUT_ABSOLUTE_Z) {
    425       1.11  takemura 		if (sc->sc_z != z) {
    426       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_ABSOLUTE_Z;
    427       1.40      jmmv 			events[nevents].value = z;
    428       1.40      jmmv 			nevents++;
    429       1.11  takemura 		}
    430       1.11  takemura 	} else {
    431       1.11  takemura 		if (sc->sc_dz) {
    432       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_DELTA_Z;
    433       1.40      jmmv 			events[nevents].value = sc->sc_dz;
    434       1.40      jmmv 			nevents++;
    435       1.11  takemura 		}
    436       1.12  takemura 	}
    437       1.37  augustss 	if (flags & WSMOUSE_INPUT_ABSOLUTE_W) {
    438       1.37  augustss 		if (sc->sc_w != w) {
    439       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_ABSOLUTE_W;
    440       1.40      jmmv 			events[nevents].value = w;
    441       1.40      jmmv 			nevents++;
    442       1.37  augustss 		}
    443       1.37  augustss 	} else {
    444       1.37  augustss 		if (sc->sc_dw) {
    445       1.40      jmmv 			events[nevents].type = WSCONS_EVENT_MOUSE_DELTA_W;
    446       1.40      jmmv 			events[nevents].value = sc->sc_dw;
    447       1.40      jmmv 			nevents++;
    448       1.37  augustss 		}
    449       1.37  augustss 	}
    450       1.12  takemura 
    451       1.12  takemura 	mb = sc->sc_mb;
    452       1.12  takemura 	while ((d = mb ^ ub) != 0) {
    453       1.39      jmmv 		int btnno;
    454       1.39      jmmv 
    455       1.39      jmmv 		/*
    456       1.39      jmmv 		 * Cancel button repeating if button status changed.
    457       1.39      jmmv 		 */
    458       1.39      jmmv 		if (sc->sc_repeat_button != -1) {
    459       1.39      jmmv 			KASSERT(sc->sc_repeat_button >= 0);
    460       1.39      jmmv 			KASSERT(sc->sc_repeat.wr_buttons &
    461       1.39      jmmv                             (1 << sc->sc_repeat_button));
    462       1.39      jmmv 			ub &= ~(1 << sc->sc_repeat_button);
    463       1.39      jmmv 			sc->sc_repeat_button = -1;
    464       1.39      jmmv 			callout_stop(&sc->sc_repeat_callout);
    465       1.39      jmmv 		}
    466       1.39      jmmv 
    467       1.12  takemura 		/*
    468       1.12  takemura 		 * Mouse button change.  Find the first change and drop
    469       1.12  takemura 		 * it into the event queue.
    470       1.12  takemura 		 */
    471       1.39      jmmv 		btnno = ffs(d) - 1;
    472       1.39      jmmv 		KASSERT(btnno >= 0);
    473       1.12  takemura 
    474       1.42  christos 		if (nevents >= sizeof(events) / sizeof(events[0])) {
    475  1.55.10.2       mjf 			aprint_error_dev(sc->sc_base.me_dv,
    476  1.55.10.2       mjf 			    "Event queue full (button status mb=0x%x"
    477  1.55.10.2       mjf 			    " ub=0x%x)\n", mb, ub);
    478       1.41  christos 			break;
    479       1.41  christos 		}
    480       1.41  christos 
    481       1.40      jmmv 		events[nevents].type =
    482       1.12  takemura 		    (mb & d) ? WSCONS_EVENT_MOUSE_DOWN : WSCONS_EVENT_MOUSE_UP;
    483       1.40      jmmv 		events[nevents].value = btnno;
    484       1.40      jmmv 		nevents++;
    485       1.40      jmmv 
    486       1.40      jmmv 		ub ^= (1 << btnno);
    487       1.39      jmmv 
    488       1.39      jmmv 		/*
    489       1.39      jmmv 		 * Program button repeating if configured for this button.
    490       1.39      jmmv 		 */
    491       1.39      jmmv 		if ((mb & d) && (sc->sc_repeat.wr_buttons & (1 << btnno)) &&
    492       1.39      jmmv 		    sc->sc_repeat.wr_delay_first > 0) {
    493       1.39      jmmv 			sc->sc_repeat_button = btnno;
    494       1.39      jmmv 			sc->sc_repeat_delay = sc->sc_repeat.wr_delay_first;
    495       1.53     joerg 			callout_schedule(&sc->sc_repeat_callout,
    496       1.53     joerg 			    mstohz(sc->sc_repeat_delay));
    497       1.39      jmmv 		}
    498        1.1  drochner 	}
    499       1.40      jmmv 
    500       1.41  christos 	if (nevents == 0 || wsevent_inject(evar, events, nevents) == 0) {
    501       1.40      jmmv 		/* All events were correctly injected into the queue.
    502       1.40      jmmv 		 * Synchronize the mouse's status with what the user
    503       1.40      jmmv 		 * has received. */
    504       1.40      jmmv 		sc->sc_x = x; sc->sc_dx = 0;
    505       1.40      jmmv 		sc->sc_y = y; sc->sc_dy = 0;
    506       1.40      jmmv 		sc->sc_z = z; sc->sc_dz = 0;
    507       1.40      jmmv 		sc->sc_w = w; sc->sc_dw = 0;
    508        1.1  drochner 		sc->sc_ub = ub;
    509       1.18  augustss #if NWSMUX > 0
    510       1.18  augustss 		DPRINTFN(5,("wsmouse_input: %s wakeup evar=%p\n",
    511  1.55.10.2       mjf 			    device_xname(sc->sc_base.me_dv), evar));
    512       1.18  augustss #endif
    513        1.1  drochner 	}
    514        1.1  drochner }
    515        1.1  drochner 
    516       1.39      jmmv static void
    517       1.39      jmmv wsmouse_repeat(void *v)
    518       1.39      jmmv {
    519       1.39      jmmv 	int oldspl;
    520       1.39      jmmv 	unsigned int newdelay;
    521       1.39      jmmv 	struct wsmouse_softc *sc;
    522       1.40      jmmv 	struct wscons_event events[2];
    523       1.39      jmmv 
    524       1.39      jmmv 	oldspl = spltty();
    525       1.39      jmmv 	sc = (struct wsmouse_softc *)v;
    526       1.39      jmmv 
    527       1.39      jmmv 	if (sc->sc_repeat_button == -1) {
    528       1.39      jmmv 		/* Race condition: a "button up" event came in when
    529       1.39      jmmv 		 * this function was already called but did not do
    530       1.39      jmmv 		 * spltty() yet. */
    531       1.39      jmmv 		splx(oldspl);
    532       1.39      jmmv 		return;
    533       1.39      jmmv 	}
    534       1.39      jmmv 	KASSERT(sc->sc_repeat_button >= 0);
    535       1.39      jmmv 
    536       1.39      jmmv 	KASSERT(sc->sc_repeat.wr_buttons & (1 << sc->sc_repeat_button));
    537       1.39      jmmv 
    538       1.39      jmmv 	newdelay = sc->sc_repeat_delay;
    539       1.39      jmmv 
    540       1.40      jmmv 	events[0].type = WSCONS_EVENT_MOUSE_UP;
    541       1.40      jmmv 	events[0].value = sc->sc_repeat_button;
    542       1.40      jmmv 	events[1].type = WSCONS_EVENT_MOUSE_DOWN;
    543       1.40      jmmv 	events[1].value = sc->sc_repeat_button;
    544       1.39      jmmv 
    545       1.40      jmmv 	if (wsevent_inject(sc->sc_base.me_evp, events, 2) == 0) {
    546       1.39      jmmv 		sc->sc_ub = 1 << sc->sc_repeat_button;
    547       1.39      jmmv 
    548       1.39      jmmv 		if (newdelay - sc->sc_repeat.wr_delay_decrement <
    549       1.39      jmmv 		    sc->sc_repeat.wr_delay_minimum)
    550       1.39      jmmv 			newdelay = sc->sc_repeat.wr_delay_minimum;
    551       1.39      jmmv 		else if (newdelay > sc->sc_repeat.wr_delay_minimum)
    552       1.39      jmmv 			newdelay -= sc->sc_repeat.wr_delay_decrement;
    553       1.39      jmmv 		KASSERT(newdelay >= sc->sc_repeat.wr_delay_minimum &&
    554       1.39      jmmv 		    newdelay <= sc->sc_repeat.wr_delay_first);
    555       1.39      jmmv 	}
    556       1.39      jmmv 
    557       1.39      jmmv 	/*
    558       1.39      jmmv 	 * Reprogram the repeating event.
    559       1.39      jmmv 	 */
    560       1.39      jmmv 	sc->sc_repeat_delay = newdelay;
    561       1.53     joerg 	callout_schedule(&sc->sc_repeat_callout, mstohz(newdelay));
    562       1.39      jmmv 
    563       1.39      jmmv 	splx(oldspl);
    564       1.39      jmmv }
    565       1.39      jmmv 
    566        1.1  drochner int
    567       1.50  christos wsmouseopen(dev_t dev, int flags, int mode, struct lwp *l)
    568        1.1  drochner {
    569        1.1  drochner 	struct wsmouse_softc *sc;
    570       1.17  augustss 	struct wseventvar *evar;
    571  1.55.10.5       mjf 	int error;
    572        1.1  drochner 
    573  1.55.10.5       mjf 	sc = device_lookup_private(&wsmouse_cd, minor(dev));
    574  1.55.10.5       mjf 	if (sc == NULL)
    575  1.55.10.5       mjf 		return ENXIO;
    576        1.1  drochner 
    577       1.17  augustss #if NWSMUX > 0
    578  1.55.10.4       mjf 	DPRINTF(("wsmouseopen: %s mux=%p p=%p\n", device_xname(sc->sc_base.me_dv),
    579       1.38  christos 		 sc->sc_base.me_parent, l));
    580       1.17  augustss #endif
    581       1.17  augustss 
    582        1.7  augustss 	if (sc->sc_dying)
    583        1.7  augustss 		return (EIO);
    584        1.7  augustss 
    585        1.5  augustss 	if ((flags & (FREAD | FWRITE)) == FWRITE)
    586        1.5  augustss 		return (0);			/* always allow open for write
    587        1.5  augustss 						   so ioctl() is possible. */
    588        1.8  augustss 
    589       1.17  augustss 	if (sc->sc_base.me_evp != NULL)
    590        1.1  drochner 		return (EBUSY);
    591        1.1  drochner 
    592       1.18  augustss 	evar = &sc->sc_base.me_evar;
    593       1.40      jmmv 	wsevent_init(evar, l->l_proc);
    594       1.17  augustss 	sc->sc_base.me_evp = evar;
    595        1.1  drochner 
    596       1.17  augustss 	error = wsmousedoopen(sc, evar);
    597        1.1  drochner 	if (error) {
    598       1.17  augustss 		DPRINTF(("wsmouseopen: %s open failed\n",
    599  1.55.10.4       mjf 			 device_xname(sc->sc_base.me_dv)));
    600       1.17  augustss 		sc->sc_base.me_evp = NULL;
    601       1.18  augustss 		wsevent_fini(evar);
    602        1.1  drochner 	}
    603       1.17  augustss 	return (error);
    604        1.1  drochner }
    605        1.1  drochner 
    606        1.1  drochner int
    607       1.50  christos wsmouseclose(dev_t dev, int flags, int mode,
    608       1.50  christos     struct lwp *l)
    609        1.1  drochner {
    610       1.17  augustss 	struct wsmouse_softc *sc =
    611  1.55.10.5       mjf 	    device_lookup_private(&wsmouse_cd, minor(dev));
    612       1.17  augustss 	struct wseventvar *evar = sc->sc_base.me_evp;
    613       1.17  augustss 
    614       1.17  augustss 	if (evar == NULL)
    615       1.17  augustss 		/* not open for read */
    616       1.17  augustss 		return (0);
    617       1.17  augustss 	sc->sc_base.me_evp = NULL;
    618       1.17  augustss 	(*sc->sc_accessops->disable)(sc->sc_accesscookie);
    619       1.18  augustss 	wsevent_fini(evar);
    620       1.17  augustss 
    621       1.17  augustss 	return (0);
    622        1.8  augustss }
    623        1.8  augustss 
    624        1.8  augustss int
    625       1.17  augustss wsmousedoopen(struct wsmouse_softc *sc, struct wseventvar *evp)
    626        1.8  augustss {
    627       1.17  augustss 	sc->sc_base.me_evp = evp;
    628       1.17  augustss 	sc->sc_x = INVALID_X;
    629       1.17  augustss 	sc->sc_y = INVALID_Y;
    630       1.17  augustss 	sc->sc_z = INVALID_Z;
    631        1.5  augustss 
    632       1.39      jmmv 	/* Stop button repeating when messing with the device. */
    633       1.39      jmmv 	if (sc->sc_repeat_button != -1) {
    634       1.39      jmmv 		KASSERT(sc->sc_repeat_button >= 0);
    635       1.39      jmmv 		sc->sc_repeat_button = -1;
    636       1.39      jmmv 		callout_stop(&sc->sc_repeat_callout);
    637       1.39      jmmv 	}
    638       1.39      jmmv 
    639       1.17  augustss 	/* enable the device, and punt if that's not possible */
    640       1.17  augustss 	return (*sc->sc_accessops->enable)(sc->sc_accesscookie);
    641        1.8  augustss }
    642        1.1  drochner 
    643        1.1  drochner int
    644       1.15  augustss wsmouseread(dev_t dev, struct uio *uio, int flags)
    645        1.1  drochner {
    646  1.55.10.2       mjf 	struct wsmouse_softc *sc =
    647  1.55.10.5       mjf 	    device_lookup_private(&wsmouse_cd, minor(dev));
    648        1.7  augustss 	int error;
    649        1.1  drochner 
    650        1.7  augustss 	if (sc->sc_dying)
    651        1.7  augustss 		return (EIO);
    652        1.7  augustss 
    653       1.17  augustss #ifdef DIAGNOSTIC
    654       1.17  augustss 	if (sc->sc_base.me_evp == NULL) {
    655       1.17  augustss 		printf("wsmouseread: evp == NULL\n");
    656       1.17  augustss 		return (EINVAL);
    657       1.17  augustss 	}
    658       1.17  augustss #endif
    659       1.17  augustss 
    660        1.7  augustss 	sc->sc_refcnt++;
    661       1.17  augustss 	error = wsevent_read(sc->sc_base.me_evp, uio, flags);
    662        1.7  augustss 	if (--sc->sc_refcnt < 0) {
    663        1.7  augustss 		wakeup(sc);
    664        1.7  augustss 		error = EIO;
    665        1.7  augustss 	}
    666        1.7  augustss 	return (error);
    667        1.1  drochner }
    668        1.1  drochner 
    669        1.1  drochner int
    670       1.51  christos wsmouseioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    671        1.1  drochner {
    672  1.55.10.5       mjf 	return (wsmousedoioctl(device_lookup(&wsmouse_cd, minor(dev)),
    673       1.38  christos 			       cmd, data, flag, l));
    674        1.8  augustss }
    675        1.8  augustss 
    676        1.8  augustss /* A wrapper around the ioctl() workhorse to make reference counting easy. */
    677        1.8  augustss int
    678  1.55.10.2       mjf wsmousedoioctl(device_t dv, u_long cmd, void *data, int flag,
    679       1.38  christos 	       struct lwp *l)
    680        1.8  augustss {
    681  1.55.10.2       mjf 	struct wsmouse_softc *sc = device_private(dv);
    682        1.6  augustss 	int error;
    683        1.1  drochner 
    684        1.7  augustss 	sc->sc_refcnt++;
    685       1.38  christos 	error = wsmouse_do_ioctl(sc, cmd, data, flag, l);
    686        1.7  augustss 	if (--sc->sc_refcnt < 0)
    687        1.7  augustss 		wakeup(sc);
    688        1.7  augustss 	return (error);
    689        1.7  augustss }
    690        1.7  augustss 
    691        1.7  augustss int
    692       1.51  christos wsmouse_do_ioctl(struct wsmouse_softc *sc, u_long cmd, void *data,
    693       1.38  christos 		 int flag, struct lwp *l)
    694        1.7  augustss {
    695        1.7  augustss 	int error;
    696       1.39      jmmv 	struct wsmouse_repeat *wr;
    697        1.7  augustss 
    698        1.7  augustss 	if (sc->sc_dying)
    699        1.7  augustss 		return (EIO);
    700        1.7  augustss 
    701        1.1  drochner 	/*
    702        1.1  drochner 	 * Try the generic ioctls that the wsmouse interface supports.
    703        1.1  drochner 	 */
    704        1.1  drochner 	switch (cmd) {
    705        1.1  drochner 	case FIONBIO:		/* we will remove this someday (soon???) */
    706        1.1  drochner 		return (0);
    707        1.1  drochner 
    708        1.1  drochner 	case FIOASYNC:
    709       1.17  augustss 		if (sc->sc_base.me_evp == NULL)
    710       1.17  augustss 			return (EINVAL);
    711       1.17  augustss 		sc->sc_base.me_evp->async = *(int *)data != 0;
    712       1.33  jdolecek 		return (0);
    713       1.33  jdolecek 
    714       1.33  jdolecek 	case FIOSETOWN:
    715       1.33  jdolecek 		if (sc->sc_base.me_evp == NULL)
    716       1.33  jdolecek 			return (EINVAL);
    717       1.33  jdolecek 		if (-*(int *)data != sc->sc_base.me_evp->io->p_pgid
    718       1.33  jdolecek 		    && *(int *)data != sc->sc_base.me_evp->io->p_pid)
    719       1.33  jdolecek 			return (EPERM);
    720        1.1  drochner 		return (0);
    721        1.1  drochner 
    722        1.1  drochner 	case TIOCSPGRP:
    723       1.17  augustss 		if (sc->sc_base.me_evp == NULL)
    724       1.17  augustss 			return (EINVAL);
    725       1.17  augustss 		if (*(int *)data != sc->sc_base.me_evp->io->p_pgid)
    726        1.1  drochner 			return (EPERM);
    727        1.1  drochner 		return (0);
    728        1.1  drochner 	}
    729        1.1  drochner 
    730        1.1  drochner 	/*
    731       1.39      jmmv 	 * Try the wsmouse specific ioctls.
    732       1.39      jmmv 	 */
    733       1.39      jmmv 	switch (cmd) {
    734       1.39      jmmv 	case WSMOUSEIO_GETREPEAT:
    735       1.39      jmmv 		wr = (struct wsmouse_repeat *)data;
    736       1.39      jmmv 		memcpy(wr, &sc->sc_repeat, sizeof(sc->sc_repeat));
    737       1.39      jmmv 		return 0;
    738       1.39      jmmv 
    739       1.39      jmmv 	case WSMOUSEIO_SETREPEAT:
    740       1.39      jmmv 		if ((flag & FWRITE) == 0)
    741       1.39      jmmv 			return EACCES;
    742       1.39      jmmv 
    743       1.39      jmmv 		/* Validate input data. */
    744       1.39      jmmv 		wr = (struct wsmouse_repeat *)data;
    745       1.39      jmmv 		if (wr->wr_delay_first != 0 &&
    746       1.39      jmmv 		    (wr->wr_delay_first < wr->wr_delay_decrement ||
    747       1.39      jmmv 		     wr->wr_delay_first < wr->wr_delay_minimum ||
    748       1.39      jmmv 		     wr->wr_delay_first < wr->wr_delay_minimum +
    749       1.39      jmmv 		     wr->wr_delay_decrement))
    750       1.39      jmmv 			return EINVAL;
    751       1.39      jmmv 
    752       1.39      jmmv 		/* Stop current repeating and set new data. */
    753       1.39      jmmv 		sc->sc_repeat_button = -1;
    754       1.39      jmmv 		callout_stop(&sc->sc_repeat_callout);
    755       1.39      jmmv 		memcpy(&sc->sc_repeat, wr, sizeof(sc->sc_repeat));
    756       1.39      jmmv 
    757       1.39      jmmv 		return 0;
    758  1.55.10.6       mjf 
    759  1.55.10.6       mjf 	case WSMOUSEIO_SETVERSION:
    760  1.55.10.6       mjf 		return wsevent_setversion(sc->sc_base.me_evp, *(int *)data);
    761       1.39      jmmv 	}
    762       1.39      jmmv 
    763       1.39      jmmv 	/*
    764        1.1  drochner 	 * Try the mouse driver for WSMOUSEIO ioctls.  It returns -1
    765        1.1  drochner 	 * if it didn't recognize the request.
    766        1.1  drochner 	 */
    767        1.1  drochner 	error = (*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd,
    768       1.38  christos 	    data, flag, l);
    769       1.34  drochner 	return (error); /* may be EPASSTHROUGH */
    770        1.7  augustss }
    771        1.1  drochner 
    772        1.1  drochner int
    773       1.38  christos wsmousepoll(dev_t dev, int events, struct lwp *l)
    774        1.1  drochner {
    775  1.55.10.2       mjf 	struct wsmouse_softc *sc =
    776  1.55.10.5       mjf 	    device_lookup_private(&wsmouse_cd, minor(dev));
    777        1.1  drochner 
    778       1.17  augustss 	if (sc->sc_base.me_evp == NULL)
    779       1.36        ws 		return (POLLERR);
    780       1.38  christos 	return (wsevent_poll(sc->sc_base.me_evp, events, l));
    781       1.28  jdolecek }
    782       1.28  jdolecek 
    783       1.28  jdolecek int
    784       1.28  jdolecek wsmousekqfilter(dev_t dev, struct knote *kn)
    785       1.28  jdolecek {
    786  1.55.10.2       mjf 	struct wsmouse_softc *sc =
    787  1.55.10.5       mjf 	    device_lookup_private(&wsmouse_cd, minor(dev));
    788       1.28  jdolecek 
    789       1.28  jdolecek 	if (sc->sc_base.me_evp == NULL)
    790       1.28  jdolecek 		return (1);
    791       1.28  jdolecek 	return (wsevent_kqfilter(sc->sc_base.me_evp, kn));
    792        1.1  drochner }
    793        1.7  augustss 
    794        1.9  augustss #if NWSMUX > 0
    795        1.8  augustss int
    796       1.17  augustss wsmouse_mux_open(struct wsevsrc *me, struct wseventvar *evp)
    797        1.8  augustss {
    798       1.17  augustss 	struct wsmouse_softc *sc = (struct wsmouse_softc *)me;
    799       1.17  augustss 
    800       1.17  augustss 	if (sc->sc_base.me_evp != NULL)
    801       1.17  augustss 		return (EBUSY);
    802       1.17  augustss 
    803       1.17  augustss 	return wsmousedoopen(sc, evp);
    804       1.17  augustss }
    805        1.8  augustss 
    806       1.17  augustss int
    807       1.17  augustss wsmouse_mux_close(struct wsevsrc *me)
    808       1.17  augustss {
    809       1.17  augustss 	struct wsmouse_softc *sc = (struct wsmouse_softc *)me;
    810        1.8  augustss 
    811       1.17  augustss 	sc->sc_base.me_evp = NULL;
    812       1.17  augustss 	(*sc->sc_accessops->disable)(sc->sc_accesscookie);
    813        1.8  augustss 
    814       1.17  augustss 	return (0);
    815        1.8  augustss }
    816        1.8  augustss 
    817        1.8  augustss int
    818       1.17  augustss wsmouse_add_mux(int unit, struct wsmux_softc *muxsc)
    819        1.8  augustss {
    820        1.8  augustss 	struct wsmouse_softc *sc;
    821        1.8  augustss 
    822  1.55.10.5       mjf 	sc = device_lookup_private(&wsmouse_cd, unit);
    823  1.55.10.5       mjf 	if (sc == NULL)
    824  1.55.10.5       mjf 		return ENXIO;
    825        1.8  augustss 
    826       1.17  augustss 	if (sc->sc_base.me_parent != NULL || sc->sc_base.me_evp != NULL)
    827       1.17  augustss 		return (EBUSY);
    828       1.17  augustss 
    829       1.17  augustss 	return (wsmux_attach_sc(muxsc, &sc->sc_base));
    830        1.8  augustss }
    831       1.17  augustss #endif /* NWSMUX > 0 */
    832