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