/*
* Copyright (c) 1999 M. Warner Losh. All rights reserved.
* Copyright (c) 2000 SATO Kazumi. All rights reserved.
* Copyright (c) 1999,2000 PocketBSD Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* dump PMU intr status regs
*/
void
vrpmu_dump_intr2(unsigned int intstat1, unsigned int intstat2)
{
if (intstat1 & PMUINT_GPIO3)
printf("vrpmu: GPIO[3] activation\n");
if (intstat1 & PMUINT_GPIO2)
printf("vrpmu: GPIO[2] activation\n");
if (intstat1 & PMUINT_GPIO1)
printf("vrpmu: GPIO[1] activation\n");
if (intstat1 & PMUINT_GPIO0)
printf("vrpmu: GPIO[0] activation\n");
if (intstat1 & PMUINT_RTC)
printf("vrpmu: RTC alarm detected\n");
if (intstat1 & PMUINT_BATT)
printf("vrpmu: Battery low during activation\n");
if (intstat1 & PMUINT_TIMOUTRST)
printf("vrpmu: HAL timer reset\n");
if (intstat1 & PMUINT_RTCRST)
printf("vrpmu: RTC reset detected\n");
if (intstat1 & PMUINT_RSTSWRST)
printf("vrpmu: RESET switch detected\n");
if (intstat1 & PMUINT_DMSWRST)
printf("vrpmu: Deadman's switch detected\n");
if (intstat1 & PMUINT_BATTINTR)
printf("vrpmu: Battery low during normal ops\n");
if (intstat1 & PMUINT_POWERSW)
printf("vrpmu: POWER switch detected\n");
if (intstat2 & PMUINT_GPIO12)
printf("vrpmu: GPIO[12] activation\n");
if (intstat2 & PMUINT_GPIO11)
printf("vrpmu: GPIO[11] activation\n");
if (intstat2 & PMUINT_GPIO10)
printf("vrpmu: GPIO[10] activation\n");
if (intstat2 & PMUINT_GPIO9)
printf("vrpmu: GPIO[9] activation\n");
}
/*
* PMU interrupt handler.
* XXX
*
* In the following interrupt routine we should actually DO something
* with the knowledge that we've gained. For now we just report it.
*/
int
vrpmu_intr(void *arg)
{
struct vrpmu_softc *sc = arg;
unsigned int intstat1;
unsigned int intstat2;
if (intstat1 & PMUINT_GPIO3)
;
if (intstat1 & PMUINT_GPIO2)
;
if (intstat1 & PMUINT_GPIO1)
;
if (intstat1 & PMUINT_GPIO0)
;
if (intstat1 & PMUINT_RTC)
;
if (intstat1 & PMUINT_BATT)
config_hook_call(CONFIG_HOOK_PMEVENT,
CONFIG_HOOK_PMEVENT_SUSPENDREQ, NULL);
if (intstat1 & PMUINT_TIMOUTRST)
;
if (intstat1 & PMUINT_RTCRST)
;
if (intstat1 & PMUINT_RSTSWRST)
;
if (intstat1 & PMUINT_DMSWRST)
;
if (intstat1 & PMUINT_BATTINTR)
config_hook_call(CONFIG_HOOK_PMEVENT,
CONFIG_HOOK_PMEVENT_SUSPENDREQ, NULL);
if (intstat1 & PMUINT_POWERSW) {
/*
* you can't detect when the button is released
*/
config_hook_call(CONFIG_HOOK_BUTTONEVENT,
CONFIG_HOOK_BUTTONEVENT_POWER,
(void*)1 /* on */);
config_hook_call(CONFIG_HOOK_BUTTONEVENT,
CONFIG_HOOK_BUTTONEVENT_POWER,
(void*)0 /* off */);
}
if (intstat2 & PMUINT_GPIO12)
;
if (intstat2 & PMUINT_GPIO11)
;
if (intstat2 & PMUINT_GPIO10)
;
if (intstat2 & PMUINT_GPIO9)
;