diff options
author | Robert Lee <rob.lee@linaro.org> | 2012-05-21 18:50:27 -0400 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2012-06-05 02:51:47 -0400 |
commit | aa96a18d22dc7ad4dbc98cb0f4b2967a9fc979ca (patch) | |
tree | 73e366d74c1f637c2b0143955a1263ff394a3fde /arch/arm/plat-mxc/include | |
parent | 565fa91f236524b6ba4872903dc9cc9c874493e6 (diff) |
ARM: imx: Enable imx53 low power idle
Add various functionality needed to enable a imx53 low power idle
state. This includes adding the imx53 gpc_dvfs clock and making a
common imx5_late_init function and initializing all imx53
MACHINE_STATE late_init calls to imx5_late_init.
Signed-off-by: Robert Lee <rob.lee@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/include')
-rw-r--r-- | arch/arm/plat-mxc/include/mach/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/include/mach/common.h b/arch/arm/plat-mxc/include/mach/common.h index f65d068e1820..3314e6952556 100644 --- a/arch/arm/plat-mxc/include/mach/common.h +++ b/arch/arm/plat-mxc/include/mach/common.h | |||
@@ -54,6 +54,7 @@ extern void imx50_soc_init(void); | |||
54 | extern void imx51_soc_init(void); | 54 | extern void imx51_soc_init(void); |
55 | extern void imx53_soc_init(void); | 55 | extern void imx53_soc_init(void); |
56 | extern void imx51_init_late(void); | 56 | extern void imx51_init_late(void); |
57 | extern void imx53_init_late(void); | ||
57 | extern void epit_timer_init(struct clk *timer_clk, void __iomem *base, int irq); | 58 | extern void epit_timer_init(struct clk *timer_clk, void __iomem *base, int irq); |
58 | extern void mxc_timer_init(struct clk *timer_clk, void __iomem *, int); | 59 | extern void mxc_timer_init(struct clk *timer_clk, void __iomem *, int); |
59 | extern int mx1_clocks_init(unsigned long fref); | 60 | extern int mx1_clocks_init(unsigned long fref); |
@@ -146,9 +147,11 @@ extern void imx6q_clock_map_io(void); | |||
146 | #ifdef CONFIG_PM | 147 | #ifdef CONFIG_PM |
147 | extern void imx6q_pm_init(void); | 148 | extern void imx6q_pm_init(void); |
148 | extern void imx51_pm_init(void); | 149 | extern void imx51_pm_init(void); |
150 | extern void imx53_pm_init(void); | ||
149 | #else | 151 | #else |
150 | static inline void imx6q_pm_init(void) {} | 152 | static inline void imx6q_pm_init(void) {} |
151 | static inline void imx51_pm_init(void) {} | 153 | static inline void imx51_pm_init(void) {} |
154 | static inline void imx53_pm_init(void) {} | ||
152 | #endif | 155 | #endif |
153 | 156 | ||
154 | #ifdef CONFIG_NEON | 157 | #ifdef CONFIG_NEON |