1 1.13 tsutsui /* $NetBSD: dnkbd.c,v 1.13 2014/04/22 15:49:14 tsutsui Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /*- 4 1.1 thorpej * Copyright (c) 1997 The NetBSD Foundation, Inc. 5 1.1 thorpej * All rights reserved. 6 1.1 thorpej * 7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation 8 1.1 thorpej * by Michael Smith and Jason R. Thorpe. 9 1.1 thorpej * 10 1.1 thorpej * Redistribution and use in source and binary forms, with or without 11 1.1 thorpej * modification, are permitted provided that the following conditions 12 1.1 thorpej * are met: 13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright 14 1.1 thorpej * notice, this list of conditions and the following disclaimer. 15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the 17 1.1 thorpej * documentation and/or other materials provided with the distribution. 18 1.1 thorpej * 19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.4 jtc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.4 jtc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE. 30 1.1 thorpej */ 31 1.1 thorpej 32 1.1 thorpej /* 33 1.1 thorpej * Apollo Domain keyboard routines for the standalone ITE. 34 1.1 thorpej */ 35 1.1 thorpej 36 1.1 thorpej #if defined(ITECONSOLE) && defined(DOMAIN_KEYBOARD) 37 1.1 thorpej 38 1.1 thorpej #include <sys/param.h> 39 1.1 thorpej 40 1.3 thorpej #include <hp300/dev/frodoreg.h> /* for apci offsets */ 41 1.10 tsutsui #include <hp300/dev/intioreg.h> /* for frodo offsets */ 42 1.1 thorpej 43 1.6 tsutsui #include <hp300/stand/common/dcareg.h> /* for the register bit definitions */ 44 1.6 tsutsui #include <hp300/stand/common/apcireg.h> /* for the apci registers */ 45 1.1 thorpej #include <hp300/stand/common/samachdep.h> 46 1.1 thorpej #include <hp300/stand/common/kbdvar.h> 47 1.1 thorpej 48 1.1 thorpej #ifndef SMALL 49 1.1 thorpej 50 1.1 thorpej /* 51 1.1 thorpej * The Apollo keyboard is used in `cooked' mode as configured by the 52 1.1 thorpej * firmware; only one table is required. 53 1.1 thorpej * 54 1.1 thorpej * Note that if an entry in this table is set to 0, the key is passed 55 1.1 thorpej * through untranslated. If the entry is 0xff, the key is ignored. 56 1.1 thorpej */ 57 1.1 thorpej u_char dnkbd_keymap[] = { 58 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 07 */ 59 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0f */ 60 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 17 */ 61 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 1f */ 62 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 27 */ 63 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 2f */ 64 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 37 */ 65 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 3f */ 66 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 47 */ 67 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 4f */ 68 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 57 */ 69 1.1 thorpej 0x00, 0x00, 0x00, '{', 0x00, '}', 0x00, 0x00, /* 5f */ 70 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 67 */ 71 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 6f */ 72 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 77 */ 73 1.1 thorpej 0x00, 0x00, 0x00, '[', 0x00, ']', 0x00, 0x00, /* 7f */ 74 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 87 */ 75 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 8f */ 76 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 97 */ 77 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 9f */ 78 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* a7 */ 79 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* af */ 80 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* b7 */ 81 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* bf */ 82 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* c7 */ 83 1.1 thorpej '\\', '|', 0x09, 0x0a, '/', 0xff, 0xff, 0xff, /* cf */ 84 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* d7 */ 85 1.1 thorpej 0xff, 0xff, 0xff, 0xff, '?', 0xff, 0x08, 0xff, /* df */ 86 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* e7 */ 87 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ef */ 88 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* f7 */ 89 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ff */ 90 1.1 thorpej }; 91 1.1 thorpej 92 1.1 thorpej int dnkbd_ignore; /* for ignoring mouse packets */ 93 1.1 thorpej 94 1.1 thorpej int 95 1.8 tsutsui dnkbd_getc(void) 96 1.1 thorpej { 97 1.3 thorpej struct apciregs *apci = 98 1.13 tsutsui (struct apciregs *)IIOV(INTIOBASE + FRODO_BASE + 99 1.13 tsutsui FRODO_APCI_OFFSET(0)); 100 1.1 thorpej int c; 101 1.1 thorpej 102 1.1 thorpej /* default to `no key' */ 103 1.1 thorpej c = 0; 104 1.1 thorpej 105 1.1 thorpej /* Is data in the UART? */ 106 1.1 thorpej if (apci->ap_lsr & LSR_RXRDY) { 107 1.1 thorpej /* Get the character. */ 108 1.1 thorpej c = apci->ap_data; 109 1.1 thorpej 110 1.1 thorpej /* Ignoring mouse? */ 111 1.1 thorpej if (dnkbd_ignore) { 112 1.1 thorpej dnkbd_ignore--; 113 1.7 tsutsui return 0; 114 1.1 thorpej } 115 1.1 thorpej 116 1.1 thorpej /* Is this the start of a mouse packet? */ 117 1.1 thorpej if (c == 0xdf) { 118 1.1 thorpej dnkbd_ignore = 3; /* 3 bytes of junk */ 119 1.7 tsutsui return 0; 120 1.1 thorpej } 121 1.1 thorpej 122 1.1 thorpej /* It's a keyboard event. */ 123 1.1 thorpej switch (dnkbd_keymap[c]) { 124 1.1 thorpej case 0x00: 125 1.1 thorpej /* passthrough */ 126 1.1 thorpej break; 127 1.1 thorpej 128 1.1 thorpej case 0xff: 129 1.1 thorpej /* ignore */ 130 1.1 thorpej c = 0; 131 1.1 thorpej break; 132 1.1 thorpej 133 1.1 thorpej default: 134 1.1 thorpej c = dnkbd_keymap[c]; 135 1.1 thorpej break; 136 1.1 thorpej } 137 1.1 thorpej } 138 1.1 thorpej 139 1.7 tsutsui return c; 140 1.1 thorpej } 141 1.1 thorpej #endif /* SMALL */ 142 1.1 thorpej 143 1.1 thorpej void 144 1.8 tsutsui dnkbd_nmi(void) 145 1.1 thorpej { 146 1.1 thorpej 147 1.1 thorpej /* 148 1.1 thorpej * XXX Should we do anything? Can we even generate one? 149 1.1 thorpej */ 150 1.1 thorpej } 151 1.1 thorpej 152 1.1 thorpej int 153 1.8 tsutsui dnkbd_init(void) 154 1.1 thorpej { 155 1.2 thorpej 156 1.2 thorpej /* 157 1.2 thorpej * 400, 425, and 433 models can have a Domain keyboard. 158 1.2 thorpej */ 159 1.2 thorpej switch (machineid) { 160 1.2 thorpej case HP_400: 161 1.2 thorpej case HP_425: 162 1.2 thorpej case HP_433: 163 1.2 thorpej break; 164 1.2 thorpej default: 165 1.7 tsutsui return 0; 166 1.2 thorpej } 167 1.1 thorpej 168 1.1 thorpej /* 169 1.1 thorpej * Look for a Frodo utility chip. If we find one, assume there 170 1.1 thorpej * is a Domain keyboard attached. 171 1.1 thorpej */ 172 1.13 tsutsui if (badaddr((void *)IIOV(INTIOBASE + FRODO_BASE + 173 1.13 tsutsui FRODO_APCI_OFFSET(0)))) 174 1.7 tsutsui return 0; 175 1.1 thorpej 176 1.1 thorpej /* 177 1.1 thorpej * XXX Any other initialization? This appears to work ok. 178 1.1 thorpej */ 179 1.7 tsutsui return 1; 180 1.1 thorpej } 181 1.1 thorpej #endif /* ITECONSOLE && DOMAIN_KEYBOARD */ 182