2009-05-28 17:56:16 +00:00
|
|
|
/*
|
|
|
|
* OMAP2/3 Power Management Routines
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Nokia Corporation
|
|
|
|
* Jouni Hogander
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_OMAP2_PM_H
|
|
|
|
#define __ARCH_ARM_MACH_OMAP2_PM_H
|
|
|
|
|
2009-10-20 16:40:47 +00:00
|
|
|
#include <plat/powerdomain.h>
|
2008-10-15 15:13:48 +00:00
|
|
|
|
2008-10-13 10:15:00 +00:00
|
|
|
extern void *omap3_secure_ram_storage;
|
2009-10-06 21:25:09 +00:00
|
|
|
extern void omap3_pm_off_mode_enable(int);
|
2008-10-08 12:00:58 +00:00
|
|
|
extern void omap_sram_idle(void);
|
2008-10-08 12:01:22 +00:00
|
|
|
extern int omap3_can_sleep(void);
|
2010-09-14 19:34:01 +00:00
|
|
|
extern int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state);
|
2008-09-26 08:04:20 +00:00
|
|
|
extern int omap3_idle_init(void);
|
2008-10-13 10:15:00 +00:00
|
|
|
|
2010-12-09 15:13:46 +00:00
|
|
|
#if defined(CONFIG_PM_OPP)
|
|
|
|
extern int omap3_opp_init(void);
|
2010-12-09 15:13:47 +00:00
|
|
|
extern int omap4_opp_init(void);
|
2010-12-09 15:13:46 +00:00
|
|
|
#else
|
|
|
|
static inline int omap3_opp_init(void)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-12-09 15:13:47 +00:00
|
|
|
static inline int omap4_opp_init(void)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-12-09 15:13:46 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-16 00:37:18 +00:00
|
|
|
struct cpuidle_params {
|
2009-10-29 08:30:19 +00:00
|
|
|
u8 valid;
|
2009-12-16 00:37:18 +00:00
|
|
|
u32 sleep_latency;
|
|
|
|
u32 wake_latency;
|
|
|
|
u32 threshold;
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
|
|
|
|
extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-26 10:26:24 +00:00
|
|
|
extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
|
|
|
|
extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
|
|
|
|
|
2009-10-06 21:30:23 +00:00
|
|
|
extern u32 wakeup_timer_seconds;
|
2010-03-23 07:04:59 +00:00
|
|
|
extern u32 wakeup_timer_milliseconds;
|
2009-10-06 21:30:23 +00:00
|
|
|
extern struct omap_dm_timer *gptimer_wakeup;
|
|
|
|
|
2009-05-28 17:56:16 +00:00
|
|
|
#ifdef CONFIG_PM_DEBUG
|
|
|
|
extern void omap2_pm_dump(int mode, int resume, unsigned int us);
|
2010-09-14 19:33:59 +00:00
|
|
|
extern void omap2_pm_wakeup_on_timer(u32 seconds, u32 milliseconds);
|
2009-05-28 17:56:16 +00:00
|
|
|
extern int omap2_pm_debug;
|
2010-09-27 21:04:20 +00:00
|
|
|
extern u32 enable_off_mode;
|
|
|
|
extern u32 sleep_while_idle;
|
2009-11-16 14:46:52 +00:00
|
|
|
#else
|
|
|
|
#define omap2_pm_dump(mode, resume, us) do {} while (0);
|
2010-09-14 19:33:59 +00:00
|
|
|
#define omap2_pm_wakeup_on_timer(seconds, milliseconds) do {} while (0);
|
2009-11-16 14:46:52 +00:00
|
|
|
#define omap2_pm_debug 0
|
2010-09-27 21:04:20 +00:00
|
|
|
#define enable_off_mode 0
|
|
|
|
#define sleep_while_idle 0
|
2009-11-16 14:46:52 +00:00
|
|
|
#endif
|
|
|
|
|
2010-01-28 17:46:43 +00:00
|
|
|
#if defined(CONFIG_CPU_IDLE)
|
2010-12-20 20:05:08 +00:00
|
|
|
extern void omap3_cpuidle_update_states(u32, u32);
|
2010-01-28 17:46:43 +00:00
|
|
|
#endif
|
|
|
|
|
2009-11-16 14:46:52 +00:00
|
|
|
#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
|
2008-10-15 15:13:48 +00:00
|
|
|
extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
|
2008-10-29 11:31:24 +00:00
|
|
|
extern int pm_dbg_regset_save(int reg_set);
|
|
|
|
extern int pm_dbg_regset_init(int reg_set);
|
2009-05-28 17:56:16 +00:00
|
|
|
#else
|
2008-10-15 15:13:48 +00:00
|
|
|
#define pm_dbg_update_time(pwrdm, prev) do {} while (0);
|
2008-10-29 11:31:24 +00:00
|
|
|
#define pm_dbg_regset_save(reg_set) do {} while (0);
|
|
|
|
#define pm_dbg_regset_init(reg_set) do {} while (0);
|
2009-05-28 17:56:16 +00:00
|
|
|
#endif /* CONFIG_PM_DEBUG */
|
|
|
|
|
|
|
|
extern void omap24xx_idle_loop_suspend(void);
|
|
|
|
|
|
|
|
extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
|
|
|
|
void __iomem *sdrc_power);
|
|
|
|
extern void omap34xx_cpu_suspend(u32 *addr, int save_state);
|
|
|
|
extern void save_secure_ram_context(u32 *addr);
|
2008-10-13 10:15:00 +00:00
|
|
|
extern void omap3_save_scratchpad_contents(void);
|
2009-05-28 17:56:16 +00:00
|
|
|
|
|
|
|
extern unsigned int omap24xx_idle_loop_suspend_sz;
|
|
|
|
extern unsigned int save_secure_ram_context_sz;
|
|
|
|
extern unsigned int omap24xx_cpu_suspend_sz;
|
|
|
|
extern unsigned int omap34xx_cpu_suspend_sz;
|
|
|
|
|
2010-12-20 20:05:06 +00:00
|
|
|
#define PM_RTA_ERRATUM_i608 (1 << 0)
|
2010-12-20 20:05:09 +00:00
|
|
|
#define PM_SDRC_WAKEUP_ERRATUM_i583 (1 << 1)
|
2010-12-20 20:05:06 +00:00
|
|
|
|
2010-12-20 20:05:05 +00:00
|
|
|
#if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
|
|
|
|
extern u16 pm34xx_errata;
|
|
|
|
#define IS_PM34XX_ERRATUM(id) (pm34xx_errata & (id))
|
2010-12-20 20:05:07 +00:00
|
|
|
extern void enable_omap3630_toggle_l2_on_restore(void);
|
2010-12-20 20:05:05 +00:00
|
|
|
#else
|
|
|
|
#define IS_PM34XX_ERRATUM(id) 0
|
2010-12-20 20:05:07 +00:00
|
|
|
static inline void enable_omap3630_toggle_l2_on_restore(void) { }
|
2010-12-20 20:05:05 +00:00
|
|
|
#endif /* defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) */
|
|
|
|
|
2009-05-28 17:56:16 +00:00
|
|
|
#endif
|