Home | History | Annotate | Line # | Download | only in wscons
wskbd.c revision 1.101
      1  1.101  christos /* $NetBSD: wskbd.c,v 1.101 2007/03/04 06:02:51 christos Exp $ */
      2    1.1  drochner 
      3    1.1  drochner /*
      4    1.1  drochner  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
      5    1.1  drochner  *
      6    1.2   hannken  * Keysym translator:
      7    1.2   hannken  * Contributed to The NetBSD Foundation by Juergen Hannken-Illjes.
      8    1.2   hannken  *
      9    1.1  drochner  * Redistribution and use in source and binary forms, with or without
     10    1.1  drochner  * modification, are permitted provided that the following conditions
     11    1.1  drochner  * are met:
     12    1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     13    1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     14    1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     15    1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     16    1.1  drochner  *    documentation and/or other materials provided with the distribution.
     17    1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     18    1.1  drochner  *    must display the following acknowledgement:
     19    1.1  drochner  *      This product includes software developed by Christopher G. Demetriou
     20    1.1  drochner  *	for the NetBSD Project.
     21    1.1  drochner  * 4. The name of the author may not be used to endorse or promote products
     22    1.1  drochner  *    derived from this software without specific prior written permission
     23    1.1  drochner  *
     24    1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     25    1.1  drochner  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26    1.1  drochner  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27    1.1  drochner  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     28    1.1  drochner  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     29    1.1  drochner  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     30    1.1  drochner  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     31    1.1  drochner  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     32    1.1  drochner  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     33    1.1  drochner  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34    1.1  drochner  */
     35    1.1  drochner 
     36    1.1  drochner /*
     37    1.1  drochner  * Copyright (c) 1992, 1993
     38    1.1  drochner  *	The Regents of the University of California.  All rights reserved.
     39    1.1  drochner  *
     40    1.1  drochner  * This software was developed by the Computer Systems Engineering group
     41    1.1  drochner  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     42    1.1  drochner  * contributed to Berkeley.
     43    1.1  drochner  *
     44    1.1  drochner  * All advertising materials mentioning features or use of this software
     45    1.1  drochner  * must display the following acknowledgement:
     46    1.1  drochner  *	This product includes software developed by the University of
     47    1.1  drochner  *	California, Lawrence Berkeley Laboratory.
     48    1.1  drochner  *
     49    1.1  drochner  * Redistribution and use in source and binary forms, with or without
     50    1.1  drochner  * modification, are permitted provided that the following conditions
     51    1.1  drochner  * are met:
     52    1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     53    1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     54    1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     55    1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     56    1.1  drochner  *    documentation and/or other materials provided with the distribution.
     57   1.70       agc  * 3. Neither the name of the University nor the names of its contributors
     58    1.1  drochner  *    may be used to endorse or promote products derived from this software
     59    1.1  drochner  *    without specific prior written permission.
     60    1.1  drochner  *
     61    1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     62    1.1  drochner  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     63    1.1  drochner  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     64    1.1  drochner  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     65    1.1  drochner  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     66    1.1  drochner  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     67    1.1  drochner  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     68    1.1  drochner  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     69    1.1  drochner  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     70    1.1  drochner  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     71    1.1  drochner  * SUCH DAMAGE.
     72    1.1  drochner  *
     73    1.1  drochner  *	@(#)kbd.c	8.2 (Berkeley) 10/30/93
     74    1.1  drochner  */
     75    1.1  drochner 
     76    1.1  drochner /*
     77    1.1  drochner  * Keyboard driver (/dev/wskbd*).  Translates incoming bytes to ASCII or
     78    1.1  drochner  * to `wscons_events' and passes them up to the appropriate reader.
     79    1.1  drochner  */
     80   1.58     lukem 
     81   1.58     lukem #include <sys/cdefs.h>
     82  1.101  christos __KERNEL_RCSID(0, "$NetBSD: wskbd.c,v 1.101 2007/03/04 06:02:51 christos Exp $");
     83   1.10  jonathan 
     84   1.10  jonathan #include "opt_ddb.h"
     85   1.41     lukem #include "opt_kgdb.h"
     86   1.48  augustss #include "opt_wsdisplay_compat.h"
     87   1.48  augustss 
     88   1.48  augustss #include "wsdisplay.h"
     89   1.48  augustss #include "wskbd.h"
     90   1.48  augustss #include "wsmux.h"
     91    1.1  drochner 
     92    1.1  drochner #include <sys/param.h>
     93    1.1  drochner #include <sys/conf.h>
     94    1.1  drochner #include <sys/device.h>
     95    1.1  drochner #include <sys/ioctl.h>
     96   1.83        ws #include <sys/poll.h>
     97    1.1  drochner #include <sys/kernel.h>
     98    1.1  drochner #include <sys/proc.h>
     99    1.1  drochner #include <sys/syslog.h>
    100    1.1  drochner #include <sys/systm.h>
    101   1.38   thorpej #include <sys/callout.h>
    102    1.2   hannken #include <sys/malloc.h>
    103    1.1  drochner #include <sys/tty.h>
    104    1.1  drochner #include <sys/signalvar.h>
    105    1.1  drochner #include <sys/errno.h>
    106    1.1  drochner #include <sys/fcntl.h>
    107   1.24  augustss #include <sys/vnode.h>
    108   1.92      elad #include <sys/kauth.h>
    109    1.1  drochner 
    110    1.1  drochner #include <dev/wscons/wsconsio.h>
    111    1.1  drochner #include <dev/wscons/wskbdvar.h>
    112    1.2   hannken #include <dev/wscons/wsksymdef.h>
    113    1.2   hannken #include <dev/wscons/wsksymvar.h>
    114   1.74  christos #include <dev/wscons/wsdisplayvar.h>
    115    1.1  drochner #include <dev/wscons/wseventvar.h>
    116    1.1  drochner #include <dev/wscons/wscons_callbacks.h>
    117    1.1  drochner 
    118   1.40     lukem #ifdef KGDB
    119   1.40     lukem #include <sys/kgdb.h>
    120   1.40     lukem #endif
    121   1.40     lukem 
    122   1.27  augustss #ifdef WSKBD_DEBUG
    123   1.27  augustss #define DPRINTF(x)	if (wskbddebug) printf x
    124   1.27  augustss int	wskbddebug = 0;
    125   1.27  augustss #else
    126   1.27  augustss #define DPRINTF(x)
    127   1.27  augustss #endif
    128   1.27  augustss 
    129   1.27  augustss #include <dev/wscons/wsmuxvar.h>
    130    1.5   thorpej 
    131    1.3   hannken struct wskbd_internal {
    132   1.12  drochner 	const struct wskbd_mapdata *t_keymap;
    133   1.12  drochner 
    134   1.12  drochner 	const struct wskbd_consops *t_consops;
    135   1.12  drochner 	void	*t_consaccesscookie;
    136    1.3   hannken 
    137    1.3   hannken 	int	t_modifiers;
    138    1.3   hannken 	int	t_composelen;		/* remaining entries in t_composebuf */
    139    1.3   hannken 	keysym_t t_composebuf[2];
    140    1.3   hannken 
    141   1.34  drochner 	int t_flags;
    142   1.34  drochner #define WSKFL_METAESC 1
    143   1.34  drochner 
    144   1.34  drochner #define MAXKEYSYMSPERKEY 2 /* ESC <key> at max */
    145   1.34  drochner 	keysym_t t_symbols[MAXKEYSYMSPERKEY];
    146   1.34  drochner 
    147    1.3   hannken 	struct wskbd_softc *t_sc;	/* back pointer */
    148    1.3   hannken };
    149    1.3   hannken 
    150    1.1  drochner struct wskbd_softc {
    151   1.48  augustss 	struct wsevsrc sc_base;
    152    1.1  drochner 
    153    1.3   hannken 	struct wskbd_internal *id;
    154    1.3   hannken 
    155   1.12  drochner 	const struct wskbd_accessops *sc_accessops;
    156   1.12  drochner 	void *sc_accesscookie;
    157   1.12  drochner 
    158   1.12  drochner 	int	sc_ledstate;
    159    1.1  drochner 
    160    1.1  drochner 	int	sc_isconsole;
    161    1.1  drochner 
    162    1.1  drochner 	struct wskbd_bell_data sc_bell_data;
    163    1.1  drochner 	struct wskbd_keyrepeat_data sc_keyrepeat_data;
    164   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
    165   1.74  christos 	struct wskbd_scroll_data sc_scroll_data;
    166   1.74  christos #endif
    167    1.1  drochner 
    168    1.1  drochner 	int	sc_repeating;		/* we've called timeout() */
    169   1.38   thorpej 	struct callout sc_repeat_ch;
    170   1.79  augustss 	u_int	sc_repeat_type;
    171   1.79  augustss 	int	sc_repeat_value;
    172    1.1  drochner 
    173    1.1  drochner 	int	sc_translating;		/* xlate to chars for emulation */
    174    1.2   hannken 
    175    1.2   hannken 	int	sc_maplen;		/* number of entries in sc_map */
    176    1.2   hannken 	struct wscons_keymap *sc_map;	/* current translation map */
    177   1.12  drochner 	kbd_t sc_layout; /* current layout */
    178   1.24  augustss 
    179   1.24  augustss 	int		sc_refcnt;
    180   1.24  augustss 	u_char		sc_dying;	/* device is being detached */
    181    1.1  drochner };
    182    1.1  drochner 
    183    1.2   hannken #define MOD_SHIFT_L		(1 << 0)
    184    1.2   hannken #define MOD_SHIFT_R		(1 << 1)
    185    1.2   hannken #define MOD_SHIFTLOCK		(1 << 2)
    186    1.2   hannken #define MOD_CAPSLOCK		(1 << 3)
    187    1.2   hannken #define MOD_CONTROL_L		(1 << 4)
    188    1.2   hannken #define MOD_CONTROL_R		(1 << 5)
    189    1.2   hannken #define MOD_META_L		(1 << 6)
    190    1.2   hannken #define MOD_META_R		(1 << 7)
    191    1.2   hannken #define MOD_MODESHIFT		(1 << 8)
    192    1.2   hannken #define MOD_NUMLOCK		(1 << 9)
    193    1.2   hannken #define MOD_COMPOSE		(1 << 10)
    194    1.2   hannken #define MOD_HOLDSCREEN		(1 << 11)
    195    1.2   hannken #define MOD_COMMAND		(1 << 12)
    196    1.2   hannken #define MOD_COMMAND1		(1 << 13)
    197    1.2   hannken #define MOD_COMMAND2		(1 << 14)
    198    1.2   hannken 
    199    1.2   hannken #define MOD_ANYSHIFT		(MOD_SHIFT_L | MOD_SHIFT_R | MOD_SHIFTLOCK)
    200    1.2   hannken #define MOD_ANYCONTROL		(MOD_CONTROL_L | MOD_CONTROL_R)
    201    1.2   hannken #define MOD_ANYMETA		(MOD_META_L | MOD_META_R)
    202    1.2   hannken 
    203    1.3   hannken #define MOD_ONESET(id, mask)	(((id)->t_modifiers & (mask)) != 0)
    204    1.3   hannken #define MOD_ALLSET(id, mask)	(((id)->t_modifiers & (mask)) == (mask))
    205    1.2   hannken 
    206   1.74  christos #define GETMODSTATE(src, dst)		\
    207   1.74  christos 	do {							\
    208   1.74  christos 		dst |= (src & MOD_SHIFT_L) ? MOD_SHIFT_L : 0; \
    209   1.74  christos 		dst |= (src & MOD_SHIFT_R) ? MOD_SHIFT_R : 0; \
    210   1.74  christos 		dst |= (src & MOD_CONTROL_L) ? MOD_CONTROL_L : 0; \
    211   1.74  christos 		dst |= (src & MOD_CONTROL_R) ? MOD_CONTROL_R : 0; \
    212   1.74  christos 		dst |= (src & MOD_META_L) ? MOD_META_L : 0; \
    213   1.74  christos 		dst |= (src & MOD_META_R) ? MOD_META_R : 0; \
    214   1.74  christos 	} while (0)
    215   1.74  christos 
    216   1.48  augustss static int  wskbd_match(struct device *, struct cfdata *, void *);
    217   1.48  augustss static void wskbd_attach(struct device *, struct device *, void *);
    218   1.48  augustss static int  wskbd_detach(struct device *, int);
    219   1.48  augustss static int  wskbd_activate(struct device *, enum devact);
    220   1.48  augustss 
    221  1.101  christos static int  wskbd_displayioctl(struct device *, u_long, void *, int,
    222   1.85  christos 			      struct lwp *);
    223   1.48  augustss #if NWSDISPLAY > 0
    224   1.48  augustss static int  wskbd_set_display(struct device *, struct wsevsrc *);
    225   1.48  augustss #else
    226   1.48  augustss #define wskbd_set_display NULL
    227   1.48  augustss #endif
    228   1.27  augustss 
    229   1.45  augustss static inline void update_leds(struct wskbd_internal *);
    230   1.45  augustss static inline void update_modifier(struct wskbd_internal *, u_int, int, int);
    231   1.45  augustss static int internal_command(struct wskbd_softc *, u_int *, keysym_t, keysym_t);
    232   1.45  augustss static int wskbd_translate(struct wskbd_internal *, u_int, int);
    233   1.45  augustss static int wskbd_enable(struct wskbd_softc *, int);
    234   1.21  drochner #if NWSDISPLAY > 0
    235   1.45  augustss static void change_displayparam(struct wskbd_softc *, int, int, int);
    236   1.45  augustss static void wskbd_holdscreen(struct wskbd_softc *, int);
    237   1.21  drochner #endif
    238    1.1  drochner 
    239  1.101  christos static int wskbd_do_ioctl_sc(struct wskbd_softc *, u_long, void *, int,
    240   1.85  christos 			     struct lwp *);
    241   1.79  augustss static void wskbd_deliver_event(struct wskbd_softc *sc, u_int type, int value);
    242   1.48  augustss 
    243   1.48  augustss #if NWSMUX > 0
    244   1.48  augustss static int wskbd_mux_open(struct wsevsrc *, struct wseventvar *);
    245   1.48  augustss static int wskbd_mux_close(struct wsevsrc *);
    246   1.48  augustss #else
    247   1.48  augustss #define wskbd_mux_open NULL
    248   1.48  augustss #define wskbd_mux_close NULL
    249   1.48  augustss #endif
    250   1.24  augustss 
    251   1.48  augustss static int wskbd_do_open(struct wskbd_softc *, struct wseventvar *);
    252  1.101  christos static int wskbd_do_ioctl(struct device *, u_long, void *, int, struct lwp *);
    253   1.27  augustss 
    254   1.64   thorpej CFATTACH_DECL(wskbd, sizeof (struct wskbd_softc),
    255   1.65   thorpej     wskbd_match, wskbd_attach, wskbd_detach, wskbd_activate);
    256    1.1  drochner 
    257    1.1  drochner extern struct cfdriver wskbd_cd;
    258    1.1  drochner 
    259   1.62   gehenna dev_type_open(wskbdopen);
    260   1.62   gehenna dev_type_close(wskbdclose);
    261   1.62   gehenna dev_type_read(wskbdread);
    262   1.62   gehenna dev_type_ioctl(wskbdioctl);
    263   1.62   gehenna dev_type_poll(wskbdpoll);
    264   1.66  jdolecek dev_type_kqfilter(wskbdkqfilter);
    265   1.62   gehenna 
    266   1.62   gehenna const struct cdevsw wskbd_cdevsw = {
    267   1.62   gehenna 	wskbdopen, wskbdclose, wskbdread, nowrite, wskbdioctl,
    268   1.94  christos 	nostop, notty, wskbdpoll, nommap, wskbdkqfilter, D_OTHER
    269   1.62   gehenna };
    270   1.62   gehenna 
    271    1.1  drochner #ifndef WSKBD_DEFAULT_BELL_PITCH
    272    1.1  drochner #define	WSKBD_DEFAULT_BELL_PITCH	1500	/* 1500Hz */
    273    1.1  drochner #endif
    274    1.1  drochner #ifndef WSKBD_DEFAULT_BELL_PERIOD
    275    1.1  drochner #define	WSKBD_DEFAULT_BELL_PERIOD	100	/* 100ms */
    276    1.1  drochner #endif
    277    1.1  drochner #ifndef WSKBD_DEFAULT_BELL_VOLUME
    278    1.1  drochner #define	WSKBD_DEFAULT_BELL_VOLUME	50	/* 50% volume */
    279    1.1  drochner #endif
    280    1.1  drochner 
    281    1.1  drochner struct wskbd_bell_data wskbd_default_bell_data = {
    282    1.1  drochner 	WSKBD_BELL_DOALL,
    283    1.1  drochner 	WSKBD_DEFAULT_BELL_PITCH,
    284    1.1  drochner 	WSKBD_DEFAULT_BELL_PERIOD,
    285    1.1  drochner 	WSKBD_DEFAULT_BELL_VOLUME,
    286    1.1  drochner };
    287    1.1  drochner 
    288   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
    289   1.74  christos struct wskbd_scroll_data wskbd_default_scroll_data = {
    290   1.74  christos  	WSKBD_SCROLL_DOALL,
    291   1.74  christos  	WSKBD_SCROLL_MODE_NORMAL,
    292   1.74  christos #ifdef WSDISPLAY_SCROLLCOMBO
    293   1.74  christos  	WSDISPLAY_SCROLLCOMBO,
    294   1.74  christos #else
    295   1.74  christos  	MOD_SHIFT_L,
    296   1.74  christos #endif
    297   1.74  christos };
    298   1.74  christos #endif
    299   1.74  christos 
    300    1.1  drochner #ifndef WSKBD_DEFAULT_KEYREPEAT_DEL1
    301    1.1  drochner #define	WSKBD_DEFAULT_KEYREPEAT_DEL1	400	/* 400ms to start repeating */
    302    1.1  drochner #endif
    303    1.1  drochner #ifndef WSKBD_DEFAULT_KEYREPEAT_DELN
    304    1.1  drochner #define	WSKBD_DEFAULT_KEYREPEAT_DELN	100	/* 100ms to between repeats */
    305    1.1  drochner #endif
    306    1.1  drochner 
    307    1.1  drochner struct wskbd_keyrepeat_data wskbd_default_keyrepeat_data = {
    308    1.1  drochner 	WSKBD_KEYREPEAT_DOALL,
    309    1.1  drochner 	WSKBD_DEFAULT_KEYREPEAT_DEL1,
    310    1.1  drochner 	WSKBD_DEFAULT_KEYREPEAT_DELN,
    311    1.1  drochner };
    312    1.1  drochner 
    313   1.48  augustss #if NWSDISPLAY > 0 || NWSMUX > 0
    314   1.48  augustss struct wssrcops wskbd_srcops = {
    315   1.48  augustss 	WSMUX_KBD,
    316   1.48  augustss 	wskbd_mux_open, wskbd_mux_close, wskbd_do_ioctl,
    317   1.48  augustss 	wskbd_displayioctl, wskbd_set_display
    318   1.27  augustss };
    319   1.32  augustss #endif
    320   1.27  augustss 
    321   1.21  drochner #if NWSDISPLAY > 0
    322   1.45  augustss static void wskbd_repeat(void *v);
    323   1.21  drochner #endif
    324    1.1  drochner 
    325    1.1  drochner static int wskbd_console_initted;
    326    1.1  drochner static struct wskbd_softc *wskbd_console_device;
    327    1.3   hannken static struct wskbd_internal wskbd_console_data;
    328    1.1  drochner 
    329   1.45  augustss static void wskbd_update_layout(struct wskbd_internal *, kbd_t);
    330   1.34  drochner 
    331   1.34  drochner static void
    332   1.45  augustss wskbd_update_layout(struct wskbd_internal *id, kbd_t enc)
    333   1.34  drochner {
    334   1.34  drochner 
    335   1.34  drochner 	if (enc & KB_METAESC)
    336   1.34  drochner 		id->t_flags |= WSKFL_METAESC;
    337   1.34  drochner 	else
    338   1.34  drochner 		id->t_flags &= ~WSKFL_METAESC;
    339   1.34  drochner }
    340   1.34  drochner 
    341    1.1  drochner /*
    342    1.1  drochner  * Print function (for parent devices).
    343    1.1  drochner  */
    344    1.1  drochner int
    345   1.98  christos wskbddevprint(void *aux, const char *pnp)
    346    1.1  drochner {
    347    1.1  drochner #if 0
    348    1.1  drochner 	struct wskbddev_attach_args *ap = aux;
    349    1.1  drochner #endif
    350    1.1  drochner 
    351    1.1  drochner 	if (pnp)
    352   1.67   thorpej 		aprint_normal("wskbd at %s", pnp);
    353    1.1  drochner #if 0
    354   1.67   thorpej 	aprint_normal(" console %d", ap->console);
    355    1.1  drochner #endif
    356    1.1  drochner 
    357    1.1  drochner 	return (UNCONF);
    358    1.1  drochner }
    359    1.1  drochner 
    360    1.1  drochner int
    361   1.98  christos wskbd_match(struct device *parent, struct cfdata *match, void *aux)
    362    1.1  drochner {
    363    1.1  drochner 	struct wskbddev_attach_args *ap = aux;
    364    1.1  drochner 
    365    1.1  drochner 	if (match->wskbddevcf_console != WSKBDDEVCF_CONSOLE_UNK) {
    366    1.1  drochner 		/*
    367    1.1  drochner 		 * If console-ness of device specified, either match
    368    1.1  drochner 		 * exactly (at high priority), or fail.
    369    1.1  drochner 		 */
    370    1.1  drochner 		if (match->wskbddevcf_console != 0 && ap->console != 0)
    371    1.1  drochner 			return (10);
    372    1.1  drochner 		else
    373    1.1  drochner 			return (0);
    374    1.1  drochner 	}
    375    1.1  drochner 
    376    1.1  drochner 	/* If console-ness unspecified, it wins. */
    377    1.1  drochner 	return (1);
    378    1.1  drochner }
    379    1.1  drochner 
    380    1.1  drochner void
    381   1.98  christos wskbd_attach(struct device *parent, struct device *self, void *aux)
    382    1.1  drochner {
    383    1.1  drochner 	struct wskbd_softc *sc = (struct wskbd_softc *)self;
    384    1.1  drochner 	struct wskbddev_attach_args *ap = aux;
    385   1.48  augustss #if NWSMUX > 0
    386   1.48  augustss 	int mux, error;
    387   1.27  augustss #endif
    388    1.1  drochner 
    389   1.22  drochner 	sc->sc_isconsole = ap->console;
    390   1.22  drochner 
    391   1.27  augustss #if NWSMUX > 0 || NWSDISPLAY > 0
    392   1.48  augustss 	sc->sc_base.me_ops = &wskbd_srcops;
    393   1.48  augustss #endif
    394   1.48  augustss #if NWSMUX > 0
    395   1.89   thorpej 	mux = device_cfdata(&sc->sc_base.me_dv)->wskbddevcf_mux;
    396   1.55  augustss 	if (ap->console) {
    397   1.55  augustss 		/* Ignore mux for console; it always goes to the console mux. */
    398   1.48  augustss 		/* printf(" (mux %d ignored for console)", mux); */
    399   1.48  augustss 		mux = -1;
    400   1.27  augustss 	}
    401   1.48  augustss 	if (mux >= 0)
    402   1.27  augustss 		printf(" mux %d", mux);
    403   1.48  augustss #else
    404   1.89   thorpej 	if (device_cfdata(&sc->sc_base.me_dv)->wskbddevcf_mux >= 0)
    405   1.48  augustss 		printf(" (mux ignored)");
    406   1.23   thorpej #endif
    407    1.1  drochner 
    408    1.3   hannken 	if (ap->console) {
    409    1.3   hannken 		sc->id = &wskbd_console_data;
    410    1.3   hannken 	} else {
    411    1.3   hannken 		sc->id = malloc(sizeof(struct wskbd_internal),
    412   1.60   tsutsui 				M_DEVBUF, M_WAITOK|M_ZERO);
    413   1.12  drochner 		sc->id->t_keymap = ap->keymap;
    414   1.34  drochner 		wskbd_update_layout(sc->id, ap->keymap->layout);
    415    1.3   hannken 	}
    416    1.3   hannken 
    417   1.38   thorpej 	callout_init(&sc->sc_repeat_ch);
    418   1.38   thorpej 
    419    1.3   hannken 	sc->id->t_sc = sc;
    420    1.3   hannken 
    421   1.12  drochner 	sc->sc_accessops = ap->accessops;
    422   1.12  drochner 	sc->sc_accesscookie = ap->accesscookie;
    423    1.1  drochner 	sc->sc_repeating = 0;
    424    1.1  drochner 	sc->sc_translating = 1;
    425   1.12  drochner 	sc->sc_ledstate = -1; /* force update */
    426    1.1  drochner 
    427   1.12  drochner 	if (wskbd_load_keymap(sc->id->t_keymap,
    428    1.2   hannken 			      &sc->sc_map, &sc->sc_maplen) != 0)
    429    1.2   hannken 		panic("cannot load keymap");
    430    1.2   hannken 
    431   1.12  drochner 	sc->sc_layout = sc->id->t_keymap->layout;
    432   1.12  drochner 
    433    1.1  drochner 	/* set default bell and key repeat data */
    434    1.1  drochner 	sc->sc_bell_data = wskbd_default_bell_data;
    435    1.1  drochner 	sc->sc_keyrepeat_data = wskbd_default_keyrepeat_data;
    436   1.27  augustss 
    437   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
    438   1.74  christos 	sc->sc_scroll_data = wskbd_default_scroll_data;
    439   1.74  christos #endif
    440   1.74  christos 
    441   1.27  augustss 	if (ap->console) {
    442   1.73     bjh21 		KASSERT(wskbd_console_initted);
    443   1.27  augustss 		KASSERT(wskbd_console_device == NULL);
    444   1.27  augustss 
    445   1.27  augustss 		wskbd_console_device = sc;
    446   1.27  augustss 
    447   1.27  augustss 		printf(": console keyboard");
    448   1.27  augustss 
    449   1.27  augustss #if NWSDISPLAY > 0
    450   1.57  augustss 		wsdisplay_set_console_kbd(&sc->sc_base); /* sets me_dispv */
    451   1.48  augustss 		if (sc->sc_base.me_dispdv != NULL)
    452   1.48  augustss 			printf(", using %s", sc->sc_base.me_dispdv->dv_xname);
    453   1.27  augustss #endif
    454   1.27  augustss 	}
    455   1.27  augustss 	printf("\n");
    456   1.27  augustss 
    457   1.28  augustss #if NWSMUX > 0
    458   1.52  augustss 	if (mux >= 0) {
    459   1.48  augustss 		error = wsmux_attach_sc(wsmux_getmux(mux), &sc->sc_base);
    460   1.48  augustss 		if (error)
    461   1.48  augustss 			printf("%s: attach error=%d\n",
    462   1.48  augustss 			    sc->sc_base.me_dv.dv_xname, error);
    463   1.48  augustss 	}
    464   1.27  augustss #endif
    465    1.1  drochner }
    466    1.1  drochner 
    467   1.73     bjh21 void
    468   1.45  augustss wskbd_cnattach(const struct wskbd_consops *consops, void *conscookie,
    469   1.45  augustss 	const struct wskbd_mapdata *mapdata)
    470    1.1  drochner {
    471    1.1  drochner 	KASSERT(!wskbd_console_initted);
    472    1.1  drochner 
    473   1.12  drochner 	wskbd_console_data.t_keymap = mapdata;
    474   1.34  drochner 	wskbd_update_layout(&wskbd_console_data, mapdata->layout);
    475    1.3   hannken 
    476   1.12  drochner 	wskbd_console_data.t_consops = consops;
    477   1.12  drochner 	wskbd_console_data.t_consaccesscookie = conscookie;
    478    1.1  drochner 
    479   1.21  drochner #if NWSDISPLAY > 0
    480   1.37   thorpej 	wsdisplay_set_cons_kbd(wskbd_cngetc, wskbd_cnpollc, wskbd_cnbell);
    481   1.21  drochner #endif
    482    1.1  drochner 
    483    1.1  drochner 	wskbd_console_initted = 1;
    484   1.33  augustss }
    485   1.33  augustss 
    486   1.73     bjh21 void
    487   1.45  augustss wskbd_cndetach(void)
    488   1.33  augustss {
    489   1.33  augustss 	KASSERT(wskbd_console_initted);
    490   1.33  augustss 
    491   1.33  augustss 	wskbd_console_data.t_keymap = 0;
    492   1.33  augustss 
    493   1.33  augustss 	wskbd_console_data.t_consops = 0;
    494   1.33  augustss 	wskbd_console_data.t_consaccesscookie = 0;
    495   1.33  augustss 
    496   1.33  augustss #if NWSDISPLAY > 0
    497   1.33  augustss 	wsdisplay_unset_cons_kbd();
    498   1.33  augustss #endif
    499   1.33  augustss 
    500   1.33  augustss 	wskbd_console_initted = 0;
    501    1.1  drochner }
    502    1.1  drochner 
    503    1.1  drochner static void
    504   1.45  augustss wskbd_repeat(void *v)
    505    1.1  drochner {
    506    1.1  drochner 	struct wskbd_softc *sc = (struct wskbd_softc *)v;
    507    1.1  drochner 	int s = spltty();
    508    1.1  drochner 
    509   1.20  drochner 	if (!sc->sc_repeating) {
    510   1.20  drochner 		/*
    511   1.20  drochner 		 * race condition: a "key up" event came in when wskbd_repeat()
    512   1.20  drochner 		 * was already called but not yet spltty()'d
    513   1.20  drochner 		 */
    514   1.20  drochner 		splx(s);
    515   1.20  drochner 		return;
    516   1.20  drochner 	}
    517   1.79  augustss 	if (sc->sc_translating) {
    518   1.79  augustss 		/* deliver keys */
    519   1.81        he #if NWSDISPLAY > 0
    520   1.79  augustss 		if (sc->sc_base.me_dispdv != NULL) {
    521   1.79  augustss 			int i;
    522   1.79  augustss 			for (i = 0; i < sc->sc_repeating; i++)
    523   1.79  augustss 				wsdisplay_kbdinput(sc->sc_base.me_dispdv,
    524   1.79  augustss 						   sc->id->t_symbols[i]);
    525   1.79  augustss 		}
    526   1.81        he #endif
    527   1.79  augustss 	} else {
    528   1.80  augustss #if defined(WSKBD_EVENT_AUTOREPEAT)
    529   1.79  augustss 		/* queue event */
    530   1.79  augustss 		wskbd_deliver_event(sc, sc->sc_repeat_type,
    531   1.79  augustss 				    sc->sc_repeat_value);
    532   1.80  augustss #endif /* defined(WSKBD_EVENT_AUTOREPEAT) */
    533   1.34  drochner 	}
    534   1.38   thorpej 	callout_reset(&sc->sc_repeat_ch,
    535   1.38   thorpej 	    (hz * sc->sc_keyrepeat_data.delN) / 1000, wskbd_repeat, sc);
    536    1.1  drochner 	splx(s);
    537    1.1  drochner }
    538    1.1  drochner 
    539   1.24  augustss int
    540   1.45  augustss wskbd_activate(struct device *self, enum devact act)
    541   1.24  augustss {
    542   1.48  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)self;
    543   1.48  augustss 
    544   1.48  augustss 	if (act == DVACT_DEACTIVATE)
    545   1.48  augustss 		sc->sc_dying = 1;
    546   1.24  augustss 	return (0);
    547   1.24  augustss }
    548   1.24  augustss 
    549   1.24  augustss /*
    550   1.24  augustss  * Detach a keyboard.  To keep track of users of the softc we keep
    551   1.24  augustss  * a reference count that's incremented while inside, e.g., read.
    552   1.27  augustss  * If the keyboard is active and the reference count is > 0 (0 is the
    553   1.24  augustss  * normal state) we post an event and then wait for the process
    554   1.24  augustss  * that had the reference to wake us up again.  Then we blow away the
    555   1.24  augustss  * vnode and return (which will deallocate the softc).
    556   1.24  augustss  */
    557   1.24  augustss int
    558   1.98  christos wskbd_detach(struct device  *self, int flags)
    559   1.24  augustss {
    560   1.24  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)self;
    561   1.24  augustss 	struct wseventvar *evar;
    562   1.24  augustss 	int maj, mn;
    563   1.24  augustss 	int s;
    564   1.48  augustss 
    565   1.28  augustss #if NWSMUX > 0
    566   1.48  augustss 	/* Tell parent mux we're leaving. */
    567   1.48  augustss 	if (sc->sc_base.me_parent != NULL)
    568   1.48  augustss 		wsmux_detach_sc(&sc->sc_base);
    569   1.27  augustss #endif
    570   1.49  augustss 
    571   1.49  augustss 	if (sc->sc_isconsole) {
    572   1.49  augustss 		KASSERT(wskbd_console_device == sc);
    573   1.49  augustss 		wskbd_console_device = NULL;
    574   1.49  augustss 	}
    575   1.24  augustss 
    576   1.48  augustss 	evar = sc->sc_base.me_evp;
    577   1.48  augustss 	if (evar != NULL && evar->io != NULL) {
    578   1.24  augustss 		s = spltty();
    579   1.24  augustss 		if (--sc->sc_refcnt >= 0) {
    580   1.86      jmmv 			struct wscons_event event;
    581   1.86      jmmv 
    582   1.24  augustss 			/* Wake everyone by generating a dummy event. */
    583   1.86      jmmv 			event.type = 0;
    584   1.86      jmmv 			event.value = 0;
    585   1.86      jmmv 			if (wsevent_inject(evar, &event, 1) != 0)
    586   1.86      jmmv 				wsevent_wakeup(evar);
    587   1.86      jmmv 
    588   1.24  augustss 			/* Wait for processes to go away. */
    589   1.24  augustss 			if (tsleep(sc, PZERO, "wskdet", hz * 60))
    590   1.24  augustss 				printf("wskbd_detach: %s didn't detach\n",
    591   1.48  augustss 				       sc->sc_base.me_dv.dv_xname);
    592   1.24  augustss 		}
    593   1.24  augustss 		splx(s);
    594   1.24  augustss 	}
    595   1.24  augustss 
    596   1.24  augustss 	/* locate the major number */
    597   1.62   gehenna 	maj = cdevsw_lookup_major(&wskbd_cdevsw);
    598   1.24  augustss 
    599   1.24  augustss 	/* Nuke the vnodes for any open instances. */
    600   1.88   thorpej 	mn = device_unit(self);
    601   1.24  augustss 	vdevgone(maj, mn, mn, VCHR);
    602   1.24  augustss 
    603   1.24  augustss 	return (0);
    604   1.24  augustss }
    605   1.24  augustss 
    606    1.1  drochner void
    607   1.45  augustss wskbd_input(struct device *dev, u_int type, int value)
    608    1.1  drochner {
    609   1.73     bjh21 	struct wskbd_softc *sc = (struct wskbd_softc *)dev;
    610   1.21  drochner #if NWSDISPLAY > 0
    611   1.34  drochner 	int num, i;
    612   1.21  drochner #endif
    613    1.1  drochner 
    614    1.1  drochner 	if (sc->sc_repeating) {
    615    1.1  drochner 		sc->sc_repeating = 0;
    616   1.38   thorpej 		callout_stop(&sc->sc_repeat_ch);
    617    1.1  drochner 	}
    618    1.1  drochner 
    619   1.79  augustss #if NWSDISPLAY > 0
    620    1.1  drochner 	/*
    621   1.54  augustss 	 * If /dev/wskbdN is not connected in event mode translate and
    622    1.1  drochner 	 * send upstream.
    623    1.1  drochner 	 */
    624    1.1  drochner 	if (sc->sc_translating) {
    625   1.34  drochner 		num = wskbd_translate(sc->id, type, value);
    626   1.34  drochner 		if (num > 0) {
    627   1.48  augustss 			if (sc->sc_base.me_dispdv != NULL) {
    628   1.75  christos #ifdef WSDISPLAY_SCROLLSUPPORT
    629   1.74  christos 				if (sc->id->t_symbols [0] != KS_Print_Screen) {
    630   1.75  christos 					wsdisplay_scroll(sc->sc_base.
    631   1.74  christos 					me_dispdv, WSDISPLAY_SCROLL_RESET);
    632   1.74  christos 				}
    633   1.75  christos #endif
    634   1.34  drochner 				for (i = 0; i < num; i++)
    635   1.48  augustss 					wsdisplay_kbdinput(
    636   1.48  augustss 						sc->sc_base.me_dispdv,
    637   1.34  drochner 						sc->id->t_symbols[i]);
    638   1.34  drochner 			}
    639    1.9  drochner 
    640   1.79  augustss 			if (sc->sc_keyrepeat_data.del1 != 0) {
    641   1.79  augustss 				sc->sc_repeating = num;
    642   1.79  augustss 				callout_reset(&sc->sc_repeat_ch,
    643   1.79  augustss 				    (hz * sc->sc_keyrepeat_data.del1) / 1000,
    644   1.79  augustss 				    wskbd_repeat, sc);
    645   1.79  augustss 			}
    646    1.1  drochner 		}
    647    1.1  drochner 		return;
    648    1.1  drochner 	}
    649   1.21  drochner #endif
    650    1.1  drochner 
    651   1.79  augustss 	wskbd_deliver_event(sc, type, value);
    652   1.79  augustss 
    653   1.80  augustss #if defined(WSKBD_EVENT_AUTOREPEAT)
    654   1.79  augustss 	/* Repeat key presses if set. */
    655   1.79  augustss 	if (type == WSCONS_EVENT_KEY_DOWN && sc->sc_keyrepeat_data.del1 != 0) {
    656   1.79  augustss 		sc->sc_repeat_type = type;
    657   1.79  augustss 		sc->sc_repeat_value = value;
    658   1.79  augustss 		sc->sc_repeating = 1;
    659   1.79  augustss 		callout_reset(&sc->sc_repeat_ch,
    660   1.79  augustss 		    (hz * sc->sc_keyrepeat_data.del1) / 1000,
    661   1.79  augustss 		    wskbd_repeat, sc);
    662   1.79  augustss 	}
    663   1.80  augustss #endif /* defined(WSKBD_EVENT_AUTOREPEAT) */
    664   1.79  augustss }
    665   1.79  augustss 
    666   1.79  augustss /*
    667   1.79  augustss  * Keyboard is generating events.  Turn this keystroke into an
    668   1.79  augustss  * event and put it in the queue.  If the queue is full, the
    669   1.79  augustss  * keystroke is lost (sorry!).
    670   1.79  augustss  */
    671   1.79  augustss static void
    672   1.79  augustss wskbd_deliver_event(struct wskbd_softc *sc, u_int type, int value)
    673   1.79  augustss {
    674   1.79  augustss 	struct wseventvar *evar;
    675   1.86      jmmv 	struct wscons_event event;
    676    1.1  drochner 
    677   1.48  augustss 	evar = sc->sc_base.me_evp;
    678   1.79  augustss 
    679   1.48  augustss 	if (evar == NULL) {
    680   1.48  augustss 		DPRINTF(("wskbd_input: not open\n"));
    681    1.1  drochner 		return;
    682   1.48  augustss 	}
    683   1.59  augustss 
    684   1.59  augustss #ifdef DIAGNOSTIC
    685   1.59  augustss 	if (evar->q == NULL) {
    686   1.59  augustss 		printf("wskbd_input: evar->q=NULL\n");
    687   1.59  augustss 		return;
    688   1.59  augustss 	}
    689   1.59  augustss #endif
    690   1.79  augustss 
    691   1.86      jmmv 	event.type = type;
    692   1.86      jmmv 	event.value = value;
    693   1.86      jmmv 	if (wsevent_inject(evar, &event, 1) != 0)
    694    1.1  drochner 		log(LOG_WARNING, "%s: event queue overflow\n",
    695   1.48  augustss 		    sc->sc_base.me_dv.dv_xname);
    696    1.1  drochner }
    697    1.1  drochner 
    698    1.7  drochner #ifdef WSDISPLAY_COMPAT_RAWKBD
    699    1.7  drochner void
    700   1.82  christos wskbd_rawinput(struct device *dev, u_char *tbuf, int len)
    701    1.7  drochner {
    702   1.21  drochner #if NWSDISPLAY > 0
    703    1.7  drochner 	struct wskbd_softc *sc = (struct wskbd_softc *)dev;
    704    1.9  drochner 	int i;
    705    1.7  drochner 
    706   1.48  augustss 	if (sc->sc_base.me_dispdv != NULL)
    707   1.43  matthias 		for (i = 0; i < len; i++)
    708   1.82  christos 			wsdisplay_kbdinput(sc->sc_base.me_dispdv, tbuf[i]);
    709    1.9  drochner 	/* this is KS_GROUP_Ascii */
    710   1.21  drochner #endif
    711    1.7  drochner }
    712   1.21  drochner #endif /* WSDISPLAY_COMPAT_RAWKBD */
    713    1.7  drochner 
    714   1.21  drochner #if NWSDISPLAY > 0
    715    1.2   hannken static void
    716   1.45  augustss wskbd_holdscreen(struct wskbd_softc *sc, int hold)
    717    1.1  drochner {
    718    1.2   hannken 	int new_state;
    719    1.1  drochner 
    720   1.48  augustss 	if (sc->sc_base.me_dispdv != NULL) {
    721   1.48  augustss 		wsdisplay_kbdholdscreen(sc->sc_base.me_dispdv, hold);
    722   1.12  drochner 		new_state = sc->sc_ledstate;
    723    1.2   hannken 		if (hold)
    724    1.2   hannken 			new_state |= WSKBD_LED_SCROLL;
    725    1.2   hannken 		else
    726    1.2   hannken 			new_state &= ~WSKBD_LED_SCROLL;
    727   1.12  drochner 		if (new_state != sc->sc_ledstate) {
    728   1.12  drochner 			(*sc->sc_accessops->set_leds)(sc->sc_accesscookie,
    729   1.12  drochner 						      new_state);
    730   1.12  drochner 			sc->sc_ledstate = new_state;
    731    1.2   hannken 		}
    732    1.2   hannken 	}
    733    1.1  drochner }
    734   1.21  drochner #endif
    735    1.1  drochner 
    736   1.22  drochner static int
    737   1.45  augustss wskbd_enable(struct wskbd_softc *sc, int on)
    738   1.12  drochner {
    739   1.48  augustss 	int error;
    740   1.12  drochner 
    741   1.48  augustss #if 0
    742   1.48  augustss /* I don't understand the purpose of this code.  And it seems to
    743   1.48  augustss  * break things, so it's out.  -- Lennart
    744   1.48  augustss  */
    745   1.21  drochner 	if (!on && (!sc->sc_translating
    746   1.21  drochner #if NWSDISPLAY > 0
    747   1.48  augustss 		    || sc->sc_base.me_dispdv
    748   1.21  drochner #endif
    749   1.21  drochner 		))
    750   1.12  drochner 		return (EBUSY);
    751   1.48  augustss #endif
    752   1.53  augustss #if NWSDISPLAY > 0
    753   1.53  augustss 	if (sc->sc_base.me_dispdv != NULL)
    754   1.53  augustss 		return (0);
    755   1.53  augustss #endif
    756   1.48  augustss 
    757   1.79  augustss 	/* Always cancel auto repeat when fiddling with the kbd. */
    758   1.79  augustss 	if (sc->sc_repeating) {
    759   1.79  augustss 		sc->sc_repeating = 0;
    760   1.79  augustss 		callout_stop(&sc->sc_repeat_ch);
    761   1.79  augustss 	}
    762   1.79  augustss 
    763   1.48  augustss 	error = (*sc->sc_accessops->enable)(sc->sc_accesscookie, on);
    764   1.48  augustss 	DPRINTF(("wskbd_enable: sc=%p on=%d res=%d\n", sc, on, error));
    765   1.48  augustss 	return (error);
    766   1.48  augustss }
    767   1.48  augustss 
    768   1.48  augustss #if NWSMUX > 0
    769   1.48  augustss int
    770   1.48  augustss wskbd_mux_open(struct wsevsrc *me, struct wseventvar *evp)
    771   1.48  augustss {
    772   1.48  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)me;
    773   1.48  augustss 
    774   1.51  augustss 	if (sc->sc_dying)
    775   1.51  augustss 		return (EIO);
    776   1.51  augustss 
    777   1.48  augustss 	if (sc->sc_base.me_evp != NULL)
    778   1.48  augustss 		return (EBUSY);
    779   1.12  drochner 
    780   1.51  augustss 	return (wskbd_do_open(sc, evp));
    781   1.12  drochner }
    782   1.48  augustss #endif
    783   1.12  drochner 
    784   1.12  drochner int
    785   1.98  christos wskbdopen(dev_t dev, int flags, int mode, struct lwp *l)
    786    1.1  drochner {
    787    1.1  drochner 	struct wskbd_softc *sc;
    788   1.48  augustss 	struct wseventvar *evar;
    789   1.48  augustss 	int unit, error;
    790    1.1  drochner 
    791    1.1  drochner 	unit = minor(dev);
    792    1.1  drochner 	if (unit >= wskbd_cd.cd_ndevs ||	/* make sure it was attached */
    793    1.1  drochner 	    (sc = wskbd_cd.cd_devs[unit]) == NULL)
    794    1.1  drochner 		return (ENXIO);
    795    1.1  drochner 
    796   1.48  augustss #if NWSMUX > 0
    797   1.87       uwe 	DPRINTF(("wskbdopen: %s mux=%p l=%p\n", sc->sc_base.me_dv.dv_xname,
    798   1.87       uwe 		 sc->sc_base.me_parent, l));
    799   1.48  augustss #endif
    800   1.48  augustss 
    801   1.24  augustss 	if (sc->sc_dying)
    802   1.24  augustss 		return (EIO);
    803   1.24  augustss 
    804   1.48  augustss 	if ((flags & (FREAD | FWRITE)) == FWRITE)
    805   1.29  augustss 		/* Not opening for read, only ioctl is available. */
    806   1.29  augustss 		return (0);
    807   1.29  augustss 
    808   1.31   mycroft #if NWSMUX > 0
    809   1.56  augustss 	if (sc->sc_base.me_parent != NULL) {
    810   1.44  augustss 		/* Grab the keyboard out of the greedy hands of the mux. */
    811   1.56  augustss 		DPRINTF(("wskbdopen: detach\n"));
    812   1.48  augustss 		wsmux_detach_sc(&sc->sc_base);
    813   1.56  augustss 	}
    814   1.27  augustss #endif
    815   1.27  augustss 
    816   1.48  augustss 	if (sc->sc_base.me_evp != NULL)
    817    1.1  drochner 		return (EBUSY);
    818    1.1  drochner 
    819   1.50  augustss 	evar = &sc->sc_base.me_evar;
    820   1.86      jmmv 	wsevent_init(evar, l->l_proc);
    821   1.48  augustss 
    822   1.48  augustss 	error = wskbd_do_open(sc, evar);
    823   1.48  augustss 	if (error) {
    824   1.48  augustss 		DPRINTF(("wskbdopen: %s open failed\n",
    825   1.48  augustss 			 sc->sc_base.me_dv.dv_xname));
    826   1.48  augustss 		sc->sc_base.me_evp = NULL;
    827   1.50  augustss 		wsevent_fini(evar);
    828   1.48  augustss 	}
    829   1.48  augustss 	return (error);
    830   1.48  augustss }
    831    1.1  drochner 
    832   1.48  augustss int
    833   1.48  augustss wskbd_do_open(struct wskbd_softc *sc, struct wseventvar *evp)
    834   1.48  augustss {
    835   1.48  augustss 	sc->sc_base.me_evp = evp;
    836   1.11  drochner 	sc->sc_translating = 0;
    837    1.1  drochner 
    838   1.51  augustss 	return (wskbd_enable(sc, 1));
    839    1.1  drochner }
    840    1.1  drochner 
    841    1.1  drochner int
    842   1.98  christos wskbdclose(dev_t dev, int flags, int mode,
    843   1.98  christos     struct lwp *l)
    844    1.1  drochner {
    845   1.73     bjh21 	struct wskbd_softc *sc =
    846   1.48  augustss 	    (struct wskbd_softc *)wskbd_cd.cd_devs[minor(dev)];
    847   1.48  augustss 	struct wseventvar *evar = sc->sc_base.me_evp;
    848   1.48  augustss 
    849   1.48  augustss 	if (evar == NULL)
    850   1.48  augustss 		/* not open for read */
    851   1.48  augustss 		return (0);
    852   1.48  augustss 
    853   1.48  augustss 	sc->sc_base.me_evp = NULL;
    854   1.48  augustss 	sc->sc_translating = 1;
    855   1.51  augustss 	(void)wskbd_enable(sc, 0);
    856   1.50  augustss 	wsevent_fini(evar);
    857   1.48  augustss 
    858   1.48  augustss 	return (0);
    859   1.27  augustss }
    860   1.27  augustss 
    861   1.48  augustss #if NWSMUX > 0
    862   1.27  augustss int
    863   1.48  augustss wskbd_mux_close(struct wsevsrc *me)
    864   1.27  augustss {
    865   1.48  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)me;
    866    1.1  drochner 
    867   1.48  augustss 	sc->sc_base.me_evp = NULL;
    868   1.11  drochner 	sc->sc_translating = 1;
    869   1.51  augustss 	(void)wskbd_enable(sc, 0);
    870   1.12  drochner 
    871    1.1  drochner 	return (0);
    872    1.1  drochner }
    873   1.48  augustss #endif
    874    1.1  drochner 
    875    1.1  drochner int
    876   1.45  augustss wskbdread(dev_t dev, struct uio *uio, int flags)
    877    1.1  drochner {
    878   1.16  augustss 	struct wskbd_softc *sc = wskbd_cd.cd_devs[minor(dev)];
    879   1.24  augustss 	int error;
    880   1.24  augustss 
    881   1.24  augustss 	if (sc->sc_dying)
    882   1.24  augustss 		return (EIO);
    883    1.1  drochner 
    884   1.48  augustss #ifdef DIAGNOSTIC
    885   1.48  augustss 	if (sc->sc_base.me_evp == NULL) {
    886   1.48  augustss 		printf("wskbdread: evp == NULL\n");
    887   1.48  augustss 		return (EINVAL);
    888   1.48  augustss 	}
    889   1.48  augustss #endif
    890   1.48  augustss 
    891   1.24  augustss 	sc->sc_refcnt++;
    892   1.48  augustss 	error = wsevent_read(sc->sc_base.me_evp, uio, flags);
    893   1.24  augustss 	if (--sc->sc_refcnt < 0) {
    894   1.24  augustss 		wakeup(sc);
    895   1.24  augustss 		error = EIO;
    896   1.24  augustss 	}
    897   1.24  augustss 	return (error);
    898    1.1  drochner }
    899    1.1  drochner 
    900    1.1  drochner int
    901  1.101  christos wskbdioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    902    1.1  drochner {
    903   1.85  christos 	return (wskbd_do_ioctl(wskbd_cd.cd_devs[minor(dev)], cmd, data, flag,l));
    904   1.27  augustss }
    905   1.27  augustss 
    906   1.27  augustss /* A wrapper around the ioctl() workhorse to make reference counting easy. */
    907   1.27  augustss int
    908  1.101  christos wskbd_do_ioctl(struct device *dv, u_long cmd, void *data, int flag,
    909   1.85  christos 	struct lwp *l)
    910   1.27  augustss {
    911   1.27  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)dv;
    912   1.24  augustss 	int error;
    913   1.24  augustss 
    914   1.24  augustss 	sc->sc_refcnt++;
    915   1.85  christos 	error = wskbd_do_ioctl_sc(sc, cmd, data, flag, l);
    916   1.24  augustss 	if (--sc->sc_refcnt < 0)
    917   1.24  augustss 		wakeup(sc);
    918   1.24  augustss 	return (error);
    919   1.24  augustss }
    920   1.24  augustss 
    921   1.24  augustss int
    922  1.101  christos wskbd_do_ioctl_sc(struct wskbd_softc *sc, u_long cmd, void *data, int flag,
    923   1.85  christos 		  struct lwp *l)
    924   1.24  augustss {
    925    1.1  drochner 
    926   1.73     bjh21 	/*
    927    1.1  drochner 	 * Try the generic ioctls that the wskbd interface supports.
    928    1.1  drochner 	 */
    929    1.1  drochner 	switch (cmd) {
    930    1.1  drochner 	case FIONBIO:		/* we will remove this someday (soon???) */
    931    1.1  drochner 		return (0);
    932    1.1  drochner 
    933    1.1  drochner 	case FIOASYNC:
    934   1.48  augustss 		if (sc->sc_base.me_evp == NULL)
    935   1.48  augustss 			return (EINVAL);
    936   1.48  augustss 		sc->sc_base.me_evp->async = *(int *)data != 0;
    937   1.71  jdolecek 		return (0);
    938   1.71  jdolecek 
    939   1.71  jdolecek 	case FIOSETOWN:
    940   1.71  jdolecek 		if (sc->sc_base.me_evp == NULL)
    941   1.71  jdolecek 			return (EINVAL);
    942   1.71  jdolecek 		if (-*(int *)data != sc->sc_base.me_evp->io->p_pgid
    943   1.71  jdolecek 		    && *(int *)data != sc->sc_base.me_evp->io->p_pid)
    944   1.71  jdolecek 			return (EPERM);
    945    1.1  drochner 		return (0);
    946    1.1  drochner 
    947    1.1  drochner 	case TIOCSPGRP:
    948   1.48  augustss 		if (sc->sc_base.me_evp == NULL)
    949   1.48  augustss 			return (EINVAL);
    950   1.48  augustss 		if (*(int *)data != sc->sc_base.me_evp->io->p_pgid)
    951    1.1  drochner 			return (EPERM);
    952    1.1  drochner 		return (0);
    953    1.1  drochner 	}
    954    1.1  drochner 
    955    1.1  drochner 	/*
    956   1.61    atatat 	 * Try the keyboard driver for WSKBDIO ioctls.  It returns EPASSTHROUGH
    957    1.1  drochner 	 * if it didn't recognize the request.
    958    1.1  drochner 	 */
    959   1.85  christos 	return (wskbd_displayioctl(&sc->sc_base.me_dv, cmd, data, flag, l));
    960    1.1  drochner }
    961    1.1  drochner 
    962    1.1  drochner /*
    963    1.1  drochner  * WSKBDIO ioctls, handled in both emulation mode and in ``raw'' mode.
    964    1.1  drochner  * Some of these have no real effect in raw mode, however.
    965    1.1  drochner  */
    966   1.27  augustss static int
    967  1.101  christos wskbd_displayioctl(struct device *dev, u_long cmd, void *data, int flag,
    968   1.85  christos 	struct lwp *l)
    969    1.1  drochner {
    970   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
    971   1.74  christos 	struct wskbd_scroll_data *usdp, *ksdp;
    972   1.74  christos #endif
    973    1.1  drochner 	struct wskbd_softc *sc = (struct wskbd_softc *)dev;
    974    1.1  drochner 	struct wskbd_bell_data *ubdp, *kbdp;
    975    1.1  drochner 	struct wskbd_keyrepeat_data *ukdp, *kkdp;
    976    1.2   hannken 	struct wskbd_map_data *umdp;
    977   1.12  drochner 	struct wskbd_mapdata md;
    978   1.85  christos 	struct proc *p = l ? l->l_proc : NULL;
    979   1.34  drochner 	kbd_t enc;
    980   1.82  christos 	void *tbuf;
    981    1.2   hannken 	int len, error;
    982    1.1  drochner 
    983    1.1  drochner 	switch (cmd) {
    984    1.1  drochner #define	SETBELL(dstp, srcp, dfltp)					\
    985    1.1  drochner     do {								\
    986    1.1  drochner 	(dstp)->pitch = ((srcp)->which & WSKBD_BELL_DOPITCH) ?		\
    987    1.1  drochner 	    (srcp)->pitch : (dfltp)->pitch;				\
    988    1.1  drochner 	(dstp)->period = ((srcp)->which & WSKBD_BELL_DOPERIOD) ?	\
    989    1.1  drochner 	    (srcp)->period : (dfltp)->period;				\
    990    1.1  drochner 	(dstp)->volume = ((srcp)->which & WSKBD_BELL_DOVOLUME) ?	\
    991    1.1  drochner 	    (srcp)->volume : (dfltp)->volume;				\
    992    1.1  drochner 	(dstp)->which = WSKBD_BELL_DOALL;				\
    993    1.1  drochner     } while (0)
    994    1.1  drochner 
    995    1.1  drochner 	case WSKBDIO_BELL:
    996    1.1  drochner 		if ((flag & FWRITE) == 0)
    997    1.1  drochner 			return (EACCES);
    998   1.12  drochner 		return ((*sc->sc_accessops->ioctl)(sc->sc_accesscookie,
    999  1.101  christos 		    WSKBDIO_COMPLEXBELL, (void *)&sc->sc_bell_data, flag, l));
   1000    1.1  drochner 
   1001    1.1  drochner 	case WSKBDIO_COMPLEXBELL:
   1002    1.1  drochner 		if ((flag & FWRITE) == 0)
   1003    1.1  drochner 			return (EACCES);
   1004    1.1  drochner 		ubdp = (struct wskbd_bell_data *)data;
   1005    1.1  drochner 		SETBELL(ubdp, ubdp, &sc->sc_bell_data);
   1006   1.12  drochner 		return ((*sc->sc_accessops->ioctl)(sc->sc_accesscookie,
   1007  1.101  christos 		    WSKBDIO_COMPLEXBELL, (void *)ubdp, flag, l));
   1008    1.1  drochner 
   1009    1.1  drochner 	case WSKBDIO_SETBELL:
   1010    1.1  drochner 		if ((flag & FWRITE) == 0)
   1011    1.1  drochner 			return (EACCES);
   1012    1.1  drochner 		kbdp = &sc->sc_bell_data;
   1013    1.1  drochner setbell:
   1014    1.1  drochner 		ubdp = (struct wskbd_bell_data *)data;
   1015    1.1  drochner 		SETBELL(kbdp, ubdp, kbdp);
   1016    1.1  drochner 		return (0);
   1017    1.1  drochner 
   1018    1.1  drochner 	case WSKBDIO_GETBELL:
   1019    1.1  drochner 		kbdp = &sc->sc_bell_data;
   1020    1.1  drochner getbell:
   1021    1.1  drochner 		ubdp = (struct wskbd_bell_data *)data;
   1022    1.1  drochner 		SETBELL(ubdp, kbdp, kbdp);
   1023    1.1  drochner 		return (0);
   1024    1.1  drochner 
   1025    1.1  drochner 	case WSKBDIO_SETDEFAULTBELL:
   1026   1.93        ad 		if (p && (error = kauth_authorize_generic(l->l_cred,
   1027   1.99      elad 		    KAUTH_GENERIC_ISSUSER, NULL)) != 0)
   1028    1.1  drochner 			return (error);
   1029    1.1  drochner 		kbdp = &wskbd_default_bell_data;
   1030    1.1  drochner 		goto setbell;
   1031    1.1  drochner 
   1032    1.1  drochner 
   1033    1.1  drochner 	case WSKBDIO_GETDEFAULTBELL:
   1034    1.1  drochner 		kbdp = &wskbd_default_bell_data;
   1035    1.1  drochner 		goto getbell;
   1036    1.1  drochner 
   1037    1.1  drochner #undef SETBELL
   1038    1.1  drochner 
   1039    1.1  drochner #define	SETKEYREPEAT(dstp, srcp, dfltp)					\
   1040    1.1  drochner     do {								\
   1041    1.1  drochner 	(dstp)->del1 = ((srcp)->which & WSKBD_KEYREPEAT_DODEL1) ?	\
   1042    1.1  drochner 	    (srcp)->del1 : (dfltp)->del1;				\
   1043    1.1  drochner 	(dstp)->delN = ((srcp)->which & WSKBD_KEYREPEAT_DODELN) ?	\
   1044    1.1  drochner 	    (srcp)->delN : (dfltp)->delN;				\
   1045    1.1  drochner 	(dstp)->which = WSKBD_KEYREPEAT_DOALL;				\
   1046    1.1  drochner     } while (0)
   1047    1.1  drochner 
   1048    1.1  drochner 	case WSKBDIO_SETKEYREPEAT:
   1049    1.1  drochner 		if ((flag & FWRITE) == 0)
   1050    1.1  drochner 			return (EACCES);
   1051    1.1  drochner 		kkdp = &sc->sc_keyrepeat_data;
   1052    1.1  drochner setkeyrepeat:
   1053    1.1  drochner 		ukdp = (struct wskbd_keyrepeat_data *)data;
   1054    1.1  drochner 		SETKEYREPEAT(kkdp, ukdp, kkdp);
   1055    1.1  drochner 		return (0);
   1056    1.1  drochner 
   1057    1.1  drochner 	case WSKBDIO_GETKEYREPEAT:
   1058    1.1  drochner 		kkdp = &sc->sc_keyrepeat_data;
   1059    1.1  drochner getkeyrepeat:
   1060    1.1  drochner 		ukdp = (struct wskbd_keyrepeat_data *)data;
   1061    1.1  drochner 		SETKEYREPEAT(ukdp, kkdp, kkdp);
   1062    1.1  drochner 		return (0);
   1063    1.1  drochner 
   1064    1.1  drochner 	case WSKBDIO_SETDEFAULTKEYREPEAT:
   1065   1.93        ad 		if ((error = kauth_authorize_generic(l->l_cred,
   1066   1.99      elad 		    KAUTH_GENERIC_ISSUSER, NULL)) != 0)
   1067    1.1  drochner 			return (error);
   1068    1.1  drochner 		kkdp = &wskbd_default_keyrepeat_data;
   1069    1.1  drochner 		goto setkeyrepeat;
   1070    1.1  drochner 
   1071    1.1  drochner 
   1072    1.1  drochner 	case WSKBDIO_GETDEFAULTKEYREPEAT:
   1073    1.1  drochner 		kkdp = &wskbd_default_keyrepeat_data;
   1074    1.1  drochner 		goto getkeyrepeat;
   1075    1.1  drochner 
   1076   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
   1077   1.74  christos #define	SETSCROLLMOD(dstp, srcp, dfltp)					\
   1078   1.74  christos     do {								\
   1079   1.74  christos 	(dstp)->mode = ((srcp)->which & WSKBD_SCROLL_DOMODE) ?		\
   1080   1.74  christos 	    (srcp)->mode : (dfltp)->mode;				\
   1081   1.74  christos 	(dstp)->modifier = ((srcp)->which & WSKBD_SCROLL_DOMODIFIER) ?	\
   1082   1.74  christos 	    (srcp)->modifier : (dfltp)->modifier;			\
   1083   1.74  christos 	(dstp)->which = WSKBD_SCROLL_DOALL;				\
   1084   1.74  christos     } while (0)
   1085   1.74  christos 
   1086   1.74  christos 	case WSKBDIO_SETSCROLL:
   1087   1.74  christos 		usdp = (struct wskbd_scroll_data *)data;
   1088   1.74  christos 		ksdp = &sc->sc_scroll_data;
   1089   1.74  christos 		SETSCROLLMOD(ksdp, usdp, ksdp);
   1090   1.74  christos 		return (0);
   1091   1.74  christos 
   1092   1.74  christos 	case WSKBDIO_GETSCROLL:
   1093   1.74  christos 		usdp = (struct wskbd_scroll_data *)data;
   1094   1.74  christos 		ksdp = &sc->sc_scroll_data;
   1095   1.74  christos 		SETSCROLLMOD(usdp, ksdp, ksdp);
   1096   1.74  christos 		return (0);
   1097   1.76  christos #else
   1098   1.76  christos 	case WSKBDIO_GETSCROLL:
   1099   1.76  christos 	case WSKBDIO_SETSCROLL:
   1100   1.76  christos 		return ENODEV;
   1101   1.74  christos #endif
   1102   1.74  christos 
   1103    1.1  drochner #undef SETKEYREPEAT
   1104    1.2   hannken 
   1105    1.2   hannken 	case WSKBDIO_SETMAP:
   1106    1.2   hannken 		if ((flag & FWRITE) == 0)
   1107    1.2   hannken 			return (EACCES);
   1108    1.2   hannken 		umdp = (struct wskbd_map_data *)data;
   1109   1.42  jdolecek 		if (umdp->maplen > WSKBDIO_MAXMAPLEN)
   1110   1.42  jdolecek 			return (EINVAL);
   1111   1.42  jdolecek 
   1112    1.2   hannken 		len = umdp->maplen*sizeof(struct wscons_keymap);
   1113   1.82  christos 		tbuf = malloc(len, M_TEMP, M_WAITOK);
   1114   1.82  christos 		error = copyin(umdp->map, tbuf, len);
   1115    1.2   hannken 		if (error == 0) {
   1116    1.2   hannken 			wskbd_init_keymap(umdp->maplen,
   1117    1.2   hannken 					  &sc->sc_map, &sc->sc_maplen);
   1118   1.82  christos 			memcpy(sc->sc_map, tbuf, len);
   1119   1.34  drochner 			/* drop the variant bits handled by the map */
   1120   1.34  drochner 			sc->sc_layout = KB_USER |
   1121   1.34  drochner 			      (KB_VARIANT(sc->sc_layout) & KB_HANDLEDBYWSKBD);
   1122   1.34  drochner 			wskbd_update_layout(sc->id, sc->sc_layout);
   1123    1.2   hannken 		}
   1124   1.82  christos 		free(tbuf, M_TEMP);
   1125    1.2   hannken 		return(error);
   1126    1.2   hannken 
   1127    1.2   hannken 	case WSKBDIO_GETMAP:
   1128    1.2   hannken 		umdp = (struct wskbd_map_data *)data;
   1129    1.2   hannken 		if (umdp->maplen > sc->sc_maplen)
   1130    1.2   hannken 			umdp->maplen = sc->sc_maplen;
   1131    1.2   hannken 		error = copyout(sc->sc_map, umdp->map,
   1132    1.2   hannken 				umdp->maplen*sizeof(struct wscons_keymap));
   1133    1.2   hannken 		return(error);
   1134    1.2   hannken 
   1135    1.2   hannken 	case WSKBDIO_GETENCODING:
   1136   1.12  drochner 		*((kbd_t *) data) = sc->sc_layout;
   1137    1.2   hannken 		return(0);
   1138    1.2   hannken 
   1139    1.2   hannken 	case WSKBDIO_SETENCODING:
   1140    1.2   hannken 		if ((flag & FWRITE) == 0)
   1141    1.2   hannken 			return (EACCES);
   1142   1.34  drochner 		enc = *((kbd_t *)data);
   1143   1.34  drochner 		if (KB_ENCODING(enc) == KB_USER) {
   1144   1.34  drochner 			/* user map must already be loaded */
   1145   1.34  drochner 			if (KB_ENCODING(sc->sc_layout) != KB_USER)
   1146   1.34  drochner 				return (EINVAL);
   1147   1.34  drochner 			/* map variants make no sense */
   1148   1.34  drochner 			if (KB_VARIANT(enc) & ~KB_HANDLEDBYWSKBD)
   1149   1.34  drochner 				return (EINVAL);
   1150   1.34  drochner 		} else {
   1151   1.34  drochner 			md = *(sc->id->t_keymap); /* structure assignment */
   1152   1.34  drochner 			md.layout = enc;
   1153   1.34  drochner 			error = wskbd_load_keymap(&md, &sc->sc_map,
   1154   1.34  drochner 						  &sc->sc_maplen);
   1155   1.34  drochner 			if (error)
   1156   1.34  drochner 				return (error);
   1157   1.34  drochner 		}
   1158   1.34  drochner 		sc->sc_layout = enc;
   1159   1.34  drochner 		wskbd_update_layout(sc->id, enc);
   1160   1.34  drochner 		return (0);
   1161    1.1  drochner 	}
   1162    1.1  drochner 
   1163    1.1  drochner 	/*
   1164    1.1  drochner 	 * Try the keyboard driver for WSKBDIO ioctls.  It returns -1
   1165    1.1  drochner 	 * if it didn't recognize the request, and in turn we return
   1166    1.1  drochner 	 * -1 if we didn't recognize the request.
   1167    1.1  drochner 	 */
   1168    1.1  drochner /* printf("kbdaccess\n"); */
   1169   1.12  drochner 	error = (*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd, data,
   1170   1.85  christos 					   flag, l);
   1171    1.7  drochner #ifdef WSDISPLAY_COMPAT_RAWKBD
   1172    1.7  drochner 	if (!error && cmd == WSKBDIO_SETMODE && *(int *)data == WSKBD_RAW) {
   1173    1.7  drochner 		int s = spltty();
   1174    1.7  drochner 		sc->id->t_modifiers &= ~(MOD_SHIFT_L | MOD_SHIFT_R
   1175    1.7  drochner 					 | MOD_CONTROL_L | MOD_CONTROL_R
   1176    1.7  drochner 					 | MOD_META_L | MOD_META_R
   1177    1.7  drochner 					 | MOD_COMMAND
   1178    1.7  drochner 					 | MOD_COMMAND1 | MOD_COMMAND2);
   1179    1.7  drochner 		if (sc->sc_repeating) {
   1180    1.7  drochner 			sc->sc_repeating = 0;
   1181   1.38   thorpej 			callout_stop(&sc->sc_repeat_ch);
   1182    1.7  drochner 		}
   1183    1.7  drochner 		splx(s);
   1184    1.7  drochner 	}
   1185    1.7  drochner #endif
   1186    1.7  drochner 	return (error);
   1187    1.1  drochner }
   1188    1.1  drochner 
   1189    1.1  drochner int
   1190   1.85  christos wskbdpoll(dev_t dev, int events, struct lwp *l)
   1191    1.1  drochner {
   1192    1.1  drochner 	struct wskbd_softc *sc = wskbd_cd.cd_devs[minor(dev)];
   1193    1.1  drochner 
   1194   1.48  augustss 	if (sc->sc_base.me_evp == NULL)
   1195   1.83        ws 		return (POLLERR);
   1196   1.85  christos 	return (wsevent_poll(sc->sc_base.me_evp, events, l));
   1197   1.66  jdolecek }
   1198   1.66  jdolecek 
   1199   1.66  jdolecek int
   1200   1.66  jdolecek wskbdkqfilter(dev_t dev, struct knote *kn)
   1201   1.66  jdolecek {
   1202   1.66  jdolecek 	struct wskbd_softc *sc = wskbd_cd.cd_devs[minor(dev)];
   1203   1.66  jdolecek 
   1204   1.66  jdolecek 	if (sc->sc_base.me_evp == NULL)
   1205   1.66  jdolecek 		return (1);
   1206   1.66  jdolecek 	return (wsevent_kqfilter(sc->sc_base.me_evp, kn));
   1207    1.1  drochner }
   1208    1.1  drochner 
   1209   1.22  drochner #if NWSDISPLAY > 0
   1210   1.22  drochner 
   1211    1.1  drochner int
   1212   1.45  augustss wskbd_pickfree(void)
   1213    1.1  drochner {
   1214   1.22  drochner 	int i;
   1215   1.22  drochner 	struct wskbd_softc *sc;
   1216    1.1  drochner 
   1217   1.22  drochner 	for (i = 0; i < wskbd_cd.cd_ndevs; i++) {
   1218   1.22  drochner 		if ((sc = wskbd_cd.cd_devs[i]) == NULL)
   1219   1.22  drochner 			continue;
   1220   1.48  augustss 		if (sc->sc_base.me_dispdv == NULL)
   1221   1.22  drochner 			return (i);
   1222   1.22  drochner 	}
   1223   1.22  drochner 	return (-1);
   1224    1.1  drochner }
   1225    1.1  drochner 
   1226   1.48  augustss struct wsevsrc *
   1227   1.48  augustss wskbd_set_console_display(struct device *displaydv, struct wsevsrc *me)
   1228   1.27  augustss {
   1229   1.27  augustss 	struct wskbd_softc *sc = wskbd_console_device;
   1230   1.27  augustss 
   1231   1.48  augustss 	if (sc == NULL)
   1232   1.48  augustss 		return (NULL);
   1233   1.48  augustss 	sc->sc_base.me_dispdv = displaydv;
   1234   1.48  augustss #if NWSMUX > 0
   1235   1.48  augustss 	(void)wsmux_attach_sc((struct wsmux_softc *)me, &sc->sc_base);
   1236   1.48  augustss #endif
   1237   1.48  augustss 	return (&sc->sc_base);
   1238   1.27  augustss }
   1239   1.27  augustss 
   1240   1.22  drochner int
   1241   1.48  augustss wskbd_set_display(struct device *dv, struct wsevsrc *me)
   1242   1.27  augustss {
   1243   1.27  augustss 	struct wskbd_softc *sc = (struct wskbd_softc *)dv;
   1244   1.48  augustss 	struct device *displaydv = me != NULL ? me->me_dispdv : NULL;
   1245   1.27  augustss 	struct device *odisplaydv;
   1246   1.27  augustss 	int error;
   1247   1.22  drochner 
   1248   1.55  augustss 	DPRINTF(("wskbd_set_display: %s me=%p odisp=%p disp=%p cons=%d\n",
   1249   1.73     bjh21 		 dv->dv_xname, me, sc->sc_base.me_dispdv, displaydv,
   1250   1.27  augustss 		 sc->sc_isconsole));
   1251   1.21  drochner 
   1252   1.22  drochner 	if (sc->sc_isconsole)
   1253   1.22  drochner 		return (EBUSY);
   1254   1.27  augustss 
   1255   1.48  augustss 	if (displaydv != NULL) {
   1256   1.48  augustss 		if (sc->sc_base.me_dispdv != NULL)
   1257   1.22  drochner 			return (EBUSY);
   1258   1.22  drochner 	} else {
   1259   1.48  augustss 		if (sc->sc_base.me_dispdv == NULL)
   1260   1.22  drochner 			return (ENXIO);
   1261   1.22  drochner 	}
   1262    1.1  drochner 
   1263   1.48  augustss 	odisplaydv = sc->sc_base.me_dispdv;
   1264   1.53  augustss 	sc->sc_base.me_dispdv = NULL;
   1265   1.53  augustss 	error = wskbd_enable(sc, displaydv != NULL);
   1266   1.48  augustss 	sc->sc_base.me_dispdv = displaydv;
   1267   1.27  augustss 	if (error) {
   1268   1.48  augustss 		sc->sc_base.me_dispdv = odisplaydv;
   1269   1.27  augustss 		return (error);
   1270   1.27  augustss 	}
   1271   1.27  augustss 
   1272   1.27  augustss 	if (displaydv)
   1273  1.100        ad 		aprint_verbose("%s: connecting to %s\n",
   1274   1.48  augustss 		       sc->sc_base.me_dv.dv_xname, displaydv->dv_xname);
   1275   1.27  augustss 	else
   1276  1.100        ad 		aprint_verbose("%s: disconnecting from %s\n",
   1277   1.48  augustss 		       sc->sc_base.me_dv.dv_xname, odisplaydv->dv_xname);
   1278   1.27  augustss 
   1279   1.22  drochner 	return (0);
   1280    1.1  drochner }
   1281    1.1  drochner 
   1282   1.48  augustss #endif /* NWSDISPLAY > 0 */
   1283   1.48  augustss 
   1284   1.48  augustss #if NWSMUX > 0
   1285   1.27  augustss int
   1286   1.45  augustss wskbd_add_mux(int unit, struct wsmux_softc *muxsc)
   1287   1.27  augustss {
   1288   1.27  augustss 	struct wskbd_softc *sc;
   1289   1.27  augustss 
   1290   1.27  augustss 	if (unit < 0 || unit >= wskbd_cd.cd_ndevs ||
   1291   1.27  augustss 	    (sc = wskbd_cd.cd_devs[unit]) == NULL)
   1292   1.27  augustss 		return (ENXIO);
   1293   1.27  augustss 
   1294   1.48  augustss 	if (sc->sc_base.me_parent != NULL || sc->sc_base.me_evp != NULL)
   1295   1.27  augustss 		return (EBUSY);
   1296   1.27  augustss 
   1297   1.48  augustss 	return (wsmux_attach_sc(muxsc, &sc->sc_base));
   1298   1.27  augustss }
   1299   1.48  augustss #endif
   1300   1.21  drochner 
   1301    1.1  drochner /*
   1302    1.1  drochner  * Console interface.
   1303    1.1  drochner  */
   1304    1.1  drochner int
   1305   1.98  christos wskbd_cngetc(dev_t dev)
   1306    1.1  drochner {
   1307   1.34  drochner 	static int num = 0;
   1308   1.34  drochner 	static int pos;
   1309    1.2   hannken 	u_int type;
   1310    1.2   hannken 	int data;
   1311    1.9  drochner 	keysym_t ks;
   1312    1.1  drochner 
   1313    1.1  drochner 	if (!wskbd_console_initted)
   1314    1.1  drochner 		return 0;
   1315    1.1  drochner 
   1316    1.1  drochner 	if (wskbd_console_device != NULL &&
   1317    1.1  drochner 	    !wskbd_console_device->sc_translating)
   1318    1.1  drochner 		return 0;
   1319    1.1  drochner 
   1320    1.9  drochner 	for(;;) {
   1321   1.34  drochner 		if (num-- > 0) {
   1322   1.34  drochner 			ks = wskbd_console_data.t_symbols[pos++];
   1323   1.34  drochner 			if (KS_GROUP(ks) == KS_GROUP_Ascii)
   1324   1.77     perry 				return (KS_VALUE(ks));
   1325   1.34  drochner 		} else {
   1326   1.34  drochner 			(*wskbd_console_data.t_consops->getc)
   1327   1.34  drochner 				(wskbd_console_data.t_consaccesscookie,
   1328   1.34  drochner 				 &type, &data);
   1329   1.78    martin 			if (type == WSCONS_EVENT_ASCII) {
   1330   1.78    martin 				/*
   1331   1.78    martin 				 * We assume that when the driver falls back
   1332   1.78    martin 				 * to deliver pure ASCII it is in a state that
   1333   1.78    martin 				 * it can not track press/release events
   1334   1.78    martin 				 * reliable - so we clear all previously
   1335   1.91    martin 				 * accumulated modifier state.
   1336   1.78    martin 				 */
   1337   1.78    martin 				wskbd_console_data.t_modifiers = 0;
   1338   1.78    martin 				return(data);
   1339   1.78    martin 			}
   1340   1.34  drochner 			num = wskbd_translate(&wskbd_console_data, type, data);
   1341   1.34  drochner 			pos = 0;
   1342   1.34  drochner 		}
   1343    1.9  drochner 	}
   1344    1.1  drochner }
   1345    1.1  drochner 
   1346    1.1  drochner void
   1347   1.98  christos wskbd_cnpollc(dev_t dev, int poll)
   1348    1.1  drochner {
   1349    1.1  drochner 
   1350    1.1  drochner 	if (!wskbd_console_initted)
   1351    1.1  drochner 		return;
   1352    1.1  drochner 
   1353    1.1  drochner 	if (wskbd_console_device != NULL &&
   1354    1.1  drochner 	    !wskbd_console_device->sc_translating)
   1355    1.1  drochner 		return;
   1356    1.1  drochner 
   1357   1.12  drochner 	(*wskbd_console_data.t_consops->pollc)
   1358   1.12  drochner 	    (wskbd_console_data.t_consaccesscookie, poll);
   1359   1.37   thorpej }
   1360   1.37   thorpej 
   1361   1.37   thorpej void
   1362   1.98  christos wskbd_cnbell(dev_t dev, u_int pitch, u_int period, u_int volume)
   1363   1.37   thorpej {
   1364   1.37   thorpej 
   1365   1.37   thorpej 	if (!wskbd_console_initted)
   1366   1.37   thorpej 		return;
   1367   1.37   thorpej 
   1368   1.37   thorpej 	if (wskbd_console_data.t_consops->bell != NULL)
   1369   1.37   thorpej 		(*wskbd_console_data.t_consops->bell)
   1370   1.37   thorpej 		    (wskbd_console_data.t_consaccesscookie, pitch, period,
   1371   1.37   thorpej 			volume);
   1372    1.2   hannken }
   1373    1.2   hannken 
   1374    1.2   hannken static inline void
   1375   1.45  augustss update_leds(struct wskbd_internal *id)
   1376    1.2   hannken {
   1377    1.2   hannken 	int new_state;
   1378    1.2   hannken 
   1379    1.2   hannken 	new_state = 0;
   1380    1.3   hannken 	if (id->t_modifiers & (MOD_SHIFTLOCK | MOD_CAPSLOCK))
   1381    1.2   hannken 		new_state |= WSKBD_LED_CAPS;
   1382    1.3   hannken 	if (id->t_modifiers & MOD_NUMLOCK)
   1383    1.2   hannken 		new_state |= WSKBD_LED_NUM;
   1384    1.3   hannken 	if (id->t_modifiers & MOD_COMPOSE)
   1385    1.2   hannken 		new_state |= WSKBD_LED_COMPOSE;
   1386    1.3   hannken 	if (id->t_modifiers & MOD_HOLDSCREEN)
   1387    1.2   hannken 		new_state |= WSKBD_LED_SCROLL;
   1388    1.2   hannken 
   1389   1.12  drochner 	if (id->t_sc && new_state != id->t_sc->sc_ledstate) {
   1390   1.12  drochner 		(*id->t_sc->sc_accessops->set_leds)
   1391   1.12  drochner 		    (id->t_sc->sc_accesscookie, new_state);
   1392   1.12  drochner 		id->t_sc->sc_ledstate = new_state;
   1393    1.2   hannken 	}
   1394    1.2   hannken }
   1395    1.2   hannken 
   1396    1.2   hannken static inline void
   1397   1.45  augustss update_modifier(struct wskbd_internal *id, u_int type, int toggle, int mask)
   1398    1.2   hannken {
   1399    1.2   hannken 	if (toggle) {
   1400    1.2   hannken 		if (type == WSCONS_EVENT_KEY_DOWN)
   1401    1.3   hannken 			id->t_modifiers ^= mask;
   1402    1.2   hannken 	} else {
   1403    1.2   hannken 		if (type == WSCONS_EVENT_KEY_DOWN)
   1404    1.3   hannken 			id->t_modifiers |= mask;
   1405    1.2   hannken 		else
   1406    1.3   hannken 			id->t_modifiers &= ~mask;
   1407    1.2   hannken 	}
   1408    1.2   hannken }
   1409    1.2   hannken 
   1410   1.39  takemura #if NWSDISPLAY > 0
   1411   1.39  takemura static void
   1412   1.45  augustss change_displayparam(struct wskbd_softc *sc, int param, int updown,
   1413   1.45  augustss 	int wraparound)
   1414   1.39  takemura {
   1415   1.39  takemura 	int res;
   1416   1.39  takemura 	struct wsdisplay_param dp;
   1417   1.39  takemura 
   1418   1.39  takemura 	dp.param = param;
   1419   1.48  augustss 	res = wsdisplay_param(sc->sc_base.me_dispdv, WSDISPLAYIO_GETPARAM, &dp);
   1420   1.39  takemura 
   1421   1.39  takemura 	if (res == EINVAL)
   1422   1.39  takemura 		return; /* no such parameter */
   1423   1.39  takemura 
   1424   1.39  takemura 	dp.curval += updown;
   1425   1.39  takemura 	if (dp.max < dp.curval)
   1426   1.39  takemura 		dp.curval = wraparound ? dp.min : dp.max;
   1427   1.39  takemura 	else
   1428   1.39  takemura 	if (dp.curval < dp.min)
   1429   1.39  takemura 		dp.curval = wraparound ? dp.max : dp.min;
   1430   1.48  augustss 	wsdisplay_param(sc->sc_base.me_dispdv, WSDISPLAYIO_SETPARAM, &dp);
   1431   1.39  takemura }
   1432   1.39  takemura #endif
   1433   1.39  takemura 
   1434    1.7  drochner static int
   1435   1.45  augustss internal_command(struct wskbd_softc *sc, u_int *type, keysym_t ksym,
   1436   1.45  augustss 	keysym_t ksym2)
   1437    1.2   hannken {
   1438   1.75  christos #ifdef WSDISPLAY_SCROLLSUPPORT
   1439   1.75  christos 	u_int state = 0;
   1440   1.75  christos #endif
   1441    1.2   hannken 	switch (ksym) {
   1442   1.74  christos #ifdef WSDISPLAY_SCROLLSUPPORT
   1443   1.74  christos 	case KS_Cmd_ScrollFastUp:
   1444   1.74  christos 	case KS_Cmd_ScrollFastDown:
   1445   1.74  christos 		if (*type == WSCONS_EVENT_KEY_DOWN) {
   1446   1.74  christos 			GETMODSTATE(sc->id->t_modifiers, state);
   1447   1.74  christos 			if ((sc->sc_scroll_data.mode == WSKBD_SCROLL_MODE_HOLD
   1448   1.74  christos 			   	&& MOD_ONESET(sc->id, MOD_HOLDSCREEN))
   1449   1.74  christos 			|| (sc->sc_scroll_data.mode == WSKBD_SCROLL_MODE_NORMAL
   1450   1.74  christos 				&& sc->sc_scroll_data.modifier == state)) {
   1451   1.74  christos 					update_modifier(sc->id, *type, 0, MOD_COMMAND);
   1452   1.74  christos 					wsdisplay_scroll(sc->sc_base.me_dispdv,
   1453   1.74  christos 						(ksym == KS_Cmd_ScrollFastUp) ?
   1454   1.74  christos 						WSDISPLAY_SCROLL_BACKWARD :
   1455   1.74  christos 						WSDISPLAY_SCROLL_FORWARD);
   1456   1.74  christos 					return (1);
   1457   1.74  christos 			} else {
   1458   1.74  christos 				return (0);
   1459   1.74  christos 			}
   1460   1.74  christos 		}
   1461   1.74  christos 
   1462   1.74  christos 	case KS_Cmd_ScrollSlowUp:
   1463   1.74  christos 	case KS_Cmd_ScrollSlowDown:
   1464   1.74  christos 		if (*type == WSCONS_EVENT_KEY_DOWN) {
   1465   1.74  christos 			GETMODSTATE(sc->id->t_modifiers, state);
   1466   1.74  christos 			if ((sc->sc_scroll_data.mode == WSKBD_SCROLL_MODE_HOLD
   1467   1.74  christos 			   	&& MOD_ONESET(sc->id, MOD_HOLDSCREEN))
   1468   1.74  christos 			|| (sc->sc_scroll_data.mode == WSKBD_SCROLL_MODE_NORMAL
   1469   1.74  christos 				&& sc->sc_scroll_data.modifier == state)) {
   1470   1.74  christos 					update_modifier(sc->id, *type, 0, MOD_COMMAND);
   1471   1.74  christos 					wsdisplay_scroll(sc->sc_base.me_dispdv,
   1472   1.74  christos 					   	(ksym == KS_Cmd_ScrollSlowUp) ?
   1473   1.74  christos 						WSDISPLAY_SCROLL_BACKWARD | WSDISPLAY_SCROLL_LOW:
   1474   1.74  christos 						WSDISPLAY_SCROLL_FORWARD | WSDISPLAY_SCROLL_LOW);
   1475   1.74  christos 					return (1);
   1476   1.74  christos 			} else {
   1477   1.74  christos 				return (0);
   1478   1.74  christos 			}
   1479   1.74  christos 		}
   1480   1.74  christos #endif
   1481   1.74  christos 
   1482    1.2   hannken 	case KS_Cmd:
   1483    1.3   hannken 		update_modifier(sc->id, *type, 0, MOD_COMMAND);
   1484   1.39  takemura 		ksym = ksym2;
   1485    1.2   hannken 		break;
   1486    1.2   hannken 
   1487    1.2   hannken 	case KS_Cmd1:
   1488    1.3   hannken 		update_modifier(sc->id, *type, 0, MOD_COMMAND1);
   1489    1.2   hannken 		break;
   1490    1.2   hannken 
   1491    1.2   hannken 	case KS_Cmd2:
   1492    1.3   hannken 		update_modifier(sc->id, *type, 0, MOD_COMMAND2);
   1493    1.2   hannken 		break;
   1494    1.2   hannken 	}
   1495    1.2   hannken 
   1496    1.2   hannken 	if (*type != WSCONS_EVENT_KEY_DOWN ||
   1497    1.3   hannken 	    (! MOD_ONESET(sc->id, MOD_COMMAND) &&
   1498    1.3   hannken 	     ! MOD_ALLSET(sc->id, MOD_COMMAND1 | MOD_COMMAND2)))
   1499    1.7  drochner 		return (0);
   1500    1.2   hannken 
   1501   1.40     lukem #if defined(DDB) || defined(KGDB)
   1502   1.72  drochner 	if (ksym == KS_Cmd_Debugger) {
   1503   1.40     lukem 		if (sc->sc_isconsole) {
   1504    1.2   hannken #ifdef DDB
   1505   1.19  drochner 			console_debugger();
   1506   1.40     lukem #endif
   1507   1.40     lukem #ifdef KGDB
   1508   1.40     lukem 			kgdb_connect(1);
   1509   1.40     lukem #endif
   1510   1.40     lukem 		}
   1511    1.2   hannken 		/* discard this key (ddb discarded command modifiers) */
   1512    1.2   hannken 		*type = WSCONS_EVENT_KEY_UP;
   1513    1.7  drochner 		return (1);
   1514   1.72  drochner 	}
   1515    1.2   hannken #endif
   1516    1.2   hannken 
   1517   1.21  drochner #if NWSDISPLAY > 0
   1518   1.72  drochner 	if (sc->sc_base.me_dispdv == NULL)
   1519   1.72  drochner 		return (0);
   1520   1.72  drochner 
   1521   1.72  drochner 	switch (ksym) {
   1522    1.2   hannken 	case KS_Cmd_Screen0:
   1523    1.2   hannken 	case KS_Cmd_Screen1:
   1524    1.2   hannken 	case KS_Cmd_Screen2:
   1525    1.2   hannken 	case KS_Cmd_Screen3:
   1526    1.2   hannken 	case KS_Cmd_Screen4:
   1527    1.2   hannken 	case KS_Cmd_Screen5:
   1528    1.2   hannken 	case KS_Cmd_Screen6:
   1529    1.2   hannken 	case KS_Cmd_Screen7:
   1530    1.2   hannken 	case KS_Cmd_Screen8:
   1531    1.2   hannken 	case KS_Cmd_Screen9:
   1532   1.48  augustss 		wsdisplay_switch(sc->sc_base.me_dispdv, ksym - KS_Cmd_Screen0, 0);
   1533   1.17  drochner 		return (1);
   1534   1.17  drochner 	case KS_Cmd_ResetEmul:
   1535   1.48  augustss 		wsdisplay_reset(sc->sc_base.me_dispdv, WSDISPLAY_RESETEMUL);
   1536   1.18  drochner 		return (1);
   1537   1.18  drochner 	case KS_Cmd_ResetClose:
   1538   1.48  augustss 		wsdisplay_reset(sc->sc_base.me_dispdv, WSDISPLAY_RESETCLOSE);
   1539    1.7  drochner 		return (1);
   1540   1.39  takemura 	case KS_Cmd_BacklightOn:
   1541   1.39  takemura 	case KS_Cmd_BacklightOff:
   1542   1.39  takemura 	case KS_Cmd_BacklightToggle:
   1543   1.39  takemura 		change_displayparam(sc, WSDISPLAYIO_PARAM_BACKLIGHT,
   1544   1.39  takemura 				    ksym == KS_Cmd_BacklightOff ? -1 : 1,
   1545   1.39  takemura 				    ksym == KS_Cmd_BacklightToggle ? 1 : 0);
   1546   1.39  takemura 		return (1);
   1547   1.39  takemura 	case KS_Cmd_BrightnessUp:
   1548   1.39  takemura 	case KS_Cmd_BrightnessDown:
   1549   1.39  takemura 	case KS_Cmd_BrightnessRotate:
   1550   1.39  takemura 		change_displayparam(sc, WSDISPLAYIO_PARAM_BRIGHTNESS,
   1551   1.39  takemura 				    ksym == KS_Cmd_BrightnessDown ? -1 : 1,
   1552   1.39  takemura 				    ksym == KS_Cmd_BrightnessRotate ? 1 : 0);
   1553   1.39  takemura 		return (1);
   1554   1.39  takemura 	case KS_Cmd_ContrastUp:
   1555   1.39  takemura 	case KS_Cmd_ContrastDown:
   1556   1.39  takemura 	case KS_Cmd_ContrastRotate:
   1557   1.39  takemura 		change_displayparam(sc, WSDISPLAYIO_PARAM_CONTRAST,
   1558   1.39  takemura 				    ksym == KS_Cmd_ContrastDown ? -1 : 1,
   1559   1.39  takemura 				    ksym == KS_Cmd_ContrastRotate ? 1 : 0);
   1560   1.39  takemura 		return (1);
   1561   1.72  drochner 	}
   1562   1.21  drochner #endif
   1563   1.72  drochner 
   1564    1.7  drochner 	return (0);
   1565    1.2   hannken }
   1566    1.2   hannken 
   1567   1.34  drochner static int
   1568   1.45  augustss wskbd_translate(struct wskbd_internal *id, u_int type, int value)
   1569    1.2   hannken {
   1570    1.3   hannken 	struct wskbd_softc *sc = id->t_sc;
   1571    1.2   hannken 	keysym_t ksym, res, *group;
   1572    1.3   hannken 	struct wscons_keymap kpbuf, *kp;
   1573    1.7  drochner 	int iscommand = 0;
   1574   1.13  drochner 
   1575   1.13  drochner 	if (type == WSCONS_EVENT_ALL_KEYS_UP) {
   1576   1.13  drochner 		id->t_modifiers &= ~(MOD_SHIFT_L | MOD_SHIFT_R
   1577   1.13  drochner 				| MOD_CONTROL_L | MOD_CONTROL_R
   1578   1.13  drochner 				| MOD_META_L | MOD_META_R
   1579   1.13  drochner 				| MOD_MODESHIFT
   1580   1.13  drochner 				| MOD_COMMAND | MOD_COMMAND1 | MOD_COMMAND2);
   1581   1.13  drochner 		update_leds(id);
   1582   1.34  drochner 		return (0);
   1583   1.13  drochner 	}
   1584    1.2   hannken 
   1585    1.3   hannken 	if (sc != NULL) {
   1586    1.3   hannken 		if (value < 0 || value >= sc->sc_maplen) {
   1587    1.2   hannken #ifdef DEBUG
   1588    1.3   hannken 			printf("wskbd_translate: keycode %d out of range\n",
   1589    1.3   hannken 			       value);
   1590    1.2   hannken #endif
   1591   1.34  drochner 			return (0);
   1592    1.3   hannken 		}
   1593    1.3   hannken 		kp = sc->sc_map + value;
   1594    1.3   hannken 	} else {
   1595    1.3   hannken 		kp = &kpbuf;
   1596   1.12  drochner 		wskbd_get_mapentry(id->t_keymap, value, kp);
   1597    1.2   hannken 	}
   1598    1.2   hannken 
   1599    1.2   hannken 	/* if this key has a command, process it first */
   1600    1.3   hannken 	if (sc != NULL && kp->command != KS_voidSymbol)
   1601   1.39  takemura 		iscommand = internal_command(sc, &type, kp->command,
   1602   1.39  takemura 					     kp->group1[0]);
   1603    1.2   hannken 
   1604    1.2   hannken 	/* Now update modifiers */
   1605    1.2   hannken 	switch (kp->group1[0]) {
   1606    1.2   hannken 	case KS_Shift_L:
   1607    1.3   hannken 		update_modifier(id, type, 0, MOD_SHIFT_L);
   1608    1.2   hannken 		break;
   1609    1.2   hannken 
   1610    1.2   hannken 	case KS_Shift_R:
   1611    1.3   hannken 		update_modifier(id, type, 0, MOD_SHIFT_R);
   1612    1.2   hannken 		break;
   1613    1.2   hannken 
   1614    1.2   hannken 	case KS_Shift_Lock:
   1615    1.3   hannken 		update_modifier(id, type, 1, MOD_SHIFTLOCK);
   1616    1.2   hannken 		break;
   1617    1.2   hannken 
   1618    1.2   hannken 	case KS_Caps_Lock:
   1619    1.3   hannken 		update_modifier(id, type, 1, MOD_CAPSLOCK);
   1620    1.2   hannken 		break;
   1621    1.2   hannken 
   1622    1.2   hannken 	case KS_Control_L:
   1623    1.3   hannken 		update_modifier(id, type, 0, MOD_CONTROL_L);
   1624    1.2   hannken 		break;
   1625    1.2   hannken 
   1626    1.2   hannken 	case KS_Control_R:
   1627    1.3   hannken 		update_modifier(id, type, 0, MOD_CONTROL_R);
   1628    1.2   hannken 		break;
   1629    1.2   hannken 
   1630    1.2   hannken 	case KS_Alt_L:
   1631    1.3   hannken 		update_modifier(id, type, 0, MOD_META_L);
   1632    1.2   hannken 		break;
   1633    1.2   hannken 
   1634    1.2   hannken 	case KS_Alt_R:
   1635    1.3   hannken 		update_modifier(id, type, 0, MOD_META_R);
   1636    1.2   hannken 		break;
   1637    1.2   hannken 
   1638    1.2   hannken 	case KS_Mode_switch:
   1639    1.3   hannken 		update_modifier(id, type, 0, MOD_MODESHIFT);
   1640    1.2   hannken 		break;
   1641    1.2   hannken 
   1642    1.2   hannken 	case KS_Num_Lock:
   1643    1.3   hannken 		update_modifier(id, type, 1, MOD_NUMLOCK);
   1644    1.2   hannken 		break;
   1645    1.2   hannken 
   1646   1.21  drochner #if NWSDISPLAY > 0
   1647    1.2   hannken 	case KS_Hold_Screen:
   1648    1.3   hannken 		if (sc != NULL) {
   1649    1.3   hannken 			update_modifier(id, type, 1, MOD_HOLDSCREEN);
   1650    1.3   hannken 			wskbd_holdscreen(sc, id->t_modifiers & MOD_HOLDSCREEN);
   1651    1.3   hannken 		}
   1652    1.2   hannken 		break;
   1653   1.21  drochner #endif
   1654    1.2   hannken 	}
   1655    1.2   hannken 
   1656    1.2   hannken 	/* If this is a key release or we are in command mode, we are done */
   1657    1.7  drochner 	if (type != WSCONS_EVENT_KEY_DOWN || iscommand) {
   1658    1.3   hannken 		update_leds(id);
   1659   1.34  drochner 		return (0);
   1660    1.2   hannken 	}
   1661    1.2   hannken 
   1662    1.2   hannken 	/* Get the keysym */
   1663    1.3   hannken 	if (id->t_modifiers & MOD_MODESHIFT)
   1664    1.2   hannken 		group = & kp->group2[0];
   1665    1.2   hannken 	else
   1666    1.2   hannken 		group = & kp->group1[0];
   1667    1.2   hannken 
   1668    1.3   hannken 	if ((id->t_modifiers & MOD_NUMLOCK) != 0 &&
   1669    1.2   hannken 	    KS_GROUP(group[1]) == KS_GROUP_Keypad) {
   1670    1.3   hannken 		if (MOD_ONESET(id, MOD_ANYSHIFT))
   1671    1.2   hannken 			ksym = group[0];
   1672    1.2   hannken 		else
   1673    1.2   hannken 			ksym = group[1];
   1674    1.3   hannken 	} else if (! MOD_ONESET(id, MOD_ANYSHIFT | MOD_CAPSLOCK)) {
   1675    1.2   hannken 		ksym = group[0];
   1676    1.3   hannken 	} else if (MOD_ONESET(id, MOD_CAPSLOCK)) {
   1677    1.3   hannken 		if (! MOD_ONESET(id, MOD_SHIFT_L | MOD_SHIFT_R))
   1678    1.2   hannken 			ksym = group[0];
   1679    1.2   hannken 		else
   1680    1.2   hannken 			ksym = group[1];
   1681    1.2   hannken 		if (ksym >= KS_a && ksym <= KS_z)
   1682    1.2   hannken 			ksym += KS_A - KS_a;
   1683    1.2   hannken 		else if (ksym >= KS_agrave && ksym <= KS_thorn &&
   1684    1.2   hannken 			 ksym != KS_division)
   1685    1.2   hannken 			ksym += KS_Agrave - KS_agrave;
   1686    1.3   hannken 	} else if (MOD_ONESET(id, MOD_ANYSHIFT)) {
   1687    1.2   hannken 		ksym = group[1];
   1688    1.2   hannken 	} else {
   1689    1.2   hannken 		ksym = group[0];
   1690    1.2   hannken 	}
   1691    1.2   hannken 
   1692    1.2   hannken 	/* Process compose sequence and dead accents */
   1693    1.2   hannken 	res = KS_voidSymbol;
   1694    1.2   hannken 
   1695    1.2   hannken 	switch (KS_GROUP(ksym)) {
   1696    1.2   hannken 	case KS_GROUP_Ascii:
   1697    1.2   hannken 	case KS_GROUP_Keypad:
   1698    1.2   hannken 	case KS_GROUP_Function:
   1699    1.2   hannken 		res = ksym;
   1700    1.2   hannken 		break;
   1701    1.2   hannken 
   1702    1.2   hannken 	case KS_GROUP_Mod:
   1703    1.2   hannken 		if (ksym == KS_Multi_key) {
   1704    1.3   hannken 			update_modifier(id, 1, 0, MOD_COMPOSE);
   1705    1.3   hannken 			id->t_composelen = 2;
   1706    1.2   hannken 		}
   1707    1.2   hannken 		break;
   1708    1.2   hannken 
   1709    1.2   hannken 	case KS_GROUP_Dead:
   1710    1.3   hannken 		if (id->t_composelen == 0) {
   1711    1.3   hannken 			update_modifier(id, 1, 0, MOD_COMPOSE);
   1712    1.3   hannken 			id->t_composelen = 1;
   1713    1.3   hannken 			id->t_composebuf[0] = ksym;
   1714    1.2   hannken 		} else
   1715    1.2   hannken 			res = ksym;
   1716    1.2   hannken 		break;
   1717    1.2   hannken 	}
   1718    1.2   hannken 
   1719    1.2   hannken 	if (res == KS_voidSymbol) {
   1720    1.3   hannken 		update_leds(id);
   1721   1.34  drochner 		return (0);
   1722    1.2   hannken 	}
   1723    1.2   hannken 
   1724    1.3   hannken 	if (id->t_composelen > 0) {
   1725    1.3   hannken 		id->t_composebuf[2 - id->t_composelen] = res;
   1726    1.3   hannken 		if (--id->t_composelen == 0) {
   1727    1.3   hannken 			res = wskbd_compose_value(id->t_composebuf);
   1728    1.3   hannken 			update_modifier(id, 0, 0, MOD_COMPOSE);
   1729    1.2   hannken 		} else {
   1730   1.34  drochner 			return (0);
   1731    1.2   hannken 		}
   1732    1.2   hannken 	}
   1733    1.2   hannken 
   1734    1.3   hannken 	update_leds(id);
   1735    1.2   hannken 
   1736    1.9  drochner 	/* We are done, return the symbol */
   1737    1.2   hannken 	if (KS_GROUP(res) == KS_GROUP_Ascii) {
   1738    1.3   hannken 		if (MOD_ONESET(id, MOD_ANYCONTROL)) {
   1739    1.2   hannken 			if ((res >= KS_at && res <= KS_z) || res == KS_space)
   1740    1.2   hannken 				res = res & 0x1f;
   1741    1.2   hannken 			else if (res == KS_2)
   1742    1.2   hannken 				res = 0x00;
   1743    1.2   hannken 			else if (res >= KS_3 && res <= KS_7)
   1744    1.2   hannken 				res = KS_Escape + (res - KS_3);
   1745    1.2   hannken 			else if (res == KS_8)
   1746    1.2   hannken 				res = KS_Delete;
   1747    1.2   hannken 		}
   1748   1.34  drochner 		if (MOD_ONESET(id, MOD_ANYMETA)) {
   1749   1.34  drochner 			if (id->t_flags & WSKFL_METAESC) {
   1750   1.34  drochner 				id->t_symbols[0] = KS_Escape;
   1751   1.34  drochner 				id->t_symbols[1] = res;
   1752   1.34  drochner 				return (2);
   1753   1.34  drochner 			} else
   1754   1.34  drochner 				res |= 0x80;
   1755   1.34  drochner 		}
   1756    1.2   hannken 	}
   1757    1.2   hannken 
   1758   1.34  drochner 	id->t_symbols[0] = res;
   1759   1.34  drochner 	return (1);
   1760    1.1  drochner }
   1761