Home | History | Annotate | Line # | Download | only in dev
j720pwr.c revision 1.2.4.1
      1  1.2.4.1     ad /*	$NetBSD: j720pwr.c,v 1.2.4.1 2006/11/18 21:29:16 ad 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.2.4.1     ad __KERNEL_RCSID(0, "$NetBSD: j720pwr.c,v 1.2.4.1 2006/11/18 21:29:16 ad 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.2.4.1     ad 
     76  1.2.4.1     ad 	volatile int		sc_state;
     77  1.2.4.1     ad #define J720PWR_POWEROFF	0x01
     78  1.2.4.1     ad #define J720PWR_SLEEPING	0x02
     79      1.1  peter };
     80      1.1  peter 
     81      1.1  peter static int	j720pwr_match(struct device *, struct cfdata *, void *);
     82      1.1  peter static void	j720pwr_attach(struct device *, struct device *, void *);
     83      1.1  peter 
     84  1.2.4.1     ad static void	j720pwr_sleep(void *);
     85  1.2.4.1     ad static int	j720pwr_suspend_hook(void *, int, long, void *);
     86  1.2.4.1     ad static int	j720pwr_event_hook(void *, int, long, void *);
     87      1.1  peter static int	j720pwr_apm_getpower_hook(void *, int, long, void *);
     88      1.1  peter static int	j720pwr_get_battery(struct j720pwr_softc *);
     89      1.1  peter static int	j720pwr_get_ac_status(struct j720pwr_softc *);
     90      1.1  peter static int	j720pwr_get_charge_status(struct j720pwr_softc *);
     91      1.1  peter 
     92      1.1  peter static const struct {
     93      1.1  peter 	int	percent;
     94      1.1  peter 	int	value;
     95      1.1  peter 	int	state;
     96      1.1  peter } battery_table[] = {
     97      1.1  peter 	{ 100,	670,	APM_BATT_FLAG_HIGH	},
     98      1.1  peter 	{  90,	660,	APM_BATT_FLAG_HIGH	},
     99      1.1  peter 	{  80,	650,	APM_BATT_FLAG_HIGH	},
    100      1.1  peter 	{  70,	640,	APM_BATT_FLAG_HIGH	},
    101      1.1  peter 	{  60,	630,	APM_BATT_FLAG_HIGH	},
    102      1.1  peter 	{  50,	620,	APM_BATT_FLAG_HIGH	},
    103      1.1  peter 	{  40,	605,	APM_BATT_FLAG_LOW	},
    104      1.1  peter 	{  30,	580,	APM_BATT_FLAG_LOW	},
    105      1.1  peter 	{  20,	545,	APM_BATT_FLAG_LOW	},
    106      1.1  peter 	{  10,	500,	APM_BATT_FLAG_CRITICAL	},
    107      1.1  peter 	{   0,  430,	APM_BATT_FLAG_CRITICAL	},
    108      1.1  peter };
    109      1.1  peter 
    110      1.1  peter CFATTACH_DECL(j720pwr, sizeof(struct j720pwr_softc),
    111      1.1  peter     j720pwr_match, j720pwr_attach, NULL, NULL);
    112      1.1  peter 
    113      1.1  peter 
    114      1.1  peter static int
    115      1.1  peter j720pwr_match(struct device *parent, struct cfdata *cf, void *aux)
    116      1.1  peter {
    117      1.1  peter 
    118      1.1  peter 	if (!platid_match(&platid, &platid_mask_MACH_HP_JORNADA_7XX))
    119      1.1  peter 		return 0;
    120      1.1  peter 	if (strcmp(cf->cf_name, "j720pwr") != 0)
    121      1.1  peter 		return 0;
    122      1.1  peter 
    123      1.1  peter 	return 1;
    124      1.1  peter }
    125      1.1  peter 
    126      1.1  peter static void
    127      1.1  peter j720pwr_attach(struct device *parent, struct device *self, void *aux)
    128      1.1  peter {
    129      1.1  peter 	struct j720pwr_softc *sc = (struct j720pwr_softc *)self;
    130  1.2.4.1     ad 	extern void (*__sleep_func)(void *);
    131  1.2.4.1     ad 	extern void *__sleep_ctx;
    132      1.1  peter 
    133      1.1  peter 	printf("\n");
    134      1.1  peter 
    135      1.1  peter 	sc->sc_ssp = (struct j720ssp_softc *)parent;
    136  1.2.4.1     ad 	sc->sc_state = 0;
    137  1.2.4.1     ad 
    138  1.2.4.1     ad 	/* Register apm sleep function. */
    139  1.2.4.1     ad 	__sleep_func = j720pwr_sleep;
    140  1.2.4.1     ad 	__sleep_ctx = sc;
    141      1.1  peter 
    142      1.1  peter 	/* Battery status query hook. */
    143      1.1  peter 	config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_BATTERYVAL,
    144      1.1  peter 		    CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
    145      1.1  peter 
    146      1.1  peter 	/* Battery charge status query hook. */
    147      1.1  peter 	config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_CHARGE,
    148      1.1  peter 		    CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
    149      1.1  peter 
    150      1.1  peter 	/* AC status query hook. */
    151      1.1  peter 	config_hook(CONFIG_HOOK_GET, CONFIG_HOOK_ACADAPTER,
    152      1.1  peter 		    CONFIG_HOOK_EXCLUSIVE, j720pwr_apm_getpower_hook, sc);
    153      1.1  peter 
    154  1.2.4.1     ad 	/* Suspend/resume button hook. */
    155  1.2.4.1     ad 	config_hook(CONFIG_HOOK_BUTTONEVENT,
    156  1.2.4.1     ad 		    CONFIG_HOOK_BUTTONEVENT_POWER,
    157  1.2.4.1     ad 		    CONFIG_HOOK_SHARE, j720pwr_suspend_hook, sc);
    158  1.2.4.1     ad 
    159  1.2.4.1     ad 	/* Receive suspend/resume events. */
    160  1.2.4.1     ad 	config_hook(CONFIG_HOOK_PMEVENT,
    161  1.2.4.1     ad 		    CONFIG_HOOK_PMEVENT_HARDPOWER,
    162  1.2.4.1     ad 		    CONFIG_HOOK_SHARE, j720pwr_event_hook, sc);
    163  1.2.4.1     ad 
    164      1.1  peter 	/* Attach hpcapm. */
    165      1.1  peter 	config_found_ia(self, "hpcapmif", NULL, NULL);
    166      1.1  peter }
    167      1.1  peter 
    168  1.2.4.1     ad static void
    169  1.2.4.1     ad j720pwr_sleep(void *ctx)
    170  1.2.4.1     ad {
    171  1.2.4.1     ad 	struct j720pwr_softc *sc = ctx;
    172  1.2.4.1     ad 	struct j720ssp_softc *ssp = sc->sc_ssp;
    173  1.2.4.1     ad 	uint32_t oldfer;
    174  1.2.4.1     ad 
    175  1.2.4.1     ad 	/* Disable falling-edge detect on all GPIO ports, except keyboard. */
    176  1.2.4.1     ad 	oldfer = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER);
    177  1.2.4.1     ad 	bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER, 1 << 0);
    178  1.2.4.1     ad 
    179  1.2.4.1     ad 	while (sc->sc_state & J720PWR_POWEROFF) {
    180  1.2.4.1     ad 		/*
    181  1.2.4.1     ad 		 * Just sleep here until the poweroff bit gets unset.
    182  1.2.4.1     ad 		 * We need to wait here because when machine_sleep() returns
    183  1.2.4.1     ad 		 * hpcapm(4) assumes that we are "resuming".
    184  1.2.4.1     ad 		 */
    185  1.2.4.1     ad 		(void)tsleep(&sc->sc_state, PWAIT, "j720slp", 0);
    186  1.2.4.1     ad 	}
    187  1.2.4.1     ad 
    188  1.2.4.1     ad 	/* Restore previous FER value. */
    189  1.2.4.1     ad 	bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_FER, oldfer);
    190  1.2.4.1     ad }
    191  1.2.4.1     ad 
    192  1.2.4.1     ad static int
    193  1.2.4.1     ad j720pwr_suspend_hook(void *ctx, int type, long id, void *msg)
    194  1.2.4.1     ad {
    195  1.2.4.1     ad 	struct j720pwr_softc *sc = ctx;
    196  1.2.4.1     ad 
    197  1.2.4.1     ad 	if (type != CONFIG_HOOK_BUTTONEVENT ||
    198  1.2.4.1     ad 	    id != CONFIG_HOOK_BUTTONEVENT_POWER)
    199  1.2.4.1     ad 		return EINVAL;
    200  1.2.4.1     ad 
    201  1.2.4.1     ad 	if ((sc->sc_state & (J720PWR_POWEROFF | J720PWR_SLEEPING)) == 0) {
    202  1.2.4.1     ad 		sc->sc_state |= J720PWR_POWEROFF;
    203  1.2.4.1     ad 	} else if ((sc->sc_state & (J720PWR_POWEROFF | J720PWR_SLEEPING)) ==
    204  1.2.4.1     ad 	    (J720PWR_POWEROFF | J720PWR_SLEEPING)) {
    205  1.2.4.1     ad 		sc->sc_state &= ~J720PWR_POWEROFF;
    206  1.2.4.1     ad 		wakeup(&sc->sc_state);
    207  1.2.4.1     ad 	} else {
    208  1.2.4.1     ad 		DPRINTF(("j720pwr_suspend_hook: busy\n"));
    209  1.2.4.1     ad 		return EBUSY;
    210  1.2.4.1     ad 	}
    211  1.2.4.1     ad 
    212  1.2.4.1     ad 	config_hook_call(CONFIG_HOOK_PMEVENT,
    213  1.2.4.1     ad 		         CONFIG_HOOK_PMEVENT_SUSPENDREQ, NULL);
    214  1.2.4.1     ad 
    215  1.2.4.1     ad 	return 0;
    216  1.2.4.1     ad }
    217  1.2.4.1     ad 
    218  1.2.4.1     ad static int
    219  1.2.4.1     ad j720pwr_event_hook(void *ctx, int type, long id, void *msg)
    220  1.2.4.1     ad {
    221  1.2.4.1     ad 	struct j720pwr_softc *sc = ctx;
    222  1.2.4.1     ad 	int event = (int)msg;
    223  1.2.4.1     ad 
    224  1.2.4.1     ad 	if (type != CONFIG_HOOK_PMEVENT ||
    225  1.2.4.1     ad 	    id != CONFIG_HOOK_PMEVENT_HARDPOWER)
    226  1.2.4.1     ad 		return EINVAL;
    227  1.2.4.1     ad 
    228  1.2.4.1     ad 	switch (event) {
    229  1.2.4.1     ad 	case PWR_SUSPEND:
    230  1.2.4.1     ad 		sc->sc_state |= (J720PWR_SLEEPING | J720PWR_POWEROFF);
    231  1.2.4.1     ad 		break;
    232  1.2.4.1     ad 	case PWR_RESUME:
    233  1.2.4.1     ad 		sc->sc_state &= ~(J720PWR_SLEEPING | J720PWR_POWEROFF);
    234  1.2.4.1     ad 		break;
    235  1.2.4.1     ad 	default:
    236  1.2.4.1     ad 		return EINVAL;
    237  1.2.4.1     ad 	}
    238  1.2.4.1     ad 
    239  1.2.4.1     ad 	return 0;
    240  1.2.4.1     ad }
    241  1.2.4.1     ad 
    242      1.1  peter static int
    243      1.1  peter j720pwr_apm_getpower_hook(void *ctx, int type, long id, void *msg)
    244      1.1  peter {
    245      1.1  peter 	int * const pval = msg;
    246      1.1  peter 	int val, tmp, i, state = 0;
    247      1.1  peter 
    248      1.1  peter 	if (type != CONFIG_HOOK_GET)
    249      1.1  peter 		return EINVAL;
    250      1.1  peter 
    251      1.1  peter 	switch (id) {
    252      1.1  peter 	case CONFIG_HOOK_BATTERYVAL:
    253      1.1  peter 		val = j720pwr_get_battery(ctx);
    254      1.1  peter 
    255      1.1  peter 		if (val != -1) {
    256      1.1  peter 			for (i = 0; i < arraysize(battery_table); i++)
    257      1.1  peter 				if (val > battery_table[i].value)
    258      1.1  peter 					break;
    259      1.1  peter 			if (i == 0) {
    260      1.1  peter 				/* Battery charge status is at maximum. */
    261      1.1  peter 				*pval = 100;
    262      1.1  peter 			} else {
    263      1.1  peter 				/*
    264      1.1  peter 				 * Use linear interpolation to calculate
    265      1.1  peter 				 * the estimated charge status.
    266      1.1  peter 				 */
    267      1.1  peter 				tmp = ((val - battery_table[i].value) * 100) /
    268      1.1  peter 				    (battery_table[i - 1].value -
    269      1.1  peter 				     battery_table[i].value);
    270      1.1  peter 				*pval = battery_table[i].percent +
    271      1.1  peter 				    ((battery_table[i - 1].percent -
    272      1.1  peter 				      battery_table[i].percent) * tmp) / 100;
    273      1.1  peter 			}
    274      1.1  peter 		} else {
    275      1.1  peter 			/* Battery is absent. */
    276      1.1  peter 			*pval = 0;
    277      1.1  peter 		}
    278      1.1  peter 
    279      1.1  peter 		return 0;
    280      1.1  peter 
    281      1.1  peter 	case CONFIG_HOOK_CHARGE:
    282      1.1  peter 		val = j720pwr_get_battery(ctx);
    283      1.1  peter 
    284      1.1  peter 		if (val != -1) {
    285      1.1  peter 			for (i = 1; i < arraysize(battery_table); i++) {
    286      1.1  peter 				if (val > battery_table[i].value) {
    287      1.1  peter 					state = battery_table[i - 1].state;
    288      1.1  peter 					break;
    289      1.1  peter 				}
    290      1.1  peter 			}
    291      1.1  peter 
    292      1.1  peter 			if (j720pwr_get_charge_status(ctx) == 0)
    293      1.1  peter 				state |= APM_BATT_FLAG_CHARGING;
    294      1.1  peter 		} else {
    295      1.1  peter 			state = APM_BATT_FLAG_NO_SYSTEM_BATTERY;
    296      1.1  peter 		}
    297      1.1  peter 
    298      1.1  peter 		*pval = state;
    299      1.1  peter 		return 0;
    300      1.1  peter 
    301      1.1  peter 	case CONFIG_HOOK_ACADAPTER:
    302      1.1  peter 		*pval = j720pwr_get_ac_status(ctx) ? APM_AC_OFF : APM_AC_ON;
    303      1.1  peter 
    304      1.1  peter 		return 0;
    305      1.1  peter 	}
    306      1.1  peter 
    307      1.1  peter 	return EINVAL;
    308      1.1  peter }
    309      1.1  peter 
    310      1.1  peter static int
    311      1.1  peter j720pwr_get_battery(struct j720pwr_softc *sc)
    312      1.1  peter {
    313      1.1  peter 	struct j720ssp_softc *ssp = sc->sc_ssp;
    314      1.1  peter 	int data, i, pmdata[3];
    315      1.1  peter 
    316      1.1  peter 	bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PCR, 0x2000000);
    317      1.1  peter 
    318      1.2  peter 	if (j720ssp_readwrite(ssp, 1, 0xc0, &data, 500) < 0 || data != 0x11) {
    319      1.1  peter 		DPRINTF(("j720pwr_get_battery: no dummy received\n"));
    320      1.1  peter 		goto out;
    321      1.1  peter 	}
    322      1.1  peter 
    323      1.1  peter 	for (i = 0; i < 3; i++) {
    324      1.2  peter 		if (j720ssp_readwrite(ssp, 0, 0x11, &pmdata[i], 100) < 0)
    325      1.1  peter 			goto out;
    326      1.1  peter 	}
    327      1.1  peter 
    328      1.1  peter 	bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
    329      1.1  peter 
    330      1.1  peter 	pmdata[0] |= (pmdata[2] & 0x3) << 8;	/* Main battery. */
    331      1.1  peter 	pmdata[1] |= (pmdata[2] & 0xc) << 6;	/* Backup battery (unused). */
    332      1.1  peter 
    333      1.1  peter 	DPRINTF(("j720pwr_get_battery: data[0]=%d data[1]=%d data[2]=%d\n",
    334      1.1  peter 	    pmdata[0], pmdata[1], pmdata[2]));
    335      1.1  peter 
    336      1.1  peter 	/* If bit 0 and 1 are both set, the main battery is absent. */
    337      1.1  peter 	if ((pmdata[2] & 3) == 3)
    338      1.1  peter 		return -1;
    339      1.1  peter 
    340      1.1  peter 	return pmdata[0];
    341      1.1  peter 
    342      1.1  peter out:
    343      1.1  peter 	bus_space_write_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PSR, 0x2000000);
    344      1.1  peter 
    345      1.1  peter 	/* reset SSP */
    346      1.1  peter 	bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x307);
    347      1.1  peter 	delay(100);
    348      1.1  peter 	bus_space_write_4(ssp->sc_iot, ssp->sc_ssph, SASSP_CR0, 0x387);
    349      1.1  peter 
    350      1.1  peter 	DPRINTF(("j720pwr_get_battery: error %x\n", data));
    351      1.1  peter 	return 0;
    352      1.1  peter }
    353      1.1  peter 
    354      1.1  peter static int
    355      1.1  peter j720pwr_get_ac_status(struct j720pwr_softc *sc)
    356      1.1  peter {
    357      1.1  peter 	struct j720ssp_softc *ssp = sc->sc_ssp;
    358      1.1  peter 	uint32_t status;
    359      1.1  peter 
    360      1.1  peter 	status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
    361      1.1  peter 
    362      1.1  peter 	return status & (1 << 4);
    363      1.1  peter }
    364      1.1  peter 
    365      1.1  peter static int
    366      1.1  peter j720pwr_get_charge_status(struct j720pwr_softc *sc)
    367      1.1  peter {
    368      1.1  peter 	struct j720ssp_softc *ssp = sc->sc_ssp;
    369      1.1  peter 	uint32_t status;
    370      1.1  peter 
    371      1.1  peter 	status = bus_space_read_4(ssp->sc_iot, ssp->sc_gpioh, SAGPIO_PLR);
    372      1.1  peter 
    373      1.1  peter 	return status & (1 << 26);
    374      1.1  peter }
    375