blob: bd6466a2b0391609e051d0e21be2f05a43234355 [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 {
Kalle Jokiniemi709731b2009-10-29 10:30:19 +020027 u8 valid;
Kevin Hilmanbb4de3d2009-12-15 16:37:18 -080028 u32 sleep_latency;
29 u32 wake_latency;
30 u32 threshold;
31};
32
33#if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
34extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
35#else
36static
37inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
38{
39}
40#endif
41
Tero Kristo68d47782008-11-26 12:26:24 +020042extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
43extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
44
Kevin Hilmand7814e42009-10-06 14:30:23 -070045extern u32 wakeup_timer_seconds;
46extern struct omap_dm_timer *gptimer_wakeup;
47
Kevin Hilman8bd22942009-05-28 10:56:16 -070048#ifdef CONFIG_PM_DEBUG
49extern void omap2_pm_dump(int mode, int resume, unsigned int us);
50extern int omap2_pm_debug;
Manjunatha GKae559d82009-11-16 20:16:52 +053051#else
52#define omap2_pm_dump(mode, resume, us) do {} while (0);
53#define omap2_pm_debug 0
54#endif
55
Sanjeev Premi6af83b32010-01-28 23:16:43 +053056#if defined(CONFIG_CPU_IDLE)
57extern void omap3_cpuidle_update_states(void);
58#endif
59
Manjunatha GKae559d82009-11-16 20:16:52 +053060#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030061extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
Tero Kristo2811d6b2008-10-29 13:31:24 +020062extern int pm_dbg_regset_save(int reg_set);
63extern int pm_dbg_regset_init(int reg_set);
Kevin Hilman8bd22942009-05-28 10:56:16 -070064#else
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030065#define pm_dbg_update_time(pwrdm, prev) do {} while (0);
Tero Kristo2811d6b2008-10-29 13:31:24 +020066#define pm_dbg_regset_save(reg_set) do {} while (0);
67#define pm_dbg_regset_init(reg_set) do {} while (0);
Kevin Hilman8bd22942009-05-28 10:56:16 -070068#endif /* CONFIG_PM_DEBUG */
69
70extern void omap24xx_idle_loop_suspend(void);
71
72extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
73 void __iomem *sdrc_power);
74extern void omap34xx_cpu_suspend(u32 *addr, int save_state);
75extern void save_secure_ram_context(u32 *addr);
Tero Kristo27d59a42008-10-13 13:15:00 +030076extern void omap3_save_scratchpad_contents(void);
Kevin Hilman8bd22942009-05-28 10:56:16 -070077
78extern unsigned int omap24xx_idle_loop_suspend_sz;
79extern unsigned int omap34xx_suspend_sz;
80extern unsigned int save_secure_ram_context_sz;
81extern unsigned int omap24xx_cpu_suspend_sz;
82extern unsigned int omap34xx_cpu_suspend_sz;
83
84#endif