1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
/* $OpenBSD: hilkbd.c,v 1.3 2003/02/15 23:38:46 miod Exp $ */
/*
* Copyright (c) 2003, Miodrag Vallat.
* All rights reserved.
*
* 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 AUTHOR ``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 AUTHOR 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.
*
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <dev/hil/hilreg.h>
#include <dev/hil/hilvar.h>
#include <dev/hil/hildevs.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wskbdvar.h>
#include <dev/wscons/wsksymdef.h>
#include <dev/wscons/wsksymvar.h>
#include <dev/hil/hilkbdmap.h>
struct hilkbd_softc {
struct device sc_dev;
int sc_code;
int sc_numleds;
int sc_ledstate;
struct device *sc_wskbddev;
};
int hilkbdprobe(struct device *, void *, void *);
void hilkbdattach(struct device *, struct device *, void *);
struct cfdriver hilkbd_cd = {
NULL, "hilkbd", DV_DULL
};
struct cfattach hilkbd_ca = {
sizeof(struct hilkbd_softc), hilkbdprobe, hilkbdattach
};
int hilkbd_enable(void *, int);
void hilkbd_set_leds(void *, int);
int hilkbd_ioctl(void *, u_long, caddr_t, int, struct proc *);
const struct wskbd_accessops hilkbd_accessops = {
hilkbd_enable,
hilkbd_set_leds,
hilkbd_ioctl,
};
void hilkbd_cngetc(void *, u_int *, int *);
void hilkbd_cnpollc(void *, int);
void hilkbd_cnbell(void *, u_int, u_int, u_int);
const struct wskbd_consops hilkbd_consops = {
hilkbd_cngetc,
hilkbd_cnpollc,
hilkbd_cnbell,
};
struct wskbd_mapdata hilkbd_keymapdata = {
hilkbd_keydesctab,
#ifdef HILKBD_LAYOUT
HILKBD_LAYOUT,
#else
KB_US,
#endif
};
void hilkbd_bell(struct hil_softc *, u_int, u_int, u_int);
void hilkbd_callback(void *, u_int, u_int8_t *);
void hilkbd_decode(u_int8_t, u_int8_t, u_int *, int *);
int
hilkbdprobe(struct device *parent, void *match, void *aux)
{
struct hil_attach_args *ha = aux;
if (ha->ha_type != HIL_DEVICE_KEYBOARD)
return (0);
return (1);
}
void
hilkbdattach(struct device *parent, struct device *self, void *aux)
{
struct hilkbd_softc *sc = (void *)self;
struct hil_attach_args *ha = aux;
struct wskbddev_attach_args a;
u_int8_t layoutcode;
sc->sc_code = ha->ha_code;
/*
* Determine the keyboard language configuration, but don't
* override a user-specified setting.
*/
layoutcode = ha->ha_id & (MAXHILKBDLAYOUT - 1);
#ifndef HILKBD_LAYOUT
if (layoutcode < MAXHILKBDLAYOUT &&
hilkbd_layouts[layoutcode] != -1)
hilkbd_keymapdata.layout = hilkbd_layouts[layoutcode];
#endif
printf(", layout %x", layoutcode);
/*
* Interpret the identification bytes, if any
*/
if (ha->ha_infolen > 2 && (ha->ha_info[1] & HIL_IOB) != 0) {
if (ha->ha_info[2] & HILIOB_PROMPT) {
sc->sc_numleds = (ha->ha_info[2] & HILIOB_PMASK) >> 4;
printf(", %d leds", sc->sc_numleds);
}
}
hil_callback_register((struct hil_softc *)parent, ha->ha_code,
hilkbd_callback, sc);
printf("\n");
a.console = ha->ha_flags;
a.keymap = &hilkbd_keymapdata;
a.accessops = &hilkbd_accessops;
a.accesscookie = sc;
if (a.console) {
wskbd_cnattach(&hilkbd_consops, sc, &hilkbd_keymapdata);
}
sc->sc_wskbddev = config_found(self, &a, wskbddevprint);
}
int
hilkbd_enable(void *v, int on)
{
return (0);
}
void
hilkbd_set_leds(void *v, int leds)
{
struct hilkbd_softc *sc = v;
int changemask;
if (sc->sc_numleds == 0)
return;
changemask = leds ^ sc->sc_ledstate;
if (changemask == 0)
return;
/* We do not handle more than 3 leds here */
if (changemask & WSKBD_LED_SCROLL)
send_hildev_cmd((struct hil_softc *)sc->sc_dev.dv_parent,
sc->sc_code,
(leds & WSKBD_LED_SCROLL) ? HIL_PROMPT1 : HIL_ACK1,
NULL, NULL);
if (changemask & WSKBD_LED_NUM)
send_hildev_cmd((struct hil_softc *)sc->sc_dev.dv_parent,
sc->sc_code,
(leds & WSKBD_LED_NUM) ? HIL_PROMPT2 : HIL_ACK2,
NULL, NULL);
if (changemask & WSKBD_LED_CAPS)
send_hildev_cmd((struct hil_softc *)sc->sc_dev.dv_parent,
sc->sc_code,
(leds & WSKBD_LED_CAPS) ? HIL_PROMPT3 : HIL_ACK3,
NULL, NULL);
sc->sc_ledstate = leds;
}
int
hilkbd_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
{
struct hilkbd_softc *sc = v;
switch (cmd) {
case WSKBDIO_GTYPE:
*(int *)data = WSKBD_TYPE_HIL;
return 0;
case WSKBDIO_SETLEDS:
hilkbd_set_leds(v, *(int *)data);
return 0;
case WSKBDIO_GETLEDS:
*(int *)data = sc->sc_ledstate;
return 0;
case WSKBDIO_COMPLEXBELL:
#define d ((struct wskbd_bell_data *)data)
hilkbd_bell((struct hil_softc *)sc->sc_dev.dv_parent,
d->pitch, d->period, d->volume);
#undef d
return 0;
}
return -1;
}
void
hilkbd_cngetc(void *v, u_int *type, int *data)
{
struct hil_softc *sc = v;
u_int8_t c, stat;
/* XXX This should really filter on keyboard events only */
for (;;) {
if (hil_poll_data(sc, &stat, &c) != -1)
break;
}
hilkbd_decode(stat, c, type, data);
}
void
hilkbd_cnpollc(void *v, int on)
{
struct hil_softc *sc = v;
hil_set_poll(sc, on);
}
void
hilkbd_cnbell(void *v, u_int pitch, u_int period, u_int volume)
{
struct hil_softc *sc = v;
hilkbd_bell(sc, pitch, period, volume);
}
void
hilkbd_bell(struct hil_softc *sc, u_int pitch, u_int period, u_int volume)
{
u_int8_t buf[2];
/* XXX there could be at least a pitch -> HIL pitch conversion here */
#define BELLDUR 80 /* tone duration in msec (10-2560) */
#define BELLFREQ 8 /* tone frequency (0-63) */
buf[0] = ar_format(period - 10);
buf[1] = BELLFREQ;
send_hil_cmd(sc, HIL_SETTONE, buf, 2, NULL);
}
void
hilkbd_callback(void *v, u_int buflen, u_int8_t *buf)
{
struct hilkbd_softc *sc = v;
u_int type;
int key;
int i;
if (buflen > 1 && *buf == HIL_KBDDATA) {
for (i = 1, buf++; i < buflen; i++) {
hilkbd_decode(0, *buf++, &type, &key);
if (sc->sc_wskbddev != NULL)
wskbd_input(sc->sc_wskbddev, type, key);
}
}
}
void
hilkbd_decode(u_int8_t stat, u_int8_t data, u_int *type, int *key)
{
*type = (data & 1) ? WSCONS_EVENT_KEY_UP : WSCONS_EVENT_KEY_DOWN;
*key = data >> 1;
}
|