2 * OMAP2 Power Management Routines
4 * Copyright (C) 2005 Texas Instruments, Inc.
5 * Copyright (C) 2006-2008 Nokia Corporation
8 * Richard Woodruff <r-woodruff2@ti.com>
11 * Amit Kucheria <amit.kucheria@nokia.com>
12 * Igor Stoppa <igor.stoppa@nokia.com>
14 * Based on pm.c for omap1
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.
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/irq.h>
30 #include <linux/time.h>
31 #include <linux/gpio.h>
33 #include <asm/mach/time.h>
34 #include <asm/mach/irq.h>
35 #include <asm/mach-types.h>
36 #include <asm/system_misc.h>
38 #include <plat/clock.h>
39 #include <plat/sram.h>
41 #include <plat/board.h>
43 #include <mach/irqs.h>
46 #include "prm2xxx_3xxx.h"
47 #include "prm-regbits-24xx.h"
48 #include "cm2xxx_3xxx.h"
49 #include "cm-regbits-24xx.h"
53 #include "powerdomain.h"
54 #include "clockdomain.h"
56 static void (*omap2_sram_idle
)(void);
57 static void (*omap2_sram_suspend
)(u32 dllctrl
, void __iomem
*sdrc_dlla_ctrl
,
58 void __iomem
*sdrc_power
);
60 static struct powerdomain
*mpu_pwrdm
, *core_pwrdm
;
61 static struct clockdomain
*dsp_clkdm
, *mpu_clkdm
, *wkup_clkdm
, *gfx_clkdm
;
63 static struct clk
*osc_ck
, *emul_ck
;
65 static int omap2_fclks_active(void)
69 f1
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
70 f2
= omap2_cm_read_mod_reg(CORE_MOD
, OMAP24XX_CM_FCLKEN2
);
72 return (f1
| f2
) ? 1 : 0;
75 static int omap2_enter_full_retention(void)
79 /* There is 1 reference hold for all children of the oscillator
80 * clock, the following will remove it. If no one else uses the
81 * oscillator itself it will be disabled if/when we enter retention
86 /* Clear old wake-up events */
87 /* REVISIT: These write to reserved bits? */
88 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
89 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
90 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD
, PM_WKST
);
93 * Set MPU powerdomain's next power state to RETENTION;
94 * preserve logic state during retention
96 pwrdm_set_logic_retst(mpu_pwrdm
, PWRDM_POWER_RET
);
97 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
99 /* Workaround to kill USB */
100 l
= omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0
) | OMAP24XX_USBSTANDBYCTRL
;
101 omap_ctrl_writel(l
, OMAP2_CONTROL_DEVCONF0
);
103 omap2_gpio_prepare_for_idle(0);
105 /* One last check for pending IRQs to avoid extra latency due
106 * to sleeping unnecessarily. */
107 if (omap_irq_pending())
110 /* Jump to SRAM suspend code */
111 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL
),
112 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL
),
113 OMAP_SDRC_REGADDR(SDRC_POWER
));
116 omap2_gpio_resume_after_idle();
120 /* clear CORE wake-up events */
121 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
122 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
124 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
125 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD
, PM_WKST
);
127 /* MPU domain wake events */
128 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
130 omap2_prm_write_mod_reg(0x01, OCP_MOD
,
131 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
133 omap2_prm_write_mod_reg(0x20, OCP_MOD
,
134 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
136 /* Mask future PRCM-to-MPU interrupts */
137 omap2_prm_write_mod_reg(0x0, OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
142 static int omap2_i2c_active(void)
146 l
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
147 return l
& (OMAP2420_EN_I2C2_MASK
| OMAP2420_EN_I2C1_MASK
);
150 static int sti_console_enabled
;
152 static int omap2_allow_mpu_retention(void)
156 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
157 l
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
158 if (l
& (OMAP2420_EN_MMC_MASK
| OMAP24XX_EN_UART2_MASK
|
159 OMAP24XX_EN_UART1_MASK
| OMAP24XX_EN_MCSPI2_MASK
|
160 OMAP24XX_EN_MCSPI1_MASK
| OMAP24XX_EN_DSS1_MASK
))
162 /* Check for UART3. */
163 l
= omap2_cm_read_mod_reg(CORE_MOD
, OMAP24XX_CM_FCLKEN2
);
164 if (l
& OMAP24XX_EN_UART3_MASK
)
166 if (sti_console_enabled
)
172 static void omap2_enter_mpu_retention(void)
174 /* Putting MPU into the WFI state while a transfer is active
175 * seems to cause the I2C block to timeout. Why? Good question. */
176 if (omap2_i2c_active())
179 /* The peripherals seem not to be able to wake up the MPU when
180 * it is in retention mode. */
181 if (omap2_allow_mpu_retention()) {
182 /* REVISIT: These write to reserved bits? */
183 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
184 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
185 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD
, PM_WKST
);
187 /* Try to enter MPU retention */
188 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT
) |
189 OMAP_LOGICRETSTATE_MASK
,
190 MPU_MOD
, OMAP2_PM_PWSTCTRL
);
192 /* Block MPU retention */
194 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK
, MPU_MOD
,
201 static int omap2_can_sleep(void)
203 if (omap2_fclks_active())
205 if (osc_ck
->usecount
> 1)
207 if (omap_dma_running())
213 static void omap2_pm_idle(void)
217 if (!omap2_can_sleep()) {
218 if (omap_irq_pending())
220 omap2_enter_mpu_retention();
224 if (omap_irq_pending())
227 omap2_enter_full_retention();
233 static void __init
prcm_setup_regs(void)
235 int i
, num_mem_banks
;
236 struct powerdomain
*pwrdm
;
240 * XXX This should be handled by hwmod code or PRCM init code
242 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK
, OCP_MOD
,
243 OMAP2_PRCM_SYSCONFIG_OFFSET
);
246 * Set CORE powerdomain memory banks to retain their contents
249 num_mem_banks
= pwrdm_get_mem_bank_count(core_pwrdm
);
250 for (i
= 0; i
< num_mem_banks
; i
++)
251 pwrdm_set_mem_retst(core_pwrdm
, i
, PWRDM_POWER_RET
);
253 /* Set CORE powerdomain's next power state to RETENTION */
254 pwrdm_set_next_pwrst(core_pwrdm
, PWRDM_POWER_RET
);
257 * Set MPU powerdomain's next power state to RETENTION;
258 * preserve logic state during retention
260 pwrdm_set_logic_retst(mpu_pwrdm
, PWRDM_POWER_RET
);
261 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
263 /* Force-power down DSP, GFX powerdomains */
265 pwrdm
= clkdm_get_pwrdm(dsp_clkdm
);
266 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
267 clkdm_sleep(dsp_clkdm
);
269 pwrdm
= clkdm_get_pwrdm(gfx_clkdm
);
270 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
271 clkdm_sleep(gfx_clkdm
);
273 /* Enable hardware-supervised idle for all clkdms */
274 clkdm_for_each(omap_pm_clkdms_setup
, NULL
);
275 clkdm_add_wkdep(mpu_clkdm
, wkup_clkdm
);
277 #ifdef CONFIG_SUSPEND
278 omap_pm_suspend
= omap2_enter_full_retention
;
281 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
283 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
284 OMAP2_PRCM_CLKSSETUP_OFFSET
);
286 /* Configure automatic voltage transition */
287 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
288 OMAP2_PRCM_VOLTSETUP_OFFSET
);
289 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK
|
290 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT
) |
291 OMAP24XX_MEMRETCTRL_MASK
|
292 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT
) |
293 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT
),
294 OMAP24XX_GR_MOD
, OMAP2_PRCM_VOLTCTRL_OFFSET
);
296 /* Enable wake-up events */
297 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK
| OMAP24XX_EN_GPT1_MASK
,
301 int __init
omap2_pm_init(void)
305 printk(KERN_INFO
"Power Management for OMAP2 initializing\n");
306 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_REVISION_OFFSET
);
307 printk(KERN_INFO
"PRCM revision %d.%d\n", (l
>> 4) & 0x0f, l
& 0x0f);
309 /* Look up important powerdomains */
311 mpu_pwrdm
= pwrdm_lookup("mpu_pwrdm");
313 pr_err("PM: mpu_pwrdm not found\n");
315 core_pwrdm
= pwrdm_lookup("core_pwrdm");
317 pr_err("PM: core_pwrdm not found\n");
319 /* Look up important clockdomains */
321 mpu_clkdm
= clkdm_lookup("mpu_clkdm");
323 pr_err("PM: mpu_clkdm not found\n");
325 wkup_clkdm
= clkdm_lookup("wkup_clkdm");
327 pr_err("PM: wkup_clkdm not found\n");
329 dsp_clkdm
= clkdm_lookup("dsp_clkdm");
331 pr_err("PM: dsp_clkdm not found\n");
333 gfx_clkdm
= clkdm_lookup("gfx_clkdm");
335 pr_err("PM: gfx_clkdm not found\n");
338 osc_ck
= clk_get(NULL
, "osc_ck");
339 if (IS_ERR(osc_ck
)) {
340 printk(KERN_ERR
"could not get osc_ck\n");
344 if (cpu_is_omap242x()) {
345 emul_ck
= clk_get(NULL
, "emul_ck");
346 if (IS_ERR(emul_ck
)) {
347 printk(KERN_ERR
"could not get emul_ck\n");
355 /* Hack to prevent MPU retention when STI console is enabled. */
357 const struct omap_sti_console_config
*sti
;
359 sti
= omap_get_config(OMAP_TAG_STI_CONSOLE
,
360 struct omap_sti_console_config
);
361 if (sti
!= NULL
&& sti
->enable
)
362 sti_console_enabled
= 1;
366 * We copy the assembler sleep/wakeup routines to SRAM.
367 * These routines need to be in SRAM as that's the only
368 * memory the MPU can see when it wakes up.
370 omap2_sram_idle
= omap_sram_push(omap24xx_idle_loop_suspend
,
371 omap24xx_idle_loop_suspend_sz
);
373 omap2_sram_suspend
= omap_sram_push(omap24xx_cpu_suspend
,
374 omap24xx_cpu_suspend_sz
);
376 arm_pm_idle
= omap2_pm_idle
;