Home | History | Annotate | Line # | Download | only in dev
event.c revision 1.8
      1 /*	$NetBSD: event.c,v 1.8 2002/10/23 09:10:30 jdolecek Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1992, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This software was developed by the Computer Systems Engineering group
      8  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9  * contributed to Berkeley.
     10  *
     11  * All advertising materials mentioning features or use of this software
     12  * must display the following acknowledgement:
     13  *	This product includes software developed by the University of
     14  *	California, Lawrence Berkeley Laboratory.
     15  *
     16  * Redistribution and use in source and binary forms, with or without
     17  * modification, are permitted provided that the following conditions
     18  * are met:
     19  * 1. Redistributions of source code must retain the above copyright
     20  *    notice, this list of conditions and the following disclaimer.
     21  * 2. Redistributions in binary form must reproduce the above copyright
     22  *    notice, this list of conditions and the following disclaimer in the
     23  *    documentation and/or other materials provided with the distribution.
     24  * 3. All advertising materials mentioning features or use of this software
     25  *    must display the following acknowledgement:
     26  *	This product includes software developed by the University of
     27  *	California, Berkeley and its contributors.
     28  * 4. Neither the name of the University nor the names of its contributors
     29  *    may be used to endorse or promote products derived from this software
     30  *    without specific prior written permission.
     31  *
     32  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42  * SUCH DAMAGE.
     43  *
     44  *	@(#)event.c	8.1 (Berkeley) 6/11/93
     45  *
     46  * Header: event.c,v 1.5 92/11/26 01:10:44 torek Exp  (LBL)
     47  */
     48 
     49 #include <sys/cdefs.h>
     50 __KERNEL_RCSID(0, "$NetBSD: event.c,v 1.8 2002/10/23 09:10:30 jdolecek Exp $");
     51 
     52 /*
     53  * Internal `Firm_event' interface for the keyboard and mouse drivers.
     54  */
     55 
     56 #include <sys/param.h>
     57 #include <sys/fcntl.h>
     58 #include <sys/malloc.h>
     59 #include <sys/poll.h>
     60 #include <sys/proc.h>
     61 #include <sys/select.h>
     62 #include <sys/systm.h>
     63 #include <sys/vnode.h>
     64 
     65 #include <amiga/dev/vuid_event.h>
     66 #include <amiga/dev/event_var.h>
     67 
     68 /*
     69  * Initialize a firm_event queue.
     70  */
     71 void
     72 ev_init(register struct evvar *ev)
     73 {
     74 
     75 	ev->ev_get = ev->ev_put = 0;
     76 	ev->ev_q = malloc((u_long)EV_QSIZE * sizeof(struct firm_event),
     77 	    M_DEVBUF, M_WAITOK);
     78 	bzero((caddr_t)ev->ev_q, EV_QSIZE * sizeof(struct firm_event));
     79 }
     80 
     81 /*
     82  * Tear down a firm_event queue.
     83  */
     84 void
     85 ev_fini(register struct evvar *ev)
     86 {
     87 
     88 	free(ev->ev_q, M_DEVBUF);
     89 }
     90 
     91 /*
     92  * User-level interface: read, poll.
     93  * (User cannot write an event queue.)
     94  */
     95 int
     96 ev_read(register struct evvar *ev, struct uio *uio, int flags)
     97 {
     98 	int s, n, cnt, error;
     99 
    100 	/*
    101 	 * Make sure we can return at least 1.
    102 	 */
    103 	if (uio->uio_resid < sizeof(struct firm_event))
    104 		return (EMSGSIZE);	/* ??? */
    105 	s = splev();
    106 	while (ev->ev_get == ev->ev_put) {
    107 		if (flags & IO_NDELAY) {
    108 			splx(s);
    109 			return (EWOULDBLOCK);
    110 		}
    111 		ev->ev_wanted = 1;
    112 		error = tsleep((caddr_t)ev, PEVENT | PCATCH, "firm_event", 0);
    113 		if (error) {
    114 			splx(s);
    115 			return (error);
    116 		}
    117 	}
    118 	/*
    119 	 * Move firm_events from tail end of queue (there is at least one
    120 	 * there).
    121 	 */
    122 	if (ev->ev_put < ev->ev_get)
    123 		cnt = EV_QSIZE - ev->ev_get;	/* events in [get..QSIZE) */
    124 	else
    125 		cnt = ev->ev_put - ev->ev_get;	/* events in [get..put) */
    126 	splx(s);
    127 	n = howmany(uio->uio_resid, sizeof(struct firm_event));
    128 	if (cnt > n)
    129 		cnt = n;
    130 	error = uiomove((caddr_t)&ev->ev_q[ev->ev_get],
    131 	    cnt * sizeof(struct firm_event), uio);
    132 	n -= cnt;
    133 	/*
    134 	 * If we do not wrap to 0, used up all our space, or had an error,
    135 	 * stop.  Otherwise move from front of queue to put index, if there
    136 	 * is anything there to move.
    137 	 */
    138 	if ((ev->ev_get = (ev->ev_get + cnt) % EV_QSIZE) != 0 ||
    139 	    n == 0 || error || (cnt = ev->ev_put) == 0)
    140 		return (error);
    141 	if (cnt > n)
    142 		cnt = n;
    143 	error = uiomove((caddr_t)&ev->ev_q[0],
    144 	    cnt * sizeof(struct firm_event), uio);
    145 	ev->ev_get = cnt;
    146 	return (error);
    147 }
    148 
    149 int
    150 ev_poll(register struct evvar *ev, int events, struct proc *p)
    151 {
    152 	int s = splev();
    153 	int revents = 0;
    154 
    155 	if (events & (POLLIN | POLLRDNORM))
    156 		/* succeed if there is something to read */
    157 		if (ev->ev_get != ev->ev_put)
    158 			revents |= events & (POLLIN | POLLRDNORM);
    159 	if (revents == 0)
    160 		if (events & (POLLIN | POLLRDNORM))
    161 			selrecord(p, &ev->ev_sel);
    162 	splx(s);
    163 	return (revents);
    164 }
    165 
    166 static void
    167 filt_evrdetach(struct knote *kn)
    168 {
    169 	struct evvar *ev = kn->kn_hook;
    170 	int s;
    171 
    172 	s = splev();
    173 	SLIST_REMOVE(&ev->ev_sel.si_klist, kn, knote, kn_selnext);
    174 	splx(s);
    175 }
    176 
    177 static int
    178 filt_evread(struct knote *kn, long hint)
    179 {
    180 	struct evvar *ev = kn->kn_hook;
    181 
    182 	if (ev->ev_get == ev->ev_put)
    183 		return (0);
    184 
    185 	if (ev->ev_get < ev->ev_put)
    186 		kn->kn_data = ev->ev_put - ev->ev_get;
    187 	else
    188 		kn->kn_data = (EV_QSIZE - ev->ev_get) +
    189 		    ev->ev_put;
    190 
    191 	kn->kn_data *= sizeof(struct firm_event);
    192 
    193 	return (1);
    194 }
    195 
    196 static const struct filterops ev_filtops =
    197 	{ 1, NULL, filt_evrdetach, filt_evread };
    198 
    199 int
    200 ev_kqfilter(struct evvar *ev, struct knote *kn)
    201 {
    202 	struct klist *klist;
    203 	int s;
    204 
    205 	switch (kn->kn_filter) {
    206 	case EVFILT_READ:
    207 		klist = &ev->ev_sel.si_klist;
    208 		kn->kn_fop = &ev_filtops;
    209 		break;
    210 
    211 	default:
    212 		return (1);
    213 	}
    214 
    215 	kn->kn_hook = ev;
    216 
    217 	s = splev();
    218 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
    219 	splx(s);
    220 
    221 	return (0);
    222 }
    223