blob: bf089e743ed98ecd6dc8536e57c5a39791eb9813 [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>
Paul Walmsley0d8e2d02010-11-24 16:49:05 -070033#include <linux/console.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070034
35#include <asm/mach/time.h>
36#include <asm/mach/irq.h>
37#include <asm/mach-types.h>
38
39#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070040#include <plat/clock.h>
41#include <plat/sram.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070042#include <plat/dma.h>
43#include <plat/board.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070044
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 Hilman20d5d552011-05-26 14:07:41 -070056static int omap2_pm_debug;
57
Kevin Hilmane83df172010-12-08 22:40:40 +000058#ifdef CONFIG_SUSPEND
59static suspend_state_t suspend_state = PM_SUSPEND_ON;
60static inline bool is_suspending(void)
61{
62 return (suspend_state != PM_SUSPEND_ON);
63}
64#else
65static inline bool is_suspending(void)
66{
67 return false;
68}
69#endif
70
Kevin Hilman8bd22942009-05-28 10:56:16 -070071static void (*omap2_sram_idle)(void);
72static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
73 void __iomem *sdrc_power);
74
Paul Walmsley369d5612010-01-26 20:13:01 -070075static struct powerdomain *mpu_pwrdm, *core_pwrdm;
76static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070077
78static struct clk *osc_ck, *emul_ck;
79
80static int omap2_fclks_active(void)
81{
82 u32 f1, f2;
83
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070084 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
85 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Kevin Hilman4af40162009-02-04 10:51:40 -080086
87 /* Ignore UART clocks. These are handled by UART core (serial.c) */
Paul Walmsley2fd0f752010-05-18 18:40:23 -060088 f1 &= ~(OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_UART2_MASK);
89 f2 &= ~OMAP24XX_EN_UART3_MASK;
Kevin Hilman4af40162009-02-04 10:51:40 -080090
Kevin Hilman8bd22942009-05-28 10:56:16 -070091 if (f1 | f2)
92 return 1;
93 return 0;
94}
95
Kevin Hilman8bd22942009-05-28 10:56:16 -070096static void omap2_enter_full_retention(void)
97{
98 u32 l;
99 struct timespec ts_preidle, ts_postidle, ts_idle;
100
101 /* There is 1 reference hold for all children of the oscillator
102 * clock, the following will remove it. If no one else uses the
103 * oscillator itself it will be disabled if/when we enter retention
104 * mode.
105 */
106 clk_disable(osc_ck);
107
108 /* Clear old wake-up events */
109 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700110 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
111 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
112 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700113
114 /*
115 * Set MPU powerdomain's next power state to RETENTION;
116 * preserve logic state during retention
117 */
118 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
119 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
120
121 /* Workaround to kill USB */
122 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
123 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
124
Paul Walmsley72e06d02010-12-21 21:05:16 -0700125 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700126
127 if (omap2_pm_debug) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700128 getnstimeofday(&ts_preidle);
129 }
130
131 /* One last check for pending IRQs to avoid extra latency due
132 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800133 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700134 goto no_sleep;
135
Paul Walmsley0d8e2d02010-11-24 16:49:05 -0700136 /* Block console output in case it is on one of the OMAP UARTs */
Kevin Hilmane83df172010-12-08 22:40:40 +0000137 if (!is_suspending())
Torben Hohnac751ef2011-01-25 15:07:35 -0800138 if (!console_trylock())
Kevin Hilmane83df172010-12-08 22:40:40 +0000139 goto no_sleep;
Paul Walmsley0d8e2d02010-11-24 16:49:05 -0700140
Kevin Hilman4af40162009-02-04 10:51:40 -0800141 omap_uart_prepare_idle(0);
142 omap_uart_prepare_idle(1);
143 omap_uart_prepare_idle(2);
144
Kevin Hilman8bd22942009-05-28 10:56:16 -0700145 /* Jump to SRAM suspend code */
146 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
147 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
148 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700149
Kevin Hilman4af40162009-02-04 10:51:40 -0800150 omap_uart_resume_idle(2);
151 omap_uart_resume_idle(1);
152 omap_uart_resume_idle(0);
153
Kevin Hilmane83df172010-12-08 22:40:40 +0000154 if (!is_suspending())
Torben Hohnac751ef2011-01-25 15:07:35 -0800155 console_unlock();
Paul Walmsley0d8e2d02010-11-24 16:49:05 -0700156
Kevin Hilman4af40162009-02-04 10:51:40 -0800157no_sleep:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700158 if (omap2_pm_debug) {
159 unsigned long long tmp;
160
161 getnstimeofday(&ts_postidle);
162 ts_idle = timespec_sub(ts_postidle, ts_preidle);
163 tmp = timespec_to_ns(&ts_idle) * NSEC_PER_USEC;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700164 }
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800165 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700166
167 clk_enable(osc_ck);
168
169 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700170 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
171 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700172
173 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700174 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700175
176 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700177 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700178 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700179 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700180 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
181 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700182 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700183 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
184
185 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700186 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700187}
188
189static int omap2_i2c_active(void)
190{
191 u32 l;
192
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700193 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600194 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700195}
196
197static int sti_console_enabled;
198
199static int omap2_allow_mpu_retention(void)
200{
201 u32 l;
202
203 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700204 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600205 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
206 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
207 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700208 return 0;
209 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700210 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600211 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700212 return 0;
213 if (sti_console_enabled)
214 return 0;
215
216 return 1;
217}
218
219static void omap2_enter_mpu_retention(void)
220{
221 int only_idle = 0;
222 struct timespec ts_preidle, ts_postidle, ts_idle;
223
224 /* Putting MPU into the WFI state while a transfer is active
225 * seems to cause the I2C block to timeout. Why? Good question. */
226 if (omap2_i2c_active())
227 return;
228
229 /* The peripherals seem not to be able to wake up the MPU when
230 * it is in retention mode. */
231 if (omap2_allow_mpu_retention()) {
232 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700233 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
234 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
235 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700236
237 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700238 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600239 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700240 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700241 } else {
242 /* Block MPU retention */
243
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700244 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700245 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700246 only_idle = 1;
247 }
248
249 if (omap2_pm_debug) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700250 getnstimeofday(&ts_preidle);
251 }
252
253 omap2_sram_idle();
254
255 if (omap2_pm_debug) {
256 unsigned long long tmp;
257
258 getnstimeofday(&ts_postidle);
259 ts_idle = timespec_sub(ts_postidle, ts_preidle);
260 tmp = timespec_to_ns(&ts_idle) * NSEC_PER_USEC;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700261 }
262}
263
264static int omap2_can_sleep(void)
265{
266 if (omap2_fclks_active())
267 return 0;
Kevin Hilman503923e2010-10-08 10:23:32 -0700268 if (!omap_uart_can_sleep())
269 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700270 if (osc_ck->usecount > 1)
271 return 0;
272 if (omap_dma_running())
273 return 0;
274
275 return 1;
276}
277
278static void omap2_pm_idle(void)
279{
280 local_irq_disable();
281 local_fiq_disable();
282
283 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800284 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700285 goto out;
286 omap2_enter_mpu_retention();
287 goto out;
288 }
289
Jouni Hogander94434532009-02-03 15:49:04 -0800290 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700291 goto out;
292
293 omap2_enter_full_retention();
294
295out:
296 local_fiq_enable();
297 local_irq_enable();
298}
299
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000300#ifdef CONFIG_SUSPEND
Kevin Hilmane83df172010-12-08 22:40:40 +0000301static int omap2_pm_begin(suspend_state_t state)
302{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700303 disable_hlt();
Jean Pihetc1663812010-12-09 18:39:58 +0100304 suspend_state = state;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700305 return 0;
306}
307
308static int omap2_pm_suspend(void)
309{
310 u32 wken_wkup, mir1;
311
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700312 wken_wkup = omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600313 wken_wkup &= ~OMAP24XX_EN_GPT1_MASK;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700314 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315
316 /* Mask GPT1 */
317 mir1 = omap_readl(0x480fe0a4);
318 omap_writel(1 << 5, 0x480fe0ac);
319
Kevin Hilman4af40162009-02-04 10:51:40 -0800320 omap_uart_prepare_suspend();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700321 omap2_enter_full_retention();
322
323 omap_writel(mir1, 0x480fe0a4);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700324 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700325
326 return 0;
327}
328
329static int omap2_pm_enter(suspend_state_t state)
330{
331 int ret = 0;
332
333 switch (state) {
334 case PM_SUSPEND_STANDBY:
335 case PM_SUSPEND_MEM:
336 ret = omap2_pm_suspend();
337 break;
338 default:
339 ret = -EINVAL;
340 }
341
342 return ret;
343}
344
Kevin Hilmane83df172010-12-08 22:40:40 +0000345static void omap2_pm_end(void)
346{
347 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100348 enable_hlt();
Kevin Hilmane83df172010-12-08 22:40:40 +0000349}
350
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100351static const struct platform_suspend_ops omap_pm_ops = {
Kevin Hilmane83df172010-12-08 22:40:40 +0000352 .begin = omap2_pm_begin,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700353 .enter = omap2_pm_enter,
Kevin Hilmane83df172010-12-08 22:40:40 +0000354 .end = omap2_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700355 .valid = suspend_valid_only_mem,
356};
Kevin Hilman05fad3e2010-12-22 23:04:17 +0000357#else
358static const struct platform_suspend_ops __initdata omap_pm_ops;
359#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700360
Paul Walmsley369d5612010-01-26 20:13:01 -0700361/* XXX This function should be shareable between OMAP2xxx and OMAP3 */
362static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700363{
Paul Walmsley369d5612010-01-26 20:13:01 -0700364 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700365 clkdm_allow_idle(clkdm);
Paul Walmsley369d5612010-01-26 20:13:01 -0700366 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
367 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700368 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700369 return 0;
370}
371
372static void __init prcm_setup_regs(void)
373{
374 int i, num_mem_banks;
375 struct powerdomain *pwrdm;
376
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700377 /*
378 * Enable autoidle
379 * XXX This should be handled by hwmod code or PRCM init code
380 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700381 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700382 OMAP2_PRCM_SYSCONFIG_OFFSET);
383
Kevin Hilman8bd22942009-05-28 10:56:16 -0700384 /*
385 * Set CORE powerdomain memory banks to retain their contents
386 * during RETENTION
387 */
388 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
389 for (i = 0; i < num_mem_banks; i++)
390 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
391
392 /* Set CORE powerdomain's next power state to RETENTION */
393 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
394
395 /*
396 * Set MPU powerdomain's next power state to RETENTION;
397 * preserve logic state during retention
398 */
399 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
400 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
401
402 /* Force-power down DSP, GFX powerdomains */
403
404 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
405 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700406 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700407
408 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
409 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700410 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700411
Paul Walmsley51d070a2011-01-27 02:52:55 -0700412 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley369d5612010-01-26 20:13:01 -0700413 clkdm_for_each(clkdms_setup, NULL);
414 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700415
Kevin Hilman8bd22942009-05-28 10:56:16 -0700416 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
417 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700418 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
419 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700420
421 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700422 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
423 OMAP2_PRCM_VOLTSETUP_OFFSET);
424 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
425 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
426 OMAP24XX_MEMRETCTRL_MASK |
427 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
428 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
429 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700430
431 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700432 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
433 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700434}
435
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700436static int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700437{
438 u32 l;
439
440 if (!cpu_is_omap24xx())
441 return -ENODEV;
442
443 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700444 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700445 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
446
Paul Walmsley369d5612010-01-26 20:13:01 -0700447 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700448
449 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
450 if (!mpu_pwrdm)
451 pr_err("PM: mpu_pwrdm not found\n");
452
453 core_pwrdm = pwrdm_lookup("core_pwrdm");
454 if (!core_pwrdm)
455 pr_err("PM: core_pwrdm not found\n");
456
Paul Walmsley369d5612010-01-26 20:13:01 -0700457 /* Look up important clockdomains */
458
459 mpu_clkdm = clkdm_lookup("mpu_clkdm");
460 if (!mpu_clkdm)
461 pr_err("PM: mpu_clkdm not found\n");
462
463 wkup_clkdm = clkdm_lookup("wkup_clkdm");
464 if (!wkup_clkdm)
465 pr_err("PM: wkup_clkdm not found\n");
466
Kevin Hilman8bd22942009-05-28 10:56:16 -0700467 dsp_clkdm = clkdm_lookup("dsp_clkdm");
468 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700469 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700470
471 gfx_clkdm = clkdm_lookup("gfx_clkdm");
472 if (!gfx_clkdm)
473 pr_err("PM: gfx_clkdm not found\n");
474
475
476 osc_ck = clk_get(NULL, "osc_ck");
477 if (IS_ERR(osc_ck)) {
478 printk(KERN_ERR "could not get osc_ck\n");
479 return -ENODEV;
480 }
481
482 if (cpu_is_omap242x()) {
483 emul_ck = clk_get(NULL, "emul_ck");
484 if (IS_ERR(emul_ck)) {
485 printk(KERN_ERR "could not get emul_ck\n");
486 clk_put(osc_ck);
487 return -ENODEV;
488 }
489 }
490
491 prcm_setup_regs();
492
493 /* Hack to prevent MPU retention when STI console is enabled. */
494 {
495 const struct omap_sti_console_config *sti;
496
497 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
498 struct omap_sti_console_config);
499 if (sti != NULL && sti->enable)
500 sti_console_enabled = 1;
501 }
502
503 /*
504 * We copy the assembler sleep/wakeup routines to SRAM.
505 * These routines need to be in SRAM as that's the only
506 * memory the MPU can see when it wakes up.
507 */
508 if (cpu_is_omap24xx()) {
509 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
510 omap24xx_idle_loop_suspend_sz);
511
512 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
513 omap24xx_cpu_suspend_sz);
514 }
515
516 suspend_set_ops(&omap_pm_ops);
517 pm_idle = omap2_pm_idle;
518
519 return 0;
520}
521
522late_initcall(omap2_pm_init);