lms.c revision 1.6.2.6 1 1.1 andrew /*-
2 1.6.2.4 mycroft * Copyright (c) 1993 Charles Hannum
3 1.1 andrew * Copyright (c) 1992, 1993 Erik Forsberg.
4 1.1 andrew * All rights reserved.
5 1.1 andrew *
6 1.1 andrew * Redistribution and use in source and binary forms, with or without
7 1.1 andrew * modification, are permitted provided that the following conditions
8 1.1 andrew * are met:
9 1.1 andrew * 1. Redistributions of source code must retain the above copyright
10 1.1 andrew * notice, this list of conditions and the following disclaimer.
11 1.1 andrew *
12 1.1 andrew * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
13 1.1 andrew * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14 1.1 andrew * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
15 1.1 andrew * NO EVENT SHALL I BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
16 1.1 andrew * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
17 1.1 andrew * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
18 1.1 andrew * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
19 1.1 andrew * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
20 1.1 andrew * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
21 1.1 andrew * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22 1.1 andrew *
23 1.6.2.6 mycroft * $Id: lms.c,v 1.6.2.6 1993/09/30 20:19:05 mycroft Exp $
24 1.1 andrew */
25 1.1 andrew
26 1.1 andrew #include "param.h"
27 1.1 andrew #include "kernel.h"
28 1.1 andrew #include "systm.h"
29 1.1 andrew #include "buf.h"
30 1.1 andrew #include "malloc.h"
31 1.1 andrew #include "ioctl.h"
32 1.1 andrew #include "tty.h"
33 1.1 andrew #include "file.h"
34 1.1 andrew #include "select.h"
35 1.1 andrew #include "proc.h"
36 1.1 andrew #include "vnode.h"
37 1.6.2.1 mycroft #include "sys/device.h"
38 1.1 andrew
39 1.6.2.1 mycroft #include "i386/isa/isavar.h"
40 1.6.2.6 mycroft #include "i386/isa/isa.h"
41 1.6.2.6 mycroft #include "i386/isa/icu.h"
42 1.1 andrew #include "i386/include/mouse.h"
43 1.6.2.1 mycroft #include "i386/include/pio.h"
44 1.1 andrew
45 1.6.2.1 mycroft #define LMS_DATA 0 /* Offset for data port, read-only */
46 1.6.2.1 mycroft #define LMS_SIGN 1 /* Offset for signature port, read-write */
47 1.6.2.1 mycroft #define LMS_INTR 2 /* Offset for interrupt port, read-only */
48 1.6.2.1 mycroft #define LMS_CNTRL 2 /* Offset for control port, write-only */
49 1.6.2.1 mycroft #define LMS_CONFIG 3 /* for configuration port, read-write */
50 1.6.2.1 mycroft #define LMS_NPORTS 4
51 1.6.2.1 mycroft
52 1.6.2.1 mycroft #define LMS_CHUNK 128 /* chunk size for read */
53 1.6.2.1 mycroft #define LMS_BSIZE 1024 /* buffer size */
54 1.6.2.1 mycroft
55 1.6.2.1 mycroft struct lms_softc { /* Driver status information */
56 1.6.2.5 mycroft struct device sc_dev;
57 1.6.2.5 mycroft struct isadev sc_id;
58 1.6.2.5 mycroft struct intrhand sc_ih;
59 1.6.2.5 mycroft
60 1.6.2.5 mycroft struct ringbuf { /* Input queue */
61 1.6.2.1 mycroft int rb_count, rb_first, rb_last;
62 1.6.2.1 mycroft char rb_data[LMS_BSIZE];
63 1.6.2.1 mycroft } sc_q;
64 1.6.2.1 mycroft struct selinfo sc_rsel;
65 1.6.2.1 mycroft u_short sc_iobase; /* I/O port base */
66 1.6.2.1 mycroft u_char sc_flags; /* Driver flags */
67 1.6.2.3 mycroft #define LMS_NOBLOCK 0x01
68 1.6.2.1 mycroft u_char sc_state; /* Mouse driver state */
69 1.6.2.2 mycroft #define LMS_OPEN 0x01 /* Device is open */
70 1.6.2.2 mycroft #define LMS_ASLP 0x02 /* Waiting for mouse data */
71 1.6.2.1 mycroft u_char sc_status; /* Mouse button status */
72 1.6.2.1 mycroft int sc_x, sc_y; /* accumulated motion in the X,Y axis */
73 1.1 andrew };
74 1.1 andrew
75 1.6.2.1 mycroft static int lmsprobe __P((struct device *, struct cfdata *, void *));
76 1.6.2.1 mycroft static void lmsforceintr __P((void *));
77 1.6.2.1 mycroft static void lmsattach __P((struct device *, struct device *, void *));
78 1.6.2.1 mycroft static int lmsintr __P((void *));
79 1.1 andrew
80 1.6.2.1 mycroft struct cfdriver lmscd =
81 1.6.2.1 mycroft { NULL, "lms", lmsprobe, lmsattach, sizeof (struct lms_softc) };
82 1.1 andrew
83 1.6.2.1 mycroft #define LMSUNIT(dev) (minor(dev) >> 1)
84 1.6.2.1 mycroft #define LMSFLAGS(dev) (minor(dev) & 0x01)
85 1.1 andrew
86 1.6.2.1 mycroft static int
87 1.6.2.1 mycroft lmsprobe(parent, cf, aux)
88 1.6.2.1 mycroft struct device *parent;
89 1.6.2.1 mycroft struct cfdata *cf;
90 1.6.2.1 mycroft void *aux;
91 1.1 andrew {
92 1.6.2.1 mycroft struct isa_attach_args *ia = aux;
93 1.6.2.1 mycroft u_short iobase = ia->ia_iobase;
94 1.1 andrew
95 1.6.2.6 mycroft if (iobase == IOBASEUNK)
96 1.6.2.6 mycroft return 0;
97 1.6.2.6 mycroft
98 1.1 andrew /* Configure and check for port present */
99 1.6.2.1 mycroft outb(iobase + LMS_CONFIG, 0x91);
100 1.6.2.1 mycroft delay(10);
101 1.6.2.1 mycroft outb(iobase + LMS_SIGN, 0x0c);
102 1.6.2.1 mycroft delay(10);
103 1.6.2.1 mycroft if (inb(iobase + LMS_SIGN) != 0x0c)
104 1.6.2.1 mycroft return 0;
105 1.6.2.1 mycroft outb(iobase + LMS_SIGN, 0x50);
106 1.6.2.1 mycroft delay(10);
107 1.6.2.1 mycroft if (inb(iobase + LMS_SIGN) != 0x50)
108 1.6.2.1 mycroft return 0;
109 1.6.2.1 mycroft
110 1.6.2.6 mycroft if (ia->ia_irq == IRQUNK) {
111 1.6.2.6 mycroft ia->ia_irq = isa_discoverintr(lmsforceintr, aux);
112 1.6.2.6 mycroft if (ia->ia_irq == IRQNONE)
113 1.6.2.6 mycroft return 0;
114 1.6.2.6 mycroft }
115 1.6.2.1 mycroft
116 1.6.2.1 mycroft /* disable interrupts */
117 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0x10);
118 1.6.2.1 mycroft
119 1.6.2.1 mycroft ia->ia_iosize = LMS_NPORTS;
120 1.6.2.1 mycroft ia->ia_drq = DRQUNK;
121 1.6.2.1 mycroft ia->ia_msize = 0;
122 1.6.2.1 mycroft return 1;
123 1.1 andrew }
124 1.1 andrew
125 1.6.2.1 mycroft static void
126 1.6.2.1 mycroft lmsforceintr(aux)
127 1.6.2.1 mycroft void *aux;
128 1.1 andrew {
129 1.6.2.1 mycroft struct isa_attach_args *ia = aux;
130 1.1 andrew
131 1.6.2.1 mycroft /* enable interrupts; expect to get one in 1/60 second */
132 1.6.2.1 mycroft outb(ia->ia_iobase + LMS_CNTRL, 0);
133 1.1 andrew }
134 1.1 andrew
135 1.6.2.1 mycroft static void
136 1.6.2.1 mycroft lmsattach(parent, self, aux)
137 1.6.2.1 mycroft struct device *parent, *self;
138 1.6.2.1 mycroft void *aux;
139 1.1 andrew {
140 1.6.2.1 mycroft struct lms_softc *sc = (struct lms_softc *)self;
141 1.6.2.1 mycroft struct isa_attach_args *ia = aux;
142 1.6.2.1 mycroft u_short iobase = ia->ia_iobase;
143 1.6.2.1 mycroft
144 1.6.2.1 mycroft /* other initialization done by lmsprobe */
145 1.6.2.1 mycroft sc->sc_iobase = iobase;
146 1.6.2.1 mycroft sc->sc_state = 0;
147 1.1 andrew
148 1.6.2.5 mycroft printf(": Logitech mouse\n");
149 1.6.2.6 mycroft isa_establish(&sc->sc_id, &sc->sc_dev);
150 1.6.2.5 mycroft
151 1.6.2.6 mycroft sc->sc_ih.ih_fun = lmsintr;
152 1.6.2.6 mycroft sc->sc_ih.ih_arg = sc;
153 1.6.2.6 mycroft intr_establish(ia->ia_irq, &sc->sc_ih, DV_TTY);
154 1.1 andrew }
155 1.1 andrew
156 1.6.2.1 mycroft int
157 1.6.2.1 mycroft lmsopen(dev, flag)
158 1.6.2.1 mycroft dev_t dev;
159 1.6.2.1 mycroft int flag;
160 1.1 andrew {
161 1.6.2.1 mycroft int unit = LMSUNIT(dev);
162 1.6.2.1 mycroft struct lms_softc *sc;
163 1.1 andrew
164 1.6.2.1 mycroft if (unit >= lmscd.cd_ndevs)
165 1.6.2.1 mycroft return ENXIO;
166 1.6.2.5 mycroft sc = lmscd.cd_devs[unit];
167 1.6.2.1 mycroft if (!sc)
168 1.6.2.1 mycroft return ENXIO;
169 1.6.2.1 mycroft
170 1.6.2.2 mycroft if (sc->sc_state & LMS_OPEN)
171 1.6.2.1 mycroft return EBUSY;
172 1.6.2.1 mycroft
173 1.6.2.2 mycroft sc->sc_state |= LMS_OPEN;
174 1.6.2.1 mycroft sc->sc_status = 0;
175 1.6.2.1 mycroft sc->sc_x = sc->sc_y = 0;
176 1.6.2.1 mycroft sc->sc_q.rb_count = sc->sc_q.rb_first = sc->sc_q.rb_last = 0;
177 1.1 andrew
178 1.6.2.1 mycroft /* enable interrupts */
179 1.6.2.1 mycroft outb(sc->sc_iobase + LMS_CNTRL, 0);
180 1.1 andrew
181 1.6.2.1 mycroft return 0;
182 1.6.2.1 mycroft }
183 1.1 andrew
184 1.6.2.1 mycroft int
185 1.6.2.1 mycroft lmsclose(dev, flag)
186 1.6.2.1 mycroft dev_t dev;
187 1.6.2.1 mycroft int flag;
188 1.6.2.1 mycroft {
189 1.6.2.1 mycroft int unit = LMSUNIT(dev);
190 1.6.2.5 mycroft struct lms_softc *sc = lmscd.cd_devs[unit];
191 1.1 andrew
192 1.6.2.1 mycroft /* disable interrupts */
193 1.6.2.1 mycroft outb(sc->sc_iobase + LMS_CNTRL, 0x10);
194 1.1 andrew
195 1.6.2.2 mycroft sc->sc_state &= ~LMS_OPEN;
196 1.1 andrew
197 1.6.2.1 mycroft return 0;
198 1.1 andrew }
199 1.1 andrew
200 1.6.2.1 mycroft int
201 1.6.2.1 mycroft lmsread(dev, uio, flag)
202 1.6.2.1 mycroft dev_t dev;
203 1.6.2.1 mycroft struct uio *uio;
204 1.6.2.1 mycroft int flag;
205 1.1 andrew {
206 1.6.2.1 mycroft int unit = LMSUNIT(dev);
207 1.6.2.5 mycroft struct lms_softc *sc = lmscd.cd_devs[unit];
208 1.6.2.1 mycroft int s;
209 1.6.2.1 mycroft int error;
210 1.6.2.1 mycroft size_t length;
211 1.6.2.1 mycroft u_char buffer[LMS_CHUNK];
212 1.1 andrew
213 1.1 andrew /* Block until mouse activity occured */
214 1.1 andrew
215 1.1 andrew s = spltty();
216 1.6.2.1 mycroft while (sc->sc_q.rb_count == 0) {
217 1.6.2.3 mycroft if (sc->sc_flags & LMS_NOBLOCK) {
218 1.1 andrew splx(s);
219 1.6.2.1 mycroft return EWOULDBLOCK;
220 1.1 andrew }
221 1.6.2.2 mycroft sc->sc_state |= LMS_ASLP;
222 1.6.2.1 mycroft if (error = tsleep((caddr_t)sc, PZERO | PCATCH, "lmsrea", 0)) {
223 1.6.2.2 mycroft sc->sc_state &= ~LMS_ASLP;
224 1.1 andrew splx(s);
225 1.6.2.1 mycroft return error;
226 1.1 andrew }
227 1.1 andrew }
228 1.1 andrew
229 1.1 andrew /* Transfer as many chunks as possible */
230 1.1 andrew
231 1.6.2.1 mycroft while (sc->sc_q.rb_count > 0 && uio->uio_resid > 0) {
232 1.6.2.1 mycroft length = min(sc->sc_q.rb_count, uio->uio_resid);
233 1.1 andrew if (length > sizeof(buffer))
234 1.1 andrew length = sizeof(buffer);
235 1.1 andrew
236 1.1 andrew /* Remove a small chunk from input queue */
237 1.1 andrew
238 1.6.2.1 mycroft if (sc->sc_q.rb_first + length >= LMS_BSIZE) {
239 1.6.2.1 mycroft size_t left = LMS_BSIZE - sc->sc_q.rb_first;
240 1.6.2.1 mycroft bcopy(&sc->sc_q.rb_data[sc->sc_q.rb_first], buffer,
241 1.6.2.1 mycroft left);
242 1.6.2.1 mycroft bcopy(sc->sc_q.rb_data, &buffer[left], length - left);
243 1.6.2.1 mycroft } else
244 1.6.2.1 mycroft bcopy(&sc->sc_q.rb_data[sc->sc_q.rb_first], buffer,
245 1.6.2.1 mycroft length);
246 1.1 andrew
247 1.6.2.1 mycroft sc->sc_q.rb_first = (sc->sc_q.rb_first + length) % LMS_BSIZE;
248 1.6.2.1 mycroft sc->sc_q.rb_count -= length;
249 1.1 andrew
250 1.1 andrew /* Copy data to user process */
251 1.1 andrew
252 1.6.2.1 mycroft if (error = uiomove(buffer, length, uio))
253 1.1 andrew break;
254 1.1 andrew }
255 1.1 andrew
256 1.6.2.1 mycroft /* reset counters */
257 1.6.2.1 mycroft sc->sc_x = sc->sc_y = 0;
258 1.1 andrew
259 1.1 andrew splx(s);
260 1.6.2.1 mycroft return error;
261 1.1 andrew }
262 1.1 andrew
263 1.6.2.1 mycroft int
264 1.6.2.1 mycroft lmsioctl(dev, cmd, addr, flag)
265 1.6.2.1 mycroft dev_t dev;
266 1.6.2.1 mycroft int cmd;
267 1.6.2.1 mycroft caddr_t addr;
268 1.6.2.1 mycroft int flag;
269 1.1 andrew {
270 1.6.2.1 mycroft int unit = LMSUNIT(dev);
271 1.6.2.5 mycroft struct lms_softc *sc = lmscd.cd_devs[unit];
272 1.6.2.1 mycroft struct mouseinfo info;
273 1.6.2.1 mycroft int s;
274 1.6.2.1 mycroft int error;
275 1.1 andrew
276 1.1 andrew switch (cmd) {
277 1.6.2.1 mycroft case MOUSEIOCREAD:
278 1.1 andrew s = spltty();
279 1.1 andrew
280 1.6.2.1 mycroft info.status = sc->sc_status;
281 1.6.2.1 mycroft if (sc->sc_x || sc->sc_y)
282 1.1 andrew info.status |= MOVEMENT;
283 1.1 andrew
284 1.6.2.1 mycroft if (sc->sc_x > 127)
285 1.1 andrew info.xmotion = 127;
286 1.6.2.1 mycroft else if (sc->sc_x < -127)
287 1.6.2.1 mycroft /* bounding at -127 avoids a bug in XFree86 */
288 1.3 mycroft info.xmotion = -127;
289 1.1 andrew else
290 1.6.2.1 mycroft info.xmotion = sc->sc_x;
291 1.1 andrew
292 1.6.2.1 mycroft if (sc->sc_y > 127)
293 1.1 andrew info.ymotion = 127;
294 1.6.2.1 mycroft else if (sc->sc_y < -127)
295 1.3 mycroft info.ymotion = -127;
296 1.1 andrew else
297 1.6.2.1 mycroft info.ymotion = sc->sc_y;
298 1.1 andrew
299 1.6.2.1 mycroft sc->sc_x = 0;
300 1.6.2.1 mycroft sc->sc_y = 0;
301 1.6.2.1 mycroft sc->sc_status &= ~BUTCHNGMASK;
302 1.1 andrew
303 1.1 andrew splx(s);
304 1.1 andrew error = copyout(&info, addr, sizeof(struct mouseinfo));
305 1.1 andrew break;
306 1.1 andrew
307 1.6.2.1 mycroft default:
308 1.1 andrew error = EINVAL;
309 1.1 andrew break;
310 1.6.2.1 mycroft }
311 1.1 andrew
312 1.6.2.1 mycroft return error;
313 1.1 andrew }
314 1.1 andrew
315 1.6.2.1 mycroft int
316 1.6.2.1 mycroft lmsintr(arg)
317 1.6.2.1 mycroft void *arg;
318 1.1 andrew {
319 1.6.2.1 mycroft struct lms_softc *sc = (struct lms_softc *)arg;
320 1.6.2.1 mycroft u_short iobase = sc->sc_iobase;
321 1.6.2.1 mycroft u_char hi, lo, buttons, changed;
322 1.6.2.1 mycroft char dx, dy;
323 1.6.2.1 mycroft
324 1.6.2.2 mycroft if ((sc->sc_state & LMS_OPEN) == 0)
325 1.6.2.1 mycroft /* interrupts not expected */
326 1.6.2.1 mycroft return 0;
327 1.6.2.1 mycroft
328 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0xab);
329 1.6.2.1 mycroft hi = inb(iobase + LMS_DATA);
330 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0x90);
331 1.6.2.1 mycroft lo = inb(iobase + LMS_DATA);
332 1.6.2.1 mycroft dx = ((hi & 0x0f) << 4) | (lo & 0x0f);
333 1.6.2.1 mycroft /* bounding at -127 avoids a bug in XFree86 */
334 1.3 mycroft dx = (dx == -128) ? -127 : dx;
335 1.3 mycroft
336 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0xf0);
337 1.6.2.1 mycroft hi = inb(iobase + LMS_DATA);
338 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0xd0);
339 1.6.2.1 mycroft lo = inb(iobase + LMS_DATA);
340 1.6.2.1 mycroft dy = ((hi & 0x0f) << 4) | (lo & 0x0f);
341 1.1 andrew dy = (dy == -128) ? 127 : -dy;
342 1.3 mycroft
343 1.6.2.1 mycroft outb(iobase + LMS_CNTRL, 0);
344 1.6.2.1 mycroft
345 1.6.2.4 mycroft buttons = (~hi >> 5) & 0x07;
346 1.6.2.4 mycroft changed = ((buttons ^ sc->sc_status) & 0x07) << 3;
347 1.6.2.4 mycroft sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
348 1.6.2.1 mycroft
349 1.6.2.4 mycroft if (dx || dy || changed) {
350 1.6.2.1 mycroft int last = sc->sc_q.rb_last;
351 1.6.2.1 mycroft char *cp = &sc->sc_q.rb_data[last];
352 1.6.2.1 mycroft int count = sc->sc_q.rb_count;
353 1.6.2.1 mycroft
354 1.6.2.1 mycroft /* Update accumulated movements */
355 1.6.2.1 mycroft sc->sc_x += dx;
356 1.6.2.1 mycroft sc->sc_y += dy;
357 1.6.2.1 mycroft
358 1.6.2.1 mycroft if ((count += 5) > LMS_BSIZE)
359 1.6.2.1 mycroft return 1;
360 1.6.2.1 mycroft sc->sc_q.rb_count = count;
361 1.6.2.1 mycroft
362 1.6.2.1 mycroft #define next() \
363 1.6.2.1 mycroft if (++last >= LMS_BSIZE) { \
364 1.6.2.1 mycroft last = 0; \
365 1.6.2.1 mycroft cp = sc->sc_q.rb_data; \
366 1.6.2.1 mycroft } else \
367 1.6.2.1 mycroft cp++;
368 1.6.2.1 mycroft *cp = 0x80 | (buttons ^ BUTSTATMASK);
369 1.6.2.1 mycroft next();
370 1.6.2.1 mycroft *cp = dx;
371 1.6.2.1 mycroft next();
372 1.6.2.1 mycroft *cp = dy;
373 1.6.2.1 mycroft next();
374 1.6.2.1 mycroft *cp = 0;
375 1.6.2.1 mycroft next();
376 1.6.2.1 mycroft *cp = 0;
377 1.6.2.1 mycroft next();
378 1.6.2.1 mycroft sc->sc_q.rb_last = last;
379 1.1 andrew
380 1.6.2.2 mycroft if (sc->sc_state & LMS_ASLP) {
381 1.6.2.2 mycroft sc->sc_state &= ~LMS_ASLP;
382 1.5 andrew wakeup((caddr_t)sc);
383 1.1 andrew }
384 1.6.2.1 mycroft selwakeup(&sc->sc_rsel);
385 1.5 andrew }
386 1.6.2.1 mycroft
387 1.6.2.1 mycroft return 1;
388 1.1 andrew }
389 1.1 andrew
390 1.6.2.1 mycroft int
391 1.6.2.1 mycroft lmsselect(dev, rw, p)
392 1.6.2.1 mycroft dev_t dev;
393 1.6.2.1 mycroft int rw;
394 1.6.2.1 mycroft struct proc *p;
395 1.1 andrew {
396 1.6.2.1 mycroft int unit = LMSUNIT(dev);
397 1.6.2.5 mycroft struct lms_softc *sc = lmscd.cd_devs[unit];
398 1.6.2.1 mycroft int s;
399 1.6.2.1 mycroft int ret;
400 1.1 andrew
401 1.1 andrew if (rw == FWRITE)
402 1.6.2.1 mycroft return 0;
403 1.1 andrew
404 1.1 andrew s = spltty();
405 1.6.2.1 mycroft if (sc->sc_q.rb_count)
406 1.1 andrew ret = 1;
407 1.1 andrew else {
408 1.6.2.1 mycroft selrecord(p, &sc->sc_rsel);
409 1.1 andrew ret = 0;
410 1.1 andrew }
411 1.1 andrew splx(s);
412 1.1 andrew
413 1.6.2.1 mycroft return ret;
414 1.1 andrew }
415