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