/* $OpenBSD: pckbd.c,v 1.15 2008/07/16 20:00:45 miod Exp $ */ /* $NetBSD: pckbd.c,v 1.24 2000/06/05 22:20:57 sommerfeld Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Charles M. Hannum. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * William Jolitz and Don Ahn. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)pccons.c 5.11 (Berkeley) 5/21/91 */ /* * code to work keyboard for PC-style console */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include struct pckbd_internal { int t_isconsole; pckbc_tag_t t_kbctag; pckbc_slot_t t_kbcslot; int t_translating; int t_table; int t_lastchar; int t_extended; int t_extended1; int t_releasing; struct pckbd_softc *t_sc; /* back pointer */ }; struct pckbd_softc { struct device sc_dev; struct pckbd_internal *id; int sc_enabled; int sc_ledstate; struct device *sc_wskbddev; #ifdef WSDISPLAY_COMPAT_RAWKBD int rawkbd; u_int sc_rawcnt; char sc_rawbuf[3]; #endif }; static int pckbd_is_console(pckbc_tag_t, pckbc_slot_t); int pckbdprobe(struct device *, void *, void *); void pckbdattach(struct device *, struct device *, void *); struct cfattach pckbd_ca = { sizeof(struct pckbd_softc), pckbdprobe, pckbdattach, }; int pckbd_enable(void *, int); void pckbd_set_leds(void *, int); int pckbd_ioctl(void *, u_long, caddr_t, int, struct proc *); const struct wskbd_accessops pckbd_accessops = { pckbd_enable, pckbd_set_leds, pckbd_ioctl, }; void pckbd_cngetc(void *, u_int *, int *); void pckbd_cnpollc(void *, int); void pckbd_cnbell(void *, u_int, u_int, u_int); const struct wskbd_consops pckbd_consops = { pckbd_cngetc, pckbd_cnpollc, pckbd_cnbell, }; const struct wskbd_mapdata pckbd_keymapdata = { pckbd_keydesctab, #ifdef PCKBD_LAYOUT PCKBD_LAYOUT, #else KB_US, #endif }; /* * Hackish support for a bell on the PC Keyboard; when a suitable feeper * is found, it attaches itself into the pckbd driver here. */ void (*pckbd_bell_fn)(void *, u_int, u_int, u_int, int); void *pckbd_bell_fn_arg; void pckbd_bell(u_int, u_int, u_int, int); int pckbd_scancode_translate(struct pckbd_internal *, int); int pckbd_set_xtscancode(pckbc_tag_t, pckbc_slot_t, struct pckbd_internal *); int pckbd_init(struct pckbd_internal *, pckbc_tag_t, pckbc_slot_t, int); void pckbd_input(void *, int); static int pckbd_decode(struct pckbd_internal *, int, u_int *, int *); static int pckbd_led_encode(int); static int pckbd_led_decode(int); struct pckbd_internal pckbd_consdata; int pckbd_set_xtscancode(pckbc_tag_t kbctag, pckbc_slot_t kbcslot, struct pckbd_internal *id) { /* default to have the 8042 translate the keyboard with table 3. */ int table = 3; if (pckbc_xt_translation(kbctag, kbcslot, 1)) { if (id != NULL) id->t_translating = 1; } else { #ifdef DEBUG printf("pckbd: enabling of translation failed\n"); #endif /* * Since the keyboard controller can not translate scan * codes to the XT set (#1), we would like to request * this exact set. However it is likely that the * controller does not support it either. * * So try scan code set #2 as well, which this driver * knows how to translate. */ table = 2; if (id != NULL) id->t_translating = 0; } /* keep falling back until we hit a table that looks usable. */ for (; table >= 1; table--) { u_char cmd[2]; #ifdef DEBUG printf("pckbd: trying table %d\n", table); #endif cmd[0] = KBC_SETTABLE; cmd[1] = table; if (pckbc_poll_cmd(kbctag, kbcslot, cmd, 2, 0, NULL, 0)) { #ifdef DEBUG printf("pckbd: table set of %d failed\n", table); #endif if (table > 1) { cmd[0] = KBC_RESET; (void)pckbc_poll_cmd(kbctag, kbcslot, cmd, 1, 1, NULL, 1); pckbc_flush(kbctag, kbcslot); continue; } } /* * the 8042 took the table set request, however, not all that * report they can work with table 3 actually work, so ask what * table it reports it's in. */ if (table == 3) { u_char resp[1]; cmd[0] = KBC_SETTABLE; cmd[1] = 0; if (pckbc_poll_cmd(kbctag, kbcslot, cmd, 2, 1, resp, 0)) { /* * query failed, step down to table 2 to be * safe. */ #ifdef DEBUG printf("pckbd: table 3 verification failed\n"); #endif continue; } else if (resp[0] == 3) { #ifdef DEBUG printf("pckbd: settling on table 3\n"); #endif break; } #ifdef DEBUG else printf("pckbd: table \"%x\" != 3, trying 2\n", resp[0]); #endif } else { #ifdef DEBUG printf("pckbd: settling on table %d\n", table); #endif break; } } if (table == 0) return (1); if (id != NULL) id->t_table = table; return (0); } static int pckbd_is_console(tag, slot) pckbc_tag_t tag; pckbc_slot_t slot; { return (pckbd_consdata.t_isconsole && (tag == pckbd_consdata.t_kbctag) && (slot == pckbd_consdata.t_kbcslot)); } /* * these are both bad jokes */ int pckbdprobe(parent, match, aux) struct device *parent; void *match; void *aux; { struct cfdata *cf = match; struct pckbc_attach_args *pa = aux; u_char cmd[1], resp[1]; int res; /* * XXX There are rumours that a keyboard can be connected * to the aux port as well. For me, this didn't work. * For further experiments, allow it if explicitly * wired in the config file. */ if ((pa->pa_slot != PCKBC_KBD_SLOT) && (cf->cf_loc[PCKBCCF_SLOT] == PCKBCCF_SLOT_DEFAULT)) return (0); /* Flush any garbage. */ pckbc_flush(pa->pa_tag, pa->pa_slot); /* Reset the keyboard. */ cmd[0] = KBC_RESET; res = pckbc_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 1, resp, 1); if (res) { #ifdef DEBUG printf("pckbdprobe: reset error %d\n", res); #endif /* * There is probably no keyboard connected. * Let the probe succeed if the keyboard is used * as console input - it can be connected later. */ return (pckbd_is_console(pa->pa_tag, pa->pa_slot) ? 1 : 0); } if (resp[0] != KBR_RSTDONE) { printf("pckbdprobe: reset response 0x%x\n", resp[0]); return (0); } /* * Some keyboards seem to leave a second ack byte after the reset. * This is kind of stupid, but we account for them anyway by just * flushing the buffer. */ pckbc_flush(pa->pa_tag, pa->pa_slot); if (pckbd_set_xtscancode(pa->pa_tag, pa->pa_slot, NULL)) return (0); return (2); } void pckbdattach(parent, self, aux) struct device *parent, *self; void *aux; { struct pckbd_softc *sc = (void *)self; struct pckbc_attach_args *pa = aux; int isconsole; struct wskbddev_attach_args a; u_char cmd[1]; printf("\n"); isconsole = pckbd_is_console(pa->pa_tag, pa->pa_slot); if (isconsole) { sc->id = &pckbd_consdata; /* * Some keyboards are not enabled after a reset, * so make sure it is enabled now. */ cmd[0] = KBC_ENABLE; (void) pckbc_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 1, 0, NULL, 0); sc->sc_enabled = 1; } else { sc->id = malloc(sizeof(struct pckbd_internal), M_DEVBUF, M_WAITOK); (void) pckbd_init(sc->id, pa->pa_tag, pa->pa_slot, 0); /* no interrupts until enabled */ cmd[0] = KBC_DISABLE; (void) pckbc_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 1, 0, NULL, 0); sc->sc_enabled = 0; } sc->id->t_sc = sc; pckbc_set_inputhandler(sc->id->t_kbctag, sc->id->t_kbcslot, pckbd_input, sc, sc->sc_dev.dv_xname); a.console = isconsole; a.keymap = &pckbd_keymapdata; a.accessops = &pckbd_accessops; a.accesscookie = sc; /* * Attach the wskbd, saving a handle to it. * XXX XXX XXX */ sc->sc_wskbddev = config_found(self, &a, wskbddevprint); } int pckbd_enable(v, on) void *v; int on; { struct pckbd_softc *sc = v; u_char cmd[1]; int res; if (on) { if (sc->sc_enabled) return (EBUSY); pckbc_slot_enable(sc->id->t_kbctag, sc->id->t_kbcslot, 1); cmd[0] = KBC_ENABLE; res = pckbc_poll_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 1, 0, NULL, 0); if (res) { printf("pckbd_enable: command error\n"); return (res); } res = pckbd_set_xtscancode(sc->id->t_kbctag, sc->id->t_kbcslot, sc->id); if (res) return (res); sc->sc_enabled = 1; } else { if (sc->id->t_isconsole) return (EBUSY); cmd[0] = KBC_DISABLE; res = pckbc_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 1, 0, 1, 0); if (res) { printf("pckbd_disable: command error\n"); return (res); } pckbc_slot_enable(sc->id->t_kbctag, sc->id->t_kbcslot, 0); sc->sc_enabled = 0; } return (0); } const u_int8_t pckbd_xtbl[] = { /* 0x00 */ 0, 0x43, /* F9 */ 0, 0x3f, /* F5 */ 0x3d, /* F3 */ 0x3b, /* F1 */ 0x3c, /* F2 */ 0x58, /* F12 */ 0x40, /* F6 according to documentation */ 0x44, /* F10 */ 0x42, /* F8 */ 0x40, /* F6 according to experimentation */ 0x3e, /* F4 */ 0x0f, /* Tab */ 0x29, /* ` ~ */ 0, /* 0x10 */ 0, 0x38, /* Left Alt */ 0x2a, /* Left Shift */ 0, 0x1d, /* Left Ctrl */ 0x10, /* q */ 0x02, /* 1 ! */ 0, 0, 0, 0x2c, /* z */ 0x1f, /* s */ 0x1e, /* a */ 0x11, /* w */ 0x03, /* 2 @ */ 0, /* 0x20 */ 0, 0x2e, /* c */ 0x2d, /* x */ 0x20, /* d */ 0x12, /* e */ 0x05, /* 4 $ */ 0x04, /* 3 # */ 0, 0, 0x39, /* Space */ 0x2f, /* v */ 0x21, /* f */ 0x14, /* t */ 0x13, /* r */ 0x06, /* 5 % */ 0, /* 0x30 */ 0, 0x31, /* n */ 0x30, /* b */ 0x23, /* h */ 0x22, /* g */ 0x15, /* y */ 0x07, /* 6 ^ */ 0, 0, 0, 0x32, /* m */ 0x24, /* j */ 0x16, /* u */ 0x08, /* 7 & */ 0x09, /* 8 * */ 0, /* 0x40 */ 0, 0x33, /* , < */ 0x25, /* k */ 0x17, /* i */ 0x18, /* o */ 0x0b, /* 0 ) */ 0x0a, /* 9 ( */ 0, 0, 0x34, /* . > */ 0x35, /* / ? */ 0x26, /* l */ 0x27, /* ; : */ 0x19, /* p */ 0x0c, /* - _ */ 0, /* 0x50 */ 0, 0, 0x28, /* ' " */ 0, 0x1a, /* [ { */ 0x0d, /* = + */ 0, 0, 0x3a, /* Caps Lock */ 0x36, /* Right Shift */ 0x1c, /* Return */ 0x1b, /* ] } */ 0, 0x2b, /* \ | */ 0, 0, /* 0x60 */ 0, 0, 0, 0, 0, 0, 0x0e, /* Back Space */ 0, 0, 0x4f, /* KP 1 */ 0, 0x4b, /* KP 4 */ 0x47, /* KP 7 */ 0, 0, 0, /* 0x70 */ 0x52, /* KP 0 */ 0x53, /* KP . */ 0x50, /* KP 2 */ 0x4c, /* KP 5 */ 0x4d, /* KP 6 */ 0x48, /* KP 8 */ 0x01, /* Escape */ 0x45, /* Num Lock */ 0x57, /* F11 */ 0x4e, /* KP + */ 0x51, /* KP 3 */ 0x4a, /* KP - */ 0x37, /* KP * */ 0x49, /* KP 9 */ 0x46, /* Scroll Lock */ 0, /* 0x80 */ 0, 0, 0, 0x41, /* F7 (produced as an actual 8 bit code) */ 0 /* Alt-Print Screen */ }; const u_int8_t pckbd_xtbl_ext[] = { /* 0x00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ 0, 0x38, /* Right Alt */ 0, /* E0 12, to be ignored */ 0, 0x1d, /* Right Ctrl */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x55, /* KP / */ 0, 0, 0, 0, 0, /* 0x50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x1c, /* KP Return */ 0, 0, 0, 0, 0, /* 0x60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x4f, /* End */ 0, 0x4b, /* Left */ 0x47, /* Home */ 0, 0, 0, /* 0x70 */ 0x52, /* Insert */ 0x53, /* Delete */ 0x50, /* Down */ 0, 0x4d, /* Right */ 0x48, /* Up */ 0, 0, 0, 0, 0x51, /* Page Down */ 0, 0x37, /* Print Screen */ 0x49, /* Page Up */ 0x46, /* Ctrl-Break */ 0 }; /* * Translate scan codes from set 2 to set 1 */ int pckbd_scancode_translate(struct pckbd_internal *id, int datain) { if (id->t_translating != 0 || id->t_table == 1) return datain; if (datain == KBR_BREAK) { id->t_releasing = 0x80; /* next keycode is a release */ return 0; /* consume scancode */ } /* * Convert BREAK sequence (14 77 -> 1D 45) */ if (id->t_extended1 == 2 && datain == 0x14) return 0x1d | id->t_releasing; else if (id->t_extended1 == 1 && datain == 0x77) return 0x77 | id->t_releasing; if (id->t_extended != 0) { if (datain >= sizeof pckbd_xtbl_ext) datain = 0; else datain = pckbd_xtbl_ext[datain]; } else { if (datain >= sizeof pckbd_xtbl) datain = 0; else datain = pckbd_xtbl[datain]; } if (datain == 0) { /* * We don't know how to translate this scan code, but * we can't silently eat it either (because there might * have been an extended byte transmitted already). * Hopefully this value will be harmless to the upper * layers. */ return 0xff; } return datain; } static int pckbd_decode(id, datain, type, dataout) struct pckbd_internal *id; int datain; u_int *type; int *dataout; { int key; int releasing; if (datain == KBR_EXTENDED0) { id->t_extended = 0x80; return 0; } else if (datain == KBR_EXTENDED1) { id->t_extended1 = 2; return 0; } releasing = datain & 0x80; datain &= 0x7f; /* * process BREAK key sequence (EXT1 1D 45 / EXT1 9D C5): * map to (unused) code 7F */ if (id->t_extended1 == 2 && datain == 0x1d) { id->t_extended1 = 1; return 0; } else if (id->t_extended1 == 1 && datain == 0x45) { id->t_extended1 = 0; datain = 0x7f; } else id->t_extended1 = 0; if (id->t_translating != 0 || id->t_table == 1) { id->t_releasing = releasing; } else { /* id->t_releasing computed in pckbd_scancode_translate() */ } /* map extended keys to (unused) codes 128-254 */ key = datain | id->t_extended; id->t_extended = 0; if (id->t_releasing) { id->t_releasing = 0; id->t_lastchar = 0; *type = WSCONS_EVENT_KEY_UP; } else { /* Always ignore typematic keys */ if (key == id->t_lastchar) return(0); id->t_lastchar = key; *type = WSCONS_EVENT_KEY_DOWN; } *dataout = key; return 1; } int pckbd_init(t, kbctag, kbcslot, console) struct pckbd_internal *t; pckbc_tag_t kbctag; pckbc_slot_t kbcslot; int console; { bzero(t, sizeof(struct pckbd_internal)); t->t_isconsole = console; t->t_kbctag = kbctag; t->t_kbcslot = kbcslot; return (pckbd_set_xtscancode(kbctag, kbcslot, t)); } static int pckbd_led_encode(led) int led; { int res; res = 0; if (led & WSKBD_LED_SCROLL) res |= 0x01; if (led & WSKBD_LED_NUM) res |= 0x02; if (led & WSKBD_LED_CAPS) res |= 0x04; return(res); } static int pckbd_led_decode(led) int led; { int res; res = 0; if (led & 0x01) res |= WSKBD_LED_SCROLL; if (led & 0x02) res |= WSKBD_LED_NUM; if (led & 0x04) res |= WSKBD_LED_CAPS; return(res); } void pckbd_set_leds(v, leds) void *v; int leds; { struct pckbd_softc *sc = v; u_char cmd[2]; cmd[0] = KBC_MODEIND; cmd[1] = pckbd_led_encode(leds); sc->sc_ledstate = cmd[1]; (void) pckbc_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 2, 0, 0, 0); } /* * Got a console receive interrupt - * the console processor wants to give us a character. */ void pckbd_input(vsc, data) void *vsc; int data; { struct pckbd_softc *sc = vsc; int rc, type, key; data = pckbd_scancode_translate(sc->id, data); if (data == 0) return; rc = pckbd_decode(sc->id, data, &type, &key); #ifdef WSDISPLAY_COMPAT_RAWKBD if (sc->rawkbd) { sc->sc_rawbuf[sc->sc_rawcnt++] = (char)data; if (rc != 0 || sc->sc_rawcnt == sizeof(sc->sc_rawbuf)) { wskbd_rawinput(sc->sc_wskbddev, sc->sc_rawbuf, sc->sc_rawcnt); sc->sc_rawcnt = 0; } /* * Pass audio keys to wskbd_input anyway. */ if (rc == 0 || (key != 160 && key != 174 && key != 176)) return; } #endif if (rc != 0) wskbd_input(sc->sc_wskbddev, type, key); } int pckbd_ioctl(v, cmd, data, flag, p) void *v; u_long cmd; caddr_t data; int flag; struct proc *p; { struct pckbd_softc *sc = v; switch (cmd) { case WSKBDIO_GTYPE: *(int *)data = WSKBD_TYPE_PC_XT; return 0; case WSKBDIO_SETLEDS: { char cmd[2]; int res; cmd[0] = KBC_MODEIND; cmd[1] = pckbd_led_encode(*(int *)data); sc->sc_ledstate = cmd[1]; res = pckbc_enqueue_cmd(sc->id->t_kbctag, sc->id->t_kbcslot, cmd, 2, 0, 1, 0); return (res); } case WSKBDIO_GETLEDS: *(int *)data = pckbd_led_decode(sc->sc_ledstate); return (0); case WSKBDIO_COMPLEXBELL: #define d ((struct wskbd_bell_data *)data) /* * Keyboard can't beep directly; we have an * externally-provided global hook to do this. */ pckbd_bell(d->pitch, d->period, d->volume, 0); #undef d return (0); #ifdef WSDISPLAY_COMPAT_RAWKBD case WSKBDIO_SETMODE: sc->rawkbd = (*(int *)data == WSKBD_RAW); return (0); #endif } return -1; } void pckbd_bell(pitch, period, volume, poll) u_int pitch, period, volume; int poll; { if (pckbd_bell_fn != NULL) (*pckbd_bell_fn)(pckbd_bell_fn_arg, pitch, period, volume, poll); } void pckbd_hookup_bell(fn, arg) void (*fn)(void *, u_int, u_int, u_int, int); void *arg; { if (pckbd_bell_fn == NULL) { pckbd_bell_fn = fn; pckbd_bell_fn_arg = arg; } } int pckbd_cnattach(kbctag, kbcslot) pckbc_tag_t kbctag; int kbcslot; { char cmd[1]; int res; res = pckbd_init(&pckbd_consdata, kbctag, kbcslot, 1); #if 0 /* we allow the console to be attached if no keyboard is present */ if (res) return (res); #endif /* Just to be sure. */ cmd[0] = KBC_ENABLE; res = pckbc_poll_cmd(kbctag, kbcslot, cmd, 1, 0, NULL, 0); #if 0 if (res) return (res); #endif wskbd_cnattach(&pckbd_consops, &pckbd_consdata, &pckbd_keymapdata); return (0); } /* ARGSUSED */ void pckbd_cngetc(v, type, data) void *v; u_int *type; int *data; { struct pckbd_internal *t = v; int val; for (;;) { val = pckbc_poll_data(t->t_kbctag, t->t_kbcslot); if (val == -1) continue; val = pckbd_scancode_translate(t, val); if (val == 0) continue; if (pckbd_decode(t, val, type, data)) return; } } void pckbd_cnpollc(v, on) void *v; int on; { struct pckbd_internal *t = v; pckbc_set_poll(t->t_kbctag, t->t_kbcslot, on); } void pckbd_cnbell(v, pitch, period, volume) void *v; u_int pitch, period, volume; { pckbd_bell(pitch, period, volume, 1); } struct cfdriver pckbd_cd = { NULL, "pckbd", DV_DULL };