blob: 23de98d0384151b76274f67a99a10a005d4b3541 [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
Paul Walmsley1e056dd2012-02-09 18:24:03 -070085 return (f1 | f2) ? 1 : 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -070086}
87
Kevin Hilman8bd22942009-05-28 10:56:16 -070088static void omap2_enter_full_retention(void)
89{
90 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070091
92 /* There is 1 reference hold for all children of the oscillator
93 * clock, the following will remove it. If no one else uses the
94 * oscillator itself it will be disabled if/when we enter retention
95 * mode.
96 */
97 clk_disable(osc_ck);
98
99 /* Clear old wake-up events */
100 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700101 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
102 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
103 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700104
105 /*
106 * Set MPU powerdomain's next power state to RETENTION;
107 * preserve logic state during retention
108 */
109 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
110 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
111
112 /* Workaround to kill USB */
113 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
114 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
115
Paul Walmsley72e06d02010-12-21 21:05:16 -0700116 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700117
Kevin Hilman8bd22942009-05-28 10:56:16 -0700118 /* One last check for pending IRQs to avoid extra latency due
119 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800120 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700121 goto no_sleep;
122
123 /* Jump to SRAM suspend code */
124 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
125 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
126 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700127
Kevin Hilman4af40162009-02-04 10:51:40 -0800128no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800129 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700130
131 clk_enable(osc_ck);
132
133 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700134 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
135 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700136
137 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700138 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700139
140 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700141 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700142 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700143 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700144 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
145 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700146 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700147 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
148
149 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700150 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700151}
152
153static int omap2_i2c_active(void)
154{
155 u32 l;
156
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700157 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600158 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700159}
160
161static int sti_console_enabled;
162
163static int omap2_allow_mpu_retention(void)
164{
165 u32 l;
166
167 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700168 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600169 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
170 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
171 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700172 return 0;
173 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700174 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600175 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700176 return 0;
177 if (sti_console_enabled)
178 return 0;
179
180 return 1;
181}
182
183static void omap2_enter_mpu_retention(void)
184{
185 int only_idle = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700186
187 /* Putting MPU into the WFI state while a transfer is active
188 * seems to cause the I2C block to timeout. Why? Good question. */
189 if (omap2_i2c_active())
190 return;
191
192 /* The peripherals seem not to be able to wake up the MPU when
193 * it is in retention mode. */
194 if (omap2_allow_mpu_retention()) {
195 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700196 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
197 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
198 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700199
200 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700201 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600202 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700203 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700204 } else {
205 /* Block MPU retention */
206
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700207 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700208 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700209 only_idle = 1;
210 }
211
Kevin Hilman8bd22942009-05-28 10:56:16 -0700212 omap2_sram_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700213}
214
215static int omap2_can_sleep(void)
216{
217 if (omap2_fclks_active())
218 return 0;
219 if (osc_ck->usecount > 1)
220 return 0;
221 if (omap_dma_running())
222 return 0;
223
224 return 1;
225}
226
227static void omap2_pm_idle(void)
228{
229 local_irq_disable();
230 local_fiq_disable();
231
232 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800233 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700234 goto out;
235 omap2_enter_mpu_retention();
236 goto out;
237 }
238
Jouni Hogander94434532009-02-03 15:49:04 -0800239 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700240 goto out;
241
242 omap2_enter_full_retention();
243
244out:
245 local_fiq_enable();
246 local_irq_enable();
247}
248
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000249#ifdef CONFIG_SUSPEND
Kevin Hilmane83df172010-12-08 22:40:40 +0000250static int omap2_pm_begin(suspend_state_t state)
251{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700252 disable_hlt();
Jean Pihetc1663812010-12-09 18:39:58 +0100253 suspend_state = state;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700254 return 0;
255}
256
257static int omap2_pm_suspend(void)
258{
259 u32 wken_wkup, mir1;
260
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700261 wken_wkup = omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600262 wken_wkup &= ~OMAP24XX_EN_GPT1_MASK;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700263 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700264
265 /* Mask GPT1 */
266 mir1 = omap_readl(0x480fe0a4);
267 omap_writel(1 << 5, 0x480fe0ac);
268
Kevin Hilman8bd22942009-05-28 10:56:16 -0700269 omap2_enter_full_retention();
270
271 omap_writel(mir1, 0x480fe0a4);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700272 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700273
274 return 0;
275}
276
277static int omap2_pm_enter(suspend_state_t state)
278{
279 int ret = 0;
280
281 switch (state) {
282 case PM_SUSPEND_STANDBY:
283 case PM_SUSPEND_MEM:
284 ret = omap2_pm_suspend();
285 break;
286 default:
287 ret = -EINVAL;
288 }
289
290 return ret;
291}
292
Kevin Hilmane83df172010-12-08 22:40:40 +0000293static void omap2_pm_end(void)
294{
295 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100296 enable_hlt();
Kevin Hilmane83df172010-12-08 22:40:40 +0000297}
298
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100299static const struct platform_suspend_ops omap_pm_ops = {
Kevin Hilmane83df172010-12-08 22:40:40 +0000300 .begin = omap2_pm_begin,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700301 .enter = omap2_pm_enter,
Kevin Hilmane83df172010-12-08 22:40:40 +0000302 .end = omap2_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700303 .valid = suspend_valid_only_mem,
304};
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000305#else
306static const struct platform_suspend_ops __initdata omap_pm_ops;
307#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700308
Paul Walmsley369d5612010-01-26 20:13:01 -0700309/* XXX This function should be shareable between OMAP2xxx and OMAP3 */
310static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700311{
Paul Walmsley369d5612010-01-26 20:13:01 -0700312 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700313 clkdm_allow_idle(clkdm);
Paul Walmsley369d5612010-01-26 20:13:01 -0700314 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
315 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700316 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700317 return 0;
318}
319
320static void __init prcm_setup_regs(void)
321{
322 int i, num_mem_banks;
323 struct powerdomain *pwrdm;
324
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700325 /*
326 * Enable autoidle
327 * XXX This should be handled by hwmod code or PRCM init code
328 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700329 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700330 OMAP2_PRCM_SYSCONFIG_OFFSET);
331
Kevin Hilman8bd22942009-05-28 10:56:16 -0700332 /*
333 * Set CORE powerdomain memory banks to retain their contents
334 * during RETENTION
335 */
336 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
337 for (i = 0; i < num_mem_banks; i++)
338 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
339
340 /* Set CORE powerdomain's next power state to RETENTION */
341 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
342
343 /*
344 * Set MPU powerdomain's next power state to RETENTION;
345 * preserve logic state during retention
346 */
347 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
348 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
349
350 /* Force-power down DSP, GFX powerdomains */
351
352 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
353 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700354 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700355
356 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
357 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700358 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700359
Paul Walmsley51d070a2011-01-27 02:52:55 -0700360 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley369d5612010-01-26 20:13:01 -0700361 clkdm_for_each(clkdms_setup, NULL);
362 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700363
Kevin Hilman8bd22942009-05-28 10:56:16 -0700364 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
365 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700366 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
367 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700368
369 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700370 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
371 OMAP2_PRCM_VOLTSETUP_OFFSET);
372 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
373 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
374 OMAP24XX_MEMRETCTRL_MASK |
375 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
376 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
377 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700378
379 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700380 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
381 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700382}
383
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700384static int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700385{
386 u32 l;
387
388 if (!cpu_is_omap24xx())
389 return -ENODEV;
390
391 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700392 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700393 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
394
Paul Walmsley369d5612010-01-26 20:13:01 -0700395 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700396
397 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
398 if (!mpu_pwrdm)
399 pr_err("PM: mpu_pwrdm not found\n");
400
401 core_pwrdm = pwrdm_lookup("core_pwrdm");
402 if (!core_pwrdm)
403 pr_err("PM: core_pwrdm not found\n");
404
Paul Walmsley369d5612010-01-26 20:13:01 -0700405 /* Look up important clockdomains */
406
407 mpu_clkdm = clkdm_lookup("mpu_clkdm");
408 if (!mpu_clkdm)
409 pr_err("PM: mpu_clkdm not found\n");
410
411 wkup_clkdm = clkdm_lookup("wkup_clkdm");
412 if (!wkup_clkdm)
413 pr_err("PM: wkup_clkdm not found\n");
414
Kevin Hilman8bd22942009-05-28 10:56:16 -0700415 dsp_clkdm = clkdm_lookup("dsp_clkdm");
416 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700417 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700418
419 gfx_clkdm = clkdm_lookup("gfx_clkdm");
420 if (!gfx_clkdm)
421 pr_err("PM: gfx_clkdm not found\n");
422
423
424 osc_ck = clk_get(NULL, "osc_ck");
425 if (IS_ERR(osc_ck)) {
426 printk(KERN_ERR "could not get osc_ck\n");
427 return -ENODEV;
428 }
429
430 if (cpu_is_omap242x()) {
431 emul_ck = clk_get(NULL, "emul_ck");
432 if (IS_ERR(emul_ck)) {
433 printk(KERN_ERR "could not get emul_ck\n");
434 clk_put(osc_ck);
435 return -ENODEV;
436 }
437 }
438
439 prcm_setup_regs();
440
441 /* Hack to prevent MPU retention when STI console is enabled. */
442 {
443 const struct omap_sti_console_config *sti;
444
445 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
446 struct omap_sti_console_config);
447 if (sti != NULL && sti->enable)
448 sti_console_enabled = 1;
449 }
450
451 /*
452 * We copy the assembler sleep/wakeup routines to SRAM.
453 * These routines need to be in SRAM as that's the only
454 * memory the MPU can see when it wakes up.
455 */
456 if (cpu_is_omap24xx()) {
457 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
458 omap24xx_idle_loop_suspend_sz);
459
460 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
461 omap24xx_cpu_suspend_sz);
462 }
463
464 suspend_set_ops(&omap_pm_ops);
465 pm_idle = omap2_pm_idle;
466
467 return 0;
468}
469
470late_initcall(omap2_pm_init);