pckbc.c revision 1.4 1 1.4 sommerfe /* $NetBSD: pckbc.c,v 1.4 2000/06/06 16:21:22 sommerfeld Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1998
5 1.1 thorpej * Matthias Drochner. All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
16 1.1 thorpej * must display the following acknowledgement:
17 1.1 thorpej * This product includes software developed for the NetBSD Project
18 1.1 thorpej * by Matthias Drochner.
19 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
20 1.1 thorpej * derived from this software without specific prior written permission.
21 1.1 thorpej *
22 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 thorpej */
33 1.1 thorpej
34 1.1 thorpej #include <sys/param.h>
35 1.1 thorpej #include <sys/systm.h>
36 1.2 thorpej #include <sys/callout.h>
37 1.1 thorpej #include <sys/kernel.h>
38 1.1 thorpej #include <sys/proc.h>
39 1.1 thorpej #include <sys/device.h>
40 1.1 thorpej #include <sys/malloc.h>
41 1.1 thorpej #include <sys/errno.h>
42 1.1 thorpej #include <sys/queue.h>
43 1.1 thorpej #include <sys/lock.h>
44 1.1 thorpej
45 1.1 thorpej #include <machine/bus.h>
46 1.1 thorpej
47 1.1 thorpej #include <dev/ic/i8042reg.h>
48 1.1 thorpej #include <dev/ic/pckbcvar.h>
49 1.1 thorpej
50 1.3 sommerfe #include "rnd.h"
51 1.1 thorpej #include "locators.h"
52 1.1 thorpej
53 1.1 thorpej #ifdef __HAVE_NWSCONS /* XXX: this port uses sys/dev/pckbc */
54 1.1 thorpej #include "pckbd.h"
55 1.1 thorpej #else /* ie: only md drivers attach to pckbc */
56 1.1 thorpej #define NPCKBD 0
57 1.1 thorpej #endif
58 1.1 thorpej #if (NPCKBD > 0)
59 1.1 thorpej #include <dev/pckbc/pckbdvar.h>
60 1.1 thorpej #endif
61 1.3 sommerfe #if NRND > 0
62 1.3 sommerfe #include <sys/rnd.h>
63 1.3 sommerfe #endif
64 1.1 thorpej
65 1.1 thorpej /* descriptor for one device command */
66 1.1 thorpej struct pckbc_devcmd {
67 1.1 thorpej TAILQ_ENTRY(pckbc_devcmd) next;
68 1.1 thorpej int flags;
69 1.1 thorpej #define KBC_CMDFLAG_SYNC 1 /* give descriptor back to caller */
70 1.1 thorpej #define KBC_CMDFLAG_SLOW 2
71 1.1 thorpej u_char cmd[4];
72 1.1 thorpej int cmdlen, cmdidx, retries;
73 1.1 thorpej u_char response[4];
74 1.1 thorpej int status, responselen, responseidx;
75 1.1 thorpej };
76 1.1 thorpej
77 1.1 thorpej /* data per slave device */
78 1.1 thorpej struct pckbc_slotdata {
79 1.1 thorpej int polling; /* don't read data port in interrupt handler */
80 1.1 thorpej TAILQ_HEAD(, pckbc_devcmd) cmdqueue; /* active commands */
81 1.1 thorpej TAILQ_HEAD(, pckbc_devcmd) freequeue; /* free commands */
82 1.1 thorpej #define NCMD 5
83 1.1 thorpej struct pckbc_devcmd cmds[NCMD];
84 1.3 sommerfe #if NRND > 0
85 1.3 sommerfe rndsource_element_t rnd_source;
86 1.3 sommerfe #endif
87 1.1 thorpej };
88 1.1 thorpej
89 1.1 thorpej #define CMD_IN_QUEUE(q) (TAILQ_FIRST(&(q)->cmdqueue) != NULL)
90 1.1 thorpej
91 1.1 thorpej void pckbc_init_slotdata __P((struct pckbc_slotdata *));
92 1.1 thorpej int pckbc_attach_slot __P((struct pckbc_softc *, pckbc_slot_t));
93 1.1 thorpej int pckbc_submatch __P((struct device *, struct cfdata *, void *));
94 1.1 thorpej int pckbcprint __P((void *, const char *));
95 1.1 thorpej
96 1.1 thorpej struct pckbc_internal pckbc_consdata;
97 1.1 thorpej int pckbc_console_attached;
98 1.1 thorpej
99 1.1 thorpej static int pckbc_console;
100 1.1 thorpej static struct pckbc_slotdata pckbc_cons_slotdata;
101 1.1 thorpej
102 1.1 thorpej static int pckbc_wait_output __P((bus_space_tag_t, bus_space_handle_t));
103 1.1 thorpej
104 1.1 thorpej static int pckbc_get8042cmd __P((struct pckbc_internal *));
105 1.1 thorpej static int pckbc_put8042cmd __P((struct pckbc_internal *));
106 1.1 thorpej static int pckbc_send_devcmd __P((struct pckbc_internal *, pckbc_slot_t,
107 1.1 thorpej u_char));
108 1.1 thorpej static void pckbc_poll_cmd1 __P((struct pckbc_internal *, pckbc_slot_t,
109 1.1 thorpej struct pckbc_devcmd *));
110 1.1 thorpej
111 1.1 thorpej void pckbc_cleanqueue __P((struct pckbc_slotdata *));
112 1.1 thorpej void pckbc_cleanup __P((void *));
113 1.1 thorpej int pckbc_cmdresponse __P((struct pckbc_internal *, pckbc_slot_t, u_char));
114 1.1 thorpej void pckbc_start __P((struct pckbc_internal *, pckbc_slot_t));
115 1.1 thorpej
116 1.1 thorpej const char *pckbc_slot_names[] = { "kbd", "aux" };
117 1.1 thorpej
118 1.1 thorpej #define KBC_DEVCMD_ACK 0xfa
119 1.1 thorpej #define KBC_DEVCMD_RESEND 0xfe
120 1.1 thorpej
121 1.1 thorpej #define KBD_DELAY DELAY(8)
122 1.1 thorpej
123 1.1 thorpej static inline int
124 1.1 thorpej pckbc_wait_output(iot, ioh_c)
125 1.1 thorpej bus_space_tag_t iot;
126 1.1 thorpej bus_space_handle_t ioh_c;
127 1.1 thorpej {
128 1.1 thorpej u_int i;
129 1.1 thorpej
130 1.1 thorpej for (i = 100000; i; i--)
131 1.1 thorpej if (!(bus_space_read_1(iot, ioh_c, 0) & KBS_IBF)) {
132 1.1 thorpej KBD_DELAY;
133 1.1 thorpej return (1);
134 1.1 thorpej }
135 1.1 thorpej return (0);
136 1.1 thorpej }
137 1.1 thorpej
138 1.1 thorpej int
139 1.1 thorpej pckbc_send_cmd(iot, ioh_c, val)
140 1.1 thorpej bus_space_tag_t iot;
141 1.1 thorpej bus_space_handle_t ioh_c;
142 1.1 thorpej u_char val;
143 1.1 thorpej {
144 1.1 thorpej if (!pckbc_wait_output(iot, ioh_c))
145 1.1 thorpej return (0);
146 1.1 thorpej bus_space_write_1(iot, ioh_c, 0, val);
147 1.1 thorpej return (1);
148 1.1 thorpej }
149 1.1 thorpej
150 1.1 thorpej int
151 1.1 thorpej pckbc_poll_data1(iot, ioh_d, ioh_c, slot, checkaux)
152 1.1 thorpej bus_space_tag_t iot;
153 1.1 thorpej bus_space_handle_t ioh_d, ioh_c;
154 1.1 thorpej pckbc_slot_t slot;
155 1.1 thorpej int checkaux;
156 1.1 thorpej {
157 1.1 thorpej int i;
158 1.1 thorpej u_char stat;
159 1.1 thorpej
160 1.1 thorpej /* if 1 port read takes 1us (?), this polls for 100ms */
161 1.1 thorpej for (i = 100000; i; i--) {
162 1.1 thorpej stat = bus_space_read_1(iot, ioh_c, 0);
163 1.1 thorpej if (stat & KBS_DIB) {
164 1.1 thorpej register u_char c;
165 1.1 thorpej
166 1.1 thorpej KBD_DELAY;
167 1.1 thorpej c = bus_space_read_1(iot, ioh_d, 0);
168 1.1 thorpej if (checkaux && (stat & 0x20)) { /* aux data */
169 1.1 thorpej if (slot != PCKBC_AUX_SLOT) {
170 1.1 thorpej #ifdef PCKBCDEBUG
171 1.1 thorpej printf("lost aux 0x%x\n", c);
172 1.1 thorpej #endif
173 1.1 thorpej continue;
174 1.1 thorpej }
175 1.1 thorpej } else {
176 1.1 thorpej if (slot == PCKBC_AUX_SLOT) {
177 1.1 thorpej #ifdef PCKBCDEBUG
178 1.1 thorpej printf("lost kbd 0x%x\n", c);
179 1.1 thorpej #endif
180 1.1 thorpej continue;
181 1.1 thorpej }
182 1.1 thorpej }
183 1.1 thorpej return (c);
184 1.1 thorpej }
185 1.1 thorpej }
186 1.1 thorpej return (-1);
187 1.1 thorpej }
188 1.1 thorpej
189 1.1 thorpej /*
190 1.1 thorpej * Get the current command byte.
191 1.1 thorpej */
192 1.1 thorpej static int
193 1.1 thorpej pckbc_get8042cmd(t)
194 1.1 thorpej struct pckbc_internal *t;
195 1.1 thorpej {
196 1.1 thorpej bus_space_tag_t iot = t->t_iot;
197 1.1 thorpej bus_space_handle_t ioh_d = t->t_ioh_d;
198 1.1 thorpej bus_space_handle_t ioh_c = t->t_ioh_c;
199 1.1 thorpej int data;
200 1.1 thorpej
201 1.1 thorpej if (!pckbc_send_cmd(iot, ioh_c, K_RDCMDBYTE))
202 1.1 thorpej return (0);
203 1.1 thorpej data = pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT,
204 1.1 thorpej t->t_haveaux);
205 1.1 thorpej if (data == -1)
206 1.1 thorpej return (0);
207 1.1 thorpej t->t_cmdbyte = data;
208 1.1 thorpej return (1);
209 1.1 thorpej }
210 1.1 thorpej
211 1.1 thorpej /*
212 1.1 thorpej * Pass command byte to keyboard controller (8042).
213 1.1 thorpej */
214 1.1 thorpej static int
215 1.1 thorpej pckbc_put8042cmd(t)
216 1.1 thorpej struct pckbc_internal *t;
217 1.1 thorpej {
218 1.1 thorpej bus_space_tag_t iot = t->t_iot;
219 1.1 thorpej bus_space_handle_t ioh_d = t->t_ioh_d;
220 1.1 thorpej bus_space_handle_t ioh_c = t->t_ioh_c;
221 1.1 thorpej
222 1.1 thorpej if (!pckbc_send_cmd(iot, ioh_c, K_LDCMDBYTE))
223 1.1 thorpej return (0);
224 1.1 thorpej if (!pckbc_wait_output(iot, ioh_c))
225 1.1 thorpej return (0);
226 1.1 thorpej bus_space_write_1(iot, ioh_d, 0, t->t_cmdbyte);
227 1.1 thorpej return (1);
228 1.1 thorpej }
229 1.1 thorpej
230 1.1 thorpej static int
231 1.1 thorpej pckbc_send_devcmd(t, slot, val)
232 1.1 thorpej struct pckbc_internal *t;
233 1.1 thorpej pckbc_slot_t slot;
234 1.1 thorpej u_char val;
235 1.1 thorpej {
236 1.1 thorpej bus_space_tag_t iot = t->t_iot;
237 1.1 thorpej bus_space_handle_t ioh_d = t->t_ioh_d;
238 1.1 thorpej bus_space_handle_t ioh_c = t->t_ioh_c;
239 1.1 thorpej
240 1.1 thorpej if (slot == PCKBC_AUX_SLOT) {
241 1.1 thorpej if (!pckbc_send_cmd(iot, ioh_c, KBC_AUXWRITE))
242 1.1 thorpej return (0);
243 1.1 thorpej }
244 1.1 thorpej if (!pckbc_wait_output(iot, ioh_c))
245 1.1 thorpej return (0);
246 1.1 thorpej bus_space_write_1(iot, ioh_d, 0, val);
247 1.1 thorpej return (1);
248 1.1 thorpej }
249 1.1 thorpej
250 1.1 thorpej int
251 1.1 thorpej pckbc_is_console(iot, addr)
252 1.1 thorpej bus_space_tag_t iot;
253 1.1 thorpej bus_addr_t addr;
254 1.1 thorpej {
255 1.1 thorpej if (pckbc_console && !pckbc_console_attached &&
256 1.1 thorpej pckbc_consdata.t_iot == iot &&
257 1.1 thorpej pckbc_consdata.t_addr == addr)
258 1.1 thorpej return (1);
259 1.1 thorpej return (0);
260 1.1 thorpej }
261 1.1 thorpej
262 1.1 thorpej int
263 1.1 thorpej pckbc_submatch(parent, cf, aux)
264 1.1 thorpej struct device *parent;
265 1.1 thorpej struct cfdata *cf;
266 1.1 thorpej void *aux;
267 1.1 thorpej {
268 1.1 thorpej struct pckbc_attach_args *pa = aux;
269 1.1 thorpej
270 1.1 thorpej if (cf->cf_loc[PCKBCCF_SLOT] != PCKBCCF_SLOT_DEFAULT &&
271 1.1 thorpej cf->cf_loc[PCKBCCF_SLOT] != pa->pa_slot)
272 1.1 thorpej return (0);
273 1.1 thorpej return ((*cf->cf_attach->ca_match)(parent, cf, aux));
274 1.1 thorpej }
275 1.1 thorpej
276 1.1 thorpej int
277 1.1 thorpej pckbc_attach_slot(sc, slot)
278 1.1 thorpej struct pckbc_softc *sc;
279 1.1 thorpej pckbc_slot_t slot;
280 1.1 thorpej {
281 1.1 thorpej struct pckbc_internal *t = sc->id;
282 1.1 thorpej struct pckbc_attach_args pa;
283 1.1 thorpej int found;
284 1.1 thorpej
285 1.1 thorpej pa.pa_tag = t;
286 1.1 thorpej pa.pa_slot = slot;
287 1.1 thorpej found = (config_found_sm((struct device *)sc, &pa,
288 1.1 thorpej pckbcprint, pckbc_submatch) != NULL);
289 1.1 thorpej
290 1.1 thorpej if (found && !t->t_slotdata[slot]) {
291 1.1 thorpej t->t_slotdata[slot] = malloc(sizeof(struct pckbc_slotdata),
292 1.1 thorpej M_DEVBUF, M_NOWAIT);
293 1.1 thorpej pckbc_init_slotdata(t->t_slotdata[slot]);
294 1.1 thorpej }
295 1.3 sommerfe #if NRND > 0
296 1.4 sommerfe if (found && (t->t_slotdata[slot] != NULL))
297 1.4 sommerfe rnd_attach_source(&t->t_slotdata[slot]->rnd_source, sc->subname[slot],
298 1.4 sommerfe RND_TYPE_TTY, 0);
299 1.3 sommerfe #endif
300 1.1 thorpej return (found);
301 1.1 thorpej }
302 1.1 thorpej
303 1.1 thorpej void
304 1.1 thorpej pckbc_attach(sc)
305 1.1 thorpej struct pckbc_softc *sc;
306 1.1 thorpej {
307 1.1 thorpej struct pckbc_internal *t;
308 1.1 thorpej bus_space_tag_t iot;
309 1.1 thorpej bus_space_handle_t ioh_d, ioh_c;
310 1.1 thorpej int res;
311 1.1 thorpej u_char cmdbits = 0;
312 1.1 thorpej
313 1.1 thorpej t = sc->id;
314 1.1 thorpej iot = t->t_iot;
315 1.1 thorpej ioh_d = t->t_ioh_d;
316 1.1 thorpej ioh_c = t->t_ioh_c;
317 1.1 thorpej
318 1.1 thorpej /* flush */
319 1.1 thorpej (void) pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
320 1.1 thorpej
321 1.1 thorpej /* set initial cmd byte */
322 1.1 thorpej if (!pckbc_put8042cmd(t)) {
323 1.1 thorpej printf("kbc: cmd word write error\n");
324 1.1 thorpej return;
325 1.1 thorpej }
326 1.1 thorpej
327 1.1 thorpej /*
328 1.1 thorpej * XXX Don't check the keyboard port. There are broken keyboard controllers
329 1.1 thorpej * which don't pass the test but work normally otherwise.
330 1.1 thorpej */
331 1.1 thorpej #if 0
332 1.1 thorpej /*
333 1.1 thorpej * check kbd port ok
334 1.1 thorpej */
335 1.1 thorpej if (!pckbc_send_cmd(iot, ioh_c, KBC_KBDTEST))
336 1.1 thorpej return;
337 1.1 thorpej res = pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
338 1.1 thorpej
339 1.1 thorpej /*
340 1.1 thorpej * Normally, we should get a "0" here.
341 1.1 thorpej * But there are keyboard controllers behaving differently.
342 1.1 thorpej */
343 1.1 thorpej if (res == 0 || res == 0xfa || res == 0x01 || res == 0xab) {
344 1.1 thorpej #ifdef PCKBCDEBUG
345 1.1 thorpej if (res != 0)
346 1.1 thorpej printf("kbc: returned %x on kbd slot test\n", res);
347 1.1 thorpej #endif
348 1.1 thorpej if (pckbc_attach_slot(sc, PCKBC_KBD_SLOT))
349 1.1 thorpej cmdbits |= KC8_KENABLE;
350 1.1 thorpej } else {
351 1.1 thorpej printf("kbc: kbd port test: %x\n", res);
352 1.1 thorpej return;
353 1.1 thorpej }
354 1.1 thorpej #else
355 1.1 thorpej if (pckbc_attach_slot(sc, PCKBC_KBD_SLOT))
356 1.1 thorpej cmdbits |= KC8_KENABLE;
357 1.1 thorpej #endif /* 0 */
358 1.1 thorpej
359 1.1 thorpej /*
360 1.1 thorpej * check aux port ok
361 1.1 thorpej */
362 1.1 thorpej if (!pckbc_send_cmd(iot, ioh_c, KBC_AUXTEST))
363 1.1 thorpej return;
364 1.1 thorpej res = pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
365 1.1 thorpej
366 1.1 thorpej if (res == 0 || res == 0xfa || res == 0x01) {
367 1.1 thorpej #ifdef PCKBCDEBUG
368 1.1 thorpej if (res != 0)
369 1.1 thorpej printf("kbc: returned %x on aux slot test\n", res);
370 1.1 thorpej #endif
371 1.1 thorpej t->t_haveaux = 1;
372 1.1 thorpej if (pckbc_attach_slot(sc, PCKBC_AUX_SLOT))
373 1.1 thorpej cmdbits |= KC8_MENABLE;
374 1.1 thorpej }
375 1.1 thorpej #ifdef PCKBCDEBUG
376 1.1 thorpej else
377 1.1 thorpej printf("kbc: aux port test: %x\n", res);
378 1.1 thorpej #endif
379 1.1 thorpej
380 1.1 thorpej /* enable needed interrupts */
381 1.1 thorpej t->t_cmdbyte |= cmdbits;
382 1.1 thorpej if (!pckbc_put8042cmd(t))
383 1.1 thorpej printf("kbc: cmd word write error\n");
384 1.1 thorpej }
385 1.1 thorpej
386 1.1 thorpej int
387 1.1 thorpej pckbcprint(aux, pnp)
388 1.1 thorpej void *aux;
389 1.1 thorpej const char *pnp;
390 1.1 thorpej {
391 1.1 thorpej struct pckbc_attach_args *pa = aux;
392 1.1 thorpej
393 1.1 thorpej if (!pnp)
394 1.1 thorpej printf(" (%s slot)", pckbc_slot_names[pa->pa_slot]);
395 1.1 thorpej return (QUIET);
396 1.1 thorpej }
397 1.1 thorpej
398 1.1 thorpej void
399 1.1 thorpej pckbc_init_slotdata(q)
400 1.1 thorpej struct pckbc_slotdata *q;
401 1.1 thorpej {
402 1.1 thorpej int i;
403 1.1 thorpej TAILQ_INIT(&q->cmdqueue);
404 1.1 thorpej TAILQ_INIT(&q->freequeue);
405 1.1 thorpej
406 1.1 thorpej for (i=0; i<NCMD; i++) {
407 1.1 thorpej TAILQ_INSERT_TAIL(&q->freequeue, &(q->cmds[i]), next);
408 1.1 thorpej }
409 1.1 thorpej q->polling = 0;
410 1.1 thorpej }
411 1.1 thorpej
412 1.1 thorpej void
413 1.1 thorpej pckbc_flush(self, slot)
414 1.1 thorpej pckbc_tag_t self;
415 1.1 thorpej pckbc_slot_t slot;
416 1.1 thorpej {
417 1.1 thorpej struct pckbc_internal *t = self;
418 1.1 thorpej
419 1.1 thorpej (void) pckbc_poll_data1(t->t_iot, t->t_ioh_d, t->t_ioh_c,
420 1.1 thorpej slot, t->t_haveaux);
421 1.1 thorpej }
422 1.1 thorpej
423 1.1 thorpej int
424 1.1 thorpej pckbc_poll_data(self, slot)
425 1.1 thorpej pckbc_tag_t self;
426 1.1 thorpej pckbc_slot_t slot;
427 1.1 thorpej {
428 1.1 thorpej struct pckbc_internal *t = self;
429 1.1 thorpej struct pckbc_slotdata *q = t->t_slotdata[slot];
430 1.1 thorpej int c;
431 1.1 thorpej
432 1.1 thorpej c = pckbc_poll_data1(t->t_iot, t->t_ioh_d, t->t_ioh_c,
433 1.1 thorpej slot, t->t_haveaux);
434 1.1 thorpej if (c != -1 && q && CMD_IN_QUEUE(q)) {
435 1.1 thorpej /* we jumped into a running command - try to
436 1.1 thorpej deliver the response */
437 1.1 thorpej if (pckbc_cmdresponse(t, slot, c))
438 1.1 thorpej return (-1);
439 1.1 thorpej }
440 1.1 thorpej return (c);
441 1.1 thorpej }
442 1.1 thorpej
443 1.1 thorpej /*
444 1.1 thorpej * switch scancode translation on / off
445 1.1 thorpej * return nonzero on success
446 1.1 thorpej */
447 1.1 thorpej int
448 1.1 thorpej pckbc_xt_translation(self, slot, on)
449 1.1 thorpej pckbc_tag_t self;
450 1.1 thorpej pckbc_slot_t slot;
451 1.1 thorpej int on;
452 1.1 thorpej {
453 1.1 thorpej struct pckbc_internal *t = self;
454 1.1 thorpej int ison;
455 1.1 thorpej
456 1.1 thorpej if (slot != PCKBC_KBD_SLOT) {
457 1.1 thorpej /* translation only for kbd slot */
458 1.1 thorpej if (on)
459 1.1 thorpej return (0);
460 1.1 thorpej else
461 1.1 thorpej return (1);
462 1.1 thorpej }
463 1.1 thorpej
464 1.1 thorpej ison = t->t_cmdbyte & KC8_TRANS;
465 1.1 thorpej if ((on && ison) || (!on && !ison))
466 1.1 thorpej return (1);
467 1.1 thorpej
468 1.1 thorpej t->t_cmdbyte ^= KC8_TRANS;
469 1.1 thorpej if (!pckbc_put8042cmd(t))
470 1.1 thorpej return (0);
471 1.1 thorpej
472 1.1 thorpej /* read back to be sure */
473 1.1 thorpej if (!pckbc_get8042cmd(t))
474 1.1 thorpej return (0);
475 1.1 thorpej
476 1.1 thorpej ison = t->t_cmdbyte & KC8_TRANS;
477 1.1 thorpej if ((on && ison) || (!on && !ison))
478 1.1 thorpej return (1);
479 1.1 thorpej return (0);
480 1.1 thorpej }
481 1.1 thorpej
482 1.1 thorpej static struct pckbc_portcmd {
483 1.1 thorpej u_char cmd_en, cmd_dis;
484 1.1 thorpej } pckbc_portcmd[2] = {
485 1.1 thorpej {
486 1.1 thorpej KBC_KBDENABLE, KBC_KBDDISABLE,
487 1.1 thorpej }, {
488 1.1 thorpej KBC_AUXENABLE, KBC_AUXDISABLE,
489 1.1 thorpej }
490 1.1 thorpej };
491 1.1 thorpej
492 1.1 thorpej void
493 1.1 thorpej pckbc_slot_enable(self, slot, on)
494 1.1 thorpej pckbc_tag_t self;
495 1.1 thorpej pckbc_slot_t slot;
496 1.1 thorpej int on;
497 1.1 thorpej {
498 1.1 thorpej struct pckbc_internal *t = (struct pckbc_internal *)self;
499 1.1 thorpej struct pckbc_portcmd *cmd;
500 1.1 thorpej
501 1.1 thorpej cmd = &pckbc_portcmd[slot];
502 1.1 thorpej
503 1.1 thorpej if (!pckbc_send_cmd(t->t_iot, t->t_ioh_c,
504 1.1 thorpej on ? cmd->cmd_en : cmd->cmd_dis))
505 1.1 thorpej printf("pckbc_slot_enable(%d) failed\n", on);
506 1.1 thorpej }
507 1.1 thorpej
508 1.1 thorpej void
509 1.1 thorpej pckbc_set_poll(self, slot, on)
510 1.1 thorpej pckbc_tag_t self;
511 1.1 thorpej pckbc_slot_t slot;
512 1.1 thorpej int on;
513 1.1 thorpej {
514 1.1 thorpej struct pckbc_internal *t = (struct pckbc_internal *)self;
515 1.1 thorpej
516 1.1 thorpej t->t_slotdata[slot]->polling = on;
517 1.1 thorpej
518 1.1 thorpej if (!on) {
519 1.1 thorpej int s;
520 1.1 thorpej
521 1.1 thorpej /*
522 1.1 thorpej * If disabling polling on a device that's been configured,
523 1.1 thorpej * make sure there are no bytes left in the FIFO, holding up
524 1.1 thorpej * the interrupt line. Otherwise we won't get any further
525 1.1 thorpej * interrupts.
526 1.1 thorpej */
527 1.1 thorpej if (t->t_sc) {
528 1.1 thorpej s = spltty();
529 1.1 thorpej pckbcintr(t->t_sc);
530 1.1 thorpej splx(s);
531 1.1 thorpej }
532 1.1 thorpej }
533 1.1 thorpej }
534 1.1 thorpej
535 1.1 thorpej /*
536 1.1 thorpej * Pass command to device, poll for ACK and data.
537 1.1 thorpej * to be called at spltty()
538 1.1 thorpej */
539 1.1 thorpej static void
540 1.1 thorpej pckbc_poll_cmd1(t, slot, cmd)
541 1.1 thorpej struct pckbc_internal *t;
542 1.1 thorpej pckbc_slot_t slot;
543 1.1 thorpej struct pckbc_devcmd *cmd;
544 1.1 thorpej {
545 1.1 thorpej bus_space_tag_t iot = t->t_iot;
546 1.1 thorpej bus_space_handle_t ioh_d = t->t_ioh_d;
547 1.1 thorpej bus_space_handle_t ioh_c = t->t_ioh_c;
548 1.1 thorpej int i, c = 0;
549 1.1 thorpej
550 1.1 thorpej while (cmd->cmdidx < cmd->cmdlen) {
551 1.1 thorpej if (!pckbc_send_devcmd(t, slot, cmd->cmd[cmd->cmdidx])) {
552 1.1 thorpej printf("pckbc_cmd: send error\n");
553 1.1 thorpej cmd->status = EIO;
554 1.1 thorpej return;
555 1.1 thorpej }
556 1.1 thorpej for (i = 10; i; i--) { /* 1s ??? */
557 1.1 thorpej c = pckbc_poll_data1(iot, ioh_d, ioh_c, slot,
558 1.1 thorpej t->t_haveaux);
559 1.1 thorpej if (c != -1)
560 1.1 thorpej break;
561 1.1 thorpej }
562 1.1 thorpej
563 1.1 thorpej if (c == KBC_DEVCMD_ACK) {
564 1.1 thorpej cmd->cmdidx++;
565 1.1 thorpej continue;
566 1.1 thorpej }
567 1.1 thorpej if (c == KBC_DEVCMD_RESEND) {
568 1.1 thorpej #ifdef PCKBCDEBUG
569 1.1 thorpej printf("pckbc_cmd: RESEND\n");
570 1.1 thorpej #endif
571 1.1 thorpej if (cmd->retries++ < 5)
572 1.1 thorpej continue;
573 1.1 thorpej else {
574 1.1 thorpej #ifdef PCKBCDEBUG
575 1.1 thorpej printf("pckbc: cmd failed\n");
576 1.1 thorpej #endif
577 1.1 thorpej cmd->status = EIO;
578 1.1 thorpej return;
579 1.1 thorpej }
580 1.1 thorpej }
581 1.1 thorpej if (c == -1) {
582 1.1 thorpej #ifdef PCKBCDEBUG
583 1.1 thorpej printf("pckbc_cmd: timeout\n");
584 1.1 thorpej #endif
585 1.1 thorpej cmd->status = EIO;
586 1.1 thorpej return;
587 1.1 thorpej }
588 1.1 thorpej #ifdef PCKBCDEBUG
589 1.1 thorpej printf("pckbc_cmd: lost 0x%x\n", c);
590 1.1 thorpej #endif
591 1.1 thorpej }
592 1.1 thorpej
593 1.1 thorpej while (cmd->responseidx < cmd->responselen) {
594 1.1 thorpej if (cmd->flags & KBC_CMDFLAG_SLOW)
595 1.1 thorpej i = 100; /* 10s ??? */
596 1.1 thorpej else
597 1.1 thorpej i = 10; /* 1s ??? */
598 1.1 thorpej while (i--) {
599 1.1 thorpej c = pckbc_poll_data1(iot, ioh_d, ioh_c, slot,
600 1.1 thorpej t->t_haveaux);
601 1.1 thorpej if (c != -1)
602 1.1 thorpej break;
603 1.1 thorpej }
604 1.1 thorpej if (c == -1) {
605 1.1 thorpej #ifdef PCKBCDEBUG
606 1.1 thorpej printf("pckbc_cmd: no data\n");
607 1.1 thorpej #endif
608 1.1 thorpej cmd->status = ETIMEDOUT;
609 1.1 thorpej return;
610 1.1 thorpej } else
611 1.1 thorpej cmd->response[cmd->responseidx++] = c;
612 1.1 thorpej }
613 1.1 thorpej }
614 1.1 thorpej
615 1.1 thorpej /* for use in autoconfiguration */
616 1.1 thorpej int
617 1.1 thorpej pckbc_poll_cmd(self, slot, cmd, len, responselen, respbuf, slow)
618 1.1 thorpej pckbc_tag_t self;
619 1.1 thorpej pckbc_slot_t slot;
620 1.1 thorpej u_char *cmd;
621 1.1 thorpej int len, responselen;
622 1.1 thorpej u_char *respbuf;
623 1.1 thorpej int slow;
624 1.1 thorpej {
625 1.1 thorpej struct pckbc_internal *t = self;
626 1.1 thorpej struct pckbc_devcmd nc;
627 1.1 thorpej
628 1.1 thorpej if ((len > 4) || (responselen > 4))
629 1.1 thorpej return (EINVAL);
630 1.1 thorpej
631 1.1 thorpej bzero(&nc, sizeof(nc));
632 1.1 thorpej bcopy(cmd, nc.cmd, len);
633 1.1 thorpej nc.cmdlen = len;
634 1.1 thorpej nc.responselen = responselen;
635 1.1 thorpej nc.flags = (slow ? KBC_CMDFLAG_SLOW : 0);
636 1.1 thorpej
637 1.1 thorpej pckbc_poll_cmd1(t, slot, &nc);
638 1.1 thorpej
639 1.1 thorpej if (nc.status == 0 && respbuf)
640 1.1 thorpej bcopy(nc.response, respbuf, responselen);
641 1.1 thorpej
642 1.1 thorpej return (nc.status);
643 1.1 thorpej }
644 1.1 thorpej
645 1.1 thorpej /*
646 1.1 thorpej * Clean up a command queue, throw away everything.
647 1.1 thorpej */
648 1.1 thorpej void
649 1.1 thorpej pckbc_cleanqueue(q)
650 1.1 thorpej struct pckbc_slotdata *q;
651 1.1 thorpej {
652 1.1 thorpej struct pckbc_devcmd *cmd;
653 1.1 thorpej #ifdef PCKBCDEBUG
654 1.1 thorpej int i;
655 1.1 thorpej #endif
656 1.1 thorpej
657 1.1 thorpej while ((cmd = TAILQ_FIRST(&q->cmdqueue))) {
658 1.1 thorpej TAILQ_REMOVE(&q->cmdqueue, cmd, next);
659 1.1 thorpej #ifdef PCKBCDEBUG
660 1.1 thorpej printf("pckbc_cleanqueue: removing");
661 1.1 thorpej for (i = 0; i < cmd->cmdlen; i++)
662 1.1 thorpej printf(" %02x", cmd->cmd[i]);
663 1.1 thorpej printf("\n");
664 1.1 thorpej #endif
665 1.1 thorpej TAILQ_INSERT_TAIL(&q->freequeue, cmd, next);
666 1.1 thorpej }
667 1.1 thorpej }
668 1.1 thorpej
669 1.1 thorpej /*
670 1.1 thorpej * Timeout error handler: clean queues and data port.
671 1.1 thorpej * XXX could be less invasive.
672 1.1 thorpej */
673 1.1 thorpej void
674 1.1 thorpej pckbc_cleanup(self)
675 1.1 thorpej void *self;
676 1.1 thorpej {
677 1.1 thorpej struct pckbc_internal *t = self;
678 1.1 thorpej int s;
679 1.1 thorpej
680 1.1 thorpej printf("pckbc: command timeout\n");
681 1.1 thorpej
682 1.1 thorpej s = spltty();
683 1.1 thorpej
684 1.1 thorpej if (t->t_slotdata[PCKBC_KBD_SLOT])
685 1.1 thorpej pckbc_cleanqueue(t->t_slotdata[PCKBC_KBD_SLOT]);
686 1.1 thorpej if (t->t_slotdata[PCKBC_AUX_SLOT])
687 1.1 thorpej pckbc_cleanqueue(t->t_slotdata[PCKBC_AUX_SLOT]);
688 1.1 thorpej
689 1.1 thorpej while (bus_space_read_1(t->t_iot, t->t_ioh_c, 0) & KBS_DIB) {
690 1.1 thorpej KBD_DELAY;
691 1.1 thorpej (void) bus_space_read_1(t->t_iot, t->t_ioh_d, 0);
692 1.1 thorpej }
693 1.1 thorpej
694 1.1 thorpej /* reset KBC? */
695 1.1 thorpej
696 1.1 thorpej splx(s);
697 1.1 thorpej }
698 1.1 thorpej
699 1.1 thorpej /*
700 1.1 thorpej * Pass command to device during normal operation.
701 1.1 thorpej * to be called at spltty()
702 1.1 thorpej */
703 1.1 thorpej void
704 1.1 thorpej pckbc_start(t, slot)
705 1.1 thorpej struct pckbc_internal *t;
706 1.1 thorpej pckbc_slot_t slot;
707 1.1 thorpej {
708 1.1 thorpej struct pckbc_slotdata *q = t->t_slotdata[slot];
709 1.1 thorpej struct pckbc_devcmd *cmd = TAILQ_FIRST(&q->cmdqueue);
710 1.1 thorpej
711 1.1 thorpej if (q->polling) {
712 1.1 thorpej do {
713 1.1 thorpej pckbc_poll_cmd1(t, slot, cmd);
714 1.1 thorpej if (cmd->status)
715 1.1 thorpej printf("pckbc_start: command error\n");
716 1.1 thorpej
717 1.1 thorpej TAILQ_REMOVE(&q->cmdqueue, cmd, next);
718 1.1 thorpej if (cmd->flags & KBC_CMDFLAG_SYNC)
719 1.1 thorpej wakeup(cmd);
720 1.1 thorpej else {
721 1.2 thorpej callout_stop(&t->t_cleanup);
722 1.1 thorpej TAILQ_INSERT_TAIL(&q->freequeue, cmd, next);
723 1.1 thorpej }
724 1.1 thorpej cmd = TAILQ_FIRST(&q->cmdqueue);
725 1.1 thorpej } while (cmd);
726 1.1 thorpej return;
727 1.1 thorpej }
728 1.1 thorpej
729 1.1 thorpej if (!pckbc_send_devcmd(t, slot, cmd->cmd[cmd->cmdidx])) {
730 1.1 thorpej printf("pckbc_start: send error\n");
731 1.1 thorpej /* XXX what now? */
732 1.1 thorpej return;
733 1.1 thorpej }
734 1.1 thorpej }
735 1.1 thorpej
736 1.1 thorpej /*
737 1.1 thorpej * Handle command responses coming in asynchonously,
738 1.1 thorpej * return nonzero if valid response.
739 1.1 thorpej * to be called at spltty()
740 1.1 thorpej */
741 1.1 thorpej int
742 1.1 thorpej pckbc_cmdresponse(t, slot, data)
743 1.1 thorpej struct pckbc_internal *t;
744 1.1 thorpej pckbc_slot_t slot;
745 1.1 thorpej u_char data;
746 1.1 thorpej {
747 1.1 thorpej struct pckbc_slotdata *q = t->t_slotdata[slot];
748 1.1 thorpej struct pckbc_devcmd *cmd = TAILQ_FIRST(&q->cmdqueue);
749 1.1 thorpej #ifdef DIAGNOSTIC
750 1.1 thorpej if (!cmd)
751 1.1 thorpej panic("pckbc_cmdresponse: no active command");
752 1.1 thorpej #endif
753 1.1 thorpej if (cmd->cmdidx < cmd->cmdlen) {
754 1.1 thorpej if (data != KBC_DEVCMD_ACK && data != KBC_DEVCMD_RESEND)
755 1.1 thorpej return (0);
756 1.1 thorpej
757 1.1 thorpej if (data == KBC_DEVCMD_RESEND) {
758 1.1 thorpej if (cmd->retries++ < 5) {
759 1.1 thorpej /* try again last command */
760 1.1 thorpej goto restart;
761 1.1 thorpej } else {
762 1.1 thorpej printf("pckbc: cmd failed\n");
763 1.1 thorpej cmd->status = EIO;
764 1.1 thorpej /* dequeue */
765 1.1 thorpej }
766 1.1 thorpej } else {
767 1.1 thorpej if (++cmd->cmdidx < cmd->cmdlen)
768 1.1 thorpej goto restart;
769 1.1 thorpej if (cmd->responselen)
770 1.1 thorpej return (1);
771 1.1 thorpej /* else dequeue */
772 1.1 thorpej }
773 1.1 thorpej } else if (cmd->responseidx < cmd->responselen) {
774 1.1 thorpej cmd->response[cmd->responseidx++] = data;
775 1.1 thorpej if (cmd->responseidx < cmd->responselen)
776 1.1 thorpej return (1);
777 1.1 thorpej /* else dequeue */
778 1.1 thorpej } else
779 1.1 thorpej return (0);
780 1.1 thorpej
781 1.1 thorpej /* dequeue: */
782 1.1 thorpej TAILQ_REMOVE(&q->cmdqueue, cmd, next);
783 1.1 thorpej if (cmd->flags & KBC_CMDFLAG_SYNC)
784 1.1 thorpej wakeup(cmd);
785 1.1 thorpej else {
786 1.2 thorpej callout_stop(&t->t_cleanup);
787 1.1 thorpej TAILQ_INSERT_TAIL(&q->freequeue, cmd, next);
788 1.1 thorpej }
789 1.1 thorpej if (!CMD_IN_QUEUE(q))
790 1.1 thorpej return (1);
791 1.1 thorpej restart:
792 1.1 thorpej pckbc_start(t, slot);
793 1.1 thorpej return (1);
794 1.1 thorpej }
795 1.1 thorpej
796 1.1 thorpej /*
797 1.1 thorpej * Put command into the device's command queue, return zero or errno.
798 1.1 thorpej */
799 1.1 thorpej int
800 1.1 thorpej pckbc_enqueue_cmd(self, slot, cmd, len, responselen, sync, respbuf)
801 1.1 thorpej pckbc_tag_t self;
802 1.1 thorpej pckbc_slot_t slot;
803 1.1 thorpej u_char *cmd;
804 1.1 thorpej int len, responselen, sync;
805 1.1 thorpej u_char *respbuf;
806 1.1 thorpej {
807 1.1 thorpej struct pckbc_internal *t = self;
808 1.1 thorpej struct pckbc_slotdata *q = t->t_slotdata[slot];
809 1.1 thorpej struct pckbc_devcmd *nc;
810 1.1 thorpej int s, isactive, res = 0;
811 1.1 thorpej
812 1.1 thorpej if ((len > 4) || (responselen > 4))
813 1.1 thorpej return (EINVAL);
814 1.1 thorpej s = spltty();
815 1.1 thorpej nc = TAILQ_FIRST(&q->freequeue);
816 1.1 thorpej if (nc) {
817 1.1 thorpej TAILQ_REMOVE(&q->freequeue, nc, next);
818 1.1 thorpej }
819 1.1 thorpej splx(s);
820 1.1 thorpej if (!nc)
821 1.1 thorpej return (ENOMEM);
822 1.1 thorpej
823 1.1 thorpej bzero(nc, sizeof(*nc));
824 1.1 thorpej bcopy(cmd, nc->cmd, len);
825 1.1 thorpej nc->cmdlen = len;
826 1.1 thorpej nc->responselen = responselen;
827 1.1 thorpej nc->flags = (sync ? KBC_CMDFLAG_SYNC : 0);
828 1.1 thorpej
829 1.1 thorpej s = spltty();
830 1.1 thorpej
831 1.1 thorpej if (q->polling && sync) {
832 1.1 thorpej /*
833 1.1 thorpej * XXX We should poll until the queue is empty.
834 1.1 thorpej * But we don't come here normally, so make
835 1.1 thorpej * it simple and throw away everything.
836 1.1 thorpej */
837 1.1 thorpej pckbc_cleanqueue(q);
838 1.1 thorpej }
839 1.1 thorpej
840 1.1 thorpej isactive = CMD_IN_QUEUE(q);
841 1.1 thorpej TAILQ_INSERT_TAIL(&q->cmdqueue, nc, next);
842 1.1 thorpej if (!isactive)
843 1.1 thorpej pckbc_start(t, slot);
844 1.1 thorpej
845 1.1 thorpej if (q->polling)
846 1.1 thorpej res = (sync ? nc->status : 0);
847 1.1 thorpej else if (sync) {
848 1.1 thorpej if ((res = tsleep(nc, 0, "kbccmd", 1*hz))) {
849 1.1 thorpej TAILQ_REMOVE(&q->cmdqueue, nc, next);
850 1.1 thorpej pckbc_cleanup(t);
851 1.1 thorpej } else
852 1.1 thorpej res = nc->status;
853 1.1 thorpej } else
854 1.2 thorpej callout_reset(&t->t_cleanup, hz, pckbc_cleanup, t);
855 1.1 thorpej
856 1.1 thorpej if (sync) {
857 1.1 thorpej if (respbuf)
858 1.1 thorpej bcopy(nc->response, respbuf, responselen);
859 1.1 thorpej TAILQ_INSERT_TAIL(&q->freequeue, nc, next);
860 1.1 thorpej }
861 1.1 thorpej
862 1.1 thorpej splx(s);
863 1.1 thorpej
864 1.1 thorpej return (res);
865 1.1 thorpej }
866 1.1 thorpej
867 1.1 thorpej void
868 1.3 sommerfe pckbc_set_inputhandler(self, slot, func, arg, name)
869 1.1 thorpej pckbc_tag_t self;
870 1.1 thorpej pckbc_slot_t slot;
871 1.1 thorpej pckbc_inputfcn func;
872 1.1 thorpej void *arg;
873 1.3 sommerfe char *name;
874 1.1 thorpej {
875 1.1 thorpej struct pckbc_internal *t = (struct pckbc_internal *)self;
876 1.1 thorpej struct pckbc_softc *sc = t->t_sc;
877 1.1 thorpej
878 1.1 thorpej if (slot >= PCKBC_NSLOTS)
879 1.1 thorpej panic("pckbc_set_inputhandler: bad slot %d", slot);
880 1.1 thorpej
881 1.1 thorpej (*sc->intr_establish)(sc, slot);
882 1.1 thorpej
883 1.1 thorpej sc->inputhandler[slot] = func;
884 1.1 thorpej sc->inputarg[slot] = arg;
885 1.3 sommerfe sc->subname[slot] = name;
886 1.1 thorpej }
887 1.1 thorpej
888 1.1 thorpej int
889 1.1 thorpej pckbcintr(vsc)
890 1.1 thorpej void *vsc;
891 1.1 thorpej {
892 1.1 thorpej struct pckbc_softc *sc = (struct pckbc_softc *)vsc;
893 1.1 thorpej struct pckbc_internal *t = sc->id;
894 1.1 thorpej u_char stat;
895 1.1 thorpej pckbc_slot_t slot;
896 1.1 thorpej struct pckbc_slotdata *q;
897 1.1 thorpej int served = 0, data;
898 1.1 thorpej
899 1.1 thorpej for(;;) {
900 1.1 thorpej stat = bus_space_read_1(t->t_iot, t->t_ioh_c, 0);
901 1.1 thorpej if (!(stat & KBS_DIB))
902 1.1 thorpej break;
903 1.1 thorpej
904 1.1 thorpej served = 1;
905 1.1 thorpej
906 1.1 thorpej slot = (t->t_haveaux && (stat & 0x20)) ?
907 1.1 thorpej PCKBC_AUX_SLOT : PCKBC_KBD_SLOT;
908 1.1 thorpej q = t->t_slotdata[slot];
909 1.1 thorpej
910 1.1 thorpej if (!q) {
911 1.1 thorpej /* XXX do something for live insertion? */
912 1.1 thorpej printf("pckbcintr: no dev for slot %d\n", slot);
913 1.1 thorpej KBD_DELAY;
914 1.1 thorpej (void) bus_space_read_1(t->t_iot, t->t_ioh_d, 0);
915 1.1 thorpej continue;
916 1.1 thorpej }
917 1.1 thorpej
918 1.1 thorpej if (q->polling)
919 1.1 thorpej break; /* pckbc_poll_data() will get it */
920 1.1 thorpej
921 1.1 thorpej KBD_DELAY;
922 1.1 thorpej data = bus_space_read_1(t->t_iot, t->t_ioh_d, 0);
923 1.1 thorpej
924 1.3 sommerfe #if NRND > 0
925 1.3 sommerfe rnd_add_uint32(&q->rnd_source, (stat<<8)|data);
926 1.3 sommerfe #endif
927 1.1 thorpej if (CMD_IN_QUEUE(q) && pckbc_cmdresponse(t, slot, data))
928 1.1 thorpej continue;
929 1.1 thorpej
930 1.1 thorpej if (sc->inputhandler[slot])
931 1.1 thorpej (*sc->inputhandler[slot])(sc->inputarg[slot], data);
932 1.1 thorpej #ifdef PCKBCDEBUG
933 1.1 thorpej else
934 1.1 thorpej printf("pckbcintr: slot %d lost %d\n", slot, data);
935 1.1 thorpej #endif
936 1.1 thorpej }
937 1.1 thorpej
938 1.1 thorpej return (served);
939 1.1 thorpej }
940 1.1 thorpej
941 1.1 thorpej int
942 1.1 thorpej pckbc_cnattach(iot, addr, slot)
943 1.1 thorpej bus_space_tag_t iot;
944 1.1 thorpej bus_addr_t addr;
945 1.1 thorpej pckbc_slot_t slot;
946 1.1 thorpej {
947 1.1 thorpej bus_space_handle_t ioh_d, ioh_c;
948 1.1 thorpej int res = 0;
949 1.1 thorpej
950 1.1 thorpej if (bus_space_map(iot, addr + KBDATAP, 1, 0, &ioh_d))
951 1.1 thorpej return (ENXIO);
952 1.1 thorpej if (bus_space_map(iot, addr + KBCMDP, 1, 0, &ioh_c)) {
953 1.1 thorpej bus_space_unmap(iot, ioh_d, 1);
954 1.1 thorpej return (ENXIO);
955 1.1 thorpej }
956 1.1 thorpej
957 1.1 thorpej pckbc_consdata.t_iot = iot;
958 1.1 thorpej pckbc_consdata.t_ioh_d = ioh_d;
959 1.1 thorpej pckbc_consdata.t_ioh_c = ioh_c;
960 1.1 thorpej pckbc_consdata.t_addr = addr;
961 1.2 thorpej callout_init(&pckbc_consdata.t_cleanup);
962 1.1 thorpej
963 1.1 thorpej /* flush */
964 1.1 thorpej (void) pckbc_poll_data1(iot, ioh_d, ioh_c, PCKBC_KBD_SLOT, 0);
965 1.1 thorpej
966 1.1 thorpej /* selftest? */
967 1.1 thorpej
968 1.1 thorpej /* init cmd byte, enable ports */
969 1.1 thorpej pckbc_consdata.t_cmdbyte = KC8_CPU;
970 1.1 thorpej if (!pckbc_put8042cmd(&pckbc_consdata)) {
971 1.1 thorpej printf("kbc: cmd word write error\n");
972 1.1 thorpej res = EIO;
973 1.1 thorpej }
974 1.1 thorpej
975 1.1 thorpej if (!res) {
976 1.1 thorpej #if (NPCKBD > 0)
977 1.1 thorpej res = pckbd_cnattach(&pckbc_consdata, slot);
978 1.1 thorpej #else
979 1.1 thorpej /*
980 1.1 thorpej * XXX This should be replaced with the `notyet' case
981 1.1 thorpej * XXX when all of the old PC-style console drivers
982 1.1 thorpej * XXX have gone away. When that happens, all of
983 1.1 thorpej * XXX the pckbc_machdep_cnattach() should be purged,
984 1.1 thorpej * XXX as well.
985 1.1 thorpej */
986 1.1 thorpej #ifdef notyet
987 1.1 thorpej res = ENXIO;
988 1.1 thorpej #else
989 1.1 thorpej res = pckbc_machdep_cnattach(&pckbc_consdata, slot);
990 1.1 thorpej #endif
991 1.1 thorpej #endif /* NPCKBD > 0 */
992 1.1 thorpej }
993 1.1 thorpej
994 1.1 thorpej if (res) {
995 1.1 thorpej bus_space_unmap(iot, pckbc_consdata.t_ioh_d, 1);
996 1.1 thorpej bus_space_unmap(iot, pckbc_consdata.t_ioh_c, 1);
997 1.1 thorpej } else {
998 1.1 thorpej pckbc_consdata.t_slotdata[slot] = &pckbc_cons_slotdata;
999 1.1 thorpej pckbc_init_slotdata(&pckbc_cons_slotdata);
1000 1.1 thorpej pckbc_console = 1;
1001 1.1 thorpej }
1002 1.1 thorpej
1003 1.1 thorpej return (res);
1004 1.1 thorpej }
1005