blob: bee8bb9111ebc71dd48fda034794bb0b3b87a78d [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
2 * OMAP2 Power Management Routines
3 *
4 * Copyright (C) 2005 Texas Instruments, Inc.
5 * Copyright (C) 2006-2008 Nokia Corporation
6 *
7 * Written by:
8 * Richard Woodruff <r-woodruff2@ti.com>
9 * Tony Lindgren
10 * Juha Yrjola
11 * Amit Kucheria <amit.kucheria@nokia.com>
12 * Igor Stoppa <igor.stoppa@nokia.com>
13 *
14 * Based on pm.c for omap1
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/suspend.h>
22#include <linux/sched.h>
23#include <linux/proc_fs.h>
24#include <linux/interrupt.h>
25#include <linux/sysfs.h>
26#include <linux/module.h>
27#include <linux/delay.h>
28#include <linux/clk.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070029#include <linux/irq.h>
30#include <linux/time.h>
31#include <linux/gpio.h>
32
33#include <asm/mach/time.h>
34#include <asm/mach/irq.h>
35#include <asm/mach-types.h>
36
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/clock.h>
38#include <plat/sram.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/dma.h>
40#include <plat/board.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070041
Tony Lindgrenee0839c2012-02-24 10:34:35 -080042#include <mach/irqs.h>
43
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070045#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070046#include "prm-regbits-24xx.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070047#include "cm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070048#include "cm-regbits-24xx.h"
49#include "sdrc.h"
50#include "pm.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060051#include "control.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070052#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070053#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070054
Kevin Hilmane83df172010-12-08 22:40:40 +000055#ifdef CONFIG_SUSPEND
56static suspend_state_t suspend_state = PM_SUSPEND_ON;
57static inline bool is_suspending(void)
58{
59 return (suspend_state != PM_SUSPEND_ON);
60}
61#else
62static inline bool is_suspending(void)
63{
64 return false;
65}
66#endif
67
Kevin Hilman8bd22942009-05-28 10:56:16 -070068static void (*omap2_sram_idle)(void);
69static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
70 void __iomem *sdrc_power);
71
Paul Walmsley369d5612010-01-26 20:13:01 -070072static struct powerdomain *mpu_pwrdm, *core_pwrdm;
73static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070074
75static struct clk *osc_ck, *emul_ck;
76
77static int omap2_fclks_active(void)
78{
79 u32 f1, f2;
80
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070081 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
82 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Kevin Hilman4af40162009-02-04 10:51:40 -080083
84 /* Ignore UART clocks. These are handled by UART core (serial.c) */
Paul Walmsley2fd0f752010-05-18 18:40:23 -060085 f1 &= ~(OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_UART2_MASK);
86 f2 &= ~OMAP24XX_EN_UART3_MASK;
Kevin Hilman4af40162009-02-04 10:51:40 -080087
Kevin Hilman8bd22942009-05-28 10:56:16 -070088 if (f1 | f2)
89 return 1;
90 return 0;
91}
92
Kevin Hilman8bd22942009-05-28 10:56:16 -070093static void omap2_enter_full_retention(void)
94{
95 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070096
97 /* There is 1 reference hold for all children of the oscillator
98 * clock, the following will remove it. If no one else uses the
99 * oscillator itself it will be disabled if/when we enter retention
100 * mode.
101 */
102 clk_disable(osc_ck);
103
104 /* Clear old wake-up events */
105 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700106 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
107 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
108 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700109
110 /*
111 * Set MPU powerdomain's next power state to RETENTION;
112 * preserve logic state during retention
113 */
114 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
115 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
116
117 /* Workaround to kill USB */
118 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
119 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
120
Paul Walmsley72e06d02010-12-21 21:05:16 -0700121 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700122
Kevin Hilman8bd22942009-05-28 10:56:16 -0700123 /* One last check for pending IRQs to avoid extra latency due
124 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800125 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700126 goto no_sleep;
127
128 /* Jump to SRAM suspend code */
129 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
130 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
131 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700132
Kevin Hilman4af40162009-02-04 10:51:40 -0800133no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800134 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700135
136 clk_enable(osc_ck);
137
138 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700139 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
140 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700141
142 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700143 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700144
145 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700146 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700147 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700148 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700149 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
150 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700151 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700152 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
153
154 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700155 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700156}
157
158static int omap2_i2c_active(void)
159{
160 u32 l;
161
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700162 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600163 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700164}
165
166static int sti_console_enabled;
167
168static int omap2_allow_mpu_retention(void)
169{
170 u32 l;
171
172 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700173 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600174 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
175 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
176 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700177 return 0;
178 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700179 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600180 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700181 return 0;
182 if (sti_console_enabled)
183 return 0;
184
185 return 1;
186}
187
188static void omap2_enter_mpu_retention(void)
189{
190 int only_idle = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700191
192 /* Putting MPU into the WFI state while a transfer is active
193 * seems to cause the I2C block to timeout. Why? Good question. */
194 if (omap2_i2c_active())
195 return;
196
197 /* The peripherals seem not to be able to wake up the MPU when
198 * it is in retention mode. */
199 if (omap2_allow_mpu_retention()) {
200 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700201 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
202 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
203 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700204
205 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700206 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600207 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700208 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700209 } else {
210 /* Block MPU retention */
211
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700212 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700213 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700214 only_idle = 1;
215 }
216
Kevin Hilman8bd22942009-05-28 10:56:16 -0700217 omap2_sram_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700218}
219
220static int omap2_can_sleep(void)
221{
222 if (omap2_fclks_active())
223 return 0;
224 if (osc_ck->usecount > 1)
225 return 0;
226 if (omap_dma_running())
227 return 0;
228
229 return 1;
230}
231
232static void omap2_pm_idle(void)
233{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700234 local_fiq_disable();
235
236 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800237 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700238 goto out;
239 omap2_enter_mpu_retention();
240 goto out;
241 }
242
Jouni Hogander94434532009-02-03 15:49:04 -0800243 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700244 goto out;
245
246 omap2_enter_full_retention();
247
248out:
249 local_fiq_enable();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700250}
251
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000252#ifdef CONFIG_SUSPEND
Kevin Hilmane83df172010-12-08 22:40:40 +0000253static int omap2_pm_begin(suspend_state_t state)
254{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700255 disable_hlt();
Jean Pihetc1663812010-12-09 18:39:58 +0100256 suspend_state = state;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700257 return 0;
258}
259
Kevin Hilman8bd22942009-05-28 10:56:16 -0700260static int omap2_pm_enter(suspend_state_t state)
261{
262 int ret = 0;
263
264 switch (state) {
265 case PM_SUSPEND_STANDBY:
266 case PM_SUSPEND_MEM:
Paul Walmsley645c56a2012-02-24 10:34:32 -0800267 omap2_enter_full_retention();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700268 break;
269 default:
270 ret = -EINVAL;
271 }
272
273 return ret;
274}
275
Kevin Hilmane83df172010-12-08 22:40:40 +0000276static void omap2_pm_end(void)
277{
278 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100279 enable_hlt();
Kevin Hilmane83df172010-12-08 22:40:40 +0000280}
281
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100282static const struct platform_suspend_ops omap_pm_ops = {
Kevin Hilmane83df172010-12-08 22:40:40 +0000283 .begin = omap2_pm_begin,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700284 .enter = omap2_pm_enter,
Kevin Hilmane83df172010-12-08 22:40:40 +0000285 .end = omap2_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700286 .valid = suspend_valid_only_mem,
287};
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000288#else
289static const struct platform_suspend_ops __initdata omap_pm_ops;
290#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700291
Paul Walmsley369d5612010-01-26 20:13:01 -0700292/* XXX This function should be shareable between OMAP2xxx and OMAP3 */
293static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700294{
Paul Walmsley369d5612010-01-26 20:13:01 -0700295 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700296 clkdm_allow_idle(clkdm);
Paul Walmsley369d5612010-01-26 20:13:01 -0700297 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
298 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700299 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700300 return 0;
301}
302
303static void __init prcm_setup_regs(void)
304{
305 int i, num_mem_banks;
306 struct powerdomain *pwrdm;
307
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700308 /*
309 * Enable autoidle
310 * XXX This should be handled by hwmod code or PRCM init code
311 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700312 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700313 OMAP2_PRCM_SYSCONFIG_OFFSET);
314
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315 /*
316 * Set CORE powerdomain memory banks to retain their contents
317 * during RETENTION
318 */
319 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
320 for (i = 0; i < num_mem_banks; i++)
321 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
322
323 /* Set CORE powerdomain's next power state to RETENTION */
324 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
325
326 /*
327 * Set MPU powerdomain's next power state to RETENTION;
328 * preserve logic state during retention
329 */
330 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
331 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
332
333 /* Force-power down DSP, GFX powerdomains */
334
335 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
336 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700337 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700338
339 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
340 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700341 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700342
Paul Walmsley51d070a2011-01-27 02:52:55 -0700343 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley369d5612010-01-26 20:13:01 -0700344 clkdm_for_each(clkdms_setup, NULL);
345 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700346
Kevin Hilman8bd22942009-05-28 10:56:16 -0700347 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
348 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700349 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
350 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700351
352 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700353 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
354 OMAP2_PRCM_VOLTSETUP_OFFSET);
355 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
356 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
357 OMAP24XX_MEMRETCTRL_MASK |
358 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
359 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
360 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700361
362 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700363 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
364 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700365}
366
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700367static int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700368{
369 u32 l;
370
371 if (!cpu_is_omap24xx())
372 return -ENODEV;
373
374 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700375 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700376 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
377
Paul Walmsley369d5612010-01-26 20:13:01 -0700378 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700379
380 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
381 if (!mpu_pwrdm)
382 pr_err("PM: mpu_pwrdm not found\n");
383
384 core_pwrdm = pwrdm_lookup("core_pwrdm");
385 if (!core_pwrdm)
386 pr_err("PM: core_pwrdm not found\n");
387
Paul Walmsley369d5612010-01-26 20:13:01 -0700388 /* Look up important clockdomains */
389
390 mpu_clkdm = clkdm_lookup("mpu_clkdm");
391 if (!mpu_clkdm)
392 pr_err("PM: mpu_clkdm not found\n");
393
394 wkup_clkdm = clkdm_lookup("wkup_clkdm");
395 if (!wkup_clkdm)
396 pr_err("PM: wkup_clkdm not found\n");
397
Kevin Hilman8bd22942009-05-28 10:56:16 -0700398 dsp_clkdm = clkdm_lookup("dsp_clkdm");
399 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700400 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700401
402 gfx_clkdm = clkdm_lookup("gfx_clkdm");
403 if (!gfx_clkdm)
404 pr_err("PM: gfx_clkdm not found\n");
405
406
407 osc_ck = clk_get(NULL, "osc_ck");
408 if (IS_ERR(osc_ck)) {
409 printk(KERN_ERR "could not get osc_ck\n");
410 return -ENODEV;
411 }
412
413 if (cpu_is_omap242x()) {
414 emul_ck = clk_get(NULL, "emul_ck");
415 if (IS_ERR(emul_ck)) {
416 printk(KERN_ERR "could not get emul_ck\n");
417 clk_put(osc_ck);
418 return -ENODEV;
419 }
420 }
421
422 prcm_setup_regs();
423
424 /* Hack to prevent MPU retention when STI console is enabled. */
425 {
426 const struct omap_sti_console_config *sti;
427
428 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
429 struct omap_sti_console_config);
430 if (sti != NULL && sti->enable)
431 sti_console_enabled = 1;
432 }
433
434 /*
435 * We copy the assembler sleep/wakeup routines to SRAM.
436 * These routines need to be in SRAM as that's the only
437 * memory the MPU can see when it wakes up.
438 */
439 if (cpu_is_omap24xx()) {
440 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
441 omap24xx_idle_loop_suspend_sz);
442
443 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
444 omap24xx_cpu_suspend_sz);
445 }
446
447 suspend_set_ops(&omap_pm_ops);
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500448 arm_pm_idle = omap2_pm_idle;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700449
450 return 0;
451}
452
453late_initcall(omap2_pm_init);