1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 #ifndef _I386_APMVAR_H_
32 #define _I386_APMVAR_H_
33
34 #include <sys/ioccom.h>
35
36
37
38
39
40 #define APM_VERSION 0x0102
41
42
43
44
45 #define APM_16BIT_SUPPORTED 0x00010000
46 #define APM_32BIT_SUPPORTED 0x00020000
47 #define APM_IDLE_SLOWS 0x00040000
48 #define APM_BIOS_PM_DISABLED 0x00080000
49 #define APM_BIOS_PM_DISENGAGED 0x00100000
50 #define APM_MAJOR(f) (((f) >> 8) & 0xff)
51 #define APM_MINOR(f) ((f) & 0xff)
52 #define APM_VERMASK 0x0000ffff
53 #define APM_NOCLI 0x00010000
54 #define APM_BEBATT 0x00020000
55
56
57 #define APM_ERR_CODE(regs) (((regs)->ax & 0xff00) >> 8)
58 #define APM_ERR_PM_DISABLED 0x01
59 #define APM_ERR_REALALREADY 0x02
60 #define APM_ERR_NOTCONN 0x03
61 #define APM_ERR_16ALREADY 0x05
62 #define APM_ERR_16NOTSUPP 0x06
63 #define APM_ERR_32ALREADY 0x07
64 #define APM_ERR_32NOTSUPP 0x08
65 #define APM_ERR_UNRECOG_DEV 0x09
66 #define APM_ERR_ERANGE 0x0A
67 #define APM_ERR_NOTENGAGED 0x0B
68 #define APM_ERR_EOPNOSUPP 0x0C
69 #define APM_ERR_RTIMER_DISABLED 0x0D
70 #define APM_ERR_UNABLE 0x60
71 #define APM_ERR_NOEVENTS 0x80
72 #define APM_ERR_NOT_PRESENT 0x86
73
74 #define APM_DEV_APM_BIOS 0x0000
75 #define APM_DEV_ALLDEVS 0x0001
76
77 #define APM_DEV_DISPLAY(x) (0x0100|((x)&0xff))
78 #define APM_DEV_DISK(x) (0x0200|((x)&0xff))
79 #define APM_DEV_PARALLEL(x) (0x0300|((x)&0xff))
80 #define APM_DEV_SERIAL(x) (0x0400|((x)&0xff))
81 #define APM_DEV_NETWORK(x) (0x0500|((x)&0xff))
82 #define APM_DEV_PCMCIA(x) (0x0600|((x)&0xff))
83 #define APM_DEV_BATTERIES(x) (0x8000|((x)&0xff))
84 #define APM_DEV_ALLUNITS 0xff
85
86
87
88
89 #define APM_INSTCHECK 0x5300
90 #define APM_16BIT_SUPPORT 0x01
91 #define APM_32BIT_SUPPORT 0x02
92 #define APM_CPUIDLE_SLOW 0x04
93 #define APM_DISABLED 0x08
94 #define APM_DISENGAGED 0x10
95
96 #define APM_REAL_CONNECT 0x5301
97 #define APM_PROT16_CONNECT 0x5302
98 #define APM_PROT32_CONNECT 0x5303
99 #define APM_DISCONNECT 0x5304
100
101 #define APM_CPU_IDLE 0x5305
102 #define APM_CPU_BUSY 0x5306
103
104 #define APM_SET_PWR_STATE 0x5307
105 #define APM_SYS_READY 0x0000
106 #define APM_SYS_STANDBY 0x0001
107 #define APM_SYS_SUSPEND 0x0002
108 #define APM_SYS_OFF 0x0003
109 #define APM_LASTREQ_INPROG 0x0004
110 #define APM_LASTREQ_REJECTED 0x0005
111
112
113
114
115
116
117
118
119 #define APM_PWR_MGT_ENABLE 0x5308
120 #define APM_MGT_ALL 0xffff
121 #define APM_MGT_DISABLE 0x0
122 #define APM_MGT_ENABLE 0x1
123
124 #define APM_SYSTEM_DEFAULTS 0x5309
125 #define APM_DEFAULTS_ALL 0xffff
126
127 #define APM_POWER_STATUS 0x530a
128 #define APM_AC_OFF 0x00
129 #define APM_AC_ON 0x01
130 #define APM_AC_BACKUP 0x02
131 #define APM_AC_UNKNOWN 0xff
132 #define APM_BATT_HIGH 0x00
133 #define APM_BATT_LOW 0x01
134 #define APM_BATT_CRITICAL 0x02
135 #define APM_BATT_CHARGING 0x03
136 #define APM_BATT_UNKNOWN 0xff
137 #define APM_BATT_FLAG_HIGH 0x01
138 #define APM_BATT_FLAG_LOW 0x02
139 #define APM_BATT_FLAG_CRITICAL 0x04
140 #define APM_BATT_FLAG_CHARGING 0x08
141 #define APM_BATT_FLAG_NOBATTERY 0x10
142 #define APM_BATT_FLAG_NOSYSBATT 0x80
143 #define APM_BATT_LIFE_UNKNOWN 0xff
144 #define BATT_STATE(regp) ((regp)->bx & 0xff)
145 #define BATT_FLAGS(regp) (((regp)->cx & 0xff00) >> 8)
146 #define AC_STATE(regp) (((regp)->bx & 0xff00) >> 8)
147 #define BATT_LIFE(regp) ((regp)->cx & 0xff)
148
149
150
151
152
153 #define BATT_REMAINING(regp) (((regp)->dx & 0x8000) ? \
154 ((regp)->dx & 0x7fff) : \
155 ((regp)->dx & 0x7fff)/60)
156 #define BATT_REM_VALID(regp) (((regp)->dx & 0xffff) != 0xffff)
157 #define BATT_COUNT(regp) ((regp)->si)
158
159 #define APM_GET_PM_EVENT 0x530b
160 #define APM_NOEVENT 0x0000
161 #define APM_STANDBY_REQ 0x0001
162 #define APM_SUSPEND_REQ 0x0002
163 #define APM_NORMAL_RESUME 0x0003
164 #define APM_CRIT_RESUME 0x0004
165
166 #define APM_BATTERY_LOW 0x0005
167 #define APM_POWER_CHANGE 0x0006
168 #define APM_UPDATE_TIME 0x0007
169 #define APM_CRIT_SUSPEND_REQ 0x0008
170 #define APM_USER_STANDBY_REQ 0x0009
171 #define APM_USER_SUSPEND_REQ 0x000A
172 #define APM_SYS_STANDBY_RESUME 0x000B
173 #define APM_CAPABILITY_CHANGE 0x000C
174
175
176
177
178 #define APM_EVENT_MASK 0xffff
179
180 #define APM_EVENT_COMPOSE(t,i) ((((i) & 0x7fff) << 16)|((t) & APM_EVENT_MASK))
181 #define APM_EVENT_TYPE(e) ((e) & APM_EVENT_MASK)
182 #define APM_EVENT_INDEX(e) ((e) >> 16)
183
184 #define APM_GET_POWER_STATE 0x530c
185 #define APM_DEVICE_MGMT_ENABLE 0x530d
186
187 #define APM_DRIVER_VERSION 0x530e
188
189
190
191
192
193 #define APM_CONN_MINOR(regp) ((regp)->ax & 0xff)
194 #define APM_CONN_MAJOR(regp) (((regp)->ax & 0xff00) >> 8)
195
196 #define APM_PWR_MGT_ENGAGE 0x530F
197 #define APM_MGT_DISENGAGE 0x0
198 #define APM_MGT_ENGAGE 0x1
199
200
201
202
203
204 #define APM_GET_CAPABILITIES 0x5310
205 #define APM_NBATTERIES(regp) ((regp)->bx)
206 #define APM_GLOBAL_STANDBY 0x0001
207 #define APM_GLOBAL_SUSPEND 0x0002
208 #define APM_RTIMER_STANDBY 0x0004
209 #define APM_RTIMER_SUSPEND 0x0008
210 #define APM_IRRING_STANDBY 0x0010
211 #define APM_IRRING_SUSPEND 0x0020
212 #define APM_PCCARD_STANDBY 0x0040
213 #define APM_PCCARD_SUSPEND 0x0080
214
215
216
217
218
219
220
221
222
223
224 #define APM_RESUME_TIMER 0x5311
225 #define APM_RT_DISABLE 0x0
226 #define APM_RT_GET 0x1
227 #define APM_RT_SET 0x2
228
229
230
231
232 #define APM_RESUME_ON_RING 0x5312
233 #define APM_ROR_DISABLE 0x0
234 #define APM_ROR_ENABLE 0x1
235 #define APM_ROR_STATUS 0x2
236
237
238
239
240 #define APM_INACTIVITY_TIMER 0x5313
241 #define APM_IT_DISABLE 0x0
242 #define APM_IT_ENABLE 0x1
243 #define APM_IT_STATUS 0x2
244
245
246 #define APM_OEM 0x5380
247 #define APM_OEM_INSTCHECK 0x7f
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264 #define APM_BATTERY_ABSENT 4
265
266 struct apm_power_info {
267 u_char battery_state;
268 u_char ac_state;
269 u_char battery_life;
270 u_char spare1;
271 u_int minutes_left;
272 u_int spare2[6];
273 };
274
275 struct apm_ctl {
276 u_int dev;
277 u_int mode;
278 };
279
280 #define APM_IOC_REJECT _IOW('A', 0, struct apm_event_info)
281 #define APM_IOC_STANDBY _IO('A', 1)
282 #define APM_IOC_SUSPEND _IO('A', 2)
283 #define APM_IOC_GETPOWER _IOR('A', 3, struct apm_power_info)
284 #define APM_IOC_DEV_CTL _IOW('A', 5, struct apm_ctl)
285 #define APM_IOC_PRN_CTL _IOW('A', 6, int )
286 #define APM_PRINT_ON 0
287 #define APM_PRINT_OFF 1
288 #define APM_PRINT_PCT 2
289
290
291 #ifdef _KERNEL
292 extern void apm_cpu_busy(void);
293 extern void apm_cpu_idle(void);
294 extern void apminit(void);
295 int apm_set_powstate(u_int devid, u_int powstate);
296 int apm_kqfilter(dev_t dev, struct knote *kn);
297 #endif
298
299 #endif