summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authortkasivajhula <tkasivajhula@nvidia.com>2010-02-17 12:16:24 -0800
committertkasivajhula <tkasivajhula@nvidia.com>2010-02-17 12:16:24 -0800
commit58436b12538f31f4a9f94c0fa8fecb41a5b29edb (patch)
tree4c8d16ae6aa210b0c113522a87b1ec755c20efba /arch
parent51c9b7ea927ac644272c359921947684ddaa6934 (diff)
tegra power: Set lowest power state to LP1 and KBC as wake event.
Change-Id: I82dbf8c0a0aefcbb77b9596e46858f7c79376b9c
Diffstat (limited to 'arch')
-rwxr-xr-xarch/arm/mach-tegra/odm_kit/query/whistler/nvodm_query.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-tegra/odm_kit/query/whistler/nvodm_query.c b/arch/arm/mach-tegra/odm_kit/query/whistler/nvodm_query.c
index dc0bfdfaf69a..0934e974e832 100755
--- a/arch/arm/mach-tegra/odm_kit/query/whistler/nvodm_query.c
+++ b/arch/arm/mach-tegra/odm_kit/query/whistler/nvodm_query.c
@@ -581,7 +581,7 @@ static NvOdmWakeupPadInfo s_NvOdmWakeupPadInfo[] =
{NV_FALSE, 14, NvOdmWakeupPadPolarity_AnyEdge}, // Wake Event 14 - gp3_pv[6] (WLAN_INT)
{NV_FALSE, 15, NvOdmWakeupPadPolarity_AnyEdge}, // Wake Event 15 - gmi_ad16 (SPI3_DOUT, DTV_SPI4_CS1)
{NV_FALSE, 16, NvOdmWakeupPadPolarity_High}, // Wake Event 16 - rtc_irq
- {NV_FALSE, 17, NvOdmWakeupPadPolarity_High}, // Wake Event 17 - kbc_interrupt
+ {NV_TRUE, 17, NvOdmWakeupPadPolarity_High}, // Wake Event 17 - kbc_interrupt
{NV_FALSE, 18, NvOdmWakeupPadPolarity_Low}, // Wake Event 18 - pwr_int (PMIC_INT)
{NV_FALSE, 19, NvOdmWakeupPadPolarity_High}, // Wake Event 19 - usb_vbus_wakeup[0]
{NV_FALSE, 20, NvOdmWakeupPadPolarity_High}, // Wake Event 20 - usb_vbus_wakeup[1]
@@ -1169,9 +1169,9 @@ const NvOdmSocPowerStateInfo* NvOdmQueryLowestSocPowerState(void)
PowerStateInfo.LowestPowerState = ((LPStateSelection == TEGRA_DEVKIT_BCT_CUSTOPT_0_LPSTATE_LP1)?
NvOdmSocPowerState_Suspend : NvOdmSocPowerState_DeepSleep);
#endif
- PowerStateInfo.LowestPowerState = NvOdmSocPowerState_DeepSleep;
+ PowerStateInfo.LowestPowerState = NvOdmSocPowerState_Suspend;
// Idle threshold (Msecs) for the lowest power state.
- PowerStateInfo.IdleThreshold = 525;
+ //PowerStateInfo.IdleThreshold = 525;
pPowerStateInfo = (const NvOdmSocPowerStateInfo*) &PowerStateInfo;
}