Home | History | Annotate | Line # | Download | only in dev
apm.c revision 1.29
      1  1.29   thorpej /*	$NetBSD: apm.c,v 1.29 2020/12/19 21:54:42 thorpej Exp $	*/
      2   1.1    itojun /*	$OpenBSD: apm.c,v 1.5 2002/06/07 07:13:59 miod Exp $	*/
      3   1.1    itojun 
      4   1.1    itojun /*-
      5   1.1    itojun  * Copyright (c) 2001 Alexander Guy.  All rights reserved.
      6   1.1    itojun  * Copyright (c) 1998-2001 Michael Shalayeff. All rights reserved.
      7   1.1    itojun  * Copyright (c) 1995 John T. Kohl.  All rights reserved.
      8   1.1    itojun  *
      9   1.1    itojun  * Redistribution and use in source and binary forms, with or without
     10   1.1    itojun  * modification, are permitted provided that the following conditions
     11   1.1    itojun  * are met:
     12   1.1    itojun  * 1. Redistributions of source code must retain the above copyright
     13   1.1    itojun  *    notice, this list of conditions and the following disclaimer.
     14   1.1    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1    itojun  *    notice, this list of conditions and the following disclaimer in the
     16   1.1    itojun  *    documentation and/or other materials provided with the distribution.
     17  1.18     david  * 3. Neither the names of the authors nor the names of contributors
     18   1.1    itojun  *    may be used to endorse or promote products derived from this software
     19   1.1    itojun  *    without specific prior written permission.
     20   1.1    itojun  *
     21  1.18     david  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
     22   1.1    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23   1.1    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.18     david  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
     25   1.1    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26   1.1    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27   1.1    itojun  * OR SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28   1.1    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29   1.1    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30   1.1    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31   1.1    itojun  * SUCH DAMAGE.
     32   1.1    itojun  *
     33   1.1    itojun  */
     34   1.9     lukem 
     35   1.9     lukem #include <sys/cdefs.h>
     36  1.29   thorpej __KERNEL_RCSID(0, "$NetBSD: apm.c,v 1.29 2020/12/19 21:54:42 thorpej Exp $");
     37   1.1    itojun 
     38   1.1    itojun #include "apm.h"
     39   1.1    itojun 
     40   1.1    itojun #if NAPM > 1
     41   1.1    itojun #error only one APM emulation device may be configured
     42   1.1    itojun #endif
     43   1.1    itojun 
     44   1.1    itojun #include <sys/param.h>
     45   1.1    itojun #include <sys/systm.h>
     46   1.1    itojun #include <sys/kernel.h>
     47   1.1    itojun #include <sys/proc.h>
     48   1.1    itojun #include <sys/device.h>
     49   1.1    itojun #include <sys/fcntl.h>
     50   1.1    itojun #include <sys/ioctl.h>
     51  1.17        ad #include <sys/mutex.h>
     52   1.1    itojun #ifdef __OpenBSD__
     53   1.1    itojun #include <sys/event.h>
     54   1.1    itojun #endif
     55   1.1    itojun #ifdef __NetBSD__
     56   1.1    itojun #include <sys/select.h>
     57   1.1    itojun #include <sys/poll.h>
     58   1.1    itojun #include <sys/conf.h>
     59   1.1    itojun #endif
     60   1.1    itojun 
     61   1.1    itojun #ifdef __OpenBSD__
     62   1.1    itojun #include <machine/conf.h>
     63   1.1    itojun #endif
     64   1.1    itojun #include <machine/cpu.h>
     65   1.1    itojun #include <machine/apmvar.h>
     66   1.1    itojun 
     67   1.1    itojun #include <macppc/dev/adbvar.h>
     68   1.1    itojun #include <macppc/dev/pm_direct.h>
     69   1.1    itojun 
     70   1.1    itojun #if defined(APMDEBUG)
     71   1.1    itojun #define DPRINTF(x)	printf x
     72   1.1    itojun #else
     73   1.1    itojun #define	DPRINTF(x)	/**/
     74   1.1    itojun #endif
     75   1.1    itojun 
     76   1.1    itojun #define APM_NEVENTS 16
     77   1.1    itojun 
     78   1.1    itojun struct apm_softc {
     79   1.1    itojun 	struct selinfo sc_rsel;
     80   1.1    itojun #ifdef __OpenBSD__
     81   1.1    itojun 	struct klist sc_note;
     82   1.1    itojun #endif
     83   1.1    itojun 	int    sc_flags;
     84   1.1    itojun 	int	event_count;
     85   1.1    itojun 	int	event_ptr;
     86  1.17        ad 	kmutex_t sc_lock;
     87   1.1    itojun 	struct	apm_event_info event_list[APM_NEVENTS];
     88   1.1    itojun };
     89   1.1    itojun 
     90   1.1    itojun /*
     91   1.1    itojun  * A brief note on the locking protocol: it's very simple; we
     92   1.1    itojun  * assert an exclusive lock any time thread context enters the
     93   1.1    itojun  * APM module.  This is both the APM thread itself, as well as
     94   1.1    itojun  * user context.
     95   1.1    itojun  */
     96   1.1    itojun #ifdef __NetBSD__
     97  1.17        ad #define	APM_LOCK(apmsc)		mutex_enter(&(apmsc)->sc_lock)
     98  1.17        ad #define	APM_UNLOCK(apmsc)	mutex_exit(&(apmsc)->sc_lock)
     99   1.1    itojun #else
    100   1.1    itojun #define APM_LOCK(apmsc)
    101   1.1    itojun #define APM_UNLOCK(apmsc)
    102   1.1    itojun #endif
    103   1.1    itojun 
    104  1.24      matt int apmmatch(device_t, cfdata_t, void *);
    105  1.24      matt void apmattach(device_t, device_t, void *);
    106   1.1    itojun 
    107   1.1    itojun #ifdef __NetBSD__
    108   1.1    itojun #if 0
    109  1.21       dsl static int	apm_record_event(struct apm_softc *, u_int);
    110   1.1    itojun #endif
    111   1.1    itojun #endif
    112   1.1    itojun 
    113  1.25       chs CFATTACH_DECL_NEW(apm, sizeof(struct apm_softc),
    114   1.4   thorpej     apmmatch, apmattach, NULL, NULL);
    115   1.1    itojun 
    116   1.1    itojun #ifdef __OpenBSD__
    117   1.1    itojun struct cfdriver apm_cd = {
    118   1.1    itojun 	NULL, "apm", DV_DULL
    119   1.1    itojun };
    120   1.1    itojun #else
    121   1.1    itojun extern struct cfdriver apm_cd;
    122   1.2   gehenna 
    123   1.2   gehenna dev_type_open(apmopen);
    124   1.2   gehenna dev_type_close(apmclose);
    125   1.2   gehenna dev_type_ioctl(apmioctl);
    126   1.2   gehenna dev_type_poll(apmpoll);
    127   1.5  jdolecek dev_type_kqfilter(apmkqfilter);
    128   1.2   gehenna 
    129   1.2   gehenna const struct cdevsw apm_cdevsw = {
    130  1.26  dholland 	.d_open = apmopen,
    131  1.26  dholland 	.d_close = apmclose,
    132  1.26  dholland 	.d_read = noread,
    133  1.26  dholland 	.d_write = nowrite,
    134  1.26  dholland 	.d_ioctl = apmioctl,
    135  1.26  dholland 	.d_stop = nostop,
    136  1.26  dholland 	.d_tty = notty,
    137  1.26  dholland 	.d_poll = apmpoll,
    138  1.26  dholland 	.d_mmap = nommap,
    139  1.26  dholland 	.d_kqfilter = apmkqfilter,
    140  1.27  dholland 	.d_discard = nodiscard,
    141  1.26  dholland 	.d_flag = 0
    142   1.2   gehenna };
    143   1.1    itojun #endif
    144   1.1    itojun 
    145   1.1    itojun int	apm_evindex;
    146   1.1    itojun 
    147   1.1    itojun #define	APMUNIT(dev)	(minor(dev)&0xf0)
    148   1.1    itojun #define	APMDEV(dev)	(minor(dev)&0x0f)
    149   1.1    itojun #define APMDEV_NORMAL	0
    150   1.1    itojun #define APMDEV_CTL	8
    151   1.1    itojun 
    152   1.1    itojun /*
    153   1.1    itojun  * Flags to control kernel display
    154   1.1    itojun  *	SCFLAG_NOPRINT:		do not output APM power messages due to
    155   1.1    itojun  *				a power change event.
    156   1.1    itojun  *
    157   1.1    itojun  *	SCFLAG_PCTPRINT:	do not output APM power messages due to
    158   1.1    itojun  *				to a power change event unless the battery
    159   1.1    itojun  *				percentage changes.
    160   1.1    itojun  */
    161   1.1    itojun 
    162   1.1    itojun #define SCFLAG_NOPRINT	0x0008000
    163   1.1    itojun #define SCFLAG_PCTPRINT	0x0004000
    164   1.1    itojun #define SCFLAG_PRINT	(SCFLAG_NOPRINT|SCFLAG_PCTPRINT)
    165   1.1    itojun 
    166   1.1    itojun #define	SCFLAG_OREAD 	(1 << 0)
    167   1.1    itojun #define	SCFLAG_OWRITE	(1 << 1)
    168   1.1    itojun #define	SCFLAG_OPEN	(SCFLAG_OREAD|SCFLAG_OWRITE)
    169   1.1    itojun 
    170   1.1    itojun 
    171   1.1    itojun int
    172  1.24      matt apmmatch(device_t parent, cfdata_t match, void *aux)
    173   1.1    itojun {
    174   1.1    itojun 	struct adb_attach_args *aa = (void *)aux;
    175   1.1    itojun 	if (aa->origaddr != ADBADDR_APM ||
    176   1.1    itojun 	    aa->handler_id != ADBADDR_APM ||
    177   1.1    itojun 	    aa->adbaddr != ADBADDR_APM)
    178   1.1    itojun 		return 0;
    179   1.1    itojun 
    180  1.12    briggs 	if (adbHardware != ADB_HW_PMU)
    181   1.1    itojun 		return 0;
    182   1.1    itojun 
    183   1.1    itojun 	return 1;
    184   1.1    itojun }
    185   1.1    itojun 
    186   1.1    itojun void
    187  1.24      matt apmattach(device_t parent, device_t self, void *aux)
    188   1.1    itojun {
    189  1.25       chs 	struct apm_softc *sc = device_private(self);
    190   1.1    itojun 	struct pmu_battery_info info;
    191   1.1    itojun 
    192   1.1    itojun 	pm_battery_info(0, &info);
    193   1.1    itojun 
    194   1.1    itojun 	printf(": battery flags 0x%X, ", info.flags);
    195   1.1    itojun 	printf("%d%% charged\n", ((info.cur_charge * 100) / info.max_charge));
    196  1.10   aymeric 
    197  1.10   aymeric 	sc->sc_flags = 0;
    198  1.10   aymeric 	sc->event_ptr = 0;
    199  1.10   aymeric 	sc->event_count = 0;
    200  1.17        ad 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
    201  1.19     rmind 	selinit(&sc->sc_rsel);
    202   1.1    itojun }
    203   1.1    itojun 
    204   1.1    itojun int
    205  1.20    cegger apmopen(dev_t dev, int flag, int mode, struct lwp *l)
    206   1.1    itojun {
    207   1.1    itojun 	struct apm_softc *sc;
    208   1.1    itojun 	int error = 0;
    209   1.1    itojun 
    210   1.1    itojun 	/* apm0 only */
    211  1.20    cegger 	sc = device_lookup_private(&apm_cd, APMUNIT(dev));
    212  1.20    cegger 	if (sc == NULL)
    213   1.1    itojun 		return ENXIO;
    214   1.1    itojun 
    215   1.1    itojun 	DPRINTF(("apmopen: dev %d pid %d flag %x mode %x\n",
    216  1.15  christos 	    APMDEV(dev), l->l_proc->p_pid, flag, mode));
    217   1.1    itojun 
    218   1.1    itojun 	APM_LOCK(sc);
    219   1.1    itojun 	switch (APMDEV(dev)) {
    220   1.1    itojun 	case APMDEV_CTL:
    221   1.1    itojun 		if (!(flag & FWRITE)) {
    222   1.1    itojun 			error = EINVAL;
    223   1.1    itojun 			break;
    224   1.1    itojun 		}
    225   1.1    itojun 		if (sc->sc_flags & SCFLAG_OWRITE) {
    226   1.1    itojun 			error = EBUSY;
    227   1.1    itojun 			break;
    228   1.1    itojun 		}
    229   1.1    itojun 		sc->sc_flags |= SCFLAG_OWRITE;
    230   1.1    itojun 		break;
    231   1.1    itojun 	case APMDEV_NORMAL:
    232   1.1    itojun 		if (!(flag & FREAD) || (flag & FWRITE)) {
    233   1.1    itojun 			error = EINVAL;
    234   1.1    itojun 			break;
    235   1.1    itojun 		}
    236   1.1    itojun 		sc->sc_flags |= SCFLAG_OREAD;
    237   1.1    itojun 		break;
    238   1.1    itojun 	default:
    239   1.1    itojun 		error = ENXIO;
    240   1.1    itojun 		break;
    241   1.1    itojun 	}
    242   1.1    itojun 	APM_UNLOCK(sc);
    243   1.1    itojun 	return error;
    244   1.1    itojun }
    245   1.1    itojun 
    246   1.1    itojun int
    247  1.20    cegger apmclose(dev_t dev, int flag, int mode, struct lwp *l)
    248   1.1    itojun {
    249   1.1    itojun 	struct apm_softc *sc;
    250   1.1    itojun 
    251   1.1    itojun 	/* apm0 only */
    252  1.20    cegger 	sc = device_lookup_private(&apm_cd, APMUNIT(dev));
    253  1.20    cegger 	if (sc == NULL)
    254   1.1    itojun 		return ENXIO;
    255   1.1    itojun 
    256  1.15  christos 	DPRINTF(("apmclose: pid %d flag %x mode %x\n", l->l_proc->p_pid, flag, mode));
    257   1.1    itojun 
    258   1.1    itojun 	APM_LOCK(sc);
    259   1.1    itojun 	switch (APMDEV(dev)) {
    260   1.1    itojun 	case APMDEV_CTL:
    261   1.1    itojun 		sc->sc_flags &= ~SCFLAG_OWRITE;
    262   1.1    itojun 		break;
    263   1.1    itojun 	case APMDEV_NORMAL:
    264   1.1    itojun 		sc->sc_flags &= ~SCFLAG_OREAD;
    265   1.1    itojun 		break;
    266   1.1    itojun 	}
    267   1.1    itojun 	APM_UNLOCK(sc);
    268   1.1    itojun 	return 0;
    269   1.1    itojun }
    270   1.1    itojun 
    271   1.1    itojun int
    272  1.20    cegger apmioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    273   1.1    itojun {
    274   1.1    itojun 	struct apm_softc *sc;
    275   1.1    itojun 	struct pmu_battery_info batt;
    276   1.1    itojun 	struct apm_power_info *power;
    277   1.1    itojun 	int error = 0;
    278   1.1    itojun 
    279   1.1    itojun 	/* apm0 only */
    280  1.20    cegger 	sc = device_lookup_private(&apm_cd, APMUNIT(dev));
    281  1.20    cegger 	if (sc == NULL)
    282   1.1    itojun 		return ENXIO;
    283   1.1    itojun 
    284   1.1    itojun 	APM_LOCK(sc);
    285   1.1    itojun 	switch (cmd) {
    286   1.1    itojun 		/* some ioctl names from linux */
    287   1.1    itojun 	case APM_IOC_STANDBY:
    288   1.1    itojun 		if ((flag & FWRITE) == 0)
    289   1.1    itojun 			error = EBADF;
    290   1.1    itojun 	case APM_IOC_SUSPEND:
    291   1.1    itojun 		if ((flag & FWRITE) == 0)
    292   1.1    itojun 			error = EBADF;
    293   1.1    itojun 		break;
    294   1.1    itojun 	case APM_IOC_PRN_CTL:
    295   1.1    itojun 		if ((flag & FWRITE) == 0)
    296   1.1    itojun 			error = EBADF;
    297   1.1    itojun 		else {
    298  1.14   nathanw 			int op = *(int *)data;
    299  1.14   nathanw 			DPRINTF(( "APM_IOC_PRN_CTL: %d\n", op ));
    300  1.14   nathanw 			switch (op) {
    301   1.1    itojun 			case APM_PRINT_ON:	/* enable printing */
    302   1.1    itojun 				sc->sc_flags &= ~SCFLAG_PRINT;
    303   1.1    itojun 				break;
    304   1.1    itojun 			case APM_PRINT_OFF: /* disable printing */
    305   1.1    itojun 				sc->sc_flags &= ~SCFLAG_PRINT;
    306   1.1    itojun 				sc->sc_flags |= SCFLAG_NOPRINT;
    307   1.1    itojun 				break;
    308   1.1    itojun 			case APM_PRINT_PCT: /* disable some printing */
    309   1.1    itojun 				sc->sc_flags &= ~SCFLAG_PRINT;
    310   1.1    itojun 				sc->sc_flags |= SCFLAG_PCTPRINT;
    311   1.1    itojun 				break;
    312   1.1    itojun 			default:
    313   1.1    itojun 				error = EINVAL;
    314   1.1    itojun 				break;
    315   1.1    itojun 			}
    316   1.1    itojun 		}
    317   1.1    itojun 		break;
    318   1.1    itojun 	case APM_IOC_DEV_CTL:
    319   1.1    itojun 		if ((flag & FWRITE) == 0)
    320   1.1    itojun 			error = EBADF;
    321   1.1    itojun 		break;
    322   1.1    itojun 	case APM_IOC_GETPOWER:
    323   1.1    itojun 	        power = (struct apm_power_info *)data;
    324   1.1    itojun 
    325   1.1    itojun 		pm_battery_info(0, &batt);
    326   1.1    itojun 
    327   1.1    itojun 		power->ac_state = ((batt.flags & PMU_PWR_AC_PRESENT) ?
    328   1.1    itojun 		    APM_AC_ON : APM_AC_OFF);
    329   1.1    itojun 		power->battery_life =
    330   1.1    itojun 		    ((batt.cur_charge * 100) / batt.max_charge);
    331   1.1    itojun 
    332   1.1    itojun 		/*
    333   1.1    itojun 		 * If the battery is charging, return the minutes left until
    334   1.1    itojun 		 * charging is complete. apmd knows this.
    335   1.1    itojun 		 */
    336   1.1    itojun 
    337   1.1    itojun 		if (!(batt.flags & PMU_PWR_BATT_PRESENT)) {
    338   1.1    itojun 			power->battery_state = APM_BATT_UNKNOWN;
    339   1.1    itojun 			power->minutes_left = 0;
    340   1.1    itojun 			power->battery_life = 0;
    341   1.1    itojun 		} else if ((power->ac_state == APM_AC_ON) &&
    342   1.1    itojun 			   (batt.draw > 0)) {
    343  1.13    briggs 			power->minutes_left = batt.secs_remaining / 60;
    344   1.1    itojun 			power->battery_state = APM_BATT_CHARGING;
    345   1.1    itojun 		} else {
    346  1.13    briggs 			power->minutes_left = batt.secs_remaining / 60;
    347   1.1    itojun 
    348   1.1    itojun 			/* XXX - Arbitrary */
    349   1.1    itojun 			if (power->battery_life > 60) {
    350   1.1    itojun 				power->battery_state = APM_BATT_HIGH;
    351   1.1    itojun 			} else if (power->battery_life < 10) {
    352   1.1    itojun 				power->battery_state = APM_BATT_CRITICAL;
    353   1.1    itojun 			} else {
    354   1.1    itojun 				power->battery_state = APM_BATT_LOW;
    355   1.1    itojun 			}
    356   1.1    itojun 		}
    357   1.1    itojun 
    358   1.1    itojun 		break;
    359   1.1    itojun 
    360   1.1    itojun 	default:
    361   1.1    itojun 		error = ENOTTY;
    362   1.1    itojun 	}
    363   1.1    itojun 	APM_UNLOCK(sc);
    364   1.1    itojun 
    365   1.1    itojun 	return error;
    366   1.1    itojun }
    367   1.1    itojun 
    368   1.1    itojun #ifdef __NetBSD__
    369   1.1    itojun #if 0
    370   1.1    itojun /*
    371   1.1    itojun  * return 0 if the user will notice and handle the event,
    372   1.1    itojun  * return 1 if the kernel driver should do so.
    373   1.1    itojun  */
    374   1.1    itojun static int
    375  1.20    cegger apm_record_event(struct apm_softc *sc, u_int event_type)
    376   1.1    itojun {
    377   1.1    itojun 	struct apm_event_info *evp;
    378   1.1    itojun 
    379   1.1    itojun 	if ((sc->sc_flags & SCFLAG_OPEN) == 0)
    380   1.1    itojun 		return 1;		/* no user waiting */
    381   1.1    itojun 	if (sc->event_count == APM_NEVENTS) {
    382   1.1    itojun 		DPRINTF(("apm_record_event: queue full!\n"));
    383   1.1    itojun 		return 1;			/* overflow */
    384   1.1    itojun 	}
    385   1.1    itojun 	evp = &sc->event_list[sc->event_ptr];
    386   1.1    itojun 	sc->event_count++;
    387   1.1    itojun 	sc->event_ptr++;
    388   1.1    itojun 	sc->event_ptr %= APM_NEVENTS;
    389   1.1    itojun 	evp->type = event_type;
    390   1.1    itojun 	evp->index = ++apm_evindex;
    391  1.19     rmind 	selnotify(&sc->sc_rsel, 0, 0);
    392   1.1    itojun 	return (sc->sc_flags & SCFLAG_OWRITE) ? 0 : 1; /* user may handle */
    393   1.1    itojun }
    394   1.1    itojun #endif
    395   1.1    itojun 
    396   1.1    itojun int
    397  1.20    cegger apmpoll(dev_t dev, int events, struct lwp *l)
    398   1.1    itojun {
    399  1.20    cegger 	struct apm_softc *sc = device_lookup_private(&apm_cd,APMUNIT(dev));
    400   1.1    itojun 	int revents = 0;
    401   1.1    itojun 
    402   1.1    itojun 	APM_LOCK(sc);
    403   1.1    itojun 	if (events & (POLLIN | POLLRDNORM)) {
    404   1.1    itojun 		if (sc->event_count)
    405   1.1    itojun 			revents |= events & (POLLIN | POLLRDNORM);
    406   1.1    itojun 		else
    407  1.15  christos 			selrecord(l, &sc->sc_rsel);
    408   1.1    itojun 	}
    409   1.1    itojun 	APM_UNLOCK(sc);
    410   1.1    itojun 
    411   1.1    itojun 	return (revents);
    412   1.1    itojun }
    413   1.1    itojun #endif
    414   1.1    itojun 
    415   1.5  jdolecek static void
    416   1.5  jdolecek filt_apmrdetach(struct knote *kn)
    417   1.1    itojun {
    418   1.1    itojun 	struct apm_softc *sc = (struct apm_softc *)kn->kn_hook;
    419   1.1    itojun 
    420   1.5  jdolecek 	APM_LOCK(sc);
    421  1.29   thorpej 	selremove_knote(&sc->sc_rsel, kn);
    422   1.5  jdolecek 	APM_UNLOCK(sc);
    423   1.1    itojun }
    424   1.1    itojun 
    425   1.5  jdolecek static int
    426   1.5  jdolecek filt_apmread(struct knote *kn, long hint)
    427   1.1    itojun {
    428   1.5  jdolecek 	struct apm_softc *sc = kn->kn_hook;
    429   1.1    itojun 
    430   1.5  jdolecek 	kn->kn_data = sc->event_count;
    431   1.5  jdolecek 	return (kn->kn_data > 0);
    432   1.1    itojun }
    433   1.1    itojun 
    434  1.28  christos static struct filterops apmread_filtops = {
    435  1.28  christos 	.f_isfd = 1,
    436  1.28  christos 	.f_attach = NULL,
    437  1.28  christos 	.f_detach = filt_apmrdetach,
    438  1.28  christos 	.f_event = filt_apmread,
    439  1.28  christos };
    440   1.5  jdolecek 
    441   1.1    itojun int
    442  1.20    cegger apmkqfilter(dev_t dev, struct knote *kn)
    443   1.1    itojun {
    444  1.20    cegger 	struct apm_softc *sc = device_lookup_private(&apm_cd,APMUNIT(dev));
    445   1.1    itojun 
    446   1.1    itojun 	switch (kn->kn_filter) {
    447   1.1    itojun 	case EVFILT_READ:
    448   1.1    itojun 		kn->kn_fop = &apmread_filtops;
    449   1.1    itojun 		break;
    450   1.1    itojun 	default:
    451   1.1    itojun 		return (1);
    452   1.1    itojun 	}
    453   1.1    itojun 
    454   1.5  jdolecek 	kn->kn_hook = sc;
    455   1.5  jdolecek 
    456   1.5  jdolecek 	APM_LOCK(sc);
    457  1.29   thorpej 	selrecord_knote(&sc->sc_rsel, kn);
    458   1.5  jdolecek 	APM_UNLOCK(sc);
    459   1.1    itojun 
    460   1.1    itojun 	return (0);
    461   1.1    itojun }
    462