j720pwr.c revision 1.3.56.1 1 1.3.56.1 yamt /* $NetBSD: j720pwr.c,v 1.3.56.1 2008/05/16 02:22:27 yamt Exp $ */
2 1.1 peter
3 1.1 peter /*-
4 1.1 peter * Copyright (c) 2002, 2006 The NetBSD Foundation, Inc.
5 1.1 peter * All rights reserved.
6 1.1 peter *
7 1.1 peter * This code is derived from software contributed to The NetBSD Foundation
8 1.1 peter * by Emmanuel Dreyfus and Peter Postma.
9 1.1 peter *
10 1.1 peter * Redistribution and use in source and binary forms, with or without
11 1.1 peter * modification, are permitted provided that the following conditions
12 1.1 peter * are met:
13 1.1 peter * 1. Redistributions of source code must retain the above copyright
14 1.1 peter * notice, this list of conditions and the following disclaimer.
15 1.1 peter * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 peter * notice, this list of conditions and the following disclaimer in the
17 1.1 peter * documentation and/or other materials provided with the distribution.
18 1.1 peter *
19 1.1 peter * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 peter * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 peter * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 peter * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 peter * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 peter * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 peter * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 peter * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 peter * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 peter * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 peter * POSSIBILITY OF SUCH DAMAGE.
30 1.1 peter */
31 1.1 peter
32 1.1 peter /* Jornada 720 power management. */
33 1.1 peter
34 1.1 peter #include <sys/cdefs.h>
35 1.3.56.1 yamt __KERNEL_RCSID(0, "$NetBSD: j720pwr.c,v 1.3.56.1 2008/05/16 02:22:27 yamt Exp $");
36 1.1 peter
37 1.1 peter #include <sys/param.h>
38 1.1 peter #include <sys/systm.h>
39 1.1 peter #include <sys/kernel.h>
40 1.1 peter #include <sys/proc.h>
41 1.1 peter #include <sys/device.h>
42 1.1 peter
43 1.1 peter #include <dev/apm/apmbios.h>
44 1.1 peter
45 1.1 peter #include <machine/config_hook.h>
46 1.1 peter #include <machine/platid.h>
47 1.1 peter #include <machine/platid_mask.h>
48 1.1 peter
49 1.1 peter #include <arm/sa11x0/sa11x0_var.h>
50 1.1 peter #include <arm/sa11x0/sa11x0_gpioreg.h>
51 1.1 peter #include <arm/sa11x0/sa11x0_ppcreg.h>
52 1.1 peter #include <arm/sa11x0/sa11x0_sspreg.h>
53 1.1 peter
54 1.1 peter #include <hpcarm/dev/j720sspvar.h>
55 1.1 peter
56 1.1 peter #ifdef DEBUG
57 1.1 peter #define DPRINTF(arg) printf arg
58 1.1 peter #else
59 1.1 peter #define DPRINTF(arg) /* nothing */
60 1.1 peter #endif
61 1.1 peter
62 1.1 peter #define arraysize(ary) (sizeof(ary) / sizeof(ary[0]))
63 1.1 peter
64 1.1 peter struct j720pwr_softc {
65 1.1 peter struct device sc_dev;
66 1.1 peter
67 1.1 peter struct j720ssp_softc *sc_ssp;
68 1.3 peter
69 1.3 peter volatile int sc_state;
70 1.3 peter #define J720PWR_POWEROFF 0x01
71 1.3 peter #define J720PWR_SLEEPING 0x02
72 1.1 peter };
73 1.1 peter
74 1.1 peter static int j720pwr_match(struct device *, struct cfdata *, void *);
75 1.1 peter static void j720pwr_attach(struct device *, struct device *, void *);
76 1.1 peter
77 1.3 peter static void j720pwr_sleep(void *);
78 1.3 peter static int j720pwr_suspend_hook(void *, int, long, void *);
79 1.3 peter static int j720pwr_event_hook(void *, int, long, void *);
80 1.1 peter static int j720pwr_apm_getpower_hook(void *, int, long, void *);
81 1.1 peter static int j720pwr_get_battery(struct j720pwr_softc *);
82 1.1 peter static int j720pwr_get_ac_status(struct j720pwr_softc *);
83 1.1 peter static int j720pwr_get_charge_status(struct j720pwr_softc *);
84 1.1 peter
85 1.1 peter static const struct {
86 1.1 peter int percent;
87 1.1 peter int value;
88 1.1 peter int state;
89 1.1 peter } battery_table[] = {
90 1.1 peter { 100, 670, APM_BATT_FLAG_HIGH },
91 1.1 peter { 90, 660, APM_BATT_FLAG_HIGH },
92 1.1 peter { 80, 650, APM_BATT_FLAG_HIGH },
93 1.1 peter { 70, 640, APM_BATT_FLAG_HIGH },
94 1.1 peter { 60, 630, APM_BATT_FLAG_HIGH },
95 1.1 peter { 50, 620, APM_BATT_FLAG_HIGH },
96 1.1 peter { 40, 605, APM_BATT_FLAG_LOW },
97 1.1 peter { 30, 580, APM_BATT_FLAG_LOW },
98 1.1 peter { 20, 545, APM_BATT_FLAG_LOW },
99 1.1 peter { 10, 500, APM_BATT_FLAG_CRITICAL },
100 1.1 peter { 0, 430, APM_BATT_FLAG_CRITICAL },
101 1.1 peter };
102 1.1 peter
103 1.1 peter CFATTACH_DECL(j720pwr, sizeof(struct j720pwr_softc),
104 1.1 peter j720pwr_match, j720pwr_attach, NULL, NULL);
105 1.1 peter
106 1.1 peter
107 1.1 peter static int
108 1.1 peter j720pwr_match(struct device *parent, struct cfdata *cf, void *aux)
109 1.1 peter {
110 1.1 peter
111 1.1 peter if (!platid_match(&platid, &platid_mask_MACH_HP_JORNADA_7XX))
112 1.1 peter return 0;
113 1.1 peter if (strcmp(cf->cf_name, "j720pwr") != 0)
114 1.1 peter return 0;
115 1.1 peter
116 1.1 peter return 1;
117 1.1 peter }
118 1.1 peter
119 1.1 peter static void
120 1.1 peter j720pwr_attach(struct device *parent, struct device *self, void *aux)
121 1.1 peter {
122 1.1 peter struct j720pwr_softc *sc = (struct j720pwr_softc *)self;
123 1.3 peter extern void (*__sleep_func)(void *);
124 1.3 peter extern void *__sleep_ctx;
125 1.1 peter
126 1.1 peter printf("\n");
127 1.1 peter
128 1.1 peter sc->sc_ssp = (struct j720ssp_softc *)parent;
129 1.3 peter sc->sc_state = 0;
130 1.3 peter
131 1.3 peter /* Register apm sleep function. */
132 1.3 peter __sleep_func = j720pwr_sleep;
133 1.3 peter __sleep_ctx = sc;
134 1.1 peter
135 1.1 peter /* Battery status query hook. */
136 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_BATTERYVAL,
137 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
138 1.1 peter
139 1.1 peter /* Battery charge status query hook. */
140 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_CHARGE,
141 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
142 1.1 peter
143 1.1 peter /* AC status query hook. */
144 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_ACADAPTER,
145 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
146 1.1 peter
147 1.3 peter /* Suspend/resume button hook. */
148 1.3 peter config_hook(CONFIG_HOOK_BUTTONEVENT,
149 1.3 peter CONFIG_HOOK_BUTTONEVENT_POWER,
150 1.3 peter CONFIG_HOOK_SHARE, j720pwr_suspend_hook, sc);
151 1.3 peter
152 1.3 peter /* Receive suspend/resume events. */
153 1.3 peter config_hook(CONFIG_HOOK_PMEVENT,
154 1.3 peter CONFIG_HOOK_PMEVENT_HARDPOWER,
155 1.3 peter CONFIG_HOOK_SHARE, j720pwr_event_hook, sc);
156 1.3 peter
157 1.1 peter /* Attach hpcapm. */
158 1.1 peter config_found_ia(self, "hpcapmif", NULL, NULL);
159 1.1 peter }
160 1.1 peter
161 1.3 peter static void
162 1.3 peter j720pwr_sleep(void *ctx)
163 1.3 peter {
164 1.3 peter struct j720pwr_softc *sc = ctx;
165 1.3 peter struct j720ssp_softc *ssp = sc->sc_ssp;
166 1.3 peter uint32_t oldfer;
167 1.3 peter
168 1.3 peter /* Disable falling-edge detect on all GPIO ports, except keyboard. */
169 1.3 peter oldfer = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER);
170 1.3 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER, 1 << 0);
171 1.3 peter
172 1.3 peter while (sc->sc_state & J720PWR_POWEROFF) {
173 1.3 peter /*
174 1.3 peter * Just sleep here until the poweroff bit gets unset.
175 1.3 peter * We need to wait here because when machine_sleep() returns
176 1.3 peter * hpcapm(4) assumes that we are "resuming".
177 1.3 peter */
178 1.3 peter (void)tsleep(&sc->sc_state, PWAIT, "j720slp", 0);
179 1.3 peter }
180 1.3 peter
181 1.3 peter /* Restore previous FER value. */
182 1.3 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER, oldfer);
183 1.3 peter }
184 1.3 peter
185 1.3 peter static int
186 1.3 peter j720pwr_suspend_hook(void *ctx, int type, long id, void *msg)
187 1.3 peter {
188 1.3 peter struct j720pwr_softc *sc = ctx;
189 1.3 peter
190 1.3 peter if (type != CONFIG_HOOK_BUTTONEVENT ||
191 1.3 peter id != CONFIG_HOOK_BUTTONEVENT_POWER)
192 1.3 peter return EINVAL;
193 1.3 peter
194 1.3 peter if ((sc->sc_state & (J720PWR_POWEROFF | J720PWR_SLEEPING)) == 0) {
195 1.3 peter sc->sc_state |= J720PWR_POWEROFF;
196 1.3 peter } else if ((sc->sc_state & (J720PWR_POWEROFF | J720PWR_SLEEPING)) ==
197 1.3 peter (J720PWR_POWEROFF | J720PWR_SLEEPING)) {
198 1.3 peter sc->sc_state &= ~J720PWR_POWEROFF;
199 1.3 peter wakeup(&sc->sc_state);
200 1.3 peter } else {
201 1.3 peter DPRINTF(("j720pwr_suspend_hook: busy\n"));
202 1.3 peter return EBUSY;
203 1.3 peter }
204 1.3 peter
205 1.3 peter config_hook_call(CONFIG_HOOK_PMEVENT,
206 1.3 peter CONFIG_HOOK_PMEVENT_SUSPENDREQ, NULL);
207 1.3 peter
208 1.3 peter return 0;
209 1.3 peter }
210 1.3 peter
211 1.3 peter static int
212 1.3 peter j720pwr_event_hook(void *ctx, int type, long id, void *msg)
213 1.3 peter {
214 1.3 peter struct j720pwr_softc *sc = ctx;
215 1.3 peter int event = (int)msg;
216 1.3 peter
217 1.3 peter if (type != CONFIG_HOOK_PMEVENT ||
218 1.3 peter id != CONFIG_HOOK_PMEVENT_HARDPOWER)
219 1.3 peter return EINVAL;
220 1.3 peter
221 1.3 peter switch (event) {
222 1.3 peter case PWR_SUSPEND:
223 1.3 peter sc->sc_state |= (J720PWR_SLEEPING | J720PWR_POWEROFF);
224 1.3 peter break;
225 1.3 peter case PWR_RESUME:
226 1.3 peter sc->sc_state &= ~(J720PWR_SLEEPING | J720PWR_POWEROFF);
227 1.3 peter break;
228 1.3 peter default:
229 1.3 peter return EINVAL;
230 1.3 peter }
231 1.3 peter
232 1.3 peter return 0;
233 1.3 peter }
234 1.3 peter
235 1.1 peter static int
236 1.1 peter j720pwr_apm_getpower_hook(void *ctx, int type, long id, void *msg)
237 1.1 peter {
238 1.1 peter int * const pval = msg;
239 1.1 peter int val, tmp, i, state = 0;
240 1.1 peter
241 1.1 peter if (type != CONFIG_HOOK_GET)
242 1.1 peter return EINVAL;
243 1.1 peter
244 1.1 peter switch (id) {
245 1.1 peter case CONFIG_HOOK_BATTERYVAL:
246 1.1 peter val = j720pwr_get_battery(ctx);
247 1.1 peter
248 1.1 peter if (val != -1) {
249 1.1 peter for (i = 0; i < arraysize(battery_table); i++)
250 1.1 peter if (val > battery_table[i].value)
251 1.1 peter break;
252 1.1 peter if (i == 0) {
253 1.1 peter /* Battery charge status is at maximum. */
254 1.1 peter *pval = 100;
255 1.1 peter } else {
256 1.1 peter /*
257 1.1 peter * Use linear interpolation to calculate
258 1.1 peter * the estimated charge status.
259 1.1 peter */
260 1.1 peter tmp = ((val - battery_table[i].value) * 100) /
261 1.1 peter (battery_table[i - 1].value -
262 1.1 peter battery_table[i].value);
263 1.1 peter *pval = battery_table[i].percent +
264 1.1 peter ((battery_table[i - 1].percent -
265 1.1 peter battery_table[i].percent) * tmp) / 100;
266 1.1 peter }
267 1.1 peter } else {
268 1.1 peter /* Battery is absent. */
269 1.1 peter *pval = 0;
270 1.1 peter }
271 1.1 peter
272 1.1 peter return 0;
273 1.1 peter
274 1.1 peter case CONFIG_HOOK_CHARGE:
275 1.1 peter val = j720pwr_get_battery(ctx);
276 1.1 peter
277 1.1 peter if (val != -1) {
278 1.1 peter for (i = 1; i < arraysize(battery_table); i++) {
279 1.1 peter if (val > battery_table[i].value) {
280 1.1 peter state = battery_table[i - 1].state;
281 1.1 peter break;
282 1.1 peter }
283 1.1 peter }
284 1.1 peter
285 1.1 peter if (j720pwr_get_charge_status(ctx) == 0)
286 1.1 peter state |= APM_BATT_FLAG_CHARGING;
287 1.1 peter } else {
288 1.1 peter state = APM_BATT_FLAG_NO_SYSTEM_BATTERY;
289 1.1 peter }
290 1.1 peter
291 1.1 peter *pval = state;
292 1.1 peter return 0;
293 1.1 peter
294 1.1 peter case CONFIG_HOOK_ACADAPTER:
295 1.1 peter *pval = j720pwr_get_ac_status(ctx) ? APM_AC_OFF : APM_AC_ON;
296 1.1 peter
297 1.1 peter return 0;
298 1.1 peter }
299 1.1 peter
300 1.1 peter return EINVAL;
301 1.1 peter }
302 1.1 peter
303 1.1 peter static int
304 1.1 peter j720pwr_get_battery(struct j720pwr_softc *sc)
305 1.1 peter {
306 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
307 1.1 peter int data, i, pmdata[3];
308 1.1 peter
309 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PCR, 0x2000000);
310 1.1 peter
311 1.2 peter if (j720ssp_readwrite(ssp, 1, 0xc0, &data, 500) < 0 || data != 0x11) {
312 1.1 peter DPRINTF(("j720pwr_get_battery: no dummy received\n"));
313 1.1 peter goto out;
314 1.1 peter }
315 1.1 peter
316 1.1 peter for (i = 0; i < 3; i++) {
317 1.2 peter if (j720ssp_readwrite(ssp, 0, 0x11, &pmdata[i], 100) < 0)
318 1.1 peter goto out;
319 1.1 peter }
320 1.1 peter
321 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
322 1.1 peter
323 1.1 peter pmdata[0] |= (pmdata[2] & 0x3) << 8; /* Main battery. */
324 1.1 peter pmdata[1] |= (pmdata[2] & 0xc) << 6; /* Backup battery (unused). */
325 1.1 peter
326 1.1 peter DPRINTF(("j720pwr_get_battery: data[0]=%d data[1]=%d data[2]=%d\n",
327 1.1 peter pmdata[0], pmdata[1], pmdata[2]));
328 1.1 peter
329 1.1 peter /* If bit 0 and 1 are both set, the main battery is absent. */
330 1.1 peter if ((pmdata[2] & 3) == 3)
331 1.1 peter return -1;
332 1.1 peter
333 1.1 peter return pmdata[0];
334 1.1 peter
335 1.1 peter out:
336 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
337 1.1 peter
338 1.1 peter /* reset SSP */
339 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x307);
340 1.1 peter delay(100);
341 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x387);
342 1.1 peter
343 1.1 peter DPRINTF(("j720pwr_get_battery: error %x\n", data));
344 1.1 peter return 0;
345 1.1 peter }
346 1.1 peter
347 1.1 peter static int
348 1.1 peter j720pwr_get_ac_status(struct j720pwr_softc *sc)
349 1.1 peter {
350 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
351 1.1 peter uint32_t status;
352 1.1 peter
353 1.1 peter status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
354 1.1 peter
355 1.1 peter return status & (1 << 4);
356 1.1 peter }
357 1.1 peter
358 1.1 peter static int
359 1.1 peter j720pwr_get_charge_status(struct j720pwr_softc *sc)
360 1.1 peter {
361 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
362 1.1 peter uint32_t status;
363 1.1 peter
364 1.1 peter status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
365 1.1 peter
366 1.1 peter return status & (1 << 26);
367 1.1 peter }
368