qms.c revision 1.1 1 1.1 reinoud /* $NetBSD: qms.c,v 1.1 2001/10/05 22:27:42 reinoud Exp $ */
2 1.1 reinoud
3 1.1 reinoud /*
4 1.1 reinoud * Copyright (c) Scott Stevens 1995 All rights reserved
5 1.1 reinoud * Copyright (c) Melvin Tang-Richardson 1995 All rights reserved
6 1.1 reinoud * Copyright (c) Mark Brinicombe 1995 All rights reserved
7 1.1 reinoud *
8 1.1 reinoud * Redistribution and use in source and binary forms, with or without
9 1.1 reinoud * modification, are permitted provided that the following conditions
10 1.1 reinoud * are met:
11 1.1 reinoud * 1. Redistributions of source code must retain the above copyright
12 1.1 reinoud * notice, this list of conditions and the following disclaimer.
13 1.1 reinoud * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 reinoud * notice, this list of conditions and the following disclaimer in the
15 1.1 reinoud * documentation and/or other materials provided with the distribution.
16 1.1 reinoud * 3. All advertising materials mentioning features or use of this software
17 1.1 reinoud * must display the following acknowledgement:
18 1.1 reinoud * This product includes software developed for the NetBSD Project.
19 1.1 reinoud * 4. The name of the author may not be used to endorse or promote products
20 1.1 reinoud * derived from this software without specific prior written permission.
21 1.1 reinoud *
22 1.1 reinoud * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 reinoud * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 reinoud * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 reinoud * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 reinoud * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 reinoud * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 reinoud * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 reinoud * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 reinoud * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 reinoud * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 reinoud */
33 1.1 reinoud
34 1.1 reinoud /*
35 1.1 reinoud * Quadrature mouse driver
36 1.1 reinoud */
37 1.1 reinoud
38 1.1 reinoud #include <sys/param.h>
39 1.1 reinoud #include <sys/systm.h>
40 1.1 reinoud #include <sys/conf.h>
41 1.1 reinoud #include <sys/ioctl.h>
42 1.1 reinoud #include <sys/tty.h>
43 1.1 reinoud #include <sys/kernel.h>
44 1.1 reinoud #include <sys/types.h>
45 1.1 reinoud #include <sys/device.h>
46 1.1 reinoud #include <sys/proc.h>
47 1.1 reinoud #include <sys/time.h>
48 1.1 reinoud #include <sys/errno.h>
49 1.1 reinoud #include <dev/cons.h>
50 1.1 reinoud #include <sys/fcntl.h>
51 1.1 reinoud #include <sys/signalvar.h>
52 1.1 reinoud #include <sys/vnode.h>
53 1.1 reinoud #include <sys/time.h>
54 1.1 reinoud #include <sys/poll.h>
55 1.1 reinoud
56 1.1 reinoud #include <machine/bus.h>
57 1.1 reinoud #include <machine/conf.h>
58 1.1 reinoud #include <machine/mouse.h>
59 1.1 reinoud #include <arm/iomd/qmsvar.h>
60 1.1 reinoud
61 1.1 reinoud #define MOUSE_IOC_ACK
62 1.1 reinoud
63 1.1 reinoud #define QMOUSE_BSIZE 12*64
64 1.1 reinoud
65 1.1 reinoud #ifdef MOUSE_IOC_ACK
66 1.1 reinoud static void qmsputbuffer __P((struct qms_softc *sc, struct mousebufrec *buf));
67 1.1 reinoud #endif
68 1.1 reinoud
69 1.1 reinoud extern struct cfdriver qms_cd;
70 1.1 reinoud
71 1.1 reinoud /* qms device structure */
72 1.1 reinoud
73 1.1 reinoud /* Offsets of hardware registers */
74 1.1 reinoud #define QMS_MOUSEX 0 /* 16 bit X register */
75 1.1 reinoud #define QMS_MOUSEY 1 /* 16 bit Y register */
76 1.1 reinoud
77 1.1 reinoud #define QMS_BUTTONS 0 /* mouse buttons register */
78 1.1 reinoud
79 1.1 reinoud /*
80 1.1 reinoud * generic attach routine. This does the generic part of the driver
81 1.1 reinoud * attachment and is called from the bus specific attach routine.
82 1.1 reinoud */
83 1.1 reinoud
84 1.1 reinoud void
85 1.1 reinoud qmsattach(sc)
86 1.1 reinoud struct qms_softc *sc;
87 1.1 reinoud {
88 1.1 reinoud /* Set up origin and multipliers */
89 1.1 reinoud sc->origx = 0;
90 1.1 reinoud sc->origy = 0;
91 1.1 reinoud sc->xmult = 2;
92 1.1 reinoud sc->ymult = 2;
93 1.1 reinoud
94 1.1 reinoud /* Set up bounding box */
95 1.1 reinoud sc->boundx = -4095;
96 1.1 reinoud sc->boundy = -4095;
97 1.1 reinoud sc->bounda = 4096;
98 1.1 reinoud sc->boundb = 4096;
99 1.1 reinoud
100 1.1 reinoud sc->sc_state = 0;
101 1.1 reinoud
102 1.1 reinoud /* Set the mouse X & Y registers to a known state */
103 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX, sc->origx);
104 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX, sc->origx);
105 1.1 reinoud }
106 1.1 reinoud
107 1.1 reinoud int
108 1.1 reinoud qmsopen(dev, flag, mode, p)
109 1.1 reinoud dev_t dev;
110 1.1 reinoud int flag;
111 1.1 reinoud int mode;
112 1.1 reinoud struct proc *p;
113 1.1 reinoud {
114 1.1 reinoud struct qms_softc *sc;
115 1.1 reinoud int unit = minor(dev);
116 1.1 reinoud
117 1.1 reinoud /* validate the unit and softc */
118 1.1 reinoud if (unit >= qms_cd.cd_ndevs)
119 1.1 reinoud return(ENXIO);
120 1.1 reinoud
121 1.1 reinoud sc = qms_cd.cd_devs[unit];
122 1.1 reinoud
123 1.1 reinoud if (!sc) return(ENXIO);
124 1.1 reinoud
125 1.1 reinoud /* check if we are already open */
126 1.1 reinoud if (sc->sc_state & QMOUSE_OPEN) return(EBUSY);
127 1.1 reinoud
128 1.1 reinoud /* update softc */
129 1.1 reinoud sc->sc_proc = p;
130 1.1 reinoud
131 1.1 reinoud sc->lastx = -1;
132 1.1 reinoud sc->lasty = -1;
133 1.1 reinoud sc->lastb = -1;
134 1.1 reinoud
135 1.1 reinoud /* initialise buffer */
136 1.1 reinoud if (clalloc(&sc->sc_buffer, QMOUSE_BSIZE, 0) == -1)
137 1.1 reinoud return(ENOMEM);
138 1.1 reinoud
139 1.1 reinoud /* set mode and state */
140 1.1 reinoud sc->sc_mode = MOUSEMODE_ABS;
141 1.1 reinoud sc->sc_state |= QMOUSE_OPEN;
142 1.1 reinoud
143 1.1 reinoud /* enable interrupts */
144 1.1 reinoud sc->sc_intenable(sc, 1);
145 1.1 reinoud
146 1.1 reinoud return(0);
147 1.1 reinoud }
148 1.1 reinoud
149 1.1 reinoud
150 1.1 reinoud int
151 1.1 reinoud qmsclose(dev, flag, mode, p)
152 1.1 reinoud dev_t dev;
153 1.1 reinoud int flag;
154 1.1 reinoud int mode;
155 1.1 reinoud struct proc *p;
156 1.1 reinoud {
157 1.1 reinoud int unit = minor(dev);
158 1.1 reinoud struct qms_softc *sc = qms_cd.cd_devs[unit];
159 1.1 reinoud
160 1.1 reinoud /* disable interrupts */
161 1.1 reinoud sc->sc_intenable(sc, 0);
162 1.1 reinoud
163 1.1 reinoud /* clean up */
164 1.1 reinoud sc->sc_proc = NULL;
165 1.1 reinoud sc->sc_state = 0;
166 1.1 reinoud
167 1.1 reinoud clfree(&sc->sc_buffer);
168 1.1 reinoud
169 1.1 reinoud return(0);
170 1.1 reinoud }
171 1.1 reinoud
172 1.1 reinoud int
173 1.1 reinoud qmsread(dev, uio, flag)
174 1.1 reinoud dev_t dev;
175 1.1 reinoud struct uio *uio;
176 1.1 reinoud int flag;
177 1.1 reinoud {
178 1.1 reinoud int unit = minor(dev);
179 1.1 reinoud struct qms_softc *sc = qms_cd.cd_devs[unit];
180 1.1 reinoud int error;
181 1.1 reinoud int s;
182 1.1 reinoud int length;
183 1.1 reinoud u_char buffer[128];
184 1.1 reinoud
185 1.1 reinoud error = 0;
186 1.1 reinoud s = spltty();
187 1.1 reinoud while (sc->sc_buffer.c_cc == 0) {
188 1.1 reinoud if (flag & IO_NDELAY) {
189 1.1 reinoud (void)splx(s);
190 1.1 reinoud return(EWOULDBLOCK);
191 1.1 reinoud }
192 1.1 reinoud sc->sc_state |= QMOUSE_ASLEEP;
193 1.1 reinoud if ((error = tsleep((caddr_t)sc, PZERO | PCATCH, "qmsread", 0))) {
194 1.1 reinoud sc->sc_state &= ~QMOUSE_ASLEEP;
195 1.1 reinoud (void)splx(s);
196 1.1 reinoud return(error);
197 1.1 reinoud }
198 1.1 reinoud }
199 1.1 reinoud
200 1.1 reinoud while (sc->sc_buffer.c_cc > 0 && uio->uio_resid > 0) {
201 1.1 reinoud length = min(sc->sc_buffer.c_cc, uio->uio_resid);
202 1.1 reinoud if(length>sizeof(buffer))
203 1.1 reinoud length=sizeof(buffer);
204 1.1 reinoud
205 1.1 reinoud (void)q_to_b(&sc->sc_buffer, buffer, length);
206 1.1 reinoud
207 1.1 reinoud if ((error = (uiomove(buffer, length, uio))))
208 1.1 reinoud break;
209 1.1 reinoud }
210 1.1 reinoud (void)splx(s);
211 1.1 reinoud return(error);
212 1.1 reinoud }
213 1.1 reinoud
214 1.1 reinoud
215 1.1 reinoud #define FMT_START \
216 1.1 reinoud int x = bus_space_read_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX) & 0xffff; \
217 1.1 reinoud int y = bus_space_read_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEY) & 0xffff; \
218 1.1 reinoud int b = bus_space_read_1(sc->sc_iot, sc->sc_butioh, QMS_BUTTONS) & 0x70;\
219 1.1 reinoud if (x & 0x8000) x |= 0xffff0000; \
220 1.1 reinoud if (y & 0x8000) y |= 0xffff0000; \
221 1.1 reinoud x = (x - sc->origx); \
222 1.1 reinoud y = (y - sc->origy); \
223 1.1 reinoud if (x < (sc->boundx)) x = sc->boundx; \
224 1.1 reinoud if (x > (sc->bounda)) x = sc->bounda; \
225 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX, x + sc->origx); \
226 1.1 reinoud if (y < (sc->boundy)) y = sc->boundy; \
227 1.1 reinoud if (y > (sc->boundb)) y = sc->boundb; \
228 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEY, y + sc->origy); \
229 1.1 reinoud x = x * sc->xmult; \
230 1.1 reinoud y = y * sc->ymult;
231 1.1 reinoud
232 1.1 reinoud #define FMT_END
233 1.1 reinoud
234 1.1 reinoud
235 1.1 reinoud int
236 1.1 reinoud qmsioctl(dev, cmd, data, flag, p)
237 1.1 reinoud dev_t dev;
238 1.1 reinoud u_long cmd;
239 1.1 reinoud caddr_t data;
240 1.1 reinoud int flag;
241 1.1 reinoud struct proc *p;
242 1.1 reinoud {
243 1.1 reinoud struct qms_softc *sc = qms_cd.cd_devs[minor(dev)];
244 1.1 reinoud
245 1.1 reinoud switch (cmd) {
246 1.1 reinoud case MOUSEIOC_WRITEX:
247 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX,
248 1.1 reinoud *(int *)data + sc->origx);
249 1.1 reinoud return 0;
250 1.1 reinoud case MOUSEIOC_WRITEY:
251 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEY,
252 1.1 reinoud *(int *)data + sc->origy);
253 1.1 reinoud return 0;
254 1.1 reinoud case MOUSEIOC_SETSTATE:
255 1.1 reinoud {
256 1.1 reinoud struct mouse_state *co = (void *)data;
257 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX, co->x);
258 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEY, co->y);
259 1.1 reinoud return 0;
260 1.1 reinoud }
261 1.1 reinoud case MOUSEIOC_SETBOUNDS:
262 1.1 reinoud {
263 1.1 reinoud struct mouse_boundingbox *bo = (void *)data;
264 1.1 reinoud struct mousebufrec buffer;
265 1.1 reinoud #ifdef MOUSE_IOC_ACK
266 1.1 reinoud int s;
267 1.1 reinoud
268 1.1 reinoud s = spltty();
269 1.1 reinoud #endif
270 1.1 reinoud
271 1.1 reinoud sc->boundx = bo->x;
272 1.1 reinoud sc->boundy = bo->y;
273 1.1 reinoud sc->bounda = bo->a;
274 1.1 reinoud sc->boundb = bo->b;
275 1.1 reinoud
276 1.1 reinoud buffer.status = IOC_ACK;
277 1.1 reinoud buffer.x = sc->origx;
278 1.1 reinoud buffer.y = sc->origy;
279 1.1 reinoud #ifdef MOUSE_IOC_ACK
280 1.1 reinoud if (sc->sc_buffer.c_cc > 0)
281 1.1 reinoud printf("%s: setting bounding with non empty buffer (%d)\n",
282 1.1 reinoud sc->sc_device.dv_xname, sc->sc_buffer.c_cc);
283 1.1 reinoud qmsputbuffer(sc, &buffer);
284 1.1 reinoud (void)splx(s);
285 1.1 reinoud #endif
286 1.1 reinoud return 0;
287 1.1 reinoud }
288 1.1 reinoud case MOUSEIOC_SETMODE:
289 1.1 reinoud {
290 1.1 reinoud struct mousebufrec buffer;
291 1.1 reinoud #ifdef MOUSE_IOC_ACK
292 1.1 reinoud int s;
293 1.1 reinoud
294 1.1 reinoud s = spltty();
295 1.1 reinoud #endif
296 1.1 reinoud sc->sc_mode = *(int *)data;
297 1.1 reinoud
298 1.1 reinoud buffer.status = IOC_ACK;
299 1.1 reinoud buffer.x = sc->origx;
300 1.1 reinoud buffer.y = sc->origy;
301 1.1 reinoud #ifdef MOUSE_IOC_ACK
302 1.1 reinoud if (sc->sc_buffer.c_cc > 0)
303 1.1 reinoud printf("%s: setting mode with non empty buffer (%d)\n",
304 1.1 reinoud sc->sc_device.dv_xname, sc->sc_buffer.c_cc);
305 1.1 reinoud qmsputbuffer(sc, &buffer);
306 1.1 reinoud (void)splx(s);
307 1.1 reinoud #endif
308 1.1 reinoud return 0;
309 1.1 reinoud }
310 1.1 reinoud case MOUSEIOC_SETORIGIN:
311 1.1 reinoud {
312 1.1 reinoud struct mouse_origin *oo = (void *)data;
313 1.1 reinoud struct mousebufrec buffer;
314 1.1 reinoud #ifdef MOUSE_IOC_ACK
315 1.1 reinoud int s;
316 1.1 reinoud
317 1.1 reinoud s = spltty();
318 1.1 reinoud #endif
319 1.1 reinoud /* Need to fix up! */
320 1.1 reinoud sc->origx = oo->x;
321 1.1 reinoud sc->origy = oo->y;
322 1.1 reinoud
323 1.1 reinoud buffer.status = IOC_ACK;
324 1.1 reinoud buffer.x = sc->origx;
325 1.1 reinoud buffer.y = sc->origy;
326 1.1 reinoud #ifdef MOUSE_IOC_ACK
327 1.1 reinoud if (sc->sc_buffer.c_cc > 0)
328 1.1 reinoud printf("%s: setting origin with non empty buffer (%d)\n",
329 1.1 reinoud sc->sc_device.dv_xname, sc->sc_buffer.c_cc);
330 1.1 reinoud qmsputbuffer(sc, &buffer);
331 1.1 reinoud (void)splx(s);
332 1.1 reinoud #endif
333 1.1 reinoud return 0;
334 1.1 reinoud }
335 1.1 reinoud case MOUSEIOC_GETSTATE:
336 1.1 reinoud {
337 1.1 reinoud struct mouse_state *co = (void *)data;
338 1.1 reinoud FMT_START
339 1.1 reinoud co->x = x;
340 1.1 reinoud co->y = y;
341 1.1 reinoud co->buttons = b ^ 0x70;
342 1.1 reinoud FMT_END
343 1.1 reinoud return 0;
344 1.1 reinoud }
345 1.1 reinoud case MOUSEIOC_GETBOUNDS:
346 1.1 reinoud {
347 1.1 reinoud struct mouse_boundingbox *bo = (void *)data;
348 1.1 reinoud bo->x = sc->boundx;
349 1.1 reinoud bo->y = sc->boundy;
350 1.1 reinoud bo->a = sc->bounda;
351 1.1 reinoud bo->b = sc->boundb;
352 1.1 reinoud return 0;
353 1.1 reinoud }
354 1.1 reinoud case MOUSEIOC_GETORIGIN:
355 1.1 reinoud {
356 1.1 reinoud struct mouse_origin *oo = (void *)data;
357 1.1 reinoud oo->x = sc->origx;
358 1.1 reinoud oo->y = sc->origy;
359 1.1 reinoud return 0;
360 1.1 reinoud }
361 1.1 reinoud }
362 1.1 reinoud
363 1.1 reinoud return (EINVAL);
364 1.1 reinoud }
365 1.1 reinoud
366 1.1 reinoud
367 1.1 reinoud int
368 1.1 reinoud qmsintr(arg)
369 1.1 reinoud void *arg;
370 1.1 reinoud {
371 1.1 reinoud struct qms_softc *sc = arg;
372 1.1 reinoud int s;
373 1.1 reinoud struct mousebufrec buffer;
374 1.1 reinoud int dosignal=0;
375 1.1 reinoud
376 1.1 reinoud FMT_START
377 1.1 reinoud
378 1.1 reinoud b &= 0x70;
379 1.1 reinoud b >>= 4;
380 1.1 reinoud if (x != sc->lastx || y != sc->lasty || b != sc->lastb) {
381 1.1 reinoud /* Mouse state changed */
382 1.1 reinoud buffer.status = b | ( b ^ sc->lastb) << 3 | (((x==sc->lastx) && (y==sc->lasty))?0:MOVEMENT);
383 1.1 reinoud if(sc->sc_mode == MOUSEMODE_REL) {
384 1.1 reinoud sc->origx = sc->origy = 0;
385 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEX, sc->origx);
386 1.1 reinoud bus_space_write_4(sc->sc_iot, sc->sc_ioh, QMS_MOUSEY, sc->origy);
387 1.1 reinoud }
388 1.1 reinoud buffer.x = x;
389 1.1 reinoud buffer.y = y;
390 1.1 reinoud microtime(&buffer.event_time);
391 1.1 reinoud
392 1.1 reinoud if (sc->sc_buffer.c_cc == 0)
393 1.1 reinoud dosignal = 1;
394 1.1 reinoud
395 1.1 reinoud s = spltty();
396 1.1 reinoud (void)b_to_q((char *)&buffer, sizeof(buffer), &sc->sc_buffer);
397 1.1 reinoud (void)splx(s);
398 1.1 reinoud selwakeup(&sc->sc_rsel);
399 1.1 reinoud
400 1.1 reinoud if (sc->sc_state & QMOUSE_ASLEEP) {
401 1.1 reinoud sc->sc_state &= ~QMOUSE_ASLEEP;
402 1.1 reinoud wakeup((caddr_t)sc);
403 1.1 reinoud }
404 1.1 reinoud
405 1.1 reinoud /* if (dosignal)*/
406 1.1 reinoud psignal(sc->sc_proc, SIGIO);
407 1.1 reinoud
408 1.1 reinoud sc->lastx = x;
409 1.1 reinoud sc->lasty = y;
410 1.1 reinoud sc->lastb = b;
411 1.1 reinoud }
412 1.1 reinoud
413 1.1 reinoud FMT_END
414 1.1 reinoud return(0); /* Pass interrupt on down the chain */
415 1.1 reinoud }
416 1.1 reinoud
417 1.1 reinoud
418 1.1 reinoud int
419 1.1 reinoud qmspoll(dev, events, p)
420 1.1 reinoud dev_t dev;
421 1.1 reinoud int events;
422 1.1 reinoud struct proc *p;
423 1.1 reinoud {
424 1.1 reinoud struct qms_softc *sc = qms_cd.cd_devs[minor(dev)];
425 1.1 reinoud int revents = 0;
426 1.1 reinoud int s = spltty();
427 1.1 reinoud
428 1.1 reinoud if (events & (POLLIN | POLLRDNORM)) {
429 1.1 reinoud if (sc->sc_buffer.c_cc > 0)
430 1.1 reinoud revents |= events & (POLLIN | POLLRDNORM);
431 1.1 reinoud else
432 1.1 reinoud selrecord(p, &sc->sc_rsel);
433 1.1 reinoud }
434 1.1 reinoud
435 1.1 reinoud (void)splx(s);
436 1.1 reinoud return (revents);
437 1.1 reinoud }
438 1.1 reinoud
439 1.1 reinoud
440 1.1 reinoud #ifdef MOUSE_IOC_ACK
441 1.1 reinoud static void
442 1.1 reinoud qmsputbuffer(sc, buffer)
443 1.1 reinoud struct qms_softc *sc;
444 1.1 reinoud struct mousebufrec *buffer;
445 1.1 reinoud {
446 1.1 reinoud int s;
447 1.1 reinoud int dosignal = 0;
448 1.1 reinoud
449 1.1 reinoud /* Time stamp the buffer */
450 1.1 reinoud microtime(&buffer->event_time);
451 1.1 reinoud
452 1.1 reinoud if (sc->sc_buffer.c_cc == 0)
453 1.1 reinoud dosignal=1;
454 1.1 reinoud
455 1.1 reinoud s = spltty();
456 1.1 reinoud (void)b_to_q((char *)buffer, sizeof(*buffer), &sc->sc_buffer);
457 1.1 reinoud (void)splx(s);
458 1.1 reinoud selwakeup(&sc->sc_rsel);
459 1.1 reinoud
460 1.1 reinoud if (sc->sc_state & QMOUSE_ASLEEP) {
461 1.1 reinoud sc->sc_state &= ~QMOUSE_ASLEEP;
462 1.1 reinoud wakeup((caddr_t)sc);
463 1.1 reinoud }
464 1.1 reinoud
465 1.1 reinoud if (dosignal)
466 1.1 reinoud psignal(sc->sc_proc, SIGIO);
467 1.1 reinoud }
468 1.1 reinoud #endif
469 1.1 reinoud
470 1.1 reinoud /* End of qms.c */
471