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