blob: 58a2671e6147dab2c8ec8150b49aee81ba5e2473 [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
2 * OMAP2/3 Power Management Routines
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 * Jouni Hogander
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef __ARCH_ARM_MACH_OMAP2_PM_H
12#define __ARCH_ARM_MACH_OMAP2_PM_H
13
Tony Lindgrence491cf2009-10-20 09:40:47 -070014#include <plat/powerdomain.h>
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030015
Kevin Hilmanc40552b2009-10-06 14:25:09 -070016extern u32 enable_off_mode;
17extern u32 sleep_while_idle;
18
Tero Kristo27d59a42008-10-13 13:15:00 +030019extern void *omap3_secure_ram_storage;
Kevin Hilmanc40552b2009-10-06 14:25:09 -070020extern void omap3_pm_off_mode_enable(int);
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +053021extern void omap_sram_idle(void);
Rajendra Nayak20b01662008-10-08 17:31:22 +053022extern int omap3_can_sleep(void);
23extern int set_pwrdm_state(struct powerdomain *pwrdm, u32 state);
Kalle Jokiniemi03433712008-09-26 11:04:20 +030024extern int omap3_idle_init(void);
Tero Kristo27d59a42008-10-13 13:15:00 +030025
Kevin Hilmanbb4de3d2009-12-15 16:37:18 -080026struct cpuidle_params {
27 u32 sleep_latency;
28 u32 wake_latency;
29 u32 threshold;
30};
31
32#if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
33extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
34#else
35static
36inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
37{
38}
39#endif
40
Tero Kristo68d47782008-11-26 12:26:24 +020041extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
42extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
43
Kevin Hilmand7814e42009-10-06 14:30:23 -070044extern u32 wakeup_timer_seconds;
45extern struct omap_dm_timer *gptimer_wakeup;
46
Kevin Hilman8bd22942009-05-28 10:56:16 -070047#ifdef CONFIG_PM_DEBUG
48extern void omap2_pm_dump(int mode, int resume, unsigned int us);
49extern int omap2_pm_debug;
Manjunatha GKae559d82009-11-16 20:16:52 +053050#else
51#define omap2_pm_dump(mode, resume, us) do {} while (0);
52#define omap2_pm_debug 0
53#endif
54
Sanjeev Premi6af83b32010-01-28 23:16:43 +053055#if defined(CONFIG_CPU_IDLE)
56extern void omap3_cpuidle_update_states(void);
57#endif
58
Manjunatha GKae559d82009-11-16 20:16:52 +053059#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030060extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
Tero Kristo2811d6b2008-10-29 13:31:24 +020061extern int pm_dbg_regset_save(int reg_set);
62extern int pm_dbg_regset_init(int reg_set);
Kevin Hilman8bd22942009-05-28 10:56:16 -070063#else
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030064#define pm_dbg_update_time(pwrdm, prev) do {} while (0);
Tero Kristo2811d6b2008-10-29 13:31:24 +020065#define pm_dbg_regset_save(reg_set) do {} while (0);
66#define pm_dbg_regset_init(reg_set) do {} while (0);
Kevin Hilman8bd22942009-05-28 10:56:16 -070067#endif /* CONFIG_PM_DEBUG */
68
69extern void omap24xx_idle_loop_suspend(void);
70
71extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
72 void __iomem *sdrc_power);
73extern void omap34xx_cpu_suspend(u32 *addr, int save_state);
74extern void save_secure_ram_context(u32 *addr);
Tero Kristo27d59a42008-10-13 13:15:00 +030075extern void omap3_save_scratchpad_contents(void);
Kevin Hilman8bd22942009-05-28 10:56:16 -070076
77extern unsigned int omap24xx_idle_loop_suspend_sz;
78extern unsigned int omap34xx_suspend_sz;
79extern unsigned int save_secure_ram_context_sz;
80extern unsigned int omap24xx_cpu_suspend_sz;
81extern unsigned int omap34xx_cpu_suspend_sz;
82
83#endif