Home | History | Annotate | Line # | Download | only in pckbport
pckbd.c revision 1.15.14.2
      1  1.15.14.2     joerg /* $NetBSD: pckbd.c,v 1.15.14.2 2007/10/26 15:47:01 joerg Exp $ */
      2        1.1     bjh21 
      3        1.1     bjh21 /*-
      4        1.1     bjh21  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5        1.1     bjh21  * All rights reserved.
      6        1.1     bjh21  *
      7        1.1     bjh21  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1     bjh21  * by Charles M. Hannum.
      9        1.1     bjh21  *
     10        1.1     bjh21  * Redistribution and use in source and binary forms, with or without
     11        1.1     bjh21  * modification, are permitted provided that the following conditions
     12        1.1     bjh21  * are met:
     13        1.1     bjh21  * 1. Redistributions of source code must retain the above copyright
     14        1.1     bjh21  *    notice, this list of conditions and the following disclaimer.
     15        1.1     bjh21  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1     bjh21  *    notice, this list of conditions and the following disclaimer in the
     17        1.1     bjh21  *    documentation and/or other materials provided with the distribution.
     18        1.1     bjh21  * 3. All advertising materials mentioning features or use of this software
     19        1.1     bjh21  *    must display the following acknowledgement:
     20        1.1     bjh21  *        This product includes software developed by the NetBSD
     21        1.1     bjh21  *        Foundation, Inc. and its contributors.
     22        1.1     bjh21  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.1     bjh21  *    contributors may be used to endorse or promote products derived
     24        1.1     bjh21  *    from this software without specific prior written permission.
     25        1.1     bjh21  *
     26        1.1     bjh21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.1     bjh21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.1     bjh21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.1     bjh21  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.1     bjh21  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.1     bjh21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.1     bjh21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.1     bjh21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.1     bjh21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.1     bjh21  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.1     bjh21  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1     bjh21  */
     38        1.1     bjh21 
     39        1.1     bjh21 /*-
     40        1.1     bjh21  * Copyright (c) 1990 The Regents of the University of California.
     41        1.1     bjh21  * All rights reserved.
     42        1.1     bjh21  *
     43        1.1     bjh21  * This code is derived from software contributed to Berkeley by
     44        1.1     bjh21  * William Jolitz and Don Ahn.
     45        1.1     bjh21  *
     46        1.1     bjh21  * Redistribution and use in source and binary forms, with or without
     47        1.1     bjh21  * modification, are permitted provided that the following conditions
     48        1.1     bjh21  * are met:
     49        1.1     bjh21  * 1. Redistributions of source code must retain the above copyright
     50        1.1     bjh21  *    notice, this list of conditions and the following disclaimer.
     51        1.1     bjh21  * 2. Redistributions in binary form must reproduce the above copyright
     52        1.1     bjh21  *    notice, this list of conditions and the following disclaimer in the
     53        1.1     bjh21  *    documentation and/or other materials provided with the distribution.
     54        1.1     bjh21  * 3. Neither the name of the University nor the names of its contributors
     55        1.1     bjh21  *    may be used to endorse or promote products derived from this software
     56        1.1     bjh21  *    without specific prior written permission.
     57        1.1     bjh21  *
     58        1.1     bjh21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59        1.1     bjh21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60        1.1     bjh21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61        1.1     bjh21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62        1.1     bjh21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63        1.1     bjh21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64        1.1     bjh21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65        1.1     bjh21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66        1.1     bjh21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67        1.1     bjh21  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68        1.1     bjh21  * SUCH DAMAGE.
     69        1.1     bjh21  *
     70        1.1     bjh21  *	@(#)pccons.c	5.11 (Berkeley) 5/21/91
     71        1.1     bjh21  */
     72        1.1     bjh21 
     73        1.1     bjh21 /*
     74        1.1     bjh21  * code to work keyboard for PC-style console
     75        1.1     bjh21  */
     76        1.1     bjh21 
     77        1.1     bjh21 #include <sys/cdefs.h>
     78  1.15.14.2     joerg __KERNEL_RCSID(0, "$NetBSD: pckbd.c,v 1.15.14.2 2007/10/26 15:47:01 joerg Exp $");
     79        1.1     bjh21 
     80        1.1     bjh21 #include <sys/param.h>
     81        1.1     bjh21 #include <sys/systm.h>
     82        1.1     bjh21 #include <sys/device.h>
     83        1.1     bjh21 #include <sys/malloc.h>
     84        1.1     bjh21 #include <sys/ioctl.h>
     85        1.1     bjh21 
     86  1.15.14.2     joerg #include <sys/bus.h>
     87        1.1     bjh21 
     88        1.1     bjh21 #include <dev/pckbport/pckbportvar.h>
     89        1.1     bjh21 
     90        1.1     bjh21 #include <dev/wscons/wsconsio.h>
     91        1.1     bjh21 #include <dev/wscons/wskbdvar.h>
     92        1.1     bjh21 #include <dev/wscons/wsksymdef.h>
     93        1.1     bjh21 #include <dev/wscons/wsksymvar.h>
     94        1.1     bjh21 
     95        1.6      yamt #include <dev/pckbport/pckbdreg.h>
     96        1.6      yamt #include <dev/pckbport/pckbdvar.h>
     97        1.6      yamt #include <dev/pckbport/wskbdmap_mfii.h>
     98        1.6      yamt 
     99        1.1     bjh21 #include "locators.h"
    100        1.1     bjh21 
    101        1.1     bjh21 #include "opt_pckbd_layout.h"
    102        1.7  augustss #include "opt_pckbd_cnattach_may_fail.h"
    103        1.1     bjh21 #include "opt_wsdisplay_compat.h"
    104        1.1     bjh21 
    105        1.1     bjh21 struct pckbd_internal {
    106        1.1     bjh21 	int t_isconsole;
    107        1.1     bjh21 	pckbport_tag_t t_kbctag;
    108        1.1     bjh21 	pckbport_slot_t t_kbcslot;
    109        1.1     bjh21 
    110        1.1     bjh21 	int t_lastchar;
    111        1.1     bjh21 	int t_extended0;
    112        1.1     bjh21 	int t_extended1;
    113        1.1     bjh21 
    114        1.1     bjh21 	struct pckbd_softc *t_sc; /* back pointer */
    115        1.1     bjh21 };
    116        1.1     bjh21 
    117        1.1     bjh21 struct pckbd_softc {
    118        1.1     bjh21         struct  device sc_dev;
    119        1.1     bjh21 
    120        1.1     bjh21 	struct pckbd_internal *id;
    121        1.1     bjh21 	int sc_enabled;
    122        1.1     bjh21 
    123        1.1     bjh21 	int sc_ledstate;
    124        1.1     bjh21 
    125        1.1     bjh21 	struct device *sc_wskbddev;
    126        1.1     bjh21 #ifdef WSDISPLAY_COMPAT_RAWKBD
    127        1.1     bjh21 	int rawkbd;
    128        1.1     bjh21 #endif
    129        1.1     bjh21 };
    130        1.1     bjh21 
    131        1.2     bjh21 static int pckbd_is_console(pckbport_tag_t, pckbport_slot_t);
    132  1.15.14.1  jmcneill static pnp_status_t pckbd_power(device_t, pnp_request_t, void *);
    133        1.1     bjh21 
    134        1.2     bjh21 int pckbdprobe(struct device *, struct cfdata *, void *);
    135        1.2     bjh21 void pckbdattach(struct device *, struct device *, void *);
    136        1.1     bjh21 
    137        1.1     bjh21 CFATTACH_DECL(pckbd, sizeof(struct pckbd_softc),
    138        1.1     bjh21     pckbdprobe, pckbdattach, NULL, NULL);
    139        1.1     bjh21 
    140        1.2     bjh21 int	pckbd_enable(void *, int);
    141        1.2     bjh21 void	pckbd_set_leds(void *, int);
    142       1.15  christos int	pckbd_ioctl(void *, u_long, void *, int, struct lwp *);
    143        1.1     bjh21 
    144        1.1     bjh21 const struct wskbd_accessops pckbd_accessops = {
    145        1.1     bjh21 	pckbd_enable,
    146        1.1     bjh21 	pckbd_set_leds,
    147        1.1     bjh21 	pckbd_ioctl,
    148        1.1     bjh21 };
    149        1.1     bjh21 
    150        1.2     bjh21 void	pckbd_cngetc(void *, u_int *, int *);
    151        1.2     bjh21 void	pckbd_cnpollc(void *, int);
    152        1.2     bjh21 void	pckbd_cnbell(void *, u_int, u_int, u_int);
    153        1.1     bjh21 
    154        1.1     bjh21 const struct wskbd_consops pckbd_consops = {
    155        1.1     bjh21 	pckbd_cngetc,
    156        1.1     bjh21 	pckbd_cnpollc,
    157        1.1     bjh21 	pckbd_cnbell,
    158        1.1     bjh21 };
    159        1.1     bjh21 
    160        1.1     bjh21 const struct wskbd_mapdata pckbd_keymapdata = {
    161        1.1     bjh21 	pckbd_keydesctab,
    162        1.1     bjh21 #ifdef PCKBD_LAYOUT
    163        1.1     bjh21 	PCKBD_LAYOUT,
    164        1.1     bjh21 #else
    165        1.5      matt 	KB_US,
    166        1.1     bjh21 #endif
    167        1.1     bjh21 };
    168        1.1     bjh21 
    169        1.1     bjh21 /*
    170        1.1     bjh21  * Hackish support for a bell on the PC Keyboard; when a suitable feeper
    171        1.1     bjh21  * is found, it attaches itself into the pckbd driver here.
    172        1.1     bjh21  */
    173        1.2     bjh21 void	(*pckbd_bell_fn)(void *, u_int, u_int, u_int, int);
    174        1.1     bjh21 void	*pckbd_bell_fn_arg;
    175        1.1     bjh21 
    176        1.2     bjh21 void	pckbd_bell(u_int, u_int, u_int, int);
    177        1.1     bjh21 
    178        1.2     bjh21 int	pckbd_set_xtscancode(pckbport_tag_t, pckbport_slot_t);
    179        1.2     bjh21 int	pckbd_init(struct pckbd_internal *, pckbport_tag_t, pckbport_slot_t,
    180        1.2     bjh21 			int);
    181        1.2     bjh21 void	pckbd_input(void *, int);
    182        1.2     bjh21 
    183        1.2     bjh21 static int	pckbd_decode(struct pckbd_internal *, int, u_int *, int *);
    184        1.2     bjh21 static int	pckbd_led_encode(int);
    185        1.2     bjh21 static int	pckbd_led_decode(int);
    186        1.1     bjh21 
    187        1.1     bjh21 struct pckbd_internal pckbd_consdata;
    188        1.1     bjh21 
    189        1.1     bjh21 int
    190        1.2     bjh21 pckbd_set_xtscancode(pckbport_tag_t kbctag, pckbport_slot_t kbcslot)
    191        1.1     bjh21 {
    192        1.2     bjh21 	int res;
    193        1.1     bjh21 	u_char cmd[2];
    194        1.1     bjh21 
    195        1.1     bjh21 	/*
    196        1.1     bjh21 	 * Some keyboard/8042 combinations do not seem to work if the keyboard
    197        1.1     bjh21 	 * is set to table 1; in fact, it would appear that some keyboards just
    198        1.1     bjh21 	 * ignore the command altogether.  So by default, we use the AT scan
    199        1.1     bjh21 	 * codes and have the 8042 translate them.  Unfortunately, this is
    200        1.1     bjh21 	 * known to not work on some PS/2 machines.  We try desperately to deal
    201        1.1     bjh21 	 * with this by checking the (lack of a) translate bit in the 8042 and
    202        1.1     bjh21 	 * attempting to set the keyboard to XT mode.  If this all fails, well,
    203        1.1     bjh21 	 * tough luck.
    204        1.1     bjh21 	 *
    205        1.1     bjh21 	 * XXX It would perhaps be a better choice to just use AT scan codes
    206        1.1     bjh21 	 * and not bother with this.
    207        1.1     bjh21 	 */
    208        1.1     bjh21 	if (pckbport_xt_translation(kbctag, kbcslot, 1)) {
    209        1.1     bjh21 		/* The 8042 is translating for us; use AT codes. */
    210        1.1     bjh21 		cmd[0] = KBC_SETTABLE;
    211        1.1     bjh21 		cmd[1] = 2;
    212        1.1     bjh21 		res = pckbport_poll_cmd(kbctag, kbcslot, cmd, 2, 0, 0, 0);
    213        1.1     bjh21 		if (res) {
    214        1.8  christos 			u_char cmdb[1];
    215        1.1     bjh21 #ifdef DEBUG
    216        1.1     bjh21 			printf("pckbd: error setting scanset 2\n");
    217        1.1     bjh21 #endif
    218        1.1     bjh21 			/*
    219        1.1     bjh21 			 * XXX at least one keyboard is reported to lock up
    220        1.1     bjh21 			 * if a "set table" is attempted, thus the "reset".
    221        1.1     bjh21 			 * XXX ignore errors, scanset 2 should be
    222        1.1     bjh21 			 * default anyway.
    223        1.1     bjh21 			 */
    224        1.8  christos 			cmdb[0] = KBC_RESET;
    225        1.8  christos 			(void)pckbport_poll_cmd(kbctag, kbcslot, cmdb, 1, 1, 0, 1);
    226        1.1     bjh21 			pckbport_flush(kbctag, kbcslot);
    227        1.1     bjh21 			res = 0;
    228        1.1     bjh21 		}
    229        1.1     bjh21 	} else {
    230        1.1     bjh21 		/* Stupid 8042; set keyboard to XT codes. */
    231        1.1     bjh21 		cmd[0] = KBC_SETTABLE;
    232        1.1     bjh21 		cmd[1] = 1;
    233        1.1     bjh21 		res = pckbport_poll_cmd(kbctag, kbcslot, cmd, 2, 0, 0, 0);
    234        1.1     bjh21 #ifdef DEBUG
    235        1.1     bjh21 		if (res)
    236        1.1     bjh21 			printf("pckbd: error setting scanset 1\n");
    237        1.1     bjh21 #endif
    238        1.1     bjh21 	}
    239        1.2     bjh21 	return res;
    240        1.1     bjh21 }
    241        1.1     bjh21 
    242        1.1     bjh21 static int
    243        1.2     bjh21 pckbd_is_console(pckbport_tag_t tag, pckbport_slot_t slot)
    244        1.2     bjh21 {
    245        1.2     bjh21 
    246        1.2     bjh21 	return pckbd_consdata.t_isconsole &&
    247        1.2     bjh21 	    tag == pckbd_consdata.t_kbctag && slot == pckbd_consdata.t_kbcslot;
    248        1.1     bjh21 }
    249        1.1     bjh21 
    250  1.15.14.1  jmcneill static pnp_status_t
    251  1.15.14.1  jmcneill pckbd_power(device_t dv, pnp_request_t req, void *opaque)
    252       1.11  christos {
    253       1.11  christos 	struct pckbd_softc *sc;
    254  1.15.14.1  jmcneill 	pnp_capabilities_t *pcaps;
    255  1.15.14.1  jmcneill 	pnp_state_t *pstate;
    256       1.11  christos 	int res;
    257       1.11  christos 	u_char cmd[1], resp[1];
    258       1.11  christos 
    259  1.15.14.1  jmcneill 	sc = (struct pckbd_softc *)dv;
    260       1.11  christos 
    261  1.15.14.1  jmcneill 	switch (req) {
    262  1.15.14.1  jmcneill 	case PNP_REQUEST_GET_CAPABILITIES:
    263  1.15.14.1  jmcneill 		pcaps = opaque;
    264  1.15.14.1  jmcneill 		pcaps->state = PNP_STATE_D0 | PNP_STATE_D1 | PNP_STATE_D3;
    265  1.15.14.1  jmcneill 		break;
    266       1.11  christos 
    267  1.15.14.1  jmcneill 	case PNP_REQUEST_GET_STATE:
    268  1.15.14.1  jmcneill 		pstate = opaque;
    269  1.15.14.1  jmcneill 		*pstate = PNP_STATE_D0; /* XXX */
    270       1.11  christos 		break;
    271       1.11  christos 
    272  1.15.14.1  jmcneill 	case PNP_REQUEST_SET_STATE:
    273  1.15.14.1  jmcneill 		pstate = opaque;
    274  1.15.14.1  jmcneill 
    275  1.15.14.1  jmcneill 		switch (*pstate) {
    276  1.15.14.1  jmcneill 		case PNP_STATE_D1:
    277  1.15.14.1  jmcneill 		case PNP_STATE_D3:
    278  1.15.14.1  jmcneill 			/* XXX duped from pckbd_enable, but we want to disable
    279  1.15.14.1  jmcneill 			 *     it even if it's the console kbd
    280  1.15.14.1  jmcneill 			 */
    281  1.15.14.1  jmcneill 			cmd[0] = KBC_DISABLE;
    282  1.15.14.1  jmcneill 			res = pckbport_enqueue_cmd(sc->id->t_kbctag,
    283  1.15.14.1  jmcneill 			    sc->id->t_kbcslot, cmd, 1, 0, 1, 0);
    284  1.15.14.1  jmcneill 			if (res)
    285  1.15.14.1  jmcneill 				return PNP_STATUS_BUSY;
    286  1.15.14.1  jmcneill 
    287  1.15.14.1  jmcneill 			pckbport_slot_enable(sc->id->t_kbctag,
    288  1.15.14.1  jmcneill 			    sc->id->t_kbcslot, 0);
    289  1.15.14.1  jmcneill 
    290  1.15.14.1  jmcneill 			sc->sc_enabled = 0;
    291  1.15.14.1  jmcneill 			break;
    292  1.15.14.1  jmcneill 		case PNP_STATE_D0:
    293  1.15.14.1  jmcneill 			/* XXX jmcneill reset the keyboard */
    294  1.15.14.1  jmcneill 			pckbport_flush(sc->id->t_kbctag, sc->id->t_kbcslot);
    295  1.15.14.1  jmcneill 
    296  1.15.14.1  jmcneill 			cmd[0] = KBC_RESET;
    297  1.15.14.1  jmcneill 			res = pckbport_poll_cmd(sc->id->t_kbctag,
    298  1.15.14.1  jmcneill 			    sc->id->t_kbcslot, cmd, 1, 1, resp, 1);
    299       1.11  christos #ifdef DEBUG
    300  1.15.14.1  jmcneill 			if (res)
    301  1.15.14.1  jmcneill 				printf("pckbdprobe: reset error %d\n", res);
    302       1.11  christos #endif
    303  1.15.14.1  jmcneill 			if (resp[0] != KBR_RSTDONE)
    304  1.15.14.1  jmcneill 				printf("pckbdprobe: reset response 0x%x\n",
    305  1.15.14.1  jmcneill 				    resp[0]);
    306  1.15.14.1  jmcneill 
    307  1.15.14.1  jmcneill 			pckbport_flush(sc->id->t_kbctag, sc->id->t_kbcslot);
    308  1.15.14.1  jmcneill 
    309  1.15.14.1  jmcneill 			pckbd_enable(sc, 1);
    310  1.15.14.1  jmcneill 			break;
    311  1.15.14.1  jmcneill 		default:
    312  1.15.14.1  jmcneill 			return PNP_STATUS_UNSUPPORTED;
    313  1.15.14.1  jmcneill 		}
    314       1.11  christos 		break;
    315  1.15.14.1  jmcneill 
    316  1.15.14.1  jmcneill 	default:
    317  1.15.14.1  jmcneill 		return PNP_STATUS_UNSUPPORTED;
    318       1.11  christos 	}
    319       1.11  christos 
    320  1.15.14.1  jmcneill 	return PNP_STATUS_SUCCESS;
    321       1.11  christos }
    322       1.11  christos 
    323        1.1     bjh21 /*
    324        1.1     bjh21  * these are both bad jokes
    325        1.1     bjh21  */
    326        1.1     bjh21 int
    327       1.14  christos pckbdprobe(struct device *parent, struct cfdata *cf, void *aux)
    328        1.1     bjh21 {
    329        1.1     bjh21 	struct pckbport_attach_args *pa = aux;
    330        1.2     bjh21 	int res;
    331        1.1     bjh21 	u_char cmd[1], resp[1];
    332        1.1     bjh21 
    333        1.1     bjh21 	/*
    334        1.1     bjh21 	 * XXX There are rumours that a keyboard can be connected
    335        1.1     bjh21 	 * to the aux port as well. For me, this didn't work.
    336        1.1     bjh21 	 * For further experiments, allow it if explicitly
    337        1.1     bjh21 	 * wired in the config file.
    338        1.1     bjh21 	 */
    339        1.1     bjh21 	if ((pa->pa_slot != PCKBPORT_KBD_SLOT) &&
    340        1.1     bjh21 	    (cf->cf_loc[PCKBPORTCF_SLOT] == PCKBPORTCF_SLOT_DEFAULT))
    341        1.2     bjh21 		return 0;
    342        1.1     bjh21 
    343        1.1     bjh21 	/* Flush any garbage. */
    344        1.1     bjh21 	pckbport_flush(pa->pa_tag, pa->pa_slot);
    345        1.1     bjh21 
    346        1.1     bjh21 	/* Reset the keyboard. */
    347        1.1     bjh21 	cmd[0] = KBC_RESET;
    348        1.1     bjh21 	res = pckbport_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 1, resp, 1);
    349        1.1     bjh21 	if (res) {
    350        1.1     bjh21 #ifdef DEBUG
    351        1.1     bjh21 		printf("pckbdprobe: reset error %d\n", res);
    352        1.1     bjh21 #endif
    353        1.1     bjh21 		/*
    354        1.1     bjh21 		 * There is probably no keyboard connected.
    355        1.1     bjh21 		 * Let the probe succeed if the keyboard is used
    356        1.1     bjh21 		 * as console input - it can be connected later.
    357        1.1     bjh21 		 */
    358        1.2     bjh21 		return pckbd_is_console(pa->pa_tag, pa->pa_slot) ? 1 : 0;
    359        1.1     bjh21 	}
    360        1.1     bjh21 	if (resp[0] != KBR_RSTDONE) {
    361        1.1     bjh21 		printf("pckbdprobe: reset response 0x%x\n", resp[0]);
    362        1.2     bjh21 		return 0;
    363        1.1     bjh21 	}
    364        1.1     bjh21 
    365        1.1     bjh21 	/*
    366        1.1     bjh21 	 * Some keyboards seem to leave a second ack byte after the reset.
    367        1.1     bjh21 	 * This is kind of stupid, but we account for them anyway by just
    368        1.1     bjh21 	 * flushing the buffer.
    369        1.1     bjh21 	 */
    370        1.1     bjh21 	pckbport_flush(pa->pa_tag, pa->pa_slot);
    371        1.1     bjh21 
    372        1.1     bjh21 	if (pckbd_set_xtscancode(pa->pa_tag, pa->pa_slot))
    373        1.2     bjh21 		return 0;
    374        1.1     bjh21 
    375        1.2     bjh21 	return 2;
    376        1.1     bjh21 }
    377        1.1     bjh21 
    378        1.1     bjh21 void
    379       1.14  christos pckbdattach(struct device *parent, struct device *self, void *aux)
    380        1.1     bjh21 {
    381       1.10   thorpej 	struct pckbd_softc *sc = device_private(self);
    382        1.1     bjh21 	struct pckbport_attach_args *pa = aux;
    383        1.2     bjh21 	struct wskbddev_attach_args a;
    384  1.15.14.1  jmcneill 	pnp_status_t status;
    385        1.1     bjh21 	int isconsole;
    386        1.1     bjh21 	u_char cmd[1];
    387        1.1     bjh21 
    388        1.1     bjh21 	printf("\n");
    389        1.1     bjh21 
    390        1.1     bjh21 	isconsole = pckbd_is_console(pa->pa_tag, pa->pa_slot);
    391        1.1     bjh21 
    392        1.1     bjh21 	if (isconsole) {
    393        1.1     bjh21 		sc->id = &pckbd_consdata;
    394        1.1     bjh21 
    395        1.3     perry 		/*
    396        1.3     perry 		 * Some keyboards are not enabled after a reset,
    397        1.1     bjh21 		 * so make sure it is enabled now.
    398        1.1     bjh21 		 */
    399        1.1     bjh21 		cmd[0] = KBC_ENABLE;
    400        1.1     bjh21 		(void) pckbport_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    401        1.1     bjh21 				      cmd, 1, 0, 0, 0);
    402        1.1     bjh21 		sc->sc_enabled = 1;
    403        1.1     bjh21 	} else {
    404        1.1     bjh21 		sc->id = malloc(sizeof(struct pckbd_internal),
    405        1.1     bjh21 				M_DEVBUF, M_WAITOK);
    406        1.1     bjh21 		(void) pckbd_init(sc->id, pa->pa_tag, pa->pa_slot, 0);
    407        1.1     bjh21 
    408        1.1     bjh21 		/* no interrupts until enabled */
    409        1.1     bjh21 		cmd[0] = KBC_DISABLE;
    410        1.1     bjh21 		(void) pckbport_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    411        1.1     bjh21 				      cmd, 1, 0, 0, 0);
    412        1.1     bjh21 		sc->sc_enabled = 0;
    413        1.1     bjh21 	}
    414        1.1     bjh21 
    415        1.1     bjh21 	sc->id->t_sc = sc;
    416        1.1     bjh21 
    417        1.1     bjh21 	pckbport_set_inputhandler(sc->id->t_kbctag, sc->id->t_kbcslot,
    418        1.1     bjh21 			       pckbd_input, sc, sc->sc_dev.dv_xname);
    419        1.1     bjh21 
    420        1.1     bjh21 	a.console = isconsole;
    421        1.1     bjh21 
    422        1.1     bjh21 	a.keymap = &pckbd_keymapdata;
    423        1.1     bjh21 
    424        1.1     bjh21 	a.accessops = &pckbd_accessops;
    425        1.1     bjh21 	a.accesscookie = sc;
    426        1.1     bjh21 
    427  1.15.14.1  jmcneill 	status = pnp_register(self, pckbd_power);
    428  1.15.14.1  jmcneill 	if (status != PNP_STATUS_SUCCESS)
    429  1.15.14.1  jmcneill 		aprint_error("%s: couldn't establish power handler\n",
    430  1.15.14.1  jmcneill 		    device_xname(self));
    431       1.11  christos 
    432        1.1     bjh21 	/*
    433        1.1     bjh21 	 * Attach the wskbd, saving a handle to it.
    434        1.1     bjh21 	 * XXX XXX XXX
    435        1.1     bjh21 	 */
    436        1.1     bjh21 	sc->sc_wskbddev = config_found(self, &a, wskbddevprint);
    437        1.1     bjh21 }
    438        1.1     bjh21 
    439        1.1     bjh21 int
    440        1.2     bjh21 pckbd_enable(void *v, int on)
    441        1.1     bjh21 {
    442        1.1     bjh21 	struct pckbd_softc *sc = v;
    443        1.2     bjh21 	int res;
    444        1.1     bjh21 	u_char cmd[1];
    445        1.1     bjh21 
    446        1.1     bjh21 	if (on) {
    447        1.1     bjh21 		if (sc->sc_enabled) {
    448        1.1     bjh21 #ifdef DIAGNOSTIC
    449        1.1     bjh21 			printf("pckbd_enable: bad enable\n");
    450        1.1     bjh21 #endif
    451        1.2     bjh21 			return EBUSY;
    452        1.1     bjh21 		}
    453        1.1     bjh21 
    454        1.1     bjh21 		pckbport_slot_enable(sc->id->t_kbctag, sc->id->t_kbcslot, 1);
    455        1.1     bjh21 
    456        1.1     bjh21 		cmd[0] = KBC_ENABLE;
    457        1.1     bjh21 		res = pckbport_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    458        1.1     bjh21 					cmd, 1, 0, NULL, 0);
    459        1.1     bjh21 		if (res) {
    460        1.1     bjh21 			printf("pckbd_enable: command error\n");
    461        1.1     bjh21 			return (res);
    462        1.1     bjh21 		}
    463        1.1     bjh21 
    464        1.1     bjh21 		res = pckbd_set_xtscancode(sc->id->t_kbctag,
    465        1.1     bjh21 					   sc->id->t_kbcslot);
    466        1.1     bjh21 		if (res)
    467        1.2     bjh21 			return res;
    468        1.1     bjh21 
    469        1.1     bjh21 		sc->sc_enabled = 1;
    470        1.1     bjh21 	} else {
    471        1.1     bjh21 		if (sc->id->t_isconsole)
    472        1.2     bjh21 			return EBUSY;
    473        1.1     bjh21 
    474        1.1     bjh21 		cmd[0] = KBC_DISABLE;
    475        1.1     bjh21 		res = pckbport_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    476        1.1     bjh21 					cmd, 1, 0, 1, 0);
    477        1.1     bjh21 		if (res) {
    478        1.1     bjh21 			printf("pckbd_disable: command error\n");
    479        1.2     bjh21 			return res;
    480        1.1     bjh21 		}
    481        1.1     bjh21 
    482        1.1     bjh21 		pckbport_slot_enable(sc->id->t_kbctag, sc->id->t_kbcslot, 0);
    483        1.1     bjh21 
    484        1.1     bjh21 		sc->sc_enabled = 0;
    485        1.1     bjh21 	}
    486        1.1     bjh21 
    487        1.2     bjh21 	return 0;
    488        1.1     bjh21 }
    489        1.1     bjh21 
    490        1.1     bjh21 static int
    491        1.2     bjh21 pckbd_decode(struct pckbd_internal *id, int datain, u_int *type, int *dataout)
    492        1.1     bjh21 {
    493        1.1     bjh21 	int key;
    494        1.1     bjh21 
    495        1.1     bjh21 	if (datain == KBR_EXTENDED0) {
    496        1.1     bjh21 		id->t_extended0 = 1;
    497        1.2     bjh21 		return 0;
    498        1.1     bjh21 	} else if (datain == KBR_EXTENDED1) {
    499        1.1     bjh21 		id->t_extended1 = 2;
    500        1.2     bjh21 		return 0;
    501        1.1     bjh21 	}
    502        1.1     bjh21 
    503        1.1     bjh21  	/* map extended keys to (unused) codes 128-254 */
    504        1.1     bjh21 	key = (datain & 0x7f) | (id->t_extended0 ? 0x80 : 0);
    505        1.1     bjh21 	id->t_extended0 = 0;
    506        1.1     bjh21 
    507        1.1     bjh21 	/*
    508        1.1     bjh21 	 * process PAUSE (also break) key (EXT1 1D 45  EXT1 9D C5):
    509        1.1     bjh21 	 * map to (unused) code 7F
    510        1.1     bjh21 	 */
    511        1.1     bjh21 	if (id->t_extended1 == 2 && (datain == 0x1d || datain == 0x9d)) {
    512        1.1     bjh21 		id->t_extended1 = 1;
    513        1.2     bjh21 		return 0;
    514        1.1     bjh21 	} else if (id->t_extended1 == 1 &&
    515        1.1     bjh21 		   (datain == 0x45 || datain == 0xc5)) {
    516        1.1     bjh21 		id->t_extended1 = 0;
    517        1.1     bjh21 		key = 0x7f;
    518        1.1     bjh21 	} else if (id->t_extended1 > 0) {
    519        1.1     bjh21 		id->t_extended1 = 0;
    520        1.1     bjh21 	}
    521        1.1     bjh21 
    522        1.1     bjh21 	if (datain & 0x80) {
    523        1.1     bjh21 		id->t_lastchar = 0;
    524        1.1     bjh21 		*type = WSCONS_EVENT_KEY_UP;
    525        1.1     bjh21 	} else {
    526        1.1     bjh21 		/* Always ignore typematic keys */
    527        1.1     bjh21 		if (key == id->t_lastchar)
    528        1.2     bjh21 			return 0;
    529        1.1     bjh21 		id->t_lastchar = key;
    530        1.1     bjh21 		*type = WSCONS_EVENT_KEY_DOWN;
    531        1.1     bjh21 	}
    532        1.1     bjh21 
    533        1.1     bjh21 	*dataout = key;
    534        1.2     bjh21 	return 1;
    535        1.1     bjh21 }
    536        1.1     bjh21 
    537        1.1     bjh21 int
    538        1.2     bjh21 pckbd_init(struct pckbd_internal *t, pckbport_tag_t kbctag,
    539        1.2     bjh21     pckbport_slot_t kbcslot, int console)
    540        1.1     bjh21 {
    541        1.2     bjh21 
    542        1.1     bjh21 	memset(t, 0, sizeof(struct pckbd_internal));
    543        1.1     bjh21 
    544        1.1     bjh21 	t->t_isconsole = console;
    545        1.1     bjh21 	t->t_kbctag = kbctag;
    546        1.1     bjh21 	t->t_kbcslot = kbcslot;
    547        1.1     bjh21 
    548        1.2     bjh21 	return pckbd_set_xtscancode(kbctag, kbcslot);
    549        1.1     bjh21 }
    550        1.1     bjh21 
    551        1.1     bjh21 static int
    552        1.2     bjh21 pckbd_led_encode(int led)
    553        1.1     bjh21 {
    554        1.1     bjh21 	int res;
    555        1.1     bjh21 
    556        1.1     bjh21 	res = 0;
    557        1.1     bjh21 
    558        1.1     bjh21 	if (led & WSKBD_LED_SCROLL)
    559        1.1     bjh21 		res |= 0x01;
    560        1.1     bjh21 	if (led & WSKBD_LED_NUM)
    561        1.1     bjh21 		res |= 0x02;
    562        1.1     bjh21 	if (led & WSKBD_LED_CAPS)
    563        1.1     bjh21 		res |= 0x04;
    564        1.2     bjh21 	return res;
    565        1.1     bjh21 }
    566        1.1     bjh21 
    567        1.1     bjh21 static int
    568        1.2     bjh21 pckbd_led_decode(int led)
    569        1.1     bjh21 {
    570        1.1     bjh21 	int res;
    571        1.1     bjh21 
    572        1.1     bjh21 	res = 0;
    573        1.1     bjh21 	if (led & 0x01)
    574        1.1     bjh21 		res |= WSKBD_LED_SCROLL;
    575        1.1     bjh21 	if (led & 0x02)
    576        1.1     bjh21 		res |= WSKBD_LED_NUM;
    577        1.1     bjh21 	if (led & 0x04)
    578        1.1     bjh21 		res |= WSKBD_LED_CAPS;
    579        1.2     bjh21 	return res;
    580        1.1     bjh21 }
    581        1.1     bjh21 
    582        1.1     bjh21 void
    583        1.2     bjh21 pckbd_set_leds(void *v, int leds)
    584        1.1     bjh21 {
    585        1.1     bjh21 	struct pckbd_softc *sc = v;
    586        1.1     bjh21 	u_char cmd[2];
    587        1.1     bjh21 
    588        1.1     bjh21 	cmd[0] = KBC_MODEIND;
    589        1.1     bjh21 	cmd[1] = pckbd_led_encode(leds);
    590        1.1     bjh21 	sc->sc_ledstate = cmd[1];
    591        1.1     bjh21 
    592        1.2     bjh21 	(void)pckbport_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    593        1.1     bjh21 				 cmd, 2, 0, 0, 0);
    594        1.1     bjh21 }
    595        1.1     bjh21 
    596        1.1     bjh21 /*
    597        1.1     bjh21  * Got a console receive interrupt -
    598        1.1     bjh21  * the console processor wants to give us a character.
    599        1.1     bjh21  */
    600        1.1     bjh21 void
    601        1.2     bjh21 pckbd_input(void *vsc, int data)
    602        1.1     bjh21 {
    603        1.1     bjh21 	struct pckbd_softc *sc = vsc;
    604        1.1     bjh21 	int key;
    605        1.1     bjh21 	u_int type;
    606        1.1     bjh21 
    607        1.1     bjh21 #ifdef WSDISPLAY_COMPAT_RAWKBD
    608        1.1     bjh21 	if (sc->rawkbd) {
    609        1.1     bjh21 		u_char d = data;
    610        1.1     bjh21 		wskbd_rawinput(sc->sc_wskbddev, &d, 1);
    611        1.1     bjh21 		return;
    612        1.1     bjh21 	}
    613        1.1     bjh21 #endif
    614        1.1     bjh21 	if (pckbd_decode(sc->id, data, &type, &key))
    615        1.1     bjh21 		wskbd_input(sc->sc_wskbddev, type, key);
    616        1.1     bjh21 }
    617        1.1     bjh21 
    618        1.1     bjh21 int
    619       1.15  christos pckbd_ioctl(void *v, u_long cmd, void *data, int flag,
    620       1.14  christos     struct lwp *l)
    621        1.1     bjh21 {
    622        1.1     bjh21 	struct pckbd_softc *sc = v;
    623        1.1     bjh21 
    624        1.1     bjh21 	switch (cmd) {
    625        1.2     bjh21 	case WSKBDIO_GTYPE:
    626        1.1     bjh21 		*(int *)data = WSKBD_TYPE_PC_XT;
    627        1.1     bjh21 		return 0;
    628        1.2     bjh21 	case WSKBDIO_SETLEDS:
    629        1.2     bjh21 	{
    630        1.2     bjh21 		int res;
    631        1.8  christos 		u_char cmdb[2];
    632        1.2     bjh21 
    633        1.8  christos 		cmdb[0] = KBC_MODEIND;
    634        1.8  christos 		cmdb[1] = pckbd_led_encode(*(int *)data);
    635        1.8  christos 		sc->sc_ledstate = cmdb[1];
    636        1.1     bjh21 		res = pckbport_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot,
    637        1.8  christos 					cmdb, 2, 0, 1, 0);
    638        1.2     bjh21 		return res;
    639        1.2     bjh21 	}
    640        1.2     bjh21 	case WSKBDIO_GETLEDS:
    641        1.1     bjh21 		*(int *)data = pckbd_led_decode(sc->sc_ledstate);
    642        1.2     bjh21 		return 0;
    643        1.2     bjh21 	case WSKBDIO_COMPLEXBELL:
    644        1.1     bjh21 #define d ((struct wskbd_bell_data *)data)
    645        1.1     bjh21 		/*
    646        1.1     bjh21 		 * Keyboard can't beep directly; we have an
    647        1.1     bjh21 		 * externally-provided global hook to do this.
    648        1.1     bjh21 		 */
    649        1.1     bjh21 		pckbd_bell(d->pitch, d->period, d->volume, 0);
    650        1.1     bjh21 #undef d
    651        1.2     bjh21 		return 0;
    652        1.1     bjh21 #ifdef WSDISPLAY_COMPAT_RAWKBD
    653        1.2     bjh21 	case WSKBDIO_SETMODE:
    654        1.1     bjh21 		sc->rawkbd = (*(int *)data == WSKBD_RAW);
    655        1.2     bjh21 		return 0;
    656        1.1     bjh21 #endif
    657        1.1     bjh21 	}
    658        1.1     bjh21 	return EPASSTHROUGH;
    659        1.1     bjh21 }
    660        1.1     bjh21 
    661        1.1     bjh21 void
    662        1.2     bjh21 pckbd_bell(u_int pitch, u_int period, u_int volume, int poll)
    663        1.1     bjh21 {
    664        1.1     bjh21 
    665        1.1     bjh21 	if (pckbd_bell_fn != NULL)
    666        1.1     bjh21 		(*pckbd_bell_fn)(pckbd_bell_fn_arg, pitch, period,
    667        1.1     bjh21 		    volume, poll);
    668        1.1     bjh21 }
    669        1.1     bjh21 
    670        1.1     bjh21 void
    671        1.2     bjh21 pckbd_hookup_bell(void (*fn)(void *, u_int, u_int, u_int, int), void *arg)
    672        1.1     bjh21 {
    673        1.1     bjh21 
    674        1.1     bjh21 	if (pckbd_bell_fn == NULL) {
    675        1.1     bjh21 		pckbd_bell_fn = fn;
    676        1.1     bjh21 		pckbd_bell_fn_arg = arg;
    677        1.1     bjh21 	}
    678        1.1     bjh21 }
    679        1.1     bjh21 
    680        1.1     bjh21 int
    681        1.2     bjh21 pckbd_cnattach(pckbport_tag_t kbctag, int kbcslot)
    682        1.1     bjh21 {
    683        1.2     bjh21 	int res;
    684        1.1     bjh21 	u_char cmd[1];
    685        1.1     bjh21 
    686        1.1     bjh21 	res = pckbd_init(&pckbd_consdata, kbctag, kbcslot, 1);
    687        1.7  augustss 	/* We may allow the console to be attached if no keyboard is present */
    688        1.7  augustss #if defined(PCKBD_CNATTACH_MAY_FAIL)
    689        1.1     bjh21 	if (res)
    690        1.2     bjh21 		return res;
    691        1.1     bjh21 #endif
    692        1.1     bjh21 
    693        1.1     bjh21 	/* Just to be sure. */
    694        1.1     bjh21 	cmd[0] = KBC_ENABLE;
    695        1.1     bjh21 	res = pckbport_poll_cmd(kbctag, kbcslot, cmd, 1, 0, 0, 0);
    696        1.1     bjh21 
    697        1.7  augustss #if defined(PCKBD_CNATTACH_MAY_FAIL)
    698        1.1     bjh21 	if (res)
    699        1.2     bjh21 		return res;
    700        1.1     bjh21 #endif
    701        1.1     bjh21 
    702        1.1     bjh21 	wskbd_cnattach(&pckbd_consops, &pckbd_consdata, &pckbd_keymapdata);
    703        1.1     bjh21 
    704        1.2     bjh21 	return 0;
    705        1.1     bjh21 }
    706        1.1     bjh21 
    707        1.1     bjh21 /* ARGSUSED */
    708        1.1     bjh21 void
    709        1.2     bjh21 pckbd_cngetc(void *v, u_int *type, int *data)
    710        1.1     bjh21 {
    711        1.1     bjh21         struct pckbd_internal *t = v;
    712        1.1     bjh21 	int val;
    713        1.1     bjh21 
    714        1.1     bjh21 	for (;;) {
    715        1.1     bjh21 		val = pckbport_poll_data(t->t_kbctag, t->t_kbcslot);
    716        1.1     bjh21 		if ((val != -1) && pckbd_decode(t, val, type, data))
    717        1.1     bjh21 			return;
    718        1.1     bjh21 	}
    719        1.1     bjh21 }
    720        1.1     bjh21 
    721        1.1     bjh21 void
    722        1.2     bjh21 pckbd_cnpollc(void *v, int on)
    723        1.1     bjh21 {
    724        1.1     bjh21 	struct pckbd_internal *t = v;
    725        1.1     bjh21 
    726        1.1     bjh21 	pckbport_set_poll(t->t_kbctag, t->t_kbcslot, on);
    727        1.1     bjh21 }
    728        1.1     bjh21 
    729        1.1     bjh21 void
    730       1.14  christos pckbd_cnbell(void *v, u_int pitch, u_int period, u_int volume)
    731        1.1     bjh21 {
    732        1.1     bjh21 
    733        1.1     bjh21 	pckbd_bell(pitch, period, volume, 1);
    734        1.1     bjh21 }
    735