Home | History | Annotate | Line # | Download | only in usb
      1 /*      $NetBSD: ukbd.c,v 1.165 2024/12/10 11:21:30 mlelstv Exp $        */
      2 
      3 /*
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Lennart Augustsson (lennart (at) augustsson.net) at
      9  * Carlstedt Research & Technology.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30  * POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 /*
     34  * HID spec: http://www.usb.org/developers/devclass_docs/HID1_11.pdf
     35  */
     36 
     37 #include <sys/cdefs.h>
     38 __KERNEL_RCSID(0, "$NetBSD: ukbd.c,v 1.165 2024/12/10 11:21:30 mlelstv Exp $");
     39 
     40 #ifdef _KERNEL_OPT
     41 #include "opt_ddb.h"
     42 #include "opt_ukbd.h"
     43 #include "opt_ukbd_layout.h"
     44 #include "opt_usb.h"
     45 #include "opt_usbverbose.h"
     46 #include "opt_wsdisplay_compat.h"
     47 #endif /* _KERNEL_OPT */
     48 
     49 #include <sys/param.h>
     50 
     51 #include <sys/callout.h>
     52 #include <sys/device.h>
     53 #include <sys/file.h>
     54 #include <sys/ioctl.h>
     55 #include <sys/kernel.h>
     56 #include <sys/poll.h>
     57 #include <sys/proc.h>
     58 #include <sys/select.h>
     59 #include <sys/systm.h>
     60 #include <sys/vnode.h>
     61 
     62 #include <dev/hid/hid.h>
     63 
     64 #include <dev/usb/uhidev.h>
     65 #include <dev/usb/ukbdvar.h>
     66 #include <dev/usb/usb.h>
     67 #include <dev/usb/usb_quirks.h>
     68 #include <dev/usb/usbdevs.h>
     69 #include <dev/usb/usbdi.h>
     70 #include <dev/usb/usbdi_util.h>
     71 #include <dev/usb/usbdivar.h>
     72 #include <dev/usb/usbhid.h>
     73 
     74 #include <dev/wscons/wsconsio.h>
     75 #include <dev/wscons/wskbdvar.h>
     76 #include <dev/wscons/wsksymdef.h>
     77 #include <dev/wscons/wsksymvar.h>
     78 
     79 #ifdef UKBD_DEBUG
     80 #define DPRINTF(x)	if (ukbddebug) printf x
     81 #define DPRINTFN(n,x)	if (ukbddebug>(n)) printf x
     82 int	ukbddebug = 0;
     83 #else
     84 #define DPRINTF(x)
     85 #define DPRINTFN(n,x)
     86 #endif
     87 
     88 #define MAXKEYCODE 32
     89 #define MAXKEYS 256
     90 
     91 struct ukbd_data {
     92 	uint8_t		keys[MAXKEYS/NBBY];
     93 };
     94 
     95 #define PRESS    0x000
     96 #define RELEASE  0x100
     97 #define CODEMASK 0x0ff
     98 
     99 struct ukbd_keycodetrans {
    100 	uint16_t	from;
    101 	uint16_t	to;
    102 };
    103 
    104 #define IS_PMF	0x8000
    105 
    106 Static const struct ukbd_keycodetrans trtab_apple_fn[] = {
    107 	{ 0x0c, 0x5d },	/* i -> KP 5 */
    108 	{ 0x0d, 0x59 },	/* j -> KP 1 */
    109 	{ 0x0e, 0x5a },	/* k -> KP 2 */
    110 	{ 0x0f, 0x5b },	/* l -> KP 3 */
    111 	{ 0x10, 0x62 },	/* m -> KP 0 */
    112 	{ 0x12, 0x5e },	/* o -> KP 6 */
    113 	{ 0x13, 0x55 },	/* o -> KP * */
    114 	{ 0x18, 0x5c },	/* u -> KP 4 */
    115 	{ 0x0c, 0x5d },	/* i -> KP 5 */
    116 	{ 0x2a, 0x4c },	/* Backspace -> Delete */
    117 	{ 0x28, 0x49 },	/* Return -> Insert */
    118 	{ 0x24, 0x5f }, /* 7 -> KP 7 */
    119 	{ 0x25, 0x60 }, /* 8 -> KP 8 */
    120 	{ 0x26, 0x61 }, /* 9 -> KP 9 */
    121 	{ 0x27, 0x54 }, /* 0 -> KP / */
    122 	{ 0x2d, 0x67 }, /* - -> KP = */
    123 	{ 0x33, 0x56 },	/* ; -> KP - */
    124 	{ 0x37, 0x63 },	/* . -> KP . */
    125 	{ 0x38, 0x57 },	/* / -> KP + */
    126 	{ 0x3a, IS_PMF | PMFE_DISPLAY_BRIGHTNESS_DOWN },
    127 	{ 0x3b, IS_PMF | PMFE_DISPLAY_BRIGHTNESS_UP },
    128 	{ 0x3c, IS_PMF | PMFE_AUDIO_VOLUME_TOGGLE },
    129 	{ 0x3d, IS_PMF | PMFE_AUDIO_VOLUME_DOWN },
    130 	{ 0x3e, IS_PMF | PMFE_AUDIO_VOLUME_UP },
    131 	{ 0x3f, 0xd6 },	/* num lock */
    132 	{ 0x40, 0xd7 },
    133 	{ 0x41, IS_PMF | PMFE_KEYBOARD_BRIGHTNESS_TOGGLE },
    134 	{ 0x42, IS_PMF | PMFE_KEYBOARD_BRIGHTNESS_DOWN },
    135 	{ 0x43, IS_PMF | PMFE_KEYBOARD_BRIGHTNESS_UP },
    136 	{ 0x44, 0xdb },
    137 	{ 0x45, 0xdc },
    138 	{ 0x4f, 0x4d },	/* Right -> End */
    139 	{ 0x50, 0x4a },	/* Left -> Home */
    140 	{ 0x51, 0x4e },	/* Down -> PageDown */
    141 	{ 0x52, 0x4b },	/* Up -> PageUp */
    142 	{ 0x00, 0x00 }
    143 };
    144 
    145 Static const struct ukbd_keycodetrans trtab_apple_iso[] = {
    146 	{ 0x35, 0x64 },	/* swap the key above tab with key right of shift */
    147 	{ 0x64, 0x35 },
    148 	{ 0x31, 0x32 },	/* key left of return is Europe1, not "\|" */
    149 	{ 0x00, 0x00 }
    150 };
    151 
    152 #ifdef GDIUM_KEYBOARD_HACK
    153 Static const struct ukbd_keycodetrans trtab_gdium_fn[] = {
    154 #ifdef notyet
    155 	{ 58, 0 },	/* F1 -> toggle camera */
    156 	{ 59, 0 },	/* F2 -> toggle wireless */
    157 #endif
    158 	{ 60, IS_PMF | PMFE_AUDIO_VOLUME_TOGGLE },
    159 	{ 61, IS_PMF | PMFE_AUDIO_VOLUME_UP },
    160 	{ 62, IS_PMF | PMFE_AUDIO_VOLUME_DOWN },
    161 #ifdef notyet
    162 	{ 63, 0 },	/* F6 -> toggle ext. video */
    163 	{ 64, 0 },	/* F7 -> toggle mouse */
    164 #endif
    165 	{ 65, IS_PMF | PMFE_DISPLAY_BRIGHTNESS_UP },
    166 	{ 66, IS_PMF | PMFE_DISPLAY_BRIGHTNESS_DOWN },
    167 #ifdef notyet
    168 	{ 67, 0 },	/* F10 -> suspend */
    169 	{ 68, 0 },	/* F11 -> user1 */
    170 	{ 69, 0 },	/* F12 -> user2 */
    171 	{ 70, 0 },	/* print screen -> sysrq */
    172 #endif
    173 	{ 76, 71 },	/* delete -> scroll lock */
    174 	{ 81, 78 },	/* down -> page down */
    175 	{ 82, 75 },	/* up -> page up */
    176 	{  0, 0 }
    177 };
    178 #endif
    179 
    180 Static const struct ukbd_keycodetrans trtab_generic[] = {
    181 	{ 0x7f, IS_PMF | PMFE_AUDIO_VOLUME_TOGGLE },
    182 	{ 0x80, IS_PMF | PMFE_AUDIO_VOLUME_UP },
    183 	{ 0x81, IS_PMF | PMFE_AUDIO_VOLUME_DOWN },
    184 	{ 0x00, 0x00 }
    185 };
    186 
    187 #if defined(WSDISPLAY_COMPAT_RAWKBD)
    188 #define NN 0			/* no translation */
    189 /*
    190  * Translate USB keycodes to US keyboard XT scancodes.
    191  * Scancodes >= 0x80 represent EXTENDED keycodes.
    192  *
    193  * See http://www.microsoft.com/whdc/archive/scancode.mspx
    194  *
    195  * Note: a real pckbd(4) has more complexity in its
    196  * protocol for some keys than this translation implements.
    197  * For example, some keys generate Fake ShiftL events (e0 2a)
    198  * before the actual key sequence.
    199  */
    200 Static const uint8_t ukbd_trtab[256] = {
    201       NN,   NN,   NN,   NN, 0x1e, 0x30, 0x2e, 0x20, /* 00 - 07 */
    202     0x12, 0x21, 0x22, 0x23, 0x17, 0x24, 0x25, 0x26, /* 08 - 0f */
    203     0x32, 0x31, 0x18, 0x19, 0x10, 0x13, 0x1f, 0x14, /* 10 - 17 */
    204     0x16, 0x2f, 0x11, 0x2d, 0x15, 0x2c, 0x02, 0x03, /* 18 - 1f */
    205     0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, /* 20 - 27 */
    206     0x1c, 0x01, 0x0e, 0x0f, 0x39, 0x0c, 0x0d, 0x1a, /* 28 - 2f */
    207     0x1b, 0x2b, 0x2b, 0x27, 0x28, 0x29, 0x33, 0x34, /* 30 - 37 */
    208     0x35, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, /* 38 - 3f */
    209     0x41, 0x42, 0x43, 0x44, 0x57, 0x58, 0xb7, 0x46, /* 40 - 47 */
    210     0x7f, 0xd2, 0xc7, 0xc9, 0xd3, 0xcf, 0xd1, 0xcd, /* 48 - 4f */
    211     0xcb, 0xd0, 0xc8, 0x45, 0xb5, 0x37, 0x4a, 0x4e, /* 50 - 57 */
    212     0x9c, 0x4f, 0x50, 0x51, 0x4b, 0x4c, 0x4d, 0x47, /* 58 - 5f */
    213     0x48, 0x49, 0x52, 0x53, 0x56, 0xdd, 0xdf, 0x59, /* 60 - 67 */
    214     0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a,   NN, /* 68 - 6f */
    215       NN,   NN,   NN,   NN, 0x84, 0x85, 0x87, 0x88, /* 70 - 77 */
    216     0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,   NN, /* 78 - 7f */
    217       NN,   NN,   NN,   NN,   NN, 0x7e,   NN, 0x73, /* 80 - 87 */
    218     0x70, 0x7d, 0x79, 0x7b, 0x5c,   NN,   NN,   NN, /* 88 - 8f */
    219       NN,   NN, 0x78, 0x77, 0x76,   NN,   NN,   NN, /* 90 - 97 */
    220       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* 98 - 9f */
    221       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* a0 - a7 */
    222       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* a8 - af */
    223       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* b0 - b7 */
    224       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* b8 - bf */
    225       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* c0 - c7 */
    226       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* c8 - cf */
    227       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* d0 - d7 */
    228       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* d8 - df */
    229     0x1d, 0x2a, 0x38, 0xdb, 0x9d, 0x36, 0xb8, 0xdc, /* e0 - e7 */
    230       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* e8 - ef */
    231       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* f0 - f7 */
    232       NN,   NN,   NN,   NN,   NN,   NN,   NN,   NN, /* f8 - ff */
    233 };
    234 #endif /* defined(WSDISPLAY_COMPAT_RAWKBD) */
    235 
    236 #define KEY_ERROR 0x01
    237 
    238 struct ukbd_softc {
    239 	device_t sc_dev;
    240 	struct uhidev *sc_hdev;
    241 	struct usbd_device *sc_udev;
    242 	struct usbd_interface *sc_iface;
    243 	int sc_report_id;
    244 
    245 	struct ukbd_data sc_ndata;
    246 	struct ukbd_data sc_odata;
    247 	struct hid_location sc_keyloc[MAXKEYS];
    248 	uint8_t sc_keyuse[MAXKEYS];
    249 	u_int sc_nkeyloc;
    250 
    251 	struct hid_location sc_keycodeloc;
    252 	u_int sc_nkeycode;
    253 
    254 	u_int sc_flags;			/* flags */
    255 #define FLAG_ENABLED		0x0001
    256 #define FLAG_POLLING		0x0002
    257 #define FLAG_DEBOUNCE		0x0004	/* for quirk handling */
    258 #define FLAG_APPLE_FIX_ISO	0x0008
    259 #define FLAG_APPLE_FN		0x0010
    260 #define FLAG_GDIUM_FN		0x0020
    261 #define FLAG_FN_PRESSED		0x0100	/* FN key is held down */
    262 #define FLAG_FN_ALT		0x0200	/* Last Alt key was FN-Alt = AltGr */
    263 #define FLAG_NO_CONSOLE		0x0400	/* Don't attach as console */
    264 
    265 	int sc_console_keyboard;	/* we are the console keyboard */
    266 
    267 	struct callout sc_delay;	/* for quirk handling */
    268 #define MAXPENDING 32
    269 	struct ukbd_data sc_data[MAXPENDING];
    270 	size_t sc_data_w, sc_data_r;
    271 
    272 	struct hid_location sc_apple_fn;
    273 	struct hid_location sc_numloc;
    274 	struct hid_location sc_capsloc;
    275 	struct hid_location sc_scroloc;
    276 	struct hid_location sc_compose;
    277 	int sc_leds;
    278 	struct usb_task sc_ledtask;
    279 	struct callout sc_ledreset;
    280 	int sc_leds_set;
    281 	device_t sc_wskbddev;
    282 
    283 #if defined(WSDISPLAY_COMPAT_RAWKBD)
    284 	int sc_rawkbd;
    285 #if defined(UKBD_REPEAT)
    286 	struct callout sc_rawrepeat_ch;
    287 #define REP_DELAY1 400
    288 #define REP_DELAYN 100
    289 	int sc_nrep;
    290 	char sc_rep[MAXKEYS];
    291 #endif /* defined(UKBD_REPEAT) */
    292 #endif /* defined(WSDISPLAY_COMPAT_RAWKBD) */
    293 
    294 	int sc_spl;
    295 	int sc_npollchar;
    296 	uint16_t sc_pollchars[MAXKEYS];
    297 
    298 	bool sc_dying;
    299 	bool sc_attached;
    300 };
    301 
    302 #ifdef UKBD_DEBUG
    303 #define UKBDTRACESIZE 64
    304 struct ukbdtraceinfo {
    305 	int unit;
    306 	struct timeval tv;
    307 	struct ukbd_data ud;
    308 };
    309 struct ukbdtraceinfo ukbdtracedata[UKBDTRACESIZE];
    310 int ukbdtraceindex = 0;
    311 int ukbdtrace = 0;
    312 void ukbdtracedump(void);
    313 void
    314 ukbdtracedump(void)
    315 {
    316 	size_t i, j;
    317 	for (i = 0; i < UKBDTRACESIZE; i++) {
    318 		struct ukbdtraceinfo *p =
    319 		    &ukbdtracedata[(i+ukbdtraceindex)%UKBDTRACESIZE];
    320 		printf("%"PRIu64".%06"PRIu64":", p->tv.tv_sec,
    321 		    (uint64_t)p->tv.tv_usec);
    322 		for (j = 0; j < MAXKEYS; j++) {
    323 			if (isset(p->ud.keys, j))
    324 				printf(" %zu", j);
    325 		}
    326 		printf(".\n");
    327 	}
    328 }
    329 #endif
    330 
    331 #define	UKBDUNIT(dev)	(minor(dev))
    332 #define	UKBD_CHUNK	128	/* chunk size for read */
    333 #define	UKBD_BSIZE	1020	/* buffer size */
    334 
    335 Static int	ukbd_is_console;
    336 
    337 Static void	ukbd_cngetc(void *, u_int *, int *);
    338 Static void	ukbd_cnpollc(void *, int);
    339 
    340 const struct wskbd_consops ukbd_consops = {
    341 	.getc =  ukbd_cngetc,
    342 	.pollc = ukbd_cnpollc,
    343 	.bell =  NULL,
    344 };
    345 
    346 Static const char *ukbd_parse_desc(struct ukbd_softc *);
    347 
    348 Static void	ukbd_intr(void *, void *, u_int);
    349 Static void	ukbd_decode(struct ukbd_softc *, struct ukbd_data *);
    350 Static void	ukbd_delayed_decode(void *);
    351 
    352 Static int	ukbd_enable(void *, int);
    353 Static void	ukbd_set_leds(void *, int);
    354 Static void	ukbd_set_leds_task(void *);
    355 Static void	ukbd_delayed_leds_off(void *);
    356 
    357 Static int	ukbd_ioctl(void *, u_long, void *, int, struct lwp *);
    358 #if  defined(WSDISPLAY_COMPAT_RAWKBD) && defined(UKBD_REPEAT)
    359 Static void	ukbd_rawrepeat(void *v);
    360 #endif
    361 
    362 const struct wskbd_accessops ukbd_accessops = {
    363 	ukbd_enable,
    364 	ukbd_set_leds,
    365 	ukbd_ioctl,
    366 };
    367 
    368 extern const struct wscons_keydesc hidkbd_keydesctab[];
    369 
    370 const struct wskbd_mapdata ukbd_keymapdata = {
    371 	hidkbd_keydesctab,
    372 #if defined(UKBD_LAYOUT)
    373 	UKBD_LAYOUT,
    374 #elif defined(PCKBD_LAYOUT)
    375 	PCKBD_LAYOUT,
    376 #else
    377 	KB_US,
    378 #endif
    379 };
    380 
    381 static const struct ukbd_type {
    382 	struct usb_devno	dev;
    383 	int			flags;
    384 } ukbd_devs[] = {
    385 #define UKBD_DEV(v, p, f) \
    386 	{ { USB_VENDOR_##v, USB_PRODUCT_##v##_##p }, (f) }
    387 #ifdef GDIUM_KEYBOARD_HACK
    388 	UKBD_DEV(CYPRESS, LPRDK, FLAG_GDIUM_FN),
    389 #endif
    390 	UKBD_DEV(YUBICO, YUBIKEY4MODE1, FLAG_NO_CONSOLE),
    391 	UKBD_DEV(YUBICO, YUBIKEY4MODE2, FLAG_NO_CONSOLE),
    392 	UKBD_DEV(YUBICO, YUBIKEY4MODE6, FLAG_NO_CONSOLE)
    393 };
    394 #define ukbd_lookup(v, p) \
    395 	((const struct ukbd_type *)usb_lookup(ukbd_devs, v, p))
    396 
    397 static int ukbd_match(device_t, cfdata_t, void *);
    398 static void ukbd_attach(device_t, device_t, void *);
    399 static int ukbd_detach(device_t, int);
    400 static int ukbd_activate(device_t, enum devact);
    401 static void ukbd_childdet(device_t, device_t);
    402 
    403 
    404 
    405 CFATTACH_DECL2_NEW(ukbd, sizeof(struct ukbd_softc), ukbd_match, ukbd_attach,
    406     ukbd_detach, ukbd_activate, NULL, ukbd_childdet);
    407 
    408 int
    409 ukbd_match(device_t parent, cfdata_t match, void *aux)
    410 {
    411 	struct uhidev_attach_arg *uha = aux;
    412 	int size;
    413 	void *desc;
    414 
    415 	uhidev_get_report_desc(uha->parent, &desc, &size);
    416 	if (!hid_is_collection(desc, size, uha->reportid,
    417 			       HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_KEYBOARD)))
    418 		return UMATCH_NONE;
    419 
    420 	return UMATCH_IFACECLASS;
    421 }
    422 
    423 void
    424 ukbd_attach(device_t parent, device_t self, void *aux)
    425 {
    426 	struct ukbd_softc *sc = device_private(self);
    427 	struct uhidev_attach_arg *uha = aux;
    428 	uint32_t qflags;
    429 	const char *parseerr;
    430 	struct wskbddev_attach_args a;
    431 	const struct ukbd_type *ukt;
    432 
    433 	sc->sc_dev = self;
    434 	sc->sc_hdev = uha->parent;
    435 	sc->sc_udev = uha->uiaa->uiaa_device;
    436 	sc->sc_iface = uha->uiaa->uiaa_iface;
    437 	sc->sc_report_id = uha->reportid;
    438 	sc->sc_flags = 0;
    439 
    440 	aprint_naive("\n");
    441 
    442 	if (!pmf_device_register(self, NULL, NULL)) {
    443 		aprint_normal("\n");
    444 		aprint_error_dev(self, "couldn't establish power handler\n");
    445 	}
    446 
    447 	parseerr = ukbd_parse_desc(sc);
    448 	if (parseerr != NULL) {
    449 		aprint_normal("\n");
    450 		aprint_error_dev(self, "attach failed, %s\n", parseerr);
    451 		return;
    452 	}
    453 
    454 	/* Quirks */
    455 	qflags = usbd_get_quirks(sc->sc_udev)->uq_flags;
    456 	if (qflags & UQ_SPUR_BUT_UP)
    457 		sc->sc_flags |= FLAG_DEBOUNCE;
    458 	if (qflags & UQ_APPLE_ISO)
    459 		sc->sc_flags |= FLAG_APPLE_FIX_ISO;
    460 
    461 	/* Other Quirks */
    462 	ukt = ukbd_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product);
    463 	if (ukt)
    464 		sc->sc_flags |= ukt->flags;
    465 
    466 #ifdef USBVERBOSE
    467 	aprint_normal(": %d Variable keys, %d Array codes", sc->sc_nkeyloc,
    468 	       sc->sc_nkeycode);
    469 	if (sc->sc_flags & FLAG_APPLE_FN)
    470 		aprint_normal(", apple fn key");
    471 	if (sc->sc_flags & FLAG_APPLE_FIX_ISO)
    472 		aprint_normal(", fix apple iso");
    473 	if (sc->sc_flags & FLAG_GDIUM_FN)
    474 		aprint_normal(", Gdium fn key");
    475 #endif
    476 	aprint_normal("\n");
    477 
    478 	if ((sc->sc_flags & FLAG_NO_CONSOLE) == 0) {
    479 		/*
    480 		 * Remember if we're the console keyboard.
    481 		 *
    482 		 * XXX This always picks the first keyboard on the
    483 		 * first USB bus, but what else can we really do?
    484 		 */
    485 		if ((sc->sc_console_keyboard = ukbd_is_console) != 0) {
    486 			/* Don't let any other keyboard have it. */
    487 			ukbd_is_console = 0;
    488 		}
    489 	}
    490 
    491 	if (sc->sc_console_keyboard) {
    492 		DPRINTF(("%s: console keyboard sc=%p\n", __func__, sc));
    493 		wskbd_cnattach(&ukbd_consops, sc, &ukbd_keymapdata);
    494 		ukbd_enable(sc, 1);
    495 	}
    496 
    497 	a.console = sc->sc_console_keyboard;
    498 
    499 	a.keymap = &ukbd_keymapdata;
    500 
    501 	a.accessops = &ukbd_accessops;
    502 	a.accesscookie = sc;
    503 
    504 #ifdef UKBD_REPEAT
    505 	callout_init(&sc->sc_rawrepeat_ch, 0);
    506 #endif
    507 
    508 	callout_init(&sc->sc_delay, 0);
    509 
    510 	sc->sc_data_w = 0;
    511 	sc->sc_data_r = 0;
    512 
    513 	usb_init_task(&sc->sc_ledtask, ukbd_set_leds_task, sc, 0);
    514 	callout_init(&sc->sc_ledreset, 0);
    515 
    516 	/* Flash the leds; no real purpose, just shows we're alive. */
    517 	ukbd_set_leds(sc, WSKBD_LED_SCROLL | WSKBD_LED_NUM | WSKBD_LED_CAPS
    518 			| WSKBD_LED_COMPOSE);
    519 	sc->sc_leds_set = 0;	/* not explicitly set by wskbd yet */
    520 	callout_reset(&sc->sc_ledreset, mstohz(400), ukbd_delayed_leds_off,
    521 	    sc);
    522 
    523 	sc->sc_wskbddev = config_found(self, &a, wskbddevprint, CFARGS_NONE);
    524 
    525 	sc->sc_attached = true;
    526 
    527 	return;
    528 }
    529 
    530 int
    531 ukbd_enable(void *v, int on)
    532 {
    533 	struct ukbd_softc *sc = v;
    534 	int error = 0;
    535 
    536 	if (on && sc->sc_dying)
    537 		return EIO;
    538 
    539 	DPRINTF(("%s: sc=%p on=%d\n", __func__, sc, on));
    540 	if (on) {
    541 		if ((sc->sc_flags & FLAG_ENABLED) == 0) {
    542 			error = uhidev_open(sc->sc_hdev, &ukbd_intr, sc);
    543 			if (error == 0)
    544 				sc->sc_flags |= FLAG_ENABLED;
    545 		}
    546 	} else {
    547 		if ((sc->sc_flags & FLAG_ENABLED) != 0) {
    548 			uhidev_close(sc->sc_hdev);
    549 			sc->sc_flags &= ~FLAG_ENABLED;
    550 		}
    551 	}
    552 
    553 	return error;
    554 }
    555 
    556 
    557 static void
    558 ukbd_childdet(device_t self, device_t child)
    559 {
    560 	struct ukbd_softc *sc = device_private(self);
    561 
    562 	KASSERT(sc->sc_wskbddev == child);
    563 	sc->sc_wskbddev = NULL;
    564 }
    565 
    566 int
    567 ukbd_activate(device_t self, enum devact act)
    568 {
    569 	struct ukbd_softc *sc = device_private(self);
    570 
    571 	switch (act) {
    572 	case DVACT_DEACTIVATE:
    573 		sc->sc_dying = true;
    574 		return 0;
    575 	default:
    576 		return EOPNOTSUPP;
    577 	}
    578 }
    579 
    580 int
    581 ukbd_detach(device_t self, int flags)
    582 {
    583 	struct ukbd_softc *sc = device_private(self);
    584 	int rv = 0;
    585 
    586 	DPRINTF(("%s: sc=%p flags=%d\n", __func__, sc, flags));
    587 
    588 	pmf_device_deregister(self);
    589 
    590 	if (!sc->sc_attached)
    591 		return rv;
    592 
    593 	if (sc->sc_console_keyboard) {
    594 		/*
    595 		 * Disconnect our consops and set ukbd_is_console
    596 		 * back to 1 so that the next USB keyboard attached
    597 		 * to the system will get it.
    598 		 * XXX Should notify some other keyboard that it can be
    599 		 * XXX console, if there are any other keyboards.
    600 		 */
    601 		printf("%s: was console keyboard\n",
    602 		       device_xname(sc->sc_dev));
    603 		wskbd_cndetach();
    604 		ukbd_is_console = 1;
    605 	}
    606 	/* No need to do reference counting of ukbd, wskbd has all the goo. */
    607 	if (sc->sc_wskbddev != NULL)
    608 		rv = config_detach(sc->sc_wskbddev, flags);
    609 
    610 	callout_halt(&sc->sc_delay, NULL);
    611 	callout_halt(&sc->sc_ledreset, NULL);
    612 	usb_rem_task_wait(sc->sc_udev, &sc->sc_ledtask,
    613 	    USB_TASKQ_DRIVER, NULL);
    614 
    615 	/* The console keyboard does not get a disable call, so check pipe. */
    616 	if (sc->sc_flags & FLAG_ENABLED)
    617 		uhidev_close(sc->sc_hdev);
    618 
    619 	return rv;
    620 }
    621 
    622 static void
    623 ukbd_translate_keycodes(struct ukbd_softc *sc, struct ukbd_data *ud,
    624     const struct ukbd_keycodetrans *tab)
    625 {
    626 	const struct ukbd_keycodetrans *tp;
    627 	struct ukbd_data oud;
    628 	int i;
    629 
    630 	oud = *ud;
    631 
    632 	for (i = 4; i < MAXKEYS; i++) {
    633 		if (isset(oud.keys, i))
    634 			for (tp = tab; tp->from; tp++)
    635 				if (tp->from == i) {
    636 					if (tp->to & IS_PMF) {
    637 						pmf_event_inject(sc->sc_dev,
    638 						    tp->to & 0xff);
    639 					} else
    640 						setbit(ud->keys, tp->to);
    641 					clrbit(ud->keys, i);
    642 					break;
    643 				}
    644 	}
    645 }
    646 
    647 static uint16_t
    648 ukbd_translate_modifier(struct ukbd_softc *sc, uint16_t key)
    649 {
    650 	if ((sc->sc_flags & FLAG_APPLE_FN) && (key & CODEMASK) == 0x00e2) {
    651 		if ((key & ~CODEMASK) == PRESS) {
    652 			if (sc->sc_flags & FLAG_FN_PRESSED) {
    653 				/* pressed FN-Alt, translate to AltGr */
    654 				key = 0x00e6 | PRESS;
    655 				sc->sc_flags |= FLAG_FN_ALT;
    656 			}
    657 		} else {
    658 			if (sc->sc_flags & FLAG_FN_ALT) {
    659 				/* released Alt, which was treated as FN-Alt */
    660 				key = 0x00e6 | RELEASE;
    661 				sc->sc_flags &= ~FLAG_FN_ALT;
    662 			}
    663 		}
    664 	}
    665 	return key;
    666 }
    667 
    668 void
    669 ukbd_intr(void *cookie, void *ibuf, u_int len)
    670 {
    671 	struct ukbd_softc *sc = cookie;
    672 	struct ukbd_data *ud = &sc->sc_ndata;
    673 	int i;
    674 
    675 #ifdef UKBD_DEBUG
    676 	if (ukbddebug > 5) {
    677 		printf("ukbd_intr: data");
    678 		for (i = 0; i < len; i++)
    679 			printf(" 0x%02x", ((u_char *)ibuf)[i]);
    680 		printf("\n");
    681 	}
    682 #endif
    683 
    684 	memset(ud->keys, 0, sizeof(ud->keys));
    685 
    686 	for (i = 0; i < sc->sc_nkeyloc; i++)
    687 		if (hid_get_data(ibuf, &sc->sc_keyloc[i]))
    688 			setbit(ud->keys, sc->sc_keyuse[i]);
    689 
    690 	const uint8_t * const scancode = (char *)ibuf + sc->sc_keycodeloc.pos / 8;
    691 	const uint16_t Keyboard_NoEvent = 0x0000;
    692 	for (i = 0; i < sc->sc_nkeycode; i++) {
    693 		if (scancode[i] != Keyboard_NoEvent)
    694 			setbit(ud->keys, scancode[i]);
    695 	}
    696 
    697 	if (sc->sc_flags & FLAG_APPLE_FN) {
    698 		if (hid_get_data(ibuf, &sc->sc_apple_fn)) {
    699 			sc->sc_flags |= FLAG_FN_PRESSED;
    700 			ukbd_translate_keycodes(sc, ud, trtab_apple_fn);
    701 		}
    702 		else
    703 			sc->sc_flags &= ~FLAG_FN_PRESSED;
    704 	}
    705 
    706 #ifdef GDIUM_KEYBOARD_HACK
    707 	if (sc->sc_flags & FLAG_GDIUM_FN) {
    708 		if (sc->sc_flags & FLAG_FN_PRESSED) {
    709 			ukbd_translate_keycodes(sc, ud, trtab_gdium_fn);
    710 		}
    711 	}
    712 #endif
    713 
    714 	ukbd_translate_keycodes(sc, ud, trtab_generic);
    715 
    716 	if ((sc->sc_flags & FLAG_DEBOUNCE) && !(sc->sc_flags & FLAG_POLLING)) {
    717 		/*
    718 		 * Some keyboards have a peculiar quirk.  They sometimes
    719 		 * generate a key up followed by a key down for the same
    720 		 * key after about 10 ms.
    721 		 * We avoid this bug by holding off decoding for 20 ms.
    722 		 * Note that this comes at a cost: we deliberately overwrite
    723 		 * the data for any keyboard event that is followed by
    724 		 * another one within this time window.
    725 		 */
    726 		if (sc->sc_data_w == sc->sc_data_r) {
    727 			sc->sc_data_w = (sc->sc_data_w + 1) % MAXPENDING;
    728 		}
    729 		sc->sc_data[sc->sc_data_w] = *ud;
    730 		callout_reset(&sc->sc_delay, hz / 50, ukbd_delayed_decode, sc);
    731 #ifdef DDB
    732 	} else if (sc->sc_console_keyboard && !(sc->sc_flags & FLAG_POLLING)) {
    733 		/*
    734 		 * For the console keyboard we can't deliver CTL-ALT-ESC
    735 		 * from the interrupt routine.  Doing so would start
    736 		 * polling from inside the interrupt routine and that
    737 		 * loses bigtime.
    738 		 */
    739 		sc->sc_data_w = (sc->sc_data_w + 1) % MAXPENDING;
    740 		sc->sc_data[sc->sc_data_w] = *ud;
    741 		callout_reset(&sc->sc_delay, 0, ukbd_delayed_decode, sc);
    742 #endif
    743 	} else {
    744 		ukbd_decode(sc, ud);
    745 	}
    746 }
    747 
    748 Static void
    749 ukbd_delayed_leds_off(void *addr)
    750 {
    751 	struct ukbd_softc *sc = addr;
    752 
    753 	/*
    754 	 * If the LEDs have already been set after attach, other than
    755 	 * by our initial flashing of them, leave them be.
    756 	 */
    757 	if (sc->sc_leds_set)
    758 		return;
    759 
    760 	ukbd_set_leds(sc, 0);
    761 }
    762 
    763 void
    764 ukbd_delayed_decode(void *addr)
    765 {
    766 	struct ukbd_softc *sc = addr;
    767 
    768 	while (sc->sc_data_r != sc->sc_data_w) {
    769 		sc->sc_data_r = (sc->sc_data_r + 1) % MAXPENDING;
    770 		ukbd_decode(sc, &sc->sc_data[sc->sc_data_r]);
    771 	}
    772 }
    773 
    774 void
    775 ukbd_decode(struct ukbd_softc *sc, struct ukbd_data *ud)
    776 {
    777 	uint16_t ibuf[MAXKEYS];	/* chars events */
    778 	int s;
    779 	int nkeys, i;
    780 #ifdef WSDISPLAY_COMPAT_RAWKBD
    781 	int j;
    782 #endif
    783 	int key;
    784 #define ADDKEY(c) do { \
    785     KASSERT(nkeys < MAXKEYS); \
    786     ibuf[nkeys++] = (c); \
    787 } while (0)
    788 
    789 #ifdef UKBD_DEBUG
    790 	/*
    791 	 * Keep a trace of the last events.  Using printf changes the
    792 	 * timing, so this can be useful sometimes.
    793 	 */
    794 	if (ukbdtrace) {
    795 		struct ukbdtraceinfo *p = &ukbdtracedata[ukbdtraceindex];
    796 		p->unit = device_unit(sc->sc_dev);
    797 		microtime(&p->tv);
    798 		p->ud = *ud;
    799 		if (++ukbdtraceindex >= UKBDTRACESIZE)
    800 			ukbdtraceindex = 0;
    801 	}
    802 	if (ukbddebug > 5) {
    803 		struct timeval tv;
    804 		microtime(&tv);
    805 		DPRINTF((" at %"PRIu64".%06"PRIu64":", tv.tv_sec,
    806 		    (uint64_t)tv.tv_usec));
    807 		for (size_t k = 0; k < MAXKEYS; k++) {
    808 			if (isset(ud->keys, k))
    809 				DPRINTF((" %zu", k));
    810 		}
    811 		DPRINTF((".\n"));
    812 	}
    813 #endif
    814 
    815 	if (isset(ud->keys, KEY_ERROR)) {
    816 		DPRINTF(("%s: KEY_ERROR\n", __func__));
    817 		return;		/* ignore  */
    818 	}
    819 
    820 	if (sc->sc_flags & FLAG_APPLE_FIX_ISO)
    821 		ukbd_translate_keycodes(sc, ud, trtab_apple_iso);
    822 
    823 	nkeys = 0;
    824 	for (i = 0; i < MAXKEYS; i++) {
    825 #ifdef GDIUM_KEYBOARD_HACK
    826 			if (sc->sc_flags & FLAG_GDIUM_FN && i == 0x82) {
    827 				if (isset(ud->keys, i))
    828 					sc->sc_flags |= FLAG_FN_PRESSED;
    829 				else
    830 					sc->sc_flags &= ~FLAG_FN_PRESSED;
    831 			}
    832 #endif
    833 			if (isset(ud->keys, i) != isset(sc->sc_odata.keys, i)) {
    834 				key = i | ((isset(ud->keys, i) ? PRESS : RELEASE));
    835 				ADDKEY(ukbd_translate_modifier(sc, key));
    836 			}
    837 	}
    838 	sc->sc_odata = *ud;
    839 
    840 	if (nkeys == 0)
    841 		return;
    842 
    843 	if (sc->sc_flags & FLAG_POLLING) {
    844 		DPRINTFN(1,("%s: pollchar = 0x%03x\n", __func__, ibuf[0]));
    845 		memcpy(sc->sc_pollchars, ibuf, nkeys * sizeof(uint16_t));
    846 		sc->sc_npollchar = nkeys;
    847 		return;
    848 	}
    849 #ifdef WSDISPLAY_COMPAT_RAWKBD
    850 	if (sc->sc_rawkbd) {
    851 		u_char cbuf[MAXKEYS * 2];
    852 		int c;
    853 #if defined(UKBD_REPEAT)
    854 		int npress = 0;
    855 #endif
    856 
    857 		for (i = j = 0; i < nkeys; i++) {
    858 			key = ibuf[i];
    859 			c = ukbd_trtab[key & CODEMASK];
    860 			if (c == NN)
    861 				continue;
    862 			if (c == 0x7f) {
    863 				/* pause key */
    864 				cbuf[j++] = 0xe1;
    865 				cbuf[j++] = 0x1d;
    866 				cbuf[j-1] |= (key & RELEASE) ? 0x80 : 0;
    867 				cbuf[j] = 0x45;
    868 			} else {
    869 				if (c & 0x80)
    870 					cbuf[j++] = 0xe0;
    871 				cbuf[j] = c & 0x7f;
    872 			}
    873 			if (key & RELEASE)
    874 				cbuf[j] |= 0x80;
    875 #if defined(UKBD_REPEAT)
    876 			else {
    877 				/* remember pressed keys for autorepeat */
    878 				if (c & 0x80)
    879 					sc->sc_rep[npress++] = 0xe0;
    880 				sc->sc_rep[npress++] = c & 0x7f;
    881 			}
    882 #endif
    883 			DPRINTFN(1,("%s: raw = %s0x%02x\n", __func__,
    884 				    c & 0x80 ? "0xe0 " : "",
    885 				    cbuf[j]));
    886 			j++;
    887 		}
    888 		s = spltty();
    889 		wskbd_rawinput(sc->sc_wskbddev, cbuf, j);
    890 		splx(s);
    891 #ifdef UKBD_REPEAT
    892 		callout_stop(&sc->sc_rawrepeat_ch);
    893 		if (npress != 0) {
    894 			sc->sc_nrep = npress;
    895 			callout_reset(&sc->sc_rawrepeat_ch,
    896 			    hz * REP_DELAY1 / 1000, ukbd_rawrepeat, sc);
    897 		}
    898 #endif
    899 		return;
    900 	}
    901 #endif
    902 
    903 	s = spltty();
    904 	for (i = 0; i < nkeys; i++) {
    905 		key = ibuf[i];
    906 		wskbd_input(sc->sc_wskbddev,
    907 		    key&RELEASE ? WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN,
    908 		    key&CODEMASK);
    909 	}
    910 	splx(s);
    911 }
    912 
    913 void
    914 ukbd_set_leds(void *v, int leds)
    915 {
    916 	struct ukbd_softc *sc = v;
    917 	struct usbd_device *udev = sc->sc_udev;
    918 
    919 	DPRINTF(("%s: sc=%p leds=%d, sc_leds=%d\n", __func__,
    920 		 sc, leds, sc->sc_leds));
    921 
    922 	if (sc->sc_dying)
    923 		return;
    924 
    925 	sc->sc_leds_set = 1;
    926 
    927 	if (sc->sc_leds == leds)
    928 		return;
    929 
    930 	sc->sc_leds = leds;
    931 	usb_add_task(udev, &sc->sc_ledtask, USB_TASKQ_DRIVER);
    932 }
    933 
    934 void
    935 ukbd_set_leds_task(void *v)
    936 {
    937 	struct ukbd_softc *sc = v;
    938 	int leds = sc->sc_leds;
    939 	uint8_t res = 0;
    940 
    941 	/* XXX not really right */
    942 	if ((leds & WSKBD_LED_COMPOSE) && sc->sc_compose.size == 1)
    943 		res |= 1 << sc->sc_compose.pos;
    944 	if ((leds & WSKBD_LED_SCROLL) && sc->sc_scroloc.size == 1)
    945 		res |= 1 << sc->sc_scroloc.pos;
    946 	if ((leds & WSKBD_LED_NUM) && sc->sc_numloc.size == 1)
    947 		res |= 1 << sc->sc_numloc.pos;
    948 	if ((leds & WSKBD_LED_CAPS) && sc->sc_capsloc.size == 1)
    949 		res |= 1 << sc->sc_capsloc.pos;
    950 
    951 	uhidev_set_report(sc->sc_hdev, UHID_OUTPUT_REPORT, &res, 1);
    952 }
    953 
    954 #if defined(WSDISPLAY_COMPAT_RAWKBD) && defined(UKBD_REPEAT)
    955 void
    956 ukbd_rawrepeat(void *v)
    957 {
    958 	struct ukbd_softc *sc = v;
    959 	int s;
    960 
    961 	s = spltty();
    962 	wskbd_rawinput(sc->sc_wskbddev, sc->sc_rep, sc->sc_nrep);
    963 	splx(s);
    964 	callout_reset(&sc->sc_rawrepeat_ch, hz * REP_DELAYN / 1000,
    965 	    ukbd_rawrepeat, sc);
    966 }
    967 #endif /* defined(WSDISPLAY_COMPAT_RAWKBD) && defined(UKBD_REPEAT) */
    968 
    969 int
    970 ukbd_ioctl(void *v, u_long cmd, void *data, int flag,
    971     struct lwp *l)
    972 {
    973 	struct ukbd_softc *sc = v;
    974 
    975 	switch (cmd) {
    976 	case WSKBDIO_GTYPE:
    977 		*(int *)data = WSKBD_TYPE_USB;
    978 		return 0;
    979 	case WSKBDIO_SETLEDS:
    980 		ukbd_set_leds(v, *(int *)data);
    981 		return 0;
    982 	case WSKBDIO_GETLEDS:
    983 		*(int *)data = sc->sc_leds;
    984 		return 0;
    985 #if defined(WSDISPLAY_COMPAT_RAWKBD)
    986 	case WSKBDIO_SETMODE:
    987 		DPRINTF(("%s: set raw = %d\n", __func__, *(int *)data));
    988 		sc->sc_rawkbd = *(int *)data == WSKBD_RAW;
    989 #if defined(UKBD_REPEAT)
    990 		callout_stop(&sc->sc_rawrepeat_ch);
    991 #endif
    992 		return 0;
    993 #endif
    994 	}
    995 	return EPASSTHROUGH;
    996 }
    997 
    998 /*
    999  * This is a hack to work around some broken ports that don't call
   1000  * cnpollc() before cngetc().
   1001  */
   1002 static int pollenter, warned;
   1003 
   1004 /* Console interface. */
   1005 void
   1006 ukbd_cngetc(void *v, u_int *type, int *data)
   1007 {
   1008 	struct ukbd_softc *sc = v;
   1009 	int c;
   1010 	int broken;
   1011 
   1012 	if (pollenter == 0) {
   1013 		if (!warned) {
   1014 			printf("\n"
   1015 "This port is broken, it does not call cnpollc() before calling cngetc().\n"
   1016 "This should be fixed, but it will work anyway (for now).\n");
   1017 			warned = 1;
   1018 		}
   1019 		broken = 1;
   1020 		ukbd_cnpollc(v, 1);
   1021 	} else
   1022 		broken = 0;
   1023 
   1024 	DPRINTFN(0,("%s: enter\n", __func__));
   1025 	sc->sc_flags |= FLAG_POLLING;
   1026 	if (sc->sc_npollchar <= 0)
   1027 		usbd_dopoll(sc->sc_iface);
   1028 	sc->sc_flags &= ~FLAG_POLLING;
   1029 	if (sc->sc_npollchar > 0) {
   1030 		c = sc->sc_pollchars[0];
   1031 		sc->sc_npollchar--;
   1032 		memmove(sc->sc_pollchars, sc->sc_pollchars+1,
   1033 		       sc->sc_npollchar * sizeof(uint16_t));
   1034 		*type = c & RELEASE ? WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN;
   1035 		*data = c & CODEMASK;
   1036 		DPRINTFN(0,("%s: return 0x%02x\n", __func__, c));
   1037 	} else {
   1038 		*type = 0;
   1039 		*data = 0;
   1040 	}
   1041 	if (broken)
   1042 		ukbd_cnpollc(v, 0);
   1043 }
   1044 
   1045 void
   1046 ukbd_cnpollc(void *v, int on)
   1047 {
   1048 	struct ukbd_softc *sc = v;
   1049 	struct usbd_device *dev;
   1050 
   1051 	DPRINTFN(2,("%s: sc=%p on=%d\n", __func__, v, on));
   1052 
   1053 	/* XXX Can this just use sc->sc_udev, or am I mistaken?  */
   1054 	usbd_interface2device_handle(sc->sc_iface, &dev);
   1055 	if (on) {
   1056 		sc->sc_spl = splusb();
   1057 		pollenter++;
   1058 	}
   1059 	usbd_set_polling(dev, on);
   1060 	if (!on) {
   1061 		pollenter--;
   1062 		splx(sc->sc_spl);
   1063 	}
   1064 }
   1065 
   1066 int
   1067 ukbd_cnattach(void)
   1068 {
   1069 
   1070 	/*
   1071 	 * XXX USB requires too many parts of the kernel to be running
   1072 	 * XXX in order to work, so we can't do much for the console
   1073 	 * XXX keyboard until autoconfiguration has run its course.
   1074 	 */
   1075 	ukbd_is_console = 1;
   1076 	return 0;
   1077 }
   1078 
   1079 const char *
   1080 ukbd_parse_desc(struct ukbd_softc *sc)
   1081 {
   1082 	struct hid_data *d;
   1083 	struct hid_item h;
   1084 	int size;
   1085 	void *desc;
   1086 	int ikey;
   1087 
   1088 	uhidev_get_report_desc(sc->sc_hdev, &desc, &size);
   1089 	ikey = 0;
   1090 	sc->sc_nkeycode = 0;
   1091 	d = hid_start_parse(desc, size, hid_input);
   1092 	while (hid_get_item(d, &h)) {
   1093 		/* Check for special Apple notebook FN key */
   1094 		if (HID_GET_USAGE_PAGE(h.usage) == 0x00ff &&
   1095 		    HID_GET_USAGE(h.usage) == 0x0003 &&
   1096 		    h.kind == hid_input && (h.flags & HIO_VARIABLE)) {
   1097 			sc->sc_flags |= FLAG_APPLE_FN;
   1098 			sc->sc_apple_fn = h.loc;
   1099 		}
   1100 
   1101 		if (h.kind != hid_input || (h.flags & HIO_CONST) ||
   1102 		    HID_GET_USAGE_PAGE(h.usage) != HUP_KEYBOARD ||
   1103 		    h.report_ID != sc->sc_report_id)
   1104 			continue;
   1105 		DPRINTF(("%s: ikey=%d usage=%#x flags=%#x pos=%d size=%d "
   1106 		    "cnt=%d\n", __func__, ikey, h.usage, h.flags, h.loc.pos,
   1107 		    h.loc.size, h.loc.count));
   1108 		if (h.flags & HIO_VARIABLE) {
   1109 			if (h.loc.size != 1) {
   1110 				hid_end_parse(d);
   1111 				return "bad modifier size";
   1112 			}
   1113 			/* Single item */
   1114 			if (ikey < MAXKEYS) {
   1115 				sc->sc_keyloc[ikey] = h.loc;
   1116 				sc->sc_keyuse[ikey] = HID_GET_USAGE(h.usage);
   1117 				ikey++;
   1118 			} else {
   1119 				hid_end_parse(d);
   1120 				return "too many Variable keys";
   1121 			}
   1122 		} else {
   1123 			/* Array */
   1124 			if (h.loc.size != 8) {
   1125 				hid_end_parse(d);
   1126 				return "key code size != 8";
   1127 			}
   1128 			if (h.loc.count > MAXKEYCODE)
   1129 				h.loc.count = MAXKEYCODE;
   1130 			if (h.loc.pos % 8 != 0) {
   1131 				hid_end_parse(d);
   1132 				return "key codes not on byte boundary";
   1133 			}
   1134 			if (sc->sc_nkeycode != 0) {
   1135 				hid_end_parse(d);
   1136 				return "multiple key code arrays";
   1137 			}
   1138 			sc->sc_keycodeloc = h.loc;
   1139 			sc->sc_nkeycode = h.loc.count;
   1140 		}
   1141 	}
   1142 	sc->sc_nkeyloc = ikey;
   1143 	hid_end_parse(d);
   1144 
   1145 	hid_locate(desc, size, HID_USAGE2(HUP_LEDS, HUD_LED_NUM_LOCK),
   1146 	    sc->sc_report_id, hid_output, &sc->sc_numloc, NULL);
   1147 	hid_locate(desc, size, HID_USAGE2(HUP_LEDS, HUD_LED_CAPS_LOCK),
   1148 	    sc->sc_report_id, hid_output, &sc->sc_capsloc, NULL);
   1149 	hid_locate(desc, size, HID_USAGE2(HUP_LEDS, HUD_LED_SCROLL_LOCK),
   1150 	    sc->sc_report_id, hid_output, &sc->sc_scroloc, NULL);
   1151 	hid_locate(desc, size, HID_USAGE2(HUP_LEDS, HUD_LED_COMPOSE),
   1152 	    sc->sc_report_id, hid_output, &sc->sc_compose, NULL);
   1153 
   1154 	return NULL;
   1155 }
   1156