j720pwr.c revision 1.1 1 1.1 peter /* $NetBSD: j720pwr.c,v 1.1 2006/03/04 14:09:36 peter 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 * 3. All advertising materials mentioning features or use of this software
19 1.1 peter * must display the following acknowledgement:
20 1.1 peter * This product includes software developed by the NetBSD
21 1.1 peter * Foundation, Inc. and its contributors.
22 1.1 peter * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 peter * contributors may be used to endorse or promote products derived
24 1.1 peter * from this software without specific prior written permission.
25 1.1 peter *
26 1.1 peter * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 peter * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 peter * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 peter * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 peter * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 peter * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 peter * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 peter * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 peter * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 peter * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 peter * POSSIBILITY OF SUCH DAMAGE.
37 1.1 peter */
38 1.1 peter
39 1.1 peter /* Jornada 720 power management. */
40 1.1 peter
41 1.1 peter #include <sys/cdefs.h>
42 1.1 peter __KERNEL_RCSID(0, "$NetBSD: j720pwr.c,v 1.1 2006/03/04 14:09:36 peter Exp $");
43 1.1 peter
44 1.1 peter #include <sys/param.h>
45 1.1 peter #include <sys/systm.h>
46 1.1 peter #include <sys/kernel.h>
47 1.1 peter #include <sys/proc.h>
48 1.1 peter #include <sys/device.h>
49 1.1 peter
50 1.1 peter #include <dev/apm/apmbios.h>
51 1.1 peter
52 1.1 peter #include <machine/config_hook.h>
53 1.1 peter #include <machine/platid.h>
54 1.1 peter #include <machine/platid_mask.h>
55 1.1 peter
56 1.1 peter #include <arm/sa11x0/sa11x0_var.h>
57 1.1 peter #include <arm/sa11x0/sa11x0_gpioreg.h>
58 1.1 peter #include <arm/sa11x0/sa11x0_ppcreg.h>
59 1.1 peter #include <arm/sa11x0/sa11x0_sspreg.h>
60 1.1 peter
61 1.1 peter #include <hpcarm/dev/j720sspvar.h>
62 1.1 peter
63 1.1 peter #ifdef DEBUG
64 1.1 peter #define DPRINTF(arg) printf arg
65 1.1 peter #else
66 1.1 peter #define DPRINTF(arg) /* nothing */
67 1.1 peter #endif
68 1.1 peter
69 1.1 peter #define arraysize(ary) (sizeof(ary) / sizeof(ary[0]))
70 1.1 peter
71 1.1 peter struct j720pwr_softc {
72 1.1 peter struct device sc_dev;
73 1.1 peter
74 1.1 peter struct j720ssp_softc *sc_ssp;
75 1.1 peter };
76 1.1 peter
77 1.1 peter static int j720pwr_match(struct device *, struct cfdata *, void *);
78 1.1 peter static void j720pwr_attach(struct device *, struct device *, void *);
79 1.1 peter
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.1 peter
124 1.1 peter printf("\n");
125 1.1 peter
126 1.1 peter sc->sc_ssp = (struct j720ssp_softc *)parent;
127 1.1 peter
128 1.1 peter /* Battery status query hook. */
129 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_BATTERYVAL,
130 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
131 1.1 peter
132 1.1 peter /* Battery charge status query hook. */
133 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_CHARGE,
134 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
135 1.1 peter
136 1.1 peter /* AC status query hook. */
137 1.1 peter config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_ACADAPTER,
138 1.1 peter CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
139 1.1 peter
140 1.1 peter /* Attach hpcapm. */
141 1.1 peter config_found_ia(self, "hpcapmif", NULL, NULL);
142 1.1 peter }
143 1.1 peter
144 1.1 peter static int
145 1.1 peter j720pwr_apm_getpower_hook(void *ctx, int type, long id, void *msg)
146 1.1 peter {
147 1.1 peter int * const pval = msg;
148 1.1 peter int val, tmp, i, state = 0;
149 1.1 peter
150 1.1 peter if (type != CONFIG_HOOK_GET)
151 1.1 peter return EINVAL;
152 1.1 peter
153 1.1 peter switch (id) {
154 1.1 peter case CONFIG_HOOK_BATTERYVAL:
155 1.1 peter val = j720pwr_get_battery(ctx);
156 1.1 peter
157 1.1 peter if (val != -1) {
158 1.1 peter for (i = 0; i < arraysize(battery_table); i++)
159 1.1 peter if (val > battery_table[i].value)
160 1.1 peter break;
161 1.1 peter if (i == 0) {
162 1.1 peter /* Battery charge status is at maximum. */
163 1.1 peter *pval = 100;
164 1.1 peter } else {
165 1.1 peter /*
166 1.1 peter * Use linear interpolation to calculate
167 1.1 peter * the estimated charge status.
168 1.1 peter */
169 1.1 peter tmp = ((val - battery_table[i].value) * 100) /
170 1.1 peter (battery_table[i - 1].value -
171 1.1 peter battery_table[i].value);
172 1.1 peter *pval = battery_table[i].percent +
173 1.1 peter ((battery_table[i - 1].percent -
174 1.1 peter battery_table[i].percent) * tmp) / 100;
175 1.1 peter }
176 1.1 peter } else {
177 1.1 peter /* Battery is absent. */
178 1.1 peter *pval = 0;
179 1.1 peter }
180 1.1 peter
181 1.1 peter return 0;
182 1.1 peter
183 1.1 peter case CONFIG_HOOK_CHARGE:
184 1.1 peter val = j720pwr_get_battery(ctx);
185 1.1 peter
186 1.1 peter if (val != -1) {
187 1.1 peter for (i = 1; i < arraysize(battery_table); i++) {
188 1.1 peter if (val > battery_table[i].value) {
189 1.1 peter state = battery_table[i - 1].state;
190 1.1 peter break;
191 1.1 peter }
192 1.1 peter }
193 1.1 peter
194 1.1 peter if (j720pwr_get_charge_status(ctx) == 0)
195 1.1 peter state |= APM_BATT_FLAG_CHARGING;
196 1.1 peter } else {
197 1.1 peter state = APM_BATT_FLAG_NO_SYSTEM_BATTERY;
198 1.1 peter }
199 1.1 peter
200 1.1 peter *pval = state;
201 1.1 peter return 0;
202 1.1 peter
203 1.1 peter case CONFIG_HOOK_ACADAPTER:
204 1.1 peter *pval = j720pwr_get_ac_status(ctx) ? APM_AC_OFF : APM_AC_ON;
205 1.1 peter
206 1.1 peter return 0;
207 1.1 peter }
208 1.1 peter
209 1.1 peter return EINVAL;
210 1.1 peter }
211 1.1 peter
212 1.1 peter static int
213 1.1 peter j720pwr_get_battery(struct j720pwr_softc *sc)
214 1.1 peter {
215 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
216 1.1 peter int data, i, pmdata[3];
217 1.1 peter
218 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PCR, 0x2000000);
219 1.1 peter
220 1.1 peter if (j720ssp_readwrite(ssp, 1, 0x300, &data, 500) < 0 || data != 0x88) {
221 1.1 peter DPRINTF(("j720pwr_get_battery: no dummy received\n"));
222 1.1 peter goto out;
223 1.1 peter }
224 1.1 peter
225 1.1 peter for (i = 0; i < 3; i++) {
226 1.1 peter if (j720ssp_readwrite(ssp, 0, 0x8800, &pmdata[i], 100) < 0)
227 1.1 peter goto out;
228 1.1 peter J720SSP_INVERT(pmdata[i]);
229 1.1 peter }
230 1.1 peter
231 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
232 1.1 peter
233 1.1 peter pmdata[0] |= (pmdata[2] & 0x3) << 8; /* Main battery. */
234 1.1 peter pmdata[1] |= (pmdata[2] & 0xc) << 6; /* Backup battery (unused). */
235 1.1 peter
236 1.1 peter DPRINTF(("j720pwr_get_battery: data[0]=%d data[1]=%d data[2]=%d\n",
237 1.1 peter pmdata[0], pmdata[1], pmdata[2]));
238 1.1 peter
239 1.1 peter /* If bit 0 and 1 are both set, the main battery is absent. */
240 1.1 peter if ((pmdata[2] & 3) == 3)
241 1.1 peter return -1;
242 1.1 peter
243 1.1 peter return pmdata[0];
244 1.1 peter
245 1.1 peter out:
246 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
247 1.1 peter
248 1.1 peter /* reset SSP */
249 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x307);
250 1.1 peter delay(100);
251 1.1 peter bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x387);
252 1.1 peter
253 1.1 peter DPRINTF(("j720pwr_get_battery: error %x\n", data));
254 1.1 peter return 0;
255 1.1 peter }
256 1.1 peter
257 1.1 peter static int
258 1.1 peter j720pwr_get_ac_status(struct j720pwr_softc *sc)
259 1.1 peter {
260 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
261 1.1 peter uint32_t status;
262 1.1 peter
263 1.1 peter status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
264 1.1 peter
265 1.1 peter return status & (1 << 4);
266 1.1 peter }
267 1.1 peter
268 1.1 peter static int
269 1.1 peter j720pwr_get_charge_status(struct j720pwr_softc *sc)
270 1.1 peter {
271 1.1 peter struct j720ssp_softc *ssp = sc->sc_ssp;
272 1.1 peter uint32_t status;
273 1.1 peter
274 1.1 peter status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
275 1.1 peter
276 1.1 peter return status & (1 << 26);
277 1.1 peter }
278