FreeBSD/Linux Kernel Cross Reference
sys/i386/apm/apm.h
1 /*
2 * APM (Advanced Power Management) BIOS Device Driver
3 *
4 * Copyright (c) 1994 UKAI, Fumitoshi.
5 * Copyright (c) 1994-1995 by HOSOKAWA, Tatsumi <hosokawa@jp.FreeBSD.org>
6 * Copyright (c) 1996 Nate Williams <nate@FreeBSD.org>
7 * Copyright (c) 1997 Poul-Henning Kamp <phk@FreeBSD.org>
8 *
9 * This software may be used, modified, copied, and distributed, in
10 * both source and binary form provided that the above copyright and
11 * these terms are retained. Under no circumstances is the author
12 * responsible for the proper functioning of this software, nor does
13 * the author assume any responsibility for damages incurred with its
14 * use.
15 *
16 * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
17 *
18 * $FreeBSD$
19 */
20
21 #define APM_NEVENTS 16
22 #define APM_NPMEV 13
23
24 /* static data */
25 struct apm_softc {
26 int initialized, active, bios_busy;
27 int always_halt_cpu, slow_idle_cpu;
28 int disabled, disengaged;
29 int standby_countdown, suspend_countdown;
30 u_int minorversion, majorversion;
31 u_int cs32_base, cs16_base, ds_base;
32 u_int cs16_limit, cs32_limit, ds_limit;
33 u_int cs_entry;
34 u_int intversion;
35 u_int standbys, suspends;
36 struct apmhook sc_suspend;
37 struct apmhook sc_resume;
38 struct selinfo sc_rsel;
39 int sc_flags;
40 int event_count;
41 int event_ptr;
42 struct apm_event_info event_list[APM_NEVENTS];
43 u_char event_filter[APM_NPMEV];
44 #ifdef DEVFS
45 void *sc_devfs_token;
46 #endif
47 };
Cache object: 220801b65e8add56bc2c70a2f802fd78
|