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