blob: 1f736222a629c50f46cbcace5da6e986db631489 [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>
29#include <linux/io.h>
30#include <linux/irq.h>
31#include <linux/time.h>
32#include <linux/gpio.h>
33
34#include <asm/mach/time.h>
35#include <asm/mach/irq.h>
36#include <asm/mach-types.h>
37
38#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/clock.h>
40#include <plat/sram.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070041#include <plat/dma.h>
42#include <plat/board.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070043
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"
Kevin Hilman8bd22942009-05-28 10:56:16 -070052
Paul Walmsley72e06d02010-12-21 21:05:16 -070053#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070054#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070055
Kevin Hilmane83df172010-12-08 22:40:40 +000056#ifdef CONFIG_SUSPEND
57static suspend_state_t suspend_state = PM_SUSPEND_ON;
58static inline bool is_suspending(void)
59{
60 return (suspend_state != PM_SUSPEND_ON);
61}
62#else
63static inline bool is_suspending(void)
64{
65 return false;
66}
67#endif
68
Kevin Hilman8bd22942009-05-28 10:56:16 -070069static void (*omap2_sram_idle)(void);
70static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
71 void __iomem *sdrc_power);
72
Paul Walmsley369d5612010-01-26 20:13:01 -070073static struct powerdomain *mpu_pwrdm, *core_pwrdm;
74static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070075
76static struct clk *osc_ck, *emul_ck;
77
78static int omap2_fclks_active(void)
79{
80 u32 f1, f2;
81
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070082 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
83 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Kevin Hilman4af40162009-02-04 10:51:40 -080084
85 /* Ignore UART clocks. These are handled by UART core (serial.c) */
Paul Walmsley2fd0f752010-05-18 18:40:23 -060086 f1 &= ~(OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_UART2_MASK);
87 f2 &= ~OMAP24XX_EN_UART3_MASK;
Kevin Hilman4af40162009-02-04 10:51:40 -080088
Kevin Hilman8bd22942009-05-28 10:56:16 -070089 if (f1 | f2)
90 return 1;
91 return 0;
92}
93
Kevin Hilman8bd22942009-05-28 10:56:16 -070094static void omap2_enter_full_retention(void)
95{
96 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070097
98 /* There is 1 reference hold for all children of the oscillator
99 * clock, the following will remove it. If no one else uses the
100 * oscillator itself it will be disabled if/when we enter retention
101 * mode.
102 */
103 clk_disable(osc_ck);
104
105 /* Clear old wake-up events */
106 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700107 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
108 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
109 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700110
111 /*
112 * Set MPU powerdomain's next power state to RETENTION;
113 * preserve logic state during retention
114 */
115 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
116 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
117
118 /* Workaround to kill USB */
119 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
120 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
121
Paul Walmsley72e06d02010-12-21 21:05:16 -0700122 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700123
Kevin Hilman8bd22942009-05-28 10:56:16 -0700124 /* One last check for pending IRQs to avoid extra latency due
125 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800126 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700127 goto no_sleep;
128
129 /* Jump to SRAM suspend code */
130 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
131 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
132 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700133
Kevin Hilman4af40162009-02-04 10:51:40 -0800134no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800135 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700136
137 clk_enable(osc_ck);
138
139 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700140 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
141 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700142
143 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700144 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700145
146 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700147 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700148 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700149 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700150 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
151 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700152 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700153 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
154
155 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700156 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700157}
158
159static int omap2_i2c_active(void)
160{
161 u32 l;
162
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700163 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600164 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700165}
166
167static int sti_console_enabled;
168
169static int omap2_allow_mpu_retention(void)
170{
171 u32 l;
172
173 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700174 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600175 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
176 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
177 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700178 return 0;
179 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700180 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600181 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700182 return 0;
183 if (sti_console_enabled)
184 return 0;
185
186 return 1;
187}
188
189static void omap2_enter_mpu_retention(void)
190{
191 int only_idle = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700192
193 /* Putting MPU into the WFI state while a transfer is active
194 * seems to cause the I2C block to timeout. Why? Good question. */
195 if (omap2_i2c_active())
196 return;
197
198 /* The peripherals seem not to be able to wake up the MPU when
199 * it is in retention mode. */
200 if (omap2_allow_mpu_retention()) {
201 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700202 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
203 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
204 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700205
206 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700207 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600208 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700209 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700210 } else {
211 /* Block MPU retention */
212
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700213 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700214 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700215 only_idle = 1;
216 }
217
Kevin Hilman8bd22942009-05-28 10:56:16 -0700218 omap2_sram_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700219}
220
221static int omap2_can_sleep(void)
222{
223 if (omap2_fclks_active())
224 return 0;
225 if (osc_ck->usecount > 1)
226 return 0;
227 if (omap_dma_running())
228 return 0;
229
230 return 1;
231}
232
233static void omap2_pm_idle(void)
234{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700235 local_fiq_disable();
236
237 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800238 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700239 goto out;
240 omap2_enter_mpu_retention();
241 goto out;
242 }
243
Jouni Hogander94434532009-02-03 15:49:04 -0800244 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700245 goto out;
246
247 omap2_enter_full_retention();
248
249out:
250 local_fiq_enable();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700251}
252
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000253#ifdef CONFIG_SUSPEND
Kevin Hilmane83df172010-12-08 22:40:40 +0000254static int omap2_pm_begin(suspend_state_t state)
255{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700256 disable_hlt();
Jean Pihetc1663812010-12-09 18:39:58 +0100257 suspend_state = state;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700258 return 0;
259}
260
261static int omap2_pm_suspend(void)
262{
263 u32 wken_wkup, mir1;
264
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700265 wken_wkup = omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600266 wken_wkup &= ~OMAP24XX_EN_GPT1_MASK;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700267 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700268
269 /* Mask GPT1 */
270 mir1 = omap_readl(0x480fe0a4);
271 omap_writel(1 << 5, 0x480fe0ac);
272
Kevin Hilman8bd22942009-05-28 10:56:16 -0700273 omap2_enter_full_retention();
274
275 omap_writel(mir1, 0x480fe0a4);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700276 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700277
278 return 0;
279}
280
281static int omap2_pm_enter(suspend_state_t state)
282{
283 int ret = 0;
284
285 switch (state) {
286 case PM_SUSPEND_STANDBY:
287 case PM_SUSPEND_MEM:
288 ret = omap2_pm_suspend();
289 break;
290 default:
291 ret = -EINVAL;
292 }
293
294 return ret;
295}
296
Kevin Hilmane83df172010-12-08 22:40:40 +0000297static void omap2_pm_end(void)
298{
299 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100300 enable_hlt();
Kevin Hilmane83df172010-12-08 22:40:40 +0000301}
302
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100303static const struct platform_suspend_ops omap_pm_ops = {
Kevin Hilmane83df172010-12-08 22:40:40 +0000304 .begin = omap2_pm_begin,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700305 .enter = omap2_pm_enter,
Kevin Hilmane83df172010-12-08 22:40:40 +0000306 .end = omap2_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700307 .valid = suspend_valid_only_mem,
308};
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000309#else
310static const struct platform_suspend_ops __initdata omap_pm_ops;
311#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700312
Paul Walmsley369d5612010-01-26 20:13:01 -0700313/* XXX This function should be shareable between OMAP2xxx and OMAP3 */
314static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315{
Paul Walmsley369d5612010-01-26 20:13:01 -0700316 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700317 clkdm_allow_idle(clkdm);
Paul Walmsley369d5612010-01-26 20:13:01 -0700318 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
319 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700320 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700321 return 0;
322}
323
324static void __init prcm_setup_regs(void)
325{
326 int i, num_mem_banks;
327 struct powerdomain *pwrdm;
328
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700329 /*
330 * Enable autoidle
331 * XXX This should be handled by hwmod code or PRCM init code
332 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700333 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700334 OMAP2_PRCM_SYSCONFIG_OFFSET);
335
Kevin Hilman8bd22942009-05-28 10:56:16 -0700336 /*
337 * Set CORE powerdomain memory banks to retain their contents
338 * during RETENTION
339 */
340 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
341 for (i = 0; i < num_mem_banks; i++)
342 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
343
344 /* Set CORE powerdomain's next power state to RETENTION */
345 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
346
347 /*
348 * Set MPU powerdomain's next power state to RETENTION;
349 * preserve logic state during retention
350 */
351 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
352 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
353
354 /* Force-power down DSP, GFX powerdomains */
355
356 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
357 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700358 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700359
360 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
361 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700362 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700363
Paul Walmsley51d070a2011-01-27 02:52:55 -0700364 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley369d5612010-01-26 20:13:01 -0700365 clkdm_for_each(clkdms_setup, NULL);
366 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700367
Kevin Hilman8bd22942009-05-28 10:56:16 -0700368 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
369 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700370 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
371 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700372
373 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700374 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
375 OMAP2_PRCM_VOLTSETUP_OFFSET);
376 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
377 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
378 OMAP24XX_MEMRETCTRL_MASK |
379 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
380 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
381 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700382
383 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700384 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
385 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700386}
387
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700388static int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700389{
390 u32 l;
391
392 if (!cpu_is_omap24xx())
393 return -ENODEV;
394
395 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700396 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700397 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
398
Paul Walmsley369d5612010-01-26 20:13:01 -0700399 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700400
401 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
402 if (!mpu_pwrdm)
403 pr_err("PM: mpu_pwrdm not found\n");
404
405 core_pwrdm = pwrdm_lookup("core_pwrdm");
406 if (!core_pwrdm)
407 pr_err("PM: core_pwrdm not found\n");
408
Paul Walmsley369d5612010-01-26 20:13:01 -0700409 /* Look up important clockdomains */
410
411 mpu_clkdm = clkdm_lookup("mpu_clkdm");
412 if (!mpu_clkdm)
413 pr_err("PM: mpu_clkdm not found\n");
414
415 wkup_clkdm = clkdm_lookup("wkup_clkdm");
416 if (!wkup_clkdm)
417 pr_err("PM: wkup_clkdm not found\n");
418
Kevin Hilman8bd22942009-05-28 10:56:16 -0700419 dsp_clkdm = clkdm_lookup("dsp_clkdm");
420 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700421 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700422
423 gfx_clkdm = clkdm_lookup("gfx_clkdm");
424 if (!gfx_clkdm)
425 pr_err("PM: gfx_clkdm not found\n");
426
427
428 osc_ck = clk_get(NULL, "osc_ck");
429 if (IS_ERR(osc_ck)) {
430 printk(KERN_ERR "could not get osc_ck\n");
431 return -ENODEV;
432 }
433
434 if (cpu_is_omap242x()) {
435 emul_ck = clk_get(NULL, "emul_ck");
436 if (IS_ERR(emul_ck)) {
437 printk(KERN_ERR "could not get emul_ck\n");
438 clk_put(osc_ck);
439 return -ENODEV;
440 }
441 }
442
443 prcm_setup_regs();
444
445 /* Hack to prevent MPU retention when STI console is enabled. */
446 {
447 const struct omap_sti_console_config *sti;
448
449 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
450 struct omap_sti_console_config);
451 if (sti != NULL && sti->enable)
452 sti_console_enabled = 1;
453 }
454
455 /*
456 * We copy the assembler sleep/wakeup routines to SRAM.
457 * These routines need to be in SRAM as that's the only
458 * memory the MPU can see when it wakes up.
459 */
460 if (cpu_is_omap24xx()) {
461 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
462 omap24xx_idle_loop_suspend_sz);
463
464 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
465 omap24xx_cpu_suspend_sz);
466 }
467
468 suspend_set_ops(&omap_pm_ops);
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500469 arm_pm_idle = omap2_pm_idle;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700470
471 return 0;
472}
473
474late_initcall(omap2_pm_init);