blob: a0514310d15fa5af4029b74eb8056f22c1a5e89a [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
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053014#include <linux/err.h>
15
Paul Walmsley72e06d02010-12-21 21:05:16 -070016#include "powerdomain.h"
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030017
Tero Kristo27d59a42008-10-13 13:15:00 +030018extern void *omap3_secure_ram_storage;
Kevin Hilmanc40552b2009-10-06 14:25:09 -070019extern void omap3_pm_off_mode_enable(int);
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +053020extern void omap_sram_idle(void);
Rajendra Nayak20b01662008-10-08 17:31:22 +053021extern int omap3_can_sleep(void);
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +053022extern int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state);
Kalle Jokiniemi03433712008-09-26 11:04:20 +030023extern int omap3_idle_init(void);
Santosh Shilimkar98272662011-08-16 17:31:40 +053024extern int omap4_idle_init(void);
Paul Walmsley92206fd2012-02-02 02:38:50 -070025extern int omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused);
Paul Walmsley14164082012-02-02 02:30:50 -070026extern int (*omap_pm_suspend)(void);
Tero Kristo27d59a42008-10-13 13:15:00 +030027
Nishanth Menonfd1478c2010-12-09 09:13:46 -060028#if defined(CONFIG_PM_OPP)
29extern int omap3_opp_init(void);
Nishanth Menonf5a64222010-12-09 09:13:47 -060030extern int omap4_opp_init(void);
Nishanth Menonfd1478c2010-12-09 09:13:46 -060031#else
32static inline int omap3_opp_init(void)
33{
34 return -EINVAL;
35}
Nishanth Menonf5a64222010-12-09 09:13:47 -060036static inline int omap4_opp_init(void)
37{
38 return -EINVAL;
39}
Nishanth Menonfd1478c2010-12-09 09:13:46 -060040#endif
41
Jean Pihet866ba0e2011-05-09 12:02:13 +020042/*
43 * cpuidle mach specific parameters
44 *
45 * The board code can override the default C-states definition using
46 * omap3_pm_init_cpuidle
47 */
Kevin Hilmanbb4de3d2009-12-15 16:37:18 -080048struct cpuidle_params {
Jean Pihet866ba0e2011-05-09 12:02:13 +020049 u32 exit_latency; /* exit_latency = sleep + wake-up latencies */
50 u32 target_residency;
51 u8 valid; /* validates the C-state */
Kevin Hilmanbb4de3d2009-12-15 16:37:18 -080052};
53
54#if defined(CONFIG_PM) && defined(CONFIG_CPU_IDLE)
55extern void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params);
56#else
57static
58inline void omap3_pm_init_cpuidle(struct cpuidle_params *cpuidle_board_params)
59{
60}
61#endif
62
Tero Kristo68d47782008-11-26 12:26:24 +020063extern int omap3_pm_get_suspend_state(struct powerdomain *pwrdm);
64extern int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state);
65
Kevin Hilman8bd22942009-05-28 10:56:16 -070066#ifdef CONFIG_PM_DEBUG
Loïc Minierebfa88c2010-09-27 23:04:20 +020067extern u32 enable_off_mode;
Manjunatha GKae559d82009-11-16 20:16:52 +053068#else
Loïc Minierebfa88c2010-09-27 23:04:20 +020069#define enable_off_mode 0
Manjunatha GKae559d82009-11-16 20:16:52 +053070#endif
71
72#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030073extern void pm_dbg_update_time(struct powerdomain *pwrdm, int prev);
Kevin Hilman8bd22942009-05-28 10:56:16 -070074#else
Peter 'p2' De Schrijver331b93f2008-10-15 18:13:48 +030075#define pm_dbg_update_time(pwrdm, prev) do {} while (0);
Kevin Hilman8bd22942009-05-28 10:56:16 -070076#endif /* CONFIG_PM_DEBUG */
77
Jean Pihet46e130d2011-06-29 18:40:23 +020078/* 24xx */
Kevin Hilman8bd22942009-05-28 10:56:16 -070079extern void omap24xx_idle_loop_suspend(void);
Jean Pihet46e130d2011-06-29 18:40:23 +020080extern unsigned int omap24xx_idle_loop_suspend_sz;
Kevin Hilman8bd22942009-05-28 10:56:16 -070081
82extern void omap24xx_cpu_suspend(u32 dll_ctrl, void __iomem *sdrc_dlla_ctrl,
83 void __iomem *sdrc_power);
Kevin Hilman8bd22942009-05-28 10:56:16 -070084extern unsigned int omap24xx_cpu_suspend_sz;
Jean Pihet46e130d2011-06-29 18:40:23 +020085
86/* 3xxx */
Russell Kingcbe26342011-06-30 08:45:49 +010087extern void omap34xx_cpu_suspend(int save_state);
Jean Pihet46e130d2011-06-29 18:40:23 +020088
89/* omap3_do_wfi function pointer and size, for copy to SRAM */
90extern void omap3_do_wfi(void);
91extern unsigned int omap3_do_wfi_sz;
92/* ... and its pointer from SRAM after copy */
93extern void (*omap3_do_wfi_sram)(void);
94
95/* save_secure_ram_context function pointer and size, for copy to SRAM */
96extern int save_secure_ram_context(u32 *addr);
97extern unsigned int save_secure_ram_context_sz;
98
99extern void omap3_save_scratchpad_contents(void);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700100
Nishanth Menon458e9992010-12-20 14:05:06 -0600101#define PM_RTA_ERRATUM_i608 (1 << 0)
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600102#define PM_SDRC_WAKEUP_ERRATUM_i583 (1 << 1)
Nishanth Menon458e9992010-12-20 14:05:06 -0600103
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600104#if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
105extern u16 pm34xx_errata;
106#define IS_PM34XX_ERRATUM(id) (pm34xx_errata & (id))
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600107extern void enable_omap3630_toggle_l2_on_restore(void);
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600108#else
109#define IS_PM34XX_ERRATUM(id) 0
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600110static inline void enable_omap3630_toggle_l2_on_restore(void) { }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600111#endif /* defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3) */
112
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530113#ifdef CONFIG_OMAP_SMARTREFLEX
114extern int omap_devinit_smartreflex(void);
115extern void omap_enable_smartreflex_on_init(void);
116#else
117static inline int omap_devinit_smartreflex(void)
118{
119 return -EINVAL;
120}
121
122static inline void omap_enable_smartreflex_on_init(void) {}
123#endif
124
Thara Gopinathfbc319f2010-12-10 22:51:05 +0530125#ifdef CONFIG_TWL4030_CORE
126extern int omap3_twl_init(void);
Thara Gopinath7bc3ed92010-12-10 23:15:16 +0530127extern int omap4_twl_init(void);
Thara Gopinath40713182011-02-15 13:28:58 +0530128extern int omap3_twl_set_sr_bit(bool enable);
Thara Gopinathfbc319f2010-12-10 22:51:05 +0530129#else
130static inline int omap3_twl_init(void)
131{
132 return -EINVAL;
133}
Thara Gopinath7bc3ed92010-12-10 23:15:16 +0530134static inline int omap4_twl_init(void)
135{
136 return -EINVAL;
137}
Thara Gopinathfbc319f2010-12-10 22:51:05 +0530138#endif
139
Kevin Hilman8bd22942009-05-28 10:56:16 -0700140#endif