pms.c revision 1.1 1 1.1 bjh21 /* $NetBSD: pms.c,v 1.1 2004/03/13 17:31:33 bjh21 Exp $ */
2 1.1 bjh21
3 1.1 bjh21 /*-
4 1.1 bjh21 * Copyright (c) 1994 Charles M. Hannum.
5 1.1 bjh21 * Copyright (c) 1992, 1993 Erik Forsberg.
6 1.1 bjh21 * All rights reserved.
7 1.1 bjh21 *
8 1.1 bjh21 * Redistribution and use in source and binary forms, with or without
9 1.1 bjh21 * modification, are permitted provided that the following conditions
10 1.1 bjh21 * are met:
11 1.1 bjh21 * 1. Redistributions of source code must retain the above copyright
12 1.1 bjh21 * notice, this list of conditions and the following disclaimer.
13 1.1 bjh21 *
14 1.1 bjh21 * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
15 1.1 bjh21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16 1.1 bjh21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
17 1.1 bjh21 * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 1.1 bjh21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 1.1 bjh21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 1.1 bjh21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
21 1.1 bjh21 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
22 1.1 bjh21 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23 1.1 bjh21 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 1.1 bjh21 */
25 1.1 bjh21
26 1.1 bjh21 #include <sys/cdefs.h>
27 1.1 bjh21 __KERNEL_RCSID(0, "$NetBSD: pms.c,v 1.1 2004/03/13 17:31:33 bjh21 Exp $");
28 1.1 bjh21
29 1.1 bjh21 #include <sys/param.h>
30 1.1 bjh21 #include <sys/systm.h>
31 1.1 bjh21 #include <sys/device.h>
32 1.1 bjh21 #include <sys/ioctl.h>
33 1.1 bjh21 #include <sys/kernel.h>
34 1.1 bjh21 #include <sys/kthread.h>
35 1.1 bjh21
36 1.1 bjh21 #include <machine/bus.h>
37 1.1 bjh21
38 1.1 bjh21 #include <dev/pckbport/pckbportvar.h>
39 1.1 bjh21
40 1.1 bjh21 #include <dev/pckbport/pmsreg.h>
41 1.1 bjh21
42 1.1 bjh21 #include <dev/wscons/wsconsio.h>
43 1.1 bjh21 #include <dev/wscons/wsmousevar.h>
44 1.1 bjh21
45 1.1 bjh21 #ifdef PMSDEBUG
46 1.1 bjh21 int pmsdebug = 1;
47 1.1 bjh21 #define DPRINTF(x) if (pmsdebug) printf x
48 1.1 bjh21 #else
49 1.1 bjh21 #define DPRINTF(x)
50 1.1 bjh21 #endif
51 1.1 bjh21
52 1.1 bjh21 enum pms_type { PMS_UNKNOWN, PMS_STANDARD, PMS_SCROLL3, PMS_SCROLL5 };
53 1.1 bjh21
54 1.1 bjh21 struct pms_protocol {
55 1.1 bjh21 int rates[3];
56 1.1 bjh21 int response;
57 1.1 bjh21 const char *name;
58 1.1 bjh21 } pms_protocols[] = {
59 1.1 bjh21 { { 0, 0, 0 }, 0, "unknown protocol" },
60 1.1 bjh21 { { 0, 0, 0 }, 0, "no scroll wheel (3 buttons)" },
61 1.1 bjh21 { { 200, 100, 80 }, 3, "scroll wheel (3 buttons)" },
62 1.1 bjh21 { { 200, 200, 80 }, 4, "scroll wheel (5 buttons)" }
63 1.1 bjh21 };
64 1.1 bjh21
65 1.1 bjh21 enum pms_type tries[] = {
66 1.1 bjh21 PMS_SCROLL5, PMS_SCROLL3, PMS_STANDARD, PMS_UNKNOWN
67 1.1 bjh21 };
68 1.1 bjh21
69 1.1 bjh21 struct pms_softc { /* driver status information */
70 1.1 bjh21 struct device sc_dev;
71 1.1 bjh21
72 1.1 bjh21 pckbport_tag_t sc_kbctag;
73 1.1 bjh21 int sc_kbcslot;
74 1.1 bjh21
75 1.1 bjh21 int sc_enabled; /* input enabled? */
76 1.1 bjh21 #ifndef PMS_DISABLE_POWERHOOK
77 1.1 bjh21 void *sc_powerhook; /* cookie from power hook */
78 1.1 bjh21 int sc_suspended; /* suspended? */
79 1.1 bjh21 #endif /* !PMS_DISABLE_POWERHOOK */
80 1.1 bjh21 int inputstate; /* number of bytes received for this packet */
81 1.1 bjh21 u_int buttons; /* mouse button status */
82 1.1 bjh21 enum pms_type protocol;
83 1.1 bjh21 unsigned char packet[4];
84 1.1 bjh21 struct timeval last, current;
85 1.1 bjh21
86 1.1 bjh21 struct device *sc_wsmousedev;
87 1.1 bjh21 struct proc *sc_event_thread;
88 1.1 bjh21 };
89 1.1 bjh21
90 1.1 bjh21 int pmsprobe __P((struct device *, struct cfdata *, void *));
91 1.1 bjh21 void pmsattach __P((struct device *, struct device *, void *));
92 1.1 bjh21 void pmsinput __P((void *, int));
93 1.1 bjh21
94 1.1 bjh21 CFATTACH_DECL(pms, sizeof(struct pms_softc),
95 1.1 bjh21 pmsprobe, pmsattach, NULL, NULL);
96 1.1 bjh21
97 1.1 bjh21 static int pms_protocol __P((pckbport_tag_t, pckbport_slot_t));
98 1.1 bjh21 static void do_enable __P((struct pms_softc *));
99 1.1 bjh21 static void do_disable __P((struct pms_softc *));
100 1.1 bjh21 static void pms_reset_thread __P((void*));
101 1.1 bjh21 static void pms_spawn_reset_thread __P((void*));
102 1.1 bjh21 int pms_enable __P((void *));
103 1.1 bjh21 int pms_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
104 1.1 bjh21 void pms_disable __P((void *));
105 1.1 bjh21 #ifndef PMS_DISABLE_POWERHOOK
106 1.1 bjh21 void pms_power __P((int, void *));
107 1.1 bjh21 #endif /* !PMS_DISABLE_POWERHOOK */
108 1.1 bjh21
109 1.1 bjh21 const struct wsmouse_accessops pms_accessops = {
110 1.1 bjh21 pms_enable,
111 1.1 bjh21 pms_ioctl,
112 1.1 bjh21 pms_disable,
113 1.1 bjh21 };
114 1.1 bjh21
115 1.1 bjh21 static int
116 1.1 bjh21 pms_protocol(tag, slot)
117 1.1 bjh21 pckbport_tag_t tag;
118 1.1 bjh21 pckbport_slot_t slot;
119 1.1 bjh21 {
120 1.1 bjh21 u_char cmd[2], resp[1];
121 1.1 bjh21 int i, j, res;
122 1.1 bjh21 struct pms_protocol *p;
123 1.1 bjh21
124 1.1 bjh21 for (j = 0; j < sizeof(tries) / sizeof(tries[0]); ++j) {
125 1.1 bjh21 p = &pms_protocols[tries[j]];
126 1.1 bjh21 if (!p->rates[0])
127 1.1 bjh21 break;
128 1.1 bjh21 cmd[0] = PMS_SET_SAMPLE;
129 1.1 bjh21 for (i = 0; i < 3; i++) {
130 1.1 bjh21 cmd[1] = p->rates[i];
131 1.1 bjh21 res = pckbport_enqueue_cmd(tag, slot, cmd, 2, 0, 1, 0);
132 1.1 bjh21 if (res)
133 1.1 bjh21 return PMS_STANDARD;
134 1.1 bjh21 }
135 1.1 bjh21
136 1.1 bjh21 cmd[0] = PMS_SEND_DEV_ID;
137 1.1 bjh21 res = pckbport_enqueue_cmd(tag, slot, cmd, 1, 1, 1, resp);
138 1.1 bjh21 if (res)
139 1.1 bjh21 return PMS_UNKNOWN;
140 1.1 bjh21 if (resp[0] == p->response) {
141 1.1 bjh21 DPRINTF(("pms_protocol: found mouse protocol %d\n",
142 1.1 bjh21 tries[j]));
143 1.1 bjh21 return tries[j];
144 1.1 bjh21 }
145 1.1 bjh21 }
146 1.1 bjh21 DPRINTF(("pms_protocol: standard PS/2 protocol (no scroll wheel)\n"));
147 1.1 bjh21 return PMS_STANDARD;
148 1.1 bjh21 }
149 1.1 bjh21
150 1.1 bjh21 int
151 1.1 bjh21 pmsprobe(parent, match, aux)
152 1.1 bjh21 struct device *parent;
153 1.1 bjh21 struct cfdata *match;
154 1.1 bjh21 void *aux;
155 1.1 bjh21 {
156 1.1 bjh21 struct pckbport_attach_args *pa = aux;
157 1.1 bjh21 u_char cmd[1], resp[2];
158 1.1 bjh21 int res;
159 1.1 bjh21
160 1.1 bjh21 if (pa->pa_slot != PCKBPORT_AUX_SLOT)
161 1.1 bjh21 return (0);
162 1.1 bjh21
163 1.1 bjh21 /* Flush any garbage. */
164 1.1 bjh21 pckbport_flush(pa->pa_tag, pa->pa_slot);
165 1.1 bjh21
166 1.1 bjh21 /* reset the device */
167 1.1 bjh21 cmd[0] = PMS_RESET;
168 1.1 bjh21 res = pckbport_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 2, resp, 1);
169 1.1 bjh21 if (res) {
170 1.1 bjh21 #ifdef DEBUG
171 1.1 bjh21 printf("pmsprobe: reset error %d\n", res);
172 1.1 bjh21 #endif
173 1.1 bjh21 return (0);
174 1.1 bjh21 }
175 1.1 bjh21 if (resp[0] != PMS_RSTDONE) {
176 1.1 bjh21 printf("pmsprobe: reset response 0x%x\n", resp[0]);
177 1.1 bjh21 return (0);
178 1.1 bjh21 }
179 1.1 bjh21
180 1.1 bjh21 /* get type number (0 = mouse) */
181 1.1 bjh21 if (resp[1] != 0) {
182 1.1 bjh21 #ifdef DEBUG
183 1.1 bjh21 printf("pmsprobe: type 0x%x\n", resp[1]);
184 1.1 bjh21 #endif
185 1.1 bjh21 return (0);
186 1.1 bjh21 }
187 1.1 bjh21
188 1.1 bjh21 return (10);
189 1.1 bjh21 }
190 1.1 bjh21
191 1.1 bjh21 void
192 1.1 bjh21 pmsattach(parent, self, aux)
193 1.1 bjh21 struct device *parent, *self;
194 1.1 bjh21 void *aux;
195 1.1 bjh21 {
196 1.1 bjh21 struct pms_softc *sc = (void *)self;
197 1.1 bjh21 struct pckbport_attach_args *pa = aux;
198 1.1 bjh21 struct wsmousedev_attach_args a;
199 1.1 bjh21 u_char cmd[1], resp[2];
200 1.1 bjh21 int res;
201 1.1 bjh21
202 1.1 bjh21 sc->sc_kbctag = pa->pa_tag;
203 1.1 bjh21 sc->sc_kbcslot = pa->pa_slot;
204 1.1 bjh21
205 1.1 bjh21 printf("\n");
206 1.1 bjh21
207 1.1 bjh21 /* Flush any garbage. */
208 1.1 bjh21 pckbport_flush(pa->pa_tag, pa->pa_slot);
209 1.1 bjh21
210 1.1 bjh21 /* reset the device */
211 1.1 bjh21 cmd[0] = PMS_RESET;
212 1.1 bjh21 res = pckbport_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 2, resp, 1);
213 1.1 bjh21 #ifdef DEBUG
214 1.1 bjh21 if (res || resp[0] != PMS_RSTDONE || resp[1] != 0) {
215 1.1 bjh21 printf("pmsattach: reset error\n");
216 1.1 bjh21 return;
217 1.1 bjh21 }
218 1.1 bjh21 #endif
219 1.1 bjh21 sc->inputstate = 0;
220 1.1 bjh21 sc->buttons = 0;
221 1.1 bjh21 sc->protocol = PMS_UNKNOWN;
222 1.1 bjh21
223 1.1 bjh21 pckbport_set_inputhandler(sc->sc_kbctag, sc->sc_kbcslot,
224 1.1 bjh21 pmsinput, sc, sc->sc_dev.dv_xname);
225 1.1 bjh21
226 1.1 bjh21 a.accessops = &pms_accessops;
227 1.1 bjh21 a.accesscookie = sc;
228 1.1 bjh21
229 1.1 bjh21 /*
230 1.1 bjh21 * Attach the wsmouse, saving a handle to it.
231 1.1 bjh21 * Note that we don't need to check this pointer against NULL
232 1.1 bjh21 * here or in pmsintr, because if this fails pms_enable() will
233 1.1 bjh21 * never be called, so pmsinput() will never be called.
234 1.1 bjh21 */
235 1.1 bjh21 sc->sc_wsmousedev = config_found(self, &a, wsmousedevprint);
236 1.1 bjh21
237 1.1 bjh21 /* no interrupts until enabled */
238 1.1 bjh21 cmd[0] = PMS_DEV_DISABLE;
239 1.1 bjh21 res = pckbport_poll_cmd(pa->pa_tag, pa->pa_slot, cmd, 1, 0, 0, 0);
240 1.1 bjh21 if (res)
241 1.1 bjh21 printf("pmsattach: disable error\n");
242 1.1 bjh21 pckbport_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 0);
243 1.1 bjh21
244 1.1 bjh21 kthread_create(pms_spawn_reset_thread, sc);
245 1.1 bjh21
246 1.1 bjh21 #ifndef PMS_DISABLE_POWERHOOK
247 1.1 bjh21 sc->sc_powerhook = powerhook_establish(pms_power, sc);
248 1.1 bjh21 sc->sc_suspended = 0;
249 1.1 bjh21 #endif /* !PMS_DISABLE_POWERHOOK */
250 1.1 bjh21 }
251 1.1 bjh21
252 1.1 bjh21 static void
253 1.1 bjh21 do_enable(sc)
254 1.1 bjh21 struct pms_softc *sc;
255 1.1 bjh21 {
256 1.1 bjh21 u_char cmd[1];
257 1.1 bjh21 int res;
258 1.1 bjh21
259 1.1 bjh21 sc->inputstate = 0;
260 1.1 bjh21 sc->buttons = 0;
261 1.1 bjh21
262 1.1 bjh21 pckbport_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 1);
263 1.1 bjh21
264 1.1 bjh21 cmd[0] = PMS_DEV_ENABLE;
265 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1, 0, 1, 0);
266 1.1 bjh21 if (res)
267 1.1 bjh21 printf("pms_enable: command error %d\n", res);
268 1.1 bjh21
269 1.1 bjh21 if (sc->protocol == PMS_UNKNOWN)
270 1.1 bjh21 sc->protocol = pms_protocol(sc->sc_kbctag, sc->sc_kbcslot);
271 1.1 bjh21 DPRINTF(("pms_enable: using %s protocol\n",
272 1.1 bjh21 pms_protocols[sc->protocol].name));
273 1.1 bjh21 #if 0
274 1.1 bjh21 {
275 1.1 bjh21 u_char scmd[2];
276 1.1 bjh21
277 1.1 bjh21 scmd[0] = PMS_SET_RES;
278 1.1 bjh21 scmd[1] = 3; /* 8 counts/mm */
279 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
280 1.1 bjh21 2, 0, 1, 0);
281 1.1 bjh21 if (res)
282 1.1 bjh21 printf("pms_enable: setup error1 (%d)\n", res);
283 1.1 bjh21
284 1.1 bjh21 scmd[0] = PMS_SET_SCALE21;
285 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
286 1.1 bjh21 1, 0, 1, 0);
287 1.1 bjh21 if (res)
288 1.1 bjh21 printf("pms_enable: setup error2 (%d)\n", res);
289 1.1 bjh21
290 1.1 bjh21 scmd[0] = PMS_SET_SAMPLE;
291 1.1 bjh21 scmd[1] = 100; /* 100 samples/sec */
292 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, scmd,
293 1.1 bjh21 2, 0, 1, 0);
294 1.1 bjh21 if (res)
295 1.1 bjh21 printf("pms_enable: setup error3 (%d)\n", res);
296 1.1 bjh21 }
297 1.1 bjh21 #endif
298 1.1 bjh21 }
299 1.1 bjh21
300 1.1 bjh21 static void
301 1.1 bjh21 do_disable(sc)
302 1.1 bjh21 struct pms_softc *sc;
303 1.1 bjh21 {
304 1.1 bjh21 u_char cmd[1];
305 1.1 bjh21 int res;
306 1.1 bjh21
307 1.1 bjh21 cmd[0] = PMS_DEV_DISABLE;
308 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1, 0, 1, 0);
309 1.1 bjh21 if (res)
310 1.1 bjh21 printf("pms_disable: command error\n");
311 1.1 bjh21
312 1.1 bjh21 pckbport_slot_enable(sc->sc_kbctag, sc->sc_kbcslot, 0);
313 1.1 bjh21 }
314 1.1 bjh21
315 1.1 bjh21 int
316 1.1 bjh21 pms_enable(v)
317 1.1 bjh21 void *v;
318 1.1 bjh21 {
319 1.1 bjh21 struct pms_softc *sc = v;
320 1.1 bjh21 int s;
321 1.1 bjh21
322 1.1 bjh21 if (sc->sc_enabled)
323 1.1 bjh21 return EBUSY;
324 1.1 bjh21
325 1.1 bjh21 do_enable(sc);
326 1.1 bjh21
327 1.1 bjh21 s = spltty();
328 1.1 bjh21 sc->sc_enabled = 1;
329 1.1 bjh21 splx(s);
330 1.1 bjh21
331 1.1 bjh21 return 0;
332 1.1 bjh21 }
333 1.1 bjh21
334 1.1 bjh21 void
335 1.1 bjh21 pms_disable(v)
336 1.1 bjh21 void *v;
337 1.1 bjh21 {
338 1.1 bjh21 struct pms_softc *sc = v;
339 1.1 bjh21 int s;
340 1.1 bjh21
341 1.1 bjh21 do_disable(sc);
342 1.1 bjh21
343 1.1 bjh21 s = spltty();
344 1.1 bjh21 sc->sc_enabled = 0;
345 1.1 bjh21 splx(s);
346 1.1 bjh21 }
347 1.1 bjh21
348 1.1 bjh21 #ifndef PMS_DISABLE_POWERHOOK
349 1.1 bjh21 void
350 1.1 bjh21 pms_power(why, v)
351 1.1 bjh21 int why;
352 1.1 bjh21 void *v;
353 1.1 bjh21 {
354 1.1 bjh21 struct pms_softc *sc = v;
355 1.1 bjh21
356 1.1 bjh21 switch (why) {
357 1.1 bjh21 case PWR_STANDBY:
358 1.1 bjh21 break;
359 1.1 bjh21 case PWR_SUSPEND:
360 1.1 bjh21 if (sc->sc_enabled) {
361 1.1 bjh21 do_disable(sc);
362 1.1 bjh21 sc->sc_suspended = 1;
363 1.1 bjh21 }
364 1.1 bjh21 break;
365 1.1 bjh21 case PWR_RESUME:
366 1.1 bjh21 if (sc->sc_enabled && sc->sc_suspended) {
367 1.1 bjh21 sc->protocol = PMS_UNKNOWN; /* recheck protocol & init mouse */
368 1.1 bjh21 sc->sc_suspended = 0;
369 1.1 bjh21 do_enable(sc); /* only if we were suspended */
370 1.1 bjh21 }
371 1.1 bjh21 case PWR_SOFTSUSPEND:
372 1.1 bjh21 case PWR_SOFTSTANDBY:
373 1.1 bjh21 case PWR_SOFTRESUME:
374 1.1 bjh21 break;
375 1.1 bjh21 }
376 1.1 bjh21 }
377 1.1 bjh21 #endif /* !PMS_DISABLE_POWERHOOK */
378 1.1 bjh21
379 1.1 bjh21 int
380 1.1 bjh21 pms_ioctl(v, cmd, data, flag, p)
381 1.1 bjh21 void *v;
382 1.1 bjh21 u_long cmd;
383 1.1 bjh21 caddr_t data;
384 1.1 bjh21 int flag;
385 1.1 bjh21 struct proc *p;
386 1.1 bjh21 {
387 1.1 bjh21 struct pms_softc *sc = v;
388 1.1 bjh21 u_char kbcmd[2];
389 1.1 bjh21 int i;
390 1.1 bjh21
391 1.1 bjh21 switch (cmd) {
392 1.1 bjh21 case WSMOUSEIO_GTYPE:
393 1.1 bjh21 *(u_int *)data = WSMOUSE_TYPE_PS2;
394 1.1 bjh21 break;
395 1.1 bjh21
396 1.1 bjh21 case WSMOUSEIO_SRES:
397 1.1 bjh21 i = (*(u_int *)data - 12) / 25;
398 1.1 bjh21
399 1.1 bjh21 if (i < 0)
400 1.1 bjh21 i = 0;
401 1.1 bjh21
402 1.1 bjh21 if (i > 3)
403 1.1 bjh21 i = 3;
404 1.1 bjh21
405 1.1 bjh21 kbcmd[0] = PMS_SET_RES;
406 1.1 bjh21 kbcmd[1] = i;
407 1.1 bjh21 i = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, kbcmd,
408 1.1 bjh21 2, 0, 1, 0);
409 1.1 bjh21
410 1.1 bjh21 if (i)
411 1.1 bjh21 printf("pms_ioctl: SET_RES command error\n");
412 1.1 bjh21 break;
413 1.1 bjh21
414 1.1 bjh21 default:
415 1.1 bjh21 return (EPASSTHROUGH);
416 1.1 bjh21 }
417 1.1 bjh21 return (0);
418 1.1 bjh21 }
419 1.1 bjh21
420 1.1 bjh21 static void
421 1.1 bjh21 pms_spawn_reset_thread(arg)
422 1.1 bjh21 void *arg;
423 1.1 bjh21 {
424 1.1 bjh21 struct pms_softc *sc = arg;
425 1.1 bjh21
426 1.1 bjh21 kthread_create1(pms_reset_thread, sc, &sc->sc_event_thread,
427 1.1 bjh21 sc->sc_dev.dv_xname);
428 1.1 bjh21 }
429 1.1 bjh21
430 1.1 bjh21 static void
431 1.1 bjh21 pms_reset_thread(arg)
432 1.1 bjh21 void *arg;
433 1.1 bjh21 {
434 1.1 bjh21 struct pms_softc *sc = arg;
435 1.1 bjh21 u_char cmd[1], resp[2];
436 1.1 bjh21 int res;
437 1.1 bjh21 int save_protocol;
438 1.1 bjh21
439 1.1 bjh21 for (;;) {
440 1.1 bjh21 tsleep(&sc->sc_enabled, PWAIT, "pmsreset", 0);
441 1.1 bjh21 #ifdef PMSDEBUG
442 1.1 bjh21 if (pmsdebug)
443 1.1 bjh21 #endif
444 1.1 bjh21 #if defined(PMSDEBUG) || defined(DIAGNOSTIC)
445 1.1 bjh21 printf("%s: resetting mouse interface\n",
446 1.1 bjh21 sc->sc_dev.dv_xname);
447 1.1 bjh21 #endif
448 1.1 bjh21 save_protocol = sc->protocol;
449 1.1 bjh21 pms_disable(sc);
450 1.1 bjh21 cmd[0] = PMS_RESET;
451 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag, sc->sc_kbcslot, cmd, 1,
452 1.1 bjh21 2, 1, resp);
453 1.1 bjh21 if (res)
454 1.1 bjh21 DPRINTF(("%s: reset error %d\n", sc->sc_dev.dv_xname,
455 1.1 bjh21 res));
456 1.1 bjh21 sc->protocol = PMS_UNKNOWN;
457 1.1 bjh21 pms_enable(sc);
458 1.1 bjh21 if (sc->protocol != save_protocol) {
459 1.1 bjh21 #if defined(PMSDEBUG) || defined(DIAGNOSTIC)
460 1.1 bjh21 printf("%s: protocol change, sleeping and retrying\n",
461 1.1 bjh21 sc->sc_dev.dv_xname);
462 1.1 bjh21 #endif
463 1.1 bjh21 pms_disable(sc);
464 1.1 bjh21 cmd[0] = PMS_RESET;
465 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag,
466 1.1 bjh21 sc->sc_kbcslot, cmd, 1, 2, 1, resp);
467 1.1 bjh21 if (res)
468 1.1 bjh21 DPRINTF(("%s: reset error %d\n",
469 1.1 bjh21 sc->sc_dev.dv_xname, res));
470 1.1 bjh21 tsleep(pms_reset_thread, PWAIT, "pmsreset", hz);
471 1.1 bjh21 cmd[0] = PMS_RESET;
472 1.1 bjh21 res = pckbport_enqueue_cmd(sc->sc_kbctag,
473 1.1 bjh21 sc->sc_kbcslot, cmd, 1, 2, 1, resp);
474 1.1 bjh21 if (res)
475 1.1 bjh21 DPRINTF(("%s: reset error %d\n",
476 1.1 bjh21 sc->sc_dev.dv_xname, res));
477 1.1 bjh21 sc->protocol = PMS_UNKNOWN; /* reprobe protocol */
478 1.1 bjh21 pms_enable(sc);
479 1.1 bjh21 #if defined(PMSDEBUG) || defined(DIAGNOSTIC)
480 1.1 bjh21 if (sc->protocol != save_protocol) {
481 1.1 bjh21 printf("%s: protocol changed.\n",
482 1.1 bjh21 sc->sc_dev.dv_xname);
483 1.1 bjh21 }
484 1.1 bjh21 #endif
485 1.1 bjh21 }
486 1.1 bjh21 }
487 1.1 bjh21 }
488 1.1 bjh21
489 1.1 bjh21 /* Masks for the first byte of a packet */
490 1.1 bjh21 #define PMS_LBUTMASK 0x01
491 1.1 bjh21 #define PMS_RBUTMASK 0x02
492 1.1 bjh21 #define PMS_MBUTMASK 0x04
493 1.1 bjh21 #define PMS_4BUTMASK 0x10
494 1.1 bjh21 #define PMS_5BUTMASK 0x20
495 1.1 bjh21
496 1.1 bjh21 void
497 1.1 bjh21 pmsinput(vsc, data)
498 1.1 bjh21 void *vsc;
499 1.1 bjh21 int data;
500 1.1 bjh21 {
501 1.1 bjh21 struct pms_softc *sc = vsc;
502 1.1 bjh21 u_int changed;
503 1.1 bjh21 int dx, dy, dz = 0;
504 1.1 bjh21 int newbuttons = 0;
505 1.1 bjh21 int s;
506 1.1 bjh21
507 1.1 bjh21 if (!sc->sc_enabled) {
508 1.1 bjh21 /* Interrupts are not expected. Discard the byte. */
509 1.1 bjh21 return;
510 1.1 bjh21 }
511 1.1 bjh21
512 1.1 bjh21 s = splclock();
513 1.1 bjh21 sc->current = mono_time;
514 1.1 bjh21 splx(s);
515 1.1 bjh21
516 1.1 bjh21 if (sc->inputstate > 0) {
517 1.1 bjh21 struct timeval diff;
518 1.1 bjh21
519 1.1 bjh21 timersub(&sc->current, &sc->last, &diff);
520 1.1 bjh21 /*
521 1.1 bjh21 * Empirically, the delay should be about 1700us on a standard
522 1.1 bjh21 * PS/2 port. I have seen delays as large as 4500us (rarely)
523 1.1 bjh21 * in regular use. When using a confused mouse, I generally
524 1.1 bjh21 * see delays at least as large as 30,000us. -seebs
525 1.1 bjh21 *
526 1.1 bjh21 * The thinkpad trackball returns at 22-23ms. So we use
527 1.1 bjh21 * >= 40ms. In the future, I'll implement adaptable timeout
528 1.1 bjh21 * by increasing the timeout if the mouse reset happens
529 1.1 bjh21 * too frequently -christos
530 1.1 bjh21 */
531 1.1 bjh21 if (diff.tv_sec > 0 || diff.tv_usec >= 40000) {
532 1.1 bjh21 DPRINTF(("pms_input: unusual delay (%ld.%06ld s), "
533 1.1 bjh21 "scheduling reset\n",
534 1.1 bjh21 (long)diff.tv_sec, (long)diff.tv_usec));
535 1.1 bjh21 sc->inputstate = 0;
536 1.1 bjh21 sc->sc_enabled = 0;
537 1.1 bjh21 wakeup(&sc->sc_enabled);
538 1.1 bjh21 return;
539 1.1 bjh21 }
540 1.1 bjh21 }
541 1.1 bjh21 sc->last = sc->current;
542 1.1 bjh21
543 1.1 bjh21 if (sc->inputstate == 0) {
544 1.1 bjh21 /*
545 1.1 bjh21 * Some devices (seen on trackballs anytime, and on some mice shortly after
546 1.1 bjh21 * reset) output garbage bytes between packets.
547 1.1 bjh21 * Just ignore them.
548 1.1 bjh21 */
549 1.1 bjh21 if ((data & 0xc0) != 0)
550 1.1 bjh21 return; /* not in sync yet, discard input */
551 1.1 bjh21 }
552 1.1 bjh21
553 1.1 bjh21 sc->packet[sc->inputstate++] = data & 0xff;
554 1.1 bjh21 switch (sc->inputstate) {
555 1.1 bjh21 case 0:
556 1.1 bjh21 /* no useful processing can be done yet */
557 1.1 bjh21 break;
558 1.1 bjh21
559 1.1 bjh21 case 1:
560 1.1 bjh21 /*
561 1.1 bjh21 * Why should we test for bit 0x8 and insist on it here?
562 1.1 bjh21 * The old (psm.c and psm_intelli.c) drivers didn't do
563 1.1 bjh21 * it, and there are devices where it does harm (that's
564 1.1 bjh21 * why it is not used if using PMS_STANDARD protocol).
565 1.1 bjh21 * Anyway, it does not to cause any harm to accept packets
566 1.1 bjh21 * without this bit.
567 1.1 bjh21 */
568 1.1 bjh21 #if 0
569 1.1 bjh21 if (sc->protocol == PMS_STANDARD)
570 1.1 bjh21 break;
571 1.1 bjh21 if (!(sc->packet[0] & 0x8)) {
572 1.1 bjh21 DPRINTF(("pmsinput: 0x8 not set in first byte "
573 1.1 bjh21 "[0x%02x], resetting\n", sc->packet[0]));
574 1.1 bjh21 sc->inputstate = 0;
575 1.1 bjh21 sc->sc_enabled = 0;
576 1.1 bjh21 wakeup(&sc->sc_enabled);
577 1.1 bjh21 return;
578 1.1 bjh21 }
579 1.1 bjh21 #endif
580 1.1 bjh21 break;
581 1.1 bjh21
582 1.1 bjh21 case 2:
583 1.1 bjh21 break;
584 1.1 bjh21
585 1.1 bjh21 case 4:
586 1.1 bjh21 /* Case 4 is a superset of case 3. This is *not* an accident. */
587 1.1 bjh21 if (sc->protocol == PMS_SCROLL3) {
588 1.1 bjh21 dz = sc->packet[3];
589 1.1 bjh21 if (dz >= 128)
590 1.1 bjh21 dz -= 256;
591 1.1 bjh21 if (dz == -128)
592 1.1 bjh21 dz = -127;
593 1.1 bjh21 } else if (sc->protocol == PMS_SCROLL5) {
594 1.1 bjh21 dz = sc->packet[3] & 0xf;
595 1.1 bjh21 if (dz >= 8)
596 1.1 bjh21 dz -= 16;
597 1.1 bjh21 if (sc->packet[3] & PMS_4BUTMASK)
598 1.1 bjh21 newbuttons |= 0x8;
599 1.1 bjh21 if (sc->packet[3] & PMS_5BUTMASK)
600 1.1 bjh21 newbuttons |= 0x10;
601 1.1 bjh21 } else {
602 1.1 bjh21 DPRINTF(("pmsinput: why am I looking at this byte?\n"));
603 1.1 bjh21 dz = 0;
604 1.1 bjh21 }
605 1.1 bjh21 /* FALLTHROUGH */
606 1.1 bjh21 case 3:
607 1.1 bjh21 /*
608 1.1 bjh21 * This is only an endpoint for scroll protocols with 4
609 1.1 bjh21 * bytes, or the standard protocol with 3.
610 1.1 bjh21 */
611 1.1 bjh21 if (sc->protocol != PMS_STANDARD && sc->inputstate == 3)
612 1.1 bjh21 break;
613 1.1 bjh21
614 1.1 bjh21 newbuttons |= ((sc->packet[0] & PMS_LBUTMASK) ? 0x1 : 0) |
615 1.1 bjh21 ((sc->packet[0] & PMS_MBUTMASK) ? 0x2 : 0) |
616 1.1 bjh21 ((sc->packet[0] & PMS_RBUTMASK) ? 0x4 : 0);
617 1.1 bjh21
618 1.1 bjh21 dx = sc->packet[1];
619 1.1 bjh21 if (dx >= 128)
620 1.1 bjh21 dx -= 256;
621 1.1 bjh21 if (dx == -128)
622 1.1 bjh21 dx = -127;
623 1.1 bjh21
624 1.1 bjh21 dy = sc->packet[2];
625 1.1 bjh21 if (dy >= 128)
626 1.1 bjh21 dy -= 256;
627 1.1 bjh21 if (dy == -128)
628 1.1 bjh21 dy = -127;
629 1.1 bjh21
630 1.1 bjh21 sc->inputstate = 0;
631 1.1 bjh21 changed = (sc->buttons ^ newbuttons);
632 1.1 bjh21 sc->buttons = newbuttons;
633 1.1 bjh21
634 1.1 bjh21 #ifdef PMSDEBUG
635 1.1 bjh21 if (sc->protocol == PMS_STANDARD) {
636 1.1 bjh21 DPRINTF(("pms: packet: 0x%02x%02x%02x\n",
637 1.1 bjh21 sc->packet[0], sc->packet[1], sc->packet[2]));
638 1.1 bjh21 } else {
639 1.1 bjh21 DPRINTF(("pms: packet: 0x%02x%02x%02x%02x\n",
640 1.1 bjh21 sc->packet[0], sc->packet[1], sc->packet[2],
641 1.1 bjh21 sc->packet[3]));
642 1.1 bjh21 }
643 1.1 bjh21 #endif
644 1.1 bjh21 if (dx || dy || dz || changed) {
645 1.1 bjh21 #ifdef PMSDEBUG
646 1.1 bjh21 DPRINTF(("pms: x %+03d y %+03d z %+03d "
647 1.1 bjh21 "buttons 0x%02x\n", dx, dy, dz, sc->buttons));
648 1.1 bjh21 #endif
649 1.1 bjh21 wsmouse_input(sc->sc_wsmousedev,
650 1.1 bjh21 sc->buttons, dx, dy, dz,
651 1.1 bjh21 WSMOUSE_INPUT_DELTA);
652 1.1 bjh21 }
653 1.1 bjh21 memset(sc->packet, 0, 4);
654 1.1 bjh21 break;
655 1.1 bjh21
656 1.1 bjh21 /* If we get here, we have problems. */
657 1.1 bjh21 default:
658 1.1 bjh21 printf("pmsinput: very confused. resetting.\n");
659 1.1 bjh21 sc->inputstate = 0;
660 1.1 bjh21 sc->sc_enabled = 0;
661 1.1 bjh21 wakeup(&sc->sc_enabled);
662 1.1 bjh21 return;
663 1.1 bjh21 }
664 1.1 bjh21 }
665