OMAP2: PM debug: always compile
[pandora-kernel.git] / arch / arm / mach-omap2 / pm.h
1 /*
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
14 #include <linux/err.h>
15
16 #include "powerdomain.h"
17
18 extern void *omap3_secure_ram_storage;
19 extern void omap3_pm_off_mode_enable(int);
20 extern void omap_sram_idle(void);
21 extern int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state);
22 extern int omap3_idle_init(void);
23
24 #if defined(CONFIG_PM_OPP)
25 extern int omap3_opp_init(void);
26 extern int omap4_opp_init(void);
27 #else
28 static inline int omap3_opp_init(void)
29 {
30         return -EINVAL;
31 }
32 static inline int omap4_opp_init(void)
33 {
34         return -EINVAL;
35 }
36 #endif
37
38 /*
39  * cpuidle mach specific parameters
40  *
41  * The board code can override the default C-states definition using
42  * omap3_pm_init_cpuidle
43  */
44 struct cpuidle_params {
45         u32 exit_latency;       /* exit_latency = sleep + wake-up latencies */
46         u32 target_residency;
47         u8 valid;               /* validates the C-state */
48 };
49
50 #if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
51 extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
52 #else
53 static
54 inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
55 {
56 }
57 #endif
58
59 extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
60 extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
61
62 extern u32 enable_off_mode;
63
64 #if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
65 extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
66 #else
67 #define pm_dbg_update_time(pwrdm, prev) do {} while (0);
68 #endif /* CONFIG_PM_DEBUG */
69
70 /* 24xx */
71 extern void omap24xx_idle_loop_suspend(void);
72 extern unsigned int omap24xx_idle_loop_suspend_sz;
73
74 extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
75                                         void __iomem *sdrc_power);
76 extern unsigned int omap24xx_cpu_suspend_sz;
77
78 /* 3xxx */
79 extern void omap34xx_cpu_suspend(int save_state);
80
81 /* omap3_do_wfi function pointer and size, for copy to SRAM */
82 extern void omap3_do_wfi(void);
83 extern unsigned int omap3_do_wfi_sz;
84 /* ... and its pointer from SRAM after copy */
85 extern void (*omap3_do_wfi_sram)(void);
86
87 /* save_secure_ram_context function pointer and size, for copy to SRAM */
88 extern int save_secure_ram_context(u32 *addr);
89 extern unsigned int save_secure_ram_context_sz;
90
91 extern void omap3_save_scratchpad_contents(void);
92
93 #define PM_RTA_ERRATUM_i608             (1 << 0)
94 #define PM_SDRC_WAKEUP_ERRATUM_i583     (1 << 1)
95
96 #if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
97 extern u16 pm34xx_errata;
98 #define IS_PM34XX_ERRATUM(id)           (pm34xx_errata & (id))
99 extern void enable_omap3630_toggle_l2_on_restore(void);
100 #else
101 #define IS_PM34XX_ERRATUM(id)           0
102 static inline void enable_omap3630_toggle_l2_on_restore(void) { }
103 #endif          /* defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) */
104
105 #ifdef CONFIG_OMAP_SMARTREFLEX
106 extern int omap_devinit_smartreflex(void);
107 extern void omap_enable_smartreflex_on_init(void);
108 #else
109 static inline int omap_devinit_smartreflex(void)
110 {
111         return -EINVAL;
112 }
113
114 static inline void omap_enable_smartreflex_on_init(void) {}
115 #endif
116
117 #ifdef CONFIG_TWL4030_CORE
118 extern int omap3_twl_init(void);
119 extern int omap4_twl_init(void);
120 extern int omap3_twl_set_sr_bit(bool enable);
121 #else
122 static inline int omap3_twl_init(void)
123 {
124         return -EINVAL;
125 }
126 static inline int omap4_twl_init(void)
127 {
128         return -EINVAL;
129 }
130 #endif
131
132 #endif