opms.c revision 1.3.4.3 1 1.3.4.3 nathanw /* $NetBSD: opms.c,v 1.3.4.3 2002/11/11 21:56:29 nathanw Exp $ */
2 1.3.4.2 nathanw /* $OpenBSD: pccons.c,v 1.22 1999/01/30 22:39:37 imp Exp $ */
3 1.3.4.2 nathanw /* NetBSD: pms.c,v 1.21 1995/04/18 02:25:18 mycroft Exp */
4 1.3.4.2 nathanw
5 1.3.4.2 nathanw /*-
6 1.3.4.2 nathanw * Copyright (c) 1993, 1994, 1995 Charles M. Hannum. All rights reserved.
7 1.3.4.2 nathanw * Copyright (c) 1990 The Regents of the University of California.
8 1.3.4.2 nathanw * All rights reserved.
9 1.3.4.2 nathanw *
10 1.3.4.2 nathanw * This code is derived from software contributed to Berkeley by
11 1.3.4.2 nathanw * William Jolitz and Don Ahn.
12 1.3.4.2 nathanw *
13 1.3.4.2 nathanw * Copyright (c) 1994 Charles M. Hannum.
14 1.3.4.2 nathanw * Copyright (c) 1992, 1993 Erik Forsberg.
15 1.3.4.2 nathanw *
16 1.3.4.2 nathanw * Redistribution and use in source and binary forms, with or without
17 1.3.4.2 nathanw * modification, are permitted provided that the following conditions
18 1.3.4.2 nathanw * are met:
19 1.3.4.2 nathanw * 1. Redistributions of source code must retain the above copyright
20 1.3.4.2 nathanw * notice, this list of conditions and the following disclaimer.
21 1.3.4.2 nathanw * 2. Redistributions in binary form must reproduce the above copyright
22 1.3.4.2 nathanw * notice, this list of conditions and the following disclaimer in the
23 1.3.4.2 nathanw * documentation and/or other materials provided with the distribution.
24 1.3.4.2 nathanw * 3. All advertising materials mentioning features or use of this software
25 1.3.4.2 nathanw * must display the following acknowledgement:
26 1.3.4.2 nathanw * This product includes software developed by the University of
27 1.3.4.2 nathanw * California, Berkeley and its contributors.
28 1.3.4.2 nathanw * 4. Neither the name of the University nor the names of its contributors
29 1.3.4.2 nathanw * may be used to endorse or promote products derived from this software
30 1.3.4.2 nathanw * without specific prior written permission.
31 1.3.4.2 nathanw *
32 1.3.4.2 nathanw * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 1.3.4.2 nathanw * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 1.3.4.2 nathanw * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 1.3.4.2 nathanw * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 1.3.4.2 nathanw * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 1.3.4.2 nathanw * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 1.3.4.2 nathanw * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 1.3.4.2 nathanw * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 1.3.4.2 nathanw * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 1.3.4.2 nathanw * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 1.3.4.2 nathanw * SUCH DAMAGE.
43 1.3.4.2 nathanw *
44 1.3.4.2 nathanw * @(#)pccons.c 5.11 (Berkeley) 5/21/91
45 1.3.4.2 nathanw */
46 1.3.4.2 nathanw
47 1.3.4.2 nathanw #include <sys/param.h>
48 1.3.4.2 nathanw #include <sys/systm.h>
49 1.3.4.2 nathanw #include <sys/vnode.h>
50 1.3.4.2 nathanw #include <sys/poll.h>
51 1.3.4.2 nathanw #include <sys/tty.h>
52 1.3.4.2 nathanw #include <sys/device.h>
53 1.3.4.2 nathanw #include <sys/proc.h>
54 1.3.4.2 nathanw #include <sys/conf.h>
55 1.3.4.2 nathanw
56 1.3.4.2 nathanw #include <machine/bus.h>
57 1.3.4.2 nathanw #include <machine/kbdreg.h>
58 1.3.4.2 nathanw #include <machine/mouse.h>
59 1.3.4.2 nathanw
60 1.3.4.2 nathanw #include <arc/dev/pcconsvar.h>
61 1.3.4.2 nathanw #include <arc/dev/opmsvar.h>
62 1.3.4.2 nathanw
63 1.3.4.2 nathanw #define PMSUNIT(dev) (minor(dev))
64 1.3.4.2 nathanw
65 1.3.4.2 nathanw /* status bits */
66 1.3.4.2 nathanw #define PMS_OBUF_FULL 0x01
67 1.3.4.2 nathanw #define PMS_IBUF_FULL 0x02
68 1.3.4.2 nathanw
69 1.3.4.2 nathanw /* controller commands */
70 1.3.4.2 nathanw #define PMS_INT_ENABLE 0x47 /* enable controller interrupts */
71 1.3.4.2 nathanw #define PMS_INT_DISABLE 0x65 /* disable controller interrupts */
72 1.3.4.2 nathanw #define PMS_AUX_ENABLE 0xa7 /* enable auxiliary port */
73 1.3.4.2 nathanw #define PMS_AUX_DISABLE 0xa8 /* disable auxiliary port */
74 1.3.4.2 nathanw #define PMS_MAGIC_1 0xa9 /* XXX */
75 1.3.4.2 nathanw
76 1.3.4.2 nathanw #define PMS_8042_CMD 0x65
77 1.3.4.2 nathanw
78 1.3.4.2 nathanw /* mouse commands */
79 1.3.4.2 nathanw #define PMS_SET_SCALE11 0xe6 /* set scaling 1:1 */
80 1.3.4.2 nathanw #define PMS_SET_SCALE21 0xe7 /* set scaling 2:1 */
81 1.3.4.2 nathanw #define PMS_SET_RES 0xe8 /* set resolution */
82 1.3.4.2 nathanw #define PMS_GET_SCALE 0xe9 /* get scaling factor */
83 1.3.4.2 nathanw #define PMS_SET_STREAM 0xea /* set streaming mode */
84 1.3.4.2 nathanw #define PMS_SET_SAMPLE 0xf3 /* set sampling rate */
85 1.3.4.2 nathanw #define PMS_DEV_ENABLE 0xf4 /* mouse on */
86 1.3.4.2 nathanw #define PMS_DEV_DISABLE 0xf5 /* mouse off */
87 1.3.4.2 nathanw #define PMS_RESET 0xff /* reset */
88 1.3.4.2 nathanw
89 1.3.4.2 nathanw #define PMS_CHUNK 128 /* chunk size for read */
90 1.3.4.2 nathanw #define PMS_BSIZE 1020 /* buffer size */
91 1.3.4.2 nathanw
92 1.3.4.2 nathanw #define FLUSHQ(q) { if((q)->c_cc) ndflush(q, (q)->c_cc); }
93 1.3.4.2 nathanw
94 1.3.4.2 nathanw extern struct cfdriver opms_cd;
95 1.3.4.2 nathanw
96 1.3.4.2 nathanw dev_type_open(opmsopen);
97 1.3.4.2 nathanw dev_type_close(opmsclose);
98 1.3.4.2 nathanw dev_type_read(opmsread);
99 1.3.4.2 nathanw dev_type_ioctl(opmsioctl);
100 1.3.4.2 nathanw dev_type_poll(opmspoll);
101 1.3.4.3 nathanw dev_type_kqfilter(opmskqfilter);
102 1.3.4.2 nathanw
103 1.3.4.2 nathanw const struct cdevsw opms_cdevsw = {
104 1.3.4.2 nathanw opmsopen, opmsclose, opmsread, nowrite, opmsioctl,
105 1.3.4.3 nathanw nostop, notty, opmspoll, nommap, opmskqfilter,
106 1.3.4.2 nathanw };
107 1.3.4.2 nathanw
108 1.3.4.2 nathanw static __inline void pms_dev_cmd __P((u_char));
109 1.3.4.2 nathanw static __inline void pms_aux_cmd __P((u_char));
110 1.3.4.2 nathanw static __inline void pms_pit_cmd __P((u_char));
111 1.3.4.2 nathanw
112 1.3.4.2 nathanw static __inline void
113 1.3.4.2 nathanw pms_dev_cmd(value)
114 1.3.4.2 nathanw u_char value;
115 1.3.4.2 nathanw {
116 1.3.4.2 nathanw kbd_flush_input();
117 1.3.4.2 nathanw kbd_cmd_write_1(0xd4);
118 1.3.4.2 nathanw kbd_flush_input();
119 1.3.4.2 nathanw kbd_data_write_1(value);
120 1.3.4.2 nathanw }
121 1.3.4.2 nathanw
122 1.3.4.2 nathanw static __inline void
123 1.3.4.2 nathanw pms_aux_cmd(value)
124 1.3.4.2 nathanw u_char value;
125 1.3.4.2 nathanw {
126 1.3.4.2 nathanw kbd_flush_input();
127 1.3.4.2 nathanw kbd_cmd_write_1(value);
128 1.3.4.2 nathanw }
129 1.3.4.2 nathanw
130 1.3.4.2 nathanw static __inline void
131 1.3.4.2 nathanw pms_pit_cmd(value)
132 1.3.4.2 nathanw u_char value;
133 1.3.4.2 nathanw {
134 1.3.4.2 nathanw kbd_flush_input();
135 1.3.4.2 nathanw kbd_cmd_write_1(0x60);
136 1.3.4.2 nathanw kbd_flush_input();
137 1.3.4.2 nathanw kbd_data_write_1(value);
138 1.3.4.2 nathanw }
139 1.3.4.2 nathanw
140 1.3.4.2 nathanw int opms_common_match(kbd_iot, config)
141 1.3.4.2 nathanw bus_space_tag_t kbd_iot;
142 1.3.4.2 nathanw struct pccons_config *config;
143 1.3.4.2 nathanw {
144 1.3.4.2 nathanw u_char x;
145 1.3.4.2 nathanw
146 1.3.4.2 nathanw kbd_context_init(kbd_iot, config);
147 1.3.4.2 nathanw
148 1.3.4.2 nathanw pms_dev_cmd(KBC_RESET);
149 1.3.4.2 nathanw pms_aux_cmd(PMS_MAGIC_1);
150 1.3.4.2 nathanw delay(10000);
151 1.3.4.2 nathanw x = kbd_data_read_1();
152 1.3.4.2 nathanw pms_pit_cmd(PMS_INT_DISABLE);
153 1.3.4.2 nathanw if (x & 0x04)
154 1.3.4.2 nathanw return 0;
155 1.3.4.2 nathanw
156 1.3.4.2 nathanw return 1;
157 1.3.4.2 nathanw }
158 1.3.4.2 nathanw
159 1.3.4.2 nathanw void
160 1.3.4.2 nathanw opms_common_attach(sc, opms_iot, config)
161 1.3.4.2 nathanw struct opms_softc *sc;
162 1.3.4.2 nathanw bus_space_tag_t opms_iot;
163 1.3.4.2 nathanw struct pccons_config *config;
164 1.3.4.2 nathanw {
165 1.3.4.2 nathanw kbd_context_init(opms_iot, config);
166 1.3.4.2 nathanw
167 1.3.4.2 nathanw /* Other initialization was done by opmsprobe. */
168 1.3.4.2 nathanw sc->sc_state = 0;
169 1.3.4.2 nathanw }
170 1.3.4.2 nathanw
171 1.3.4.2 nathanw int
172 1.3.4.2 nathanw opmsopen(dev, flag, mode, p)
173 1.3.4.2 nathanw dev_t dev;
174 1.3.4.2 nathanw int flag, mode;
175 1.3.4.2 nathanw struct proc *p;
176 1.3.4.2 nathanw {
177 1.3.4.2 nathanw int unit = PMSUNIT(dev);
178 1.3.4.2 nathanw struct opms_softc *sc;
179 1.3.4.2 nathanw
180 1.3.4.2 nathanw if (unit >= opms_cd.cd_ndevs)
181 1.3.4.2 nathanw return ENXIO;
182 1.3.4.2 nathanw sc = opms_cd.cd_devs[unit];
183 1.3.4.2 nathanw if (!sc)
184 1.3.4.2 nathanw return ENXIO;
185 1.3.4.2 nathanw
186 1.3.4.2 nathanw if (sc->sc_state & PMS_OPEN)
187 1.3.4.2 nathanw return EBUSY;
188 1.3.4.2 nathanw
189 1.3.4.2 nathanw if (clalloc(&sc->sc_q, PMS_BSIZE, 0) == -1)
190 1.3.4.2 nathanw return ENOMEM;
191 1.3.4.2 nathanw
192 1.3.4.2 nathanw sc->sc_state |= PMS_OPEN;
193 1.3.4.2 nathanw sc->sc_status = 0;
194 1.3.4.2 nathanw sc->sc_x = sc->sc_y = 0;
195 1.3.4.2 nathanw
196 1.3.4.2 nathanw /* Enable interrupts. */
197 1.3.4.2 nathanw pms_dev_cmd(PMS_DEV_ENABLE);
198 1.3.4.2 nathanw pms_aux_cmd(PMS_AUX_ENABLE);
199 1.3.4.2 nathanw pms_dev_cmd(PMS_SET_RES);
200 1.3.4.2 nathanw pms_dev_cmd(3); /* 8 counts/mm */
201 1.3.4.2 nathanw pms_dev_cmd(PMS_SET_SCALE21);
202 1.3.4.2 nathanw #if 0
203 1.3.4.2 nathanw pms_dev_cmd(PMS_SET_SAMPLE);
204 1.3.4.2 nathanw pms_dev_cmd(100); /* 100 samples/sec */
205 1.3.4.2 nathanw pms_dev_cmd(PMS_SET_STREAM);
206 1.3.4.2 nathanw #endif
207 1.3.4.2 nathanw pms_pit_cmd(PMS_INT_ENABLE);
208 1.3.4.2 nathanw
209 1.3.4.2 nathanw return 0;
210 1.3.4.2 nathanw }
211 1.3.4.2 nathanw
212 1.3.4.2 nathanw int
213 1.3.4.2 nathanw opmsclose(dev, flag, mode, p)
214 1.3.4.2 nathanw dev_t dev;
215 1.3.4.2 nathanw int flag, mode;
216 1.3.4.2 nathanw struct proc *p;
217 1.3.4.2 nathanw {
218 1.3.4.2 nathanw struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
219 1.3.4.2 nathanw
220 1.3.4.2 nathanw /* Disable interrupts. */
221 1.3.4.2 nathanw pms_dev_cmd(PMS_DEV_DISABLE);
222 1.3.4.2 nathanw pms_pit_cmd(PMS_INT_DISABLE);
223 1.3.4.2 nathanw pms_aux_cmd(PMS_AUX_DISABLE);
224 1.3.4.2 nathanw
225 1.3.4.2 nathanw sc->sc_state &= ~PMS_OPEN;
226 1.3.4.2 nathanw
227 1.3.4.2 nathanw clfree(&sc->sc_q);
228 1.3.4.2 nathanw
229 1.3.4.2 nathanw return 0;
230 1.3.4.2 nathanw }
231 1.3.4.2 nathanw
232 1.3.4.2 nathanw int
233 1.3.4.2 nathanw opmsread(dev, uio, flag)
234 1.3.4.2 nathanw dev_t dev;
235 1.3.4.2 nathanw struct uio *uio;
236 1.3.4.2 nathanw int flag;
237 1.3.4.2 nathanw {
238 1.3.4.2 nathanw struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
239 1.3.4.2 nathanw int s;
240 1.3.4.2 nathanw int error = 0;
241 1.3.4.2 nathanw size_t length;
242 1.3.4.2 nathanw u_char buffer[PMS_CHUNK];
243 1.3.4.2 nathanw
244 1.3.4.2 nathanw /* Block until mouse activity occurred. */
245 1.3.4.2 nathanw
246 1.3.4.2 nathanw s = spltty();
247 1.3.4.2 nathanw while (sc->sc_q.c_cc == 0) {
248 1.3.4.2 nathanw if (flag & IO_NDELAY) {
249 1.3.4.2 nathanw splx(s);
250 1.3.4.2 nathanw return EWOULDBLOCK;
251 1.3.4.2 nathanw }
252 1.3.4.2 nathanw sc->sc_state |= PMS_ASLP;
253 1.3.4.2 nathanw error = tsleep((caddr_t)sc, PZERO | PCATCH, "pmsrea", 0);
254 1.3.4.2 nathanw if (error) {
255 1.3.4.2 nathanw sc->sc_state &= ~PMS_ASLP;
256 1.3.4.2 nathanw splx(s);
257 1.3.4.2 nathanw return error;
258 1.3.4.2 nathanw }
259 1.3.4.2 nathanw }
260 1.3.4.2 nathanw splx(s);
261 1.3.4.2 nathanw
262 1.3.4.2 nathanw /* Transfer as many chunks as possible. */
263 1.3.4.2 nathanw
264 1.3.4.2 nathanw while (sc->sc_q.c_cc > 0 && uio->uio_resid > 0) {
265 1.3.4.2 nathanw length = min(sc->sc_q.c_cc, uio->uio_resid);
266 1.3.4.2 nathanw if (length > sizeof(buffer))
267 1.3.4.2 nathanw length = sizeof(buffer);
268 1.3.4.2 nathanw
269 1.3.4.2 nathanw /* Remove a small chunk from the input queue. */
270 1.3.4.2 nathanw (void) q_to_b(&sc->sc_q, buffer, length);
271 1.3.4.2 nathanw
272 1.3.4.2 nathanw /* Copy the data to the user process. */
273 1.3.4.2 nathanw error = uiomove(buffer, length, uio);
274 1.3.4.2 nathanw if (error)
275 1.3.4.2 nathanw break;
276 1.3.4.2 nathanw }
277 1.3.4.2 nathanw
278 1.3.4.2 nathanw return error;
279 1.3.4.2 nathanw }
280 1.3.4.2 nathanw
281 1.3.4.2 nathanw int
282 1.3.4.2 nathanw opmsioctl(dev, cmd, addr, flag, p)
283 1.3.4.2 nathanw dev_t dev;
284 1.3.4.2 nathanw u_long cmd;
285 1.3.4.2 nathanw caddr_t addr;
286 1.3.4.2 nathanw int flag;
287 1.3.4.2 nathanw struct proc *p;
288 1.3.4.2 nathanw {
289 1.3.4.2 nathanw struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
290 1.3.4.2 nathanw struct mouseinfo info;
291 1.3.4.2 nathanw int s;
292 1.3.4.2 nathanw int error;
293 1.3.4.2 nathanw
294 1.3.4.2 nathanw switch (cmd) {
295 1.3.4.2 nathanw case MOUSEIOCREAD:
296 1.3.4.2 nathanw s = spltty();
297 1.3.4.2 nathanw
298 1.3.4.2 nathanw info.status = sc->sc_status;
299 1.3.4.2 nathanw if (sc->sc_x || sc->sc_y)
300 1.3.4.2 nathanw info.status |= MOVEMENT;
301 1.3.4.2 nathanw
302 1.3.4.2 nathanw if (sc->sc_x > 127)
303 1.3.4.2 nathanw info.xmotion = 127;
304 1.3.4.2 nathanw else if (sc->sc_x < -127)
305 1.3.4.2 nathanw /* Bounding at -127 avoids a bug in XFree86. */
306 1.3.4.2 nathanw info.xmotion = -127;
307 1.3.4.2 nathanw else
308 1.3.4.2 nathanw info.xmotion = sc->sc_x;
309 1.3.4.2 nathanw
310 1.3.4.2 nathanw if (sc->sc_y > 127)
311 1.3.4.2 nathanw info.ymotion = 127;
312 1.3.4.2 nathanw else if (sc->sc_y < -127)
313 1.3.4.2 nathanw info.ymotion = -127;
314 1.3.4.2 nathanw else
315 1.3.4.2 nathanw info.ymotion = sc->sc_y;
316 1.3.4.2 nathanw
317 1.3.4.2 nathanw /* Reset historical information. */
318 1.3.4.2 nathanw sc->sc_x = sc->sc_y = 0;
319 1.3.4.2 nathanw sc->sc_status &= ~BUTCHNGMASK;
320 1.3.4.2 nathanw ndflush(&sc->sc_q, sc->sc_q.c_cc);
321 1.3.4.2 nathanw
322 1.3.4.2 nathanw splx(s);
323 1.3.4.2 nathanw error = copyout(&info, addr, sizeof(struct mouseinfo));
324 1.3.4.2 nathanw break;
325 1.3.4.2 nathanw default:
326 1.3.4.2 nathanw error = EINVAL;
327 1.3.4.2 nathanw break;
328 1.3.4.2 nathanw }
329 1.3.4.2 nathanw
330 1.3.4.2 nathanw return error;
331 1.3.4.2 nathanw }
332 1.3.4.2 nathanw
333 1.3.4.2 nathanw /* Masks for the first byte of a packet */
334 1.3.4.2 nathanw #define PS2LBUTMASK 0x01
335 1.3.4.2 nathanw #define PS2RBUTMASK 0x02
336 1.3.4.2 nathanw #define PS2MBUTMASK 0x04
337 1.3.4.2 nathanw
338 1.3.4.2 nathanw int
339 1.3.4.2 nathanw opmsintr(arg)
340 1.3.4.2 nathanw void *arg;
341 1.3.4.2 nathanw {
342 1.3.4.2 nathanw struct opms_softc *sc = arg;
343 1.3.4.2 nathanw static int state = 0;
344 1.3.4.2 nathanw static u_char buttons;
345 1.3.4.2 nathanw u_char changed;
346 1.3.4.2 nathanw static char dx, dy;
347 1.3.4.2 nathanw u_char buffer[5];
348 1.3.4.2 nathanw
349 1.3.4.2 nathanw if ((sc->sc_state & PMS_OPEN) == 0) {
350 1.3.4.2 nathanw /* Interrupts are not expected. Discard the byte. */
351 1.3.4.2 nathanw kbd_flush_input();
352 1.3.4.2 nathanw return 0;
353 1.3.4.2 nathanw }
354 1.3.4.2 nathanw
355 1.3.4.2 nathanw switch (state) {
356 1.3.4.2 nathanw
357 1.3.4.2 nathanw case 0:
358 1.3.4.2 nathanw buttons = kbd_data_read_1();
359 1.3.4.2 nathanw if ((buttons & 0xc0) == 0)
360 1.3.4.2 nathanw ++state;
361 1.3.4.2 nathanw break;
362 1.3.4.2 nathanw
363 1.3.4.2 nathanw case 1:
364 1.3.4.2 nathanw dx = kbd_data_read_1();
365 1.3.4.2 nathanw /* Bounding at -127 avoids a bug in XFree86. */
366 1.3.4.2 nathanw dx = (dx == -128) ? -127 : dx;
367 1.3.4.2 nathanw ++state;
368 1.3.4.2 nathanw break;
369 1.3.4.2 nathanw
370 1.3.4.2 nathanw case 2:
371 1.3.4.2 nathanw dy = kbd_data_read_1();
372 1.3.4.2 nathanw dy = (dy == -128) ? -127 : dy;
373 1.3.4.2 nathanw state = 0;
374 1.3.4.2 nathanw
375 1.3.4.2 nathanw buttons = ((buttons & PS2LBUTMASK) << 2) |
376 1.3.4.2 nathanw ((buttons & (PS2RBUTMASK | PS2MBUTMASK)) >> 1);
377 1.3.4.2 nathanw changed = ((buttons ^ sc->sc_status) & BUTSTATMASK) << 3;
378 1.3.4.2 nathanw sc->sc_status = buttons | (sc->sc_status & ~BUTSTATMASK) | changed;
379 1.3.4.2 nathanw
380 1.3.4.2 nathanw if (dx || dy || changed) {
381 1.3.4.2 nathanw /* Update accumulated movements. */
382 1.3.4.2 nathanw sc->sc_x += dx;
383 1.3.4.2 nathanw sc->sc_y += dy;
384 1.3.4.2 nathanw
385 1.3.4.2 nathanw /* Add this event to the queue. */
386 1.3.4.2 nathanw buffer[0] = 0x80 | (buttons & BUTSTATMASK);
387 1.3.4.2 nathanw if(dx < 0)
388 1.3.4.2 nathanw buffer[0] |= 0x10;
389 1.3.4.2 nathanw buffer[1] = dx & 0x7f;
390 1.3.4.2 nathanw if(dy < 0)
391 1.3.4.2 nathanw buffer[0] |= 0x20;
392 1.3.4.2 nathanw buffer[2] = dy & 0x7f;
393 1.3.4.2 nathanw buffer[3] = buffer[4] = 0;
394 1.3.4.2 nathanw (void) b_to_q(buffer, sizeof buffer, &sc->sc_q);
395 1.3.4.2 nathanw
396 1.3.4.2 nathanw if (sc->sc_state & PMS_ASLP) {
397 1.3.4.2 nathanw sc->sc_state &= ~PMS_ASLP;
398 1.3.4.2 nathanw wakeup((caddr_t)sc);
399 1.3.4.2 nathanw }
400 1.3.4.3 nathanw selnotify(&sc->sc_rsel, 0);
401 1.3.4.2 nathanw }
402 1.3.4.2 nathanw
403 1.3.4.2 nathanw break;
404 1.3.4.2 nathanw }
405 1.3.4.2 nathanw return -1;
406 1.3.4.2 nathanw }
407 1.3.4.2 nathanw
408 1.3.4.2 nathanw int
409 1.3.4.2 nathanw opmspoll(dev, events, p)
410 1.3.4.2 nathanw dev_t dev;
411 1.3.4.2 nathanw int events;
412 1.3.4.2 nathanw struct proc *p;
413 1.3.4.2 nathanw {
414 1.3.4.2 nathanw struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
415 1.3.4.2 nathanw int revents = 0;
416 1.3.4.2 nathanw int s = spltty();
417 1.3.4.2 nathanw
418 1.3.4.2 nathanw if (events & (POLLIN | POLLRDNORM)) {
419 1.3.4.2 nathanw if (sc->sc_q.c_cc > 0)
420 1.3.4.2 nathanw revents |= events & (POLLIN | POLLRDNORM);
421 1.3.4.2 nathanw else
422 1.3.4.2 nathanw selrecord(p, &sc->sc_rsel);
423 1.3.4.2 nathanw }
424 1.3.4.2 nathanw
425 1.3.4.2 nathanw splx(s);
426 1.3.4.2 nathanw return (revents);
427 1.3.4.2 nathanw }
428 1.3.4.3 nathanw
429 1.3.4.3 nathanw static void
430 1.3.4.3 nathanw filt_opmsrdetach(struct knote *kn)
431 1.3.4.3 nathanw {
432 1.3.4.3 nathanw struct opms_softc *sc = kn->kn_hook;
433 1.3.4.3 nathanw int s;
434 1.3.4.3 nathanw
435 1.3.4.3 nathanw s = spltty();
436 1.3.4.3 nathanw SLIST_REMOVE(&sc->sc_rsel.si_klist, kn, knote, kn_selnext);
437 1.3.4.3 nathanw splx(s);
438 1.3.4.3 nathanw }
439 1.3.4.3 nathanw
440 1.3.4.3 nathanw static int
441 1.3.4.3 nathanw filt_opmsread(struct knote *kn, long hint)
442 1.3.4.3 nathanw {
443 1.3.4.3 nathanw struct opms_softc *sc = kn->kn_hook;
444 1.3.4.3 nathanw
445 1.3.4.3 nathanw kn->kn_data = sc->sc_q.c_cc;
446 1.3.4.3 nathanw return (kn->kn_data > 0);
447 1.3.4.3 nathanw }
448 1.3.4.3 nathanw
449 1.3.4.3 nathanw static const struct filterops opmsread_filtops =
450 1.3.4.3 nathanw { 1, NULL, filt_opmsrdetach, filt_opmsread };
451 1.3.4.3 nathanw
452 1.3.4.3 nathanw int
453 1.3.4.3 nathanw opmskqfilter(dev_t dev, struct knote *kn)
454 1.3.4.3 nathanw {
455 1.3.4.3 nathanw struct opms_softc *sc = opms_cd.cd_devs[PMSUNIT(dev)];
456 1.3.4.3 nathanw struct klist *klist;
457 1.3.4.3 nathanw int s;
458 1.3.4.3 nathanw
459 1.3.4.3 nathanw switch (kn->kn_filter) {
460 1.3.4.3 nathanw case EVFILT_READ:
461 1.3.4.3 nathanw klist = &sc->sc_rsel.si_klist;
462 1.3.4.3 nathanw kn->kn_fop = &opmsread_filtops;
463 1.3.4.3 nathanw break;
464 1.3.4.3 nathanw
465 1.3.4.3 nathanw default:
466 1.3.4.3 nathanw return (1);
467 1.3.4.3 nathanw }
468 1.3.4.3 nathanw
469 1.3.4.3 nathanw kn->kn_hook = sc;
470 1.3.4.3 nathanw
471 1.3.4.3 nathanw s = spltty();
472 1.3.4.3 nathanw SLIST_INSERT_HEAD(klist, kn, kn_selnext);
473 1.3.4.3 nathanw splx(s);
474 1.3.4.3 nathanw
475 1.3.4.3 nathanw return (0);
476 1.3.4.3 nathanw }
477