dnkbd.c revision 1.1 1 1.1 thorpej /* $NetBSD: dnkbd.c,v 1.1 1997/04/14 19:03:13 thorpej 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.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
30 1.1 thorpej * 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.1 thorpej #include <hp300/dev/dcareg.h> /* for the register bit defintions */
48 1.1 thorpej #include <hp300/dev/apcireg.h> /* for the apci registers */
49 1.1 thorpej
50 1.1 thorpej #include <hp300/stand/common/samachdep.h>
51 1.1 thorpej #include <hp300/stand/common/kbdvar.h>
52 1.1 thorpej
53 1.1 thorpej #ifndef SMALL
54 1.1 thorpej
55 1.1 thorpej /*
56 1.1 thorpej * The Apollo keyboard is used in `cooked' mode as configured by the
57 1.1 thorpej * firmware; only one table is required.
58 1.1 thorpej *
59 1.1 thorpej * Note that if an entry in this table is set to 0, the key is passed
60 1.1 thorpej * through untranslated. If the entry is 0xff, the key is ignored.
61 1.1 thorpej */
62 1.1 thorpej u_char dnkbd_keymap[] = {
63 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 07 */
64 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0f */
65 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 17 */
66 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 1f */
67 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 27 */
68 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 2f */
69 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 37 */
70 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 3f */
71 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 47 */
72 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 4f */
73 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 57 */
74 1.1 thorpej 0x00, 0x00, 0x00, '{', 0x00, '}', 0x00, 0x00, /* 5f */
75 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 67 */
76 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 6f */
77 1.1 thorpej 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 77 */
78 1.1 thorpej 0x00, 0x00, 0x00, '[', 0x00, ']', 0x00, 0x00, /* 7f */
79 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 87 */
80 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 8f */
81 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 97 */
82 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 9f */
83 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* a7 */
84 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* af */
85 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* b7 */
86 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* bf */
87 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* c7 */
88 1.1 thorpej '\\', '|', 0x09, 0x0a, '/', 0xff, 0xff, 0xff, /* cf */
89 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* d7 */
90 1.1 thorpej 0xff, 0xff, 0xff, 0xff, '?', 0xff, 0x08, 0xff, /* df */
91 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* e7 */
92 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ef */
93 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* f7 */
94 1.1 thorpej 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ff */
95 1.1 thorpej };
96 1.1 thorpej
97 1.1 thorpej int dnkbd_ignore; /* for ignoring mouse packets */
98 1.1 thorpej
99 1.1 thorpej int
100 1.1 thorpej dnkbd_getc()
101 1.1 thorpej {
102 1.1 thorpej struct apciregs *apci = (struct apciregs *)0x41c000; /* XXX */
103 1.1 thorpej int c;
104 1.1 thorpej
105 1.1 thorpej /* default to `no key' */
106 1.1 thorpej c = 0;
107 1.1 thorpej
108 1.1 thorpej /* Is data in the UART? */
109 1.1 thorpej if (apci->ap_lsr & LSR_RXRDY) {
110 1.1 thorpej /* Get the character. */
111 1.1 thorpej c = apci->ap_data;
112 1.1 thorpej
113 1.1 thorpej /* Ignoring mouse? */
114 1.1 thorpej if (dnkbd_ignore) {
115 1.1 thorpej dnkbd_ignore--;
116 1.1 thorpej return (0);
117 1.1 thorpej }
118 1.1 thorpej
119 1.1 thorpej /* Is this the start of a mouse packet? */
120 1.1 thorpej if (c == 0xdf) {
121 1.1 thorpej dnkbd_ignore = 3; /* 3 bytes of junk */
122 1.1 thorpej return (0);
123 1.1 thorpej }
124 1.1 thorpej
125 1.1 thorpej /* It's a keyboard event. */
126 1.1 thorpej switch (dnkbd_keymap[c]) {
127 1.1 thorpej case 0x00:
128 1.1 thorpej /* passthrough */
129 1.1 thorpej break;
130 1.1 thorpej
131 1.1 thorpej case 0xff:
132 1.1 thorpej /* ignore */
133 1.1 thorpej c = 0;
134 1.1 thorpej break;
135 1.1 thorpej
136 1.1 thorpej default:
137 1.1 thorpej c = dnkbd_keymap[c];
138 1.1 thorpej break;
139 1.1 thorpej }
140 1.1 thorpej }
141 1.1 thorpej
142 1.1 thorpej return (c);
143 1.1 thorpej }
144 1.1 thorpej #endif /* SMALL */
145 1.1 thorpej
146 1.1 thorpej void
147 1.1 thorpej dnkbd_nmi()
148 1.1 thorpej {
149 1.1 thorpej
150 1.1 thorpej /*
151 1.1 thorpej * XXX Should we do anything? Can we even generate one?
152 1.1 thorpej */
153 1.1 thorpej }
154 1.1 thorpej
155 1.1 thorpej int
156 1.1 thorpej dnkbd_init()
157 1.1 thorpej {
158 1.1 thorpej
159 1.1 thorpej /*
160 1.1 thorpej * Look for a Frodo utility chip. If we find one, assume there
161 1.1 thorpej * is a Domain keyboard attached.
162 1.1 thorpej *
163 1.1 thorpej * XXX This could be improved.
164 1.1 thorpej */
165 1.1 thorpej if (badaddr(0x41c000))
166 1.1 thorpej return (0);
167 1.1 thorpej
168 1.1 thorpej /*
169 1.1 thorpej * XXX Any other initialization? This appears to work ok.
170 1.1 thorpej */
171 1.1 thorpej return (1);
172 1.1 thorpej }
173 1.1 thorpej #endif /* ITECONSOLE && DOMAIN_KEYBOARD */
174