acpi_apm.c revision 1.7 1 1.7 xtraeme /* $NetBSD: acpi_apm.c,v 1.7 2006/10/12 06:56:48 xtraeme Exp $ */
2 1.1 christos
3 1.1 christos /*-
4 1.1 christos * Copyright (c) 2006 The NetBSD Foundation, Inc.
5 1.1 christos * All rights reserved.
6 1.1 christos *
7 1.1 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.1 christos * by Christos Zoulas and by Jared McNeill.
9 1.1 christos *
10 1.1 christos * Redistribution and use in source and binary forms, with or without
11 1.1 christos * modification, are permitted provided that the following conditions
12 1.1 christos * are met:
13 1.1 christos * 1. Redistributions of source code must retain the above copyright
14 1.1 christos * notice, this list of conditions and the following disclaimer.
15 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 christos * notice, this list of conditions and the following disclaimer in the
17 1.1 christos * documentation and/or other materials provided with the distribution.
18 1.1 christos * 3. All advertising materials mentioning features or use of this software
19 1.1 christos * must display the following acknowledgement:
20 1.1 christos * This product includes software developed by the NetBSD
21 1.1 christos * Foundation, Inc. and its contributors.
22 1.1 christos * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 christos * contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
37 1.1 christos */
38 1.1 christos
39 1.1 christos /*
40 1.1 christos * Autoconfiguration support for the Intel ACPI Component Architecture
41 1.1 christos * ACPI reference implementation.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include <sys/cdefs.h>
45 1.7 xtraeme __KERNEL_RCSID(0, "$NetBSD: acpi_apm.c,v 1.7 2006/10/12 06:56:48 xtraeme Exp $");
46 1.1 christos
47 1.1 christos #include <sys/param.h>
48 1.1 christos #include <sys/systm.h>
49 1.1 christos #include <sys/device.h>
50 1.1 christos #include <sys/malloc.h>
51 1.1 christos #include <sys/kernel.h>
52 1.1 christos #include <sys/proc.h>
53 1.1 christos #include <sys/sysctl.h>
54 1.1 christos #include <sys/select.h>
55 1.1 christos #include <sys/envsys.h>
56 1.1 christos #include <dev/sysmon/sysmonvar.h>
57 1.1 christos
58 1.4 christos #include <dev/acpi/acpica.h>
59 1.1 christos #include <dev/apm/apmvar.h>
60 1.1 christos
61 1.1 christos static void acpiapm_disconnect(void *);
62 1.1 christos static void acpiapm_enable(void *, int);
63 1.1 christos static int acpiapm_set_powstate(void *, u_int, u_int);
64 1.1 christos static int acpiapm_get_powstat(void *, u_int, struct apm_power_info *);
65 1.1 christos static int acpiapm_get_event(void *, u_int *, u_int *);
66 1.1 christos static void acpiapm_cpu_busy(void *);
67 1.1 christos static void acpiapm_cpu_idle(void *);
68 1.1 christos static void acpiapm_get_capabilities(void *, u_int *, u_int *);
69 1.1 christos
70 1.1 christos struct apm_accessops acpiapm_accessops = {
71 1.1 christos acpiapm_disconnect,
72 1.1 christos acpiapm_enable,
73 1.1 christos acpiapm_set_powstate,
74 1.1 christos acpiapm_get_powstat,
75 1.1 christos acpiapm_get_event,
76 1.1 christos acpiapm_cpu_busy,
77 1.1 christos acpiapm_cpu_idle,
78 1.1 christos acpiapm_get_capabilities,
79 1.1 christos };
80 1.1 christos
81 1.1 christos #ifdef ACPI_APM_DEBUG
82 1.1 christos #define DPRINTF(a) uprintf a
83 1.1 christos #else
84 1.1 christos #define DPRINTF(a)
85 1.1 christos #endif
86 1.1 christos
87 1.4 christos #ifndef ACPI_APM_DEFAULT_STANDBY_STATE
88 1.4 christos #define ACPI_APM_DEFAULT_STANDBY_STATE (1)
89 1.4 christos #endif
90 1.4 christos #ifndef ACPI_APM_DEFAULT_SUSPEND_STATE
91 1.4 christos #define ACPI_APM_DEFAULT_SUSPEND_STATE (3)
92 1.4 christos #endif
93 1.4 christos #define ACPI_APM_DEFAULT_CAP \
94 1.4 christos ((ACPI_APM_DEFAULT_STANDBY_STATE!=0 ? APM_GLOBAL_STANDBY : 0) | \
95 1.4 christos (ACPI_APM_DEFAULT_SUSPEND_STATE!=0 ? APM_GLOBAL_SUSPEND : 0))
96 1.4 christos #define ACPI_APM_STATE_MIN (0)
97 1.4 christos #define ACPI_APM_STATE_MAX (4)
98 1.4 christos
99 1.4 christos /* It is assumed that there is only acpiapm instance. */
100 1.4 christos static int resumed = 0, capability_changed = 0;
101 1.4 christos static int standby_state = ACPI_APM_DEFAULT_STANDBY_STATE;
102 1.4 christos static int suspend_state = ACPI_APM_DEFAULT_SUSPEND_STATE;
103 1.4 christos static int capabilities = ACPI_APM_DEFAULT_CAP;
104 1.4 christos static int acpiapm_node = CTL_EOL, standby_node = CTL_EOL;
105 1.4 christos
106 1.1 christos struct acpi_softc;
107 1.1 christos extern ACPI_STATUS acpi_enter_sleep_state(struct acpi_softc *, int);
108 1.1 christos static int acpiapm_match(struct device *, struct cfdata *, void *);
109 1.1 christos static void acpiapm_attach(struct device *, struct device *, void *);
110 1.4 christos static int sysctl_state(SYSCTLFN_PROTO);
111 1.1 christos
112 1.1 christos CFATTACH_DECL(acpiapm, sizeof(struct apm_softc),
113 1.1 christos acpiapm_match, acpiapm_attach, NULL, NULL);
114 1.1 christos
115 1.1 christos static int
116 1.4 christos /*ARGSUSED*/
117 1.7 xtraeme acpiapm_match(struct device *parent __unused,
118 1.7 xtraeme struct cfdata *match __unused, void *aux __unused)
119 1.1 christos {
120 1.1 christos return apm_match();
121 1.1 christos }
122 1.1 christos
123 1.1 christos static void
124 1.4 christos /*ARGSUSED*/
125 1.7 xtraeme acpiapm_attach(struct device *parent, struct device *self, void *aux __unused)
126 1.1 christos {
127 1.1 christos struct apm_softc *sc = (struct apm_softc *)self;
128 1.1 christos
129 1.1 christos sc->sc_ops = &acpiapm_accessops;
130 1.1 christos sc->sc_cookie = parent;
131 1.1 christos sc->sc_vers = 0x0102;
132 1.1 christos sc->sc_detail = 0;
133 1.1 christos sc->sc_hwflags = APM_F_DONT_RUN_HOOKS;
134 1.1 christos apm_attach(sc);
135 1.1 christos }
136 1.1 christos
137 1.4 christos static int
138 1.4 christos get_state_value(int id)
139 1.4 christos {
140 1.4 christos const int states[] = {
141 1.4 christos ACPI_STATE_S0,
142 1.4 christos ACPI_STATE_S1,
143 1.4 christos ACPI_STATE_S2,
144 1.4 christos ACPI_STATE_S3,
145 1.4 christos ACPI_STATE_S4
146 1.4 christos };
147 1.4 christos
148 1.4 christos if (id < ACPI_APM_STATE_MIN || id > ACPI_APM_STATE_MAX)
149 1.4 christos return ACPI_STATE_S0;
150 1.4 christos
151 1.4 christos return states[id];
152 1.4 christos }
153 1.4 christos
154 1.4 christos static int
155 1.4 christos sysctl_state(SYSCTLFN_ARGS)
156 1.4 christos {
157 1.4 christos int newstate, error, *ref, cap, oldcap;
158 1.4 christos struct sysctlnode node;
159 1.4 christos
160 1.4 christos if (rnode->sysctl_num == standby_node) {
161 1.4 christos ref = &standby_state;
162 1.4 christos cap = APM_GLOBAL_STANDBY;
163 1.4 christos } else {
164 1.4 christos ref = &suspend_state;
165 1.4 christos cap = APM_GLOBAL_SUSPEND;
166 1.4 christos }
167 1.4 christos
168 1.4 christos newstate = *ref;
169 1.4 christos node = *rnode;
170 1.4 christos node.sysctl_data = &newstate;
171 1.4 christos error = sysctl_lookup(SYSCTLFN_CALL(&node));
172 1.4 christos if (error || newp == NULL)
173 1.4 christos return error;
174 1.4 christos
175 1.4 christos if (newstate < ACPI_APM_STATE_MIN || newstate > ACPI_APM_STATE_MAX)
176 1.4 christos return EINVAL;
177 1.4 christos
178 1.4 christos *ref = newstate;
179 1.4 christos oldcap = capabilities;
180 1.4 christos capabilities = newstate != 0 ? oldcap | cap : oldcap & ~cap;
181 1.4 christos if ((capabilities ^ oldcap) != 0)
182 1.4 christos capability_changed = 1;
183 1.4 christos
184 1.4 christos return 0;
185 1.4 christos }
186 1.4 christos
187 1.4 christos SYSCTL_SETUP(sysctl_acpiapm_setup, "sysctl machdep.acpiapm subtree setup")
188 1.4 christos {
189 1.4 christos const struct sysctlnode *node;
190 1.4 christos
191 1.4 christos if (sysctl_createv(clog, 0, NULL, NULL,
192 1.4 christos CTLFLAG_PERMANENT,
193 1.4 christos CTLTYPE_NODE, "machdep", NULL,
194 1.4 christos NULL, 0, NULL, 0, CTL_MACHDEP, CTL_EOL))
195 1.4 christos return;
196 1.4 christos
197 1.4 christos if (sysctl_createv(clog, 0, NULL, &node,
198 1.4 christos CTLFLAG_PERMANENT,
199 1.4 christos CTLTYPE_NODE, "acpiapm", NULL,
200 1.4 christos NULL, 0, NULL, 0,
201 1.4 christos CTL_MACHDEP, CTL_CREATE, CTL_EOL))
202 1.4 christos return;
203 1.4 christos acpiapm_node = node->sysctl_num;
204 1.4 christos
205 1.4 christos if (sysctl_createv(clog, 0, NULL, &node,
206 1.4 christos CTLFLAG_READWRITE,
207 1.4 christos CTLTYPE_INT, "standby", NULL,
208 1.4 christos &sysctl_state, 0, NULL, 0,
209 1.4 christos CTL_MACHDEP, acpiapm_node, CTL_CREATE, CTL_EOL))
210 1.4 christos return;
211 1.4 christos standby_node = node->sysctl_num;
212 1.4 christos
213 1.4 christos if (sysctl_createv(clog, 0, NULL, NULL,
214 1.4 christos CTLFLAG_READWRITE,
215 1.4 christos CTLTYPE_INT, "suspend", NULL,
216 1.4 christos &sysctl_state, 0, NULL, 0,
217 1.4 christos CTL_MACHDEP, acpiapm_node, CTL_CREATE, CTL_EOL))
218 1.4 christos return;
219 1.4 christos }
220 1.4 christos
221 1.1 christos /*****************************************************************************
222 1.1 christos * Minimalistic ACPI /dev/apm emulation support, for ACPI suspend
223 1.1 christos *****************************************************************************/
224 1.1 christos
225 1.1 christos static void
226 1.4 christos /*ARGSUSED*/
227 1.7 xtraeme acpiapm_disconnect(void *opaque __unused)
228 1.1 christos {
229 1.1 christos return;
230 1.1 christos }
231 1.1 christos
232 1.1 christos static void
233 1.4 christos /*ARGSUSED*/
234 1.7 xtraeme acpiapm_enable(void *opaque __unused, int onoff __unused)
235 1.1 christos {
236 1.1 christos return;
237 1.1 christos }
238 1.1 christos
239 1.1 christos static int
240 1.1 christos acpiapm_set_powstate(void *opaque, u_int devid, u_int powstat)
241 1.1 christos {
242 1.1 christos struct acpi_softc *sc = opaque;
243 1.1 christos
244 1.1 christos if (devid != APM_DEV_ALLDEVS)
245 1.1 christos return APM_ERR_UNRECOG_DEV;
246 1.1 christos
247 1.1 christos switch (powstat) {
248 1.1 christos case APM_SYS_READY:
249 1.1 christos break;
250 1.1 christos case APM_SYS_STANDBY:
251 1.4 christos acpi_enter_sleep_state(sc, get_state_value(standby_state));
252 1.4 christos resumed = 1;
253 1.1 christos break;
254 1.1 christos case APM_SYS_SUSPEND:
255 1.4 christos acpi_enter_sleep_state(sc, get_state_value(suspend_state));
256 1.4 christos resumed = 1;
257 1.1 christos break;
258 1.1 christos case APM_SYS_OFF:
259 1.1 christos break;
260 1.1 christos case APM_LASTREQ_INPROG:
261 1.1 christos break;
262 1.1 christos case APM_LASTREQ_REJECTED:
263 1.1 christos break;
264 1.1 christos }
265 1.1 christos
266 1.1 christos return 0;
267 1.1 christos }
268 1.1 christos
269 1.1 christos static int
270 1.4 christos /*ARGSUSED*/
271 1.7 xtraeme acpiapm_get_powstat(void *opaque __unused, u_int batteryid __unused,
272 1.7 xtraeme struct apm_power_info *pinfo)
273 1.1 christos {
274 1.4 christos #define APM_BATT_FLAG_WATERMARK_MASK (APM_BATT_FLAG_CRITICAL | \
275 1.4 christos APM_BATT_FLAG_LOW | \
276 1.4 christos APM_BATT_FLAG_HIGH)
277 1.1 christos int i, curcap, lowcap, warncap, cap, descap, lastcap, discharge;
278 1.6 gdt int cap_valid, lastcap_valid, discharge_valid;
279 1.1 christos envsys_tre_data_t etds;
280 1.1 christos envsys_basic_info_t ebis;
281 1.1 christos
282 1.5 gdt /* Denote most variables as unitialized. */
283 1.6 gdt curcap = lowcap = warncap = descap = -1;
284 1.5 gdt
285 1.5 gdt /* Prepare to aggregate these two variables over all batteries. */
286 1.6 gdt cap = lastcap = discharge = 0;
287 1.6 gdt cap_valid = lastcap_valid = discharge_valid = 0;
288 1.1 christos
289 1.1 christos (void)memset(pinfo, 0, sizeof(*pinfo));
290 1.1 christos pinfo->ac_state = APM_AC_UNKNOWN;
291 1.1 christos pinfo->minutes_valid = 0;
292 1.4 christos pinfo->minutes_left = 0xffff; /* unknown */
293 1.1 christos pinfo->batteryid = 0;
294 1.5 gdt pinfo->nbattery = 0; /* to be incremented as batteries are found */
295 1.1 christos pinfo->battery_flags = 0;
296 1.4 christos pinfo->battery_state = APM_BATT_UNKNOWN; /* ignored */
297 1.1 christos pinfo->battery_life = APM_BATT_LIFE_UNKNOWN;
298 1.1 christos
299 1.1 christos for (i = 0;; i++) {
300 1.1 christos const char *desc;
301 1.1 christos int data;
302 1.1 christos int flags;
303 1.1 christos
304 1.1 christos ebis.sensor = i;
305 1.1 christos if (sysmonioctl_envsys(0, ENVSYS_GTREINFO, (void *)&ebis, 0,
306 1.1 christos NULL) || (ebis.validflags & ENVSYS_FVALID) == 0)
307 1.1 christos break;
308 1.1 christos etds.sensor = i;
309 1.1 christos if (sysmonioctl_envsys(0, ENVSYS_GTREDATA, (void *)&etds, 0,
310 1.1 christos NULL))
311 1.1 christos continue;
312 1.1 christos desc = ebis.desc;
313 1.1 christos flags = etds.validflags;
314 1.1 christos data = etds.cur.data_s;
315 1.1 christos
316 1.1 christos DPRINTF(("%d %s %d %d\n", i, desc, data, flags));
317 1.1 christos if ((flags & ENVSYS_FCURVALID) == 0)
318 1.1 christos continue;
319 1.1 christos if (strstr(desc, " disconnected")) {
320 1.1 christos pinfo->ac_state = data ? APM_AC_OFF : APM_AC_ON;
321 1.4 christos } else if (strstr(desc, " present") && data == 0)
322 1.1 christos pinfo->battery_flags |= APM_BATT_FLAG_NO_SYSTEM_BATTERY;
323 1.4 christos else if (strstr(desc, " charging") && data)
324 1.1 christos pinfo->battery_flags |= APM_BATT_FLAG_CHARGING;
325 1.4 christos else if (strstr(desc, " discharging") && data)
326 1.1 christos pinfo->battery_flags &= ~APM_BATT_FLAG_CHARGING;
327 1.1 christos else if (strstr(desc, " warn cap"))
328 1.1 christos warncap = data / 1000;
329 1.1 christos else if (strstr(desc, " low cap"))
330 1.1 christos lowcap = data / 1000;
331 1.5 gdt else if (strstr(desc, " last full cap")) {
332 1.5 gdt lastcap += data / 1000;
333 1.5 gdt lastcap_valid = 1;
334 1.5 gdt }
335 1.1 christos else if (strstr(desc, " design cap"))
336 1.1 christos descap = data / 1000;
337 1.1 christos else if (strstr(desc, " charge") &&
338 1.5 gdt strstr(desc, " charge rate") == NULL) {
339 1.5 gdt cap += data / 1000;
340 1.5 gdt cap_valid = 1;
341 1.5 gdt pinfo->nbattery++;
342 1.5 gdt }
343 1.6 gdt else if (strstr(desc, " discharge rate")) {
344 1.6 gdt discharge += data / 1000;
345 1.6 gdt discharge_valid = 1;
346 1.6 gdt }
347 1.1 christos }
348 1.1 christos
349 1.5 gdt if (cap_valid > 0) {
350 1.4 christos if (warncap != -1 && cap < warncap)
351 1.1 christos pinfo->battery_flags |= APM_BATT_FLAG_CRITICAL;
352 1.4 christos else if (lowcap != -1) {
353 1.4 christos if (cap < lowcap)
354 1.4 christos pinfo->battery_flags |= APM_BATT_FLAG_LOW;
355 1.4 christos else
356 1.4 christos pinfo->battery_flags |= APM_BATT_FLAG_HIGH;
357 1.1 christos }
358 1.5 gdt if (lastcap_valid > 0 && lastcap != 0)
359 1.1 christos pinfo->battery_life = 100 * cap / lastcap;
360 1.2 christos else if (descap != -1 && descap != 0)
361 1.1 christos pinfo->battery_life = 100 * cap / descap;
362 1.1 christos }
363 1.1 christos
364 1.1 christos if ((pinfo->battery_flags & APM_BATT_FLAG_CHARGING) == 0) {
365 1.4 christos /* discharging */
366 1.3 hira if (discharge != -1 && cap != -1 && discharge != 0)
367 1.1 christos pinfo->minutes_left = 60 * cap / discharge;
368 1.1 christos }
369 1.4 christos if ((pinfo->battery_flags & APM_BATT_FLAG_WATERMARK_MASK) == 0 &&
370 1.4 christos (pinfo->battery_flags & APM_BATT_FLAG_NO_SYSTEM_BATTERY) == 0) {
371 1.4 christos if (pinfo->ac_state == APM_AC_ON)
372 1.4 christos pinfo->battery_flags |= APM_BATT_FLAG_HIGH;
373 1.4 christos else
374 1.4 christos pinfo->battery_flags |= APM_BATT_FLAG_LOW;
375 1.4 christos }
376 1.4 christos
377 1.1 christos DPRINTF(("%d %d %d %d %d %d\n", cap, warncap, lowcap, lastcap, descap,
378 1.1 christos discharge));
379 1.4 christos DPRINTF(("pinfo %d %d %d\n", pinfo->battery_flags,
380 1.4 christos pinfo->battery_life, pinfo->battery_life));
381 1.1 christos return 0;
382 1.1 christos }
383 1.1 christos
384 1.1 christos static int
385 1.4 christos /*ARGSUSED*/
386 1.7 xtraeme acpiapm_get_event(void *opaque __unused, u_int *event_type, u_int *event_info)
387 1.1 christos {
388 1.4 christos if (capability_changed) {
389 1.4 christos capability_changed = 0;
390 1.4 christos *event_type = APM_CAP_CHANGE;
391 1.4 christos *event_info = 0;
392 1.4 christos return 0;
393 1.4 christos }
394 1.4 christos if (resumed) {
395 1.4 christos resumed = 0;
396 1.4 christos *event_type = APM_NORMAL_RESUME;
397 1.4 christos *event_info = 0;
398 1.4 christos return 0;
399 1.4 christos }
400 1.4 christos
401 1.1 christos return APM_ERR_NOEVENTS;
402 1.1 christos }
403 1.1 christos
404 1.1 christos static void
405 1.4 christos /*ARGSUSED*/
406 1.7 xtraeme acpiapm_cpu_busy(void *opaque __unused)
407 1.1 christos {
408 1.1 christos return;
409 1.1 christos }
410 1.1 christos
411 1.1 christos static void
412 1.4 christos /*ARGSUSED*/
413 1.7 xtraeme acpiapm_cpu_idle(void *opaque __unused)
414 1.1 christos {
415 1.1 christos return;
416 1.1 christos }
417 1.1 christos
418 1.1 christos static void
419 1.4 christos /*ARGSUSED*/
420 1.7 xtraeme acpiapm_get_capabilities(void *opaque __unused, u_int *numbatts,
421 1.7 xtraeme u_int *capflags)
422 1.1 christos {
423 1.1 christos *numbatts = 1;
424 1.4 christos *capflags = capabilities;
425 1.1 christos return;
426 1.1 christos }
427