wseventvar.h revision 1.13 1 1.13 christos /* $NetBSD: wseventvar.h,v 1.13 2009/01/13 18:05:55 christos Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
5 1.1 drochner *
6 1.1 drochner * Redistribution and use in source and binary forms, with or without
7 1.1 drochner * modification, are permitted provided that the following conditions
8 1.1 drochner * are met:
9 1.1 drochner * 1. Redistributions of source code must retain the above copyright
10 1.1 drochner * notice, this list of conditions and the following disclaimer.
11 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 drochner * notice, this list of conditions and the following disclaimer in the
13 1.1 drochner * documentation and/or other materials provided with the distribution.
14 1.1 drochner * 3. All advertising materials mentioning features or use of this software
15 1.1 drochner * must display the following acknowledgement:
16 1.1 drochner * This product includes software developed by Christopher G. Demetriou
17 1.1 drochner * for the NetBSD Project.
18 1.1 drochner * 4. The name of the author may not be used to endorse or promote products
19 1.1 drochner * derived from this software without specific prior written permission
20 1.1 drochner *
21 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 drochner * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 drochner * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 drochner * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 drochner * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 drochner * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 drochner * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 drochner * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 drochner * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 drochner * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 drochner */
32 1.1 drochner
33 1.1 drochner /*
34 1.1 drochner * Copyright (c) 1992, 1993
35 1.1 drochner * The Regents of the University of California. All rights reserved.
36 1.1 drochner *
37 1.1 drochner * This software was developed by the Computer Systems Engineering group
38 1.1 drochner * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
39 1.1 drochner * contributed to Berkeley.
40 1.1 drochner *
41 1.1 drochner * All advertising materials mentioning features or use of this software
42 1.1 drochner * must display the following acknowledgement:
43 1.1 drochner * This product includes software developed by the University of
44 1.1 drochner * California, Lawrence Berkeley Laboratory.
45 1.1 drochner *
46 1.1 drochner * Redistribution and use in source and binary forms, with or without
47 1.1 drochner * modification, are permitted provided that the following conditions
48 1.1 drochner * are met:
49 1.1 drochner * 1. Redistributions of source code must retain the above copyright
50 1.1 drochner * notice, this list of conditions and the following disclaimer.
51 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
52 1.1 drochner * notice, this list of conditions and the following disclaimer in the
53 1.1 drochner * documentation and/or other materials provided with the distribution.
54 1.8 agc * 3. Neither the name of the University nor the names of its contributors
55 1.1 drochner * may be used to endorse or promote products derived from this software
56 1.1 drochner * without specific prior written permission.
57 1.1 drochner *
58 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 drochner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 drochner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 drochner * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 drochner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 drochner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 drochner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 drochner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 drochner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 drochner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 drochner * SUCH DAMAGE.
69 1.1 drochner *
70 1.1 drochner * @(#)event_var.h 8.1 (Berkeley) 6/11/93
71 1.1 drochner */
72 1.1 drochner
73 1.1 drochner /*
74 1.1 drochner * Internal "wscons_event" queue interface for the keyboard and mouse drivers.
75 1.1 drochner * The drivers are expected not to place events in the queue above spltty(),
76 1.1 drochner * i.e., are expected to run off serial ports or similar devices.
77 1.1 drochner */
78 1.1 drochner
79 1.1 drochner struct wseventvar {
80 1.1 drochner u_int get; /* get (read) index (modified synchronously) */
81 1.1 drochner volatile u_int put; /* put (write) index (modified by interrupt) */
82 1.1 drochner struct selinfo sel; /* process selecting */
83 1.1 drochner struct proc *io; /* process that opened queue (can get SIGIO) */
84 1.12 ad void *sih; /* soft interrupt handle for signals */
85 1.1 drochner int wanted; /* wake up on input ready */
86 1.1 drochner int async; /* send SIGIO on input ready */
87 1.13 christos void *q; /* circular buffer (queue) of events */
88 1.13 christos int version; /* event version */
89 1.1 drochner };
90 1.1 drochner
91 1.10 jmmv void wsevent_init(struct wseventvar *, struct proc *);
92 1.2 augustss void wsevent_fini(struct wseventvar *);
93 1.2 augustss int wsevent_read(struct wseventvar *, struct uio *, int);
94 1.9 christos int wsevent_poll(struct wseventvar *, int, struct lwp *);
95 1.11 peter int wsevent_kqfilter(struct wseventvar *, struct knote *);
96 1.10 jmmv void wsevent_wakeup(struct wseventvar *);
97 1.10 jmmv int wsevent_inject(struct wseventvar *, struct wscons_event *, size_t);
98 1.13 christos int wsevent_setversion(struct wseventvar *, int);
99 1.13 christos
100 1.13 christos #ifdef COMPAT_50
101 1.13 christos /*
102 1.13 christos * Compatibility layer
103 1.13 christos */
104 1.13 christos #include <compat/sys/time.h>
105 1.13 christos
106 1.13 christos struct owscons_event {
107 1.13 christos u_int type;
108 1.13 christos int value;
109 1.13 christos struct timespec50 time;
110 1.13 christos };
111 1.13 christos
112 1.13 christos #define EVSIZE(ev) ((ev)->version == WSEVENT_VERSION ? \
113 1.13 christos sizeof(struct wscons_event) : \
114 1.13 christos sizeof(struct owscons_event))
115 1.13 christos
116 1.13 christos #define WSMUXIO_OINJECTEVENT _IOW('W', 96, struct owscons_event)
117 1.13 christos
118 1.13 christos #else
119 1.13 christos
120 1.13 christos #define EVSIZE(ev) sizeof(struct wscons_event)
121 1.13 christos
122 1.13 christos #endif
123 1.13 christos
124 1.13 christos #define EVARRAY(ev, idx) (void *)(((char *)(ev)->q) + (EVSIZE(ev) * (idx)))
125 1.13 christos
126