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-provider.h>
29 #include <linux/irq.h>
30 #include <linux/time.h>
31 #include <linux/gpio.h>
32 #include <linux/platform_data/gpio-omap.h>
34 #include <asm/fncpy.h>
36 #include <asm/mach/time.h>
37 #include <asm/mach/irq.h>
38 #include <asm/mach-types.h>
39 #include <asm/system_misc.h>
41 #include <linux/omap-dma.h>
47 #include "prm-regbits-24xx.h"
49 #include "cm-regbits-24xx.h"
54 #include "powerdomain.h"
55 #include "clockdomain.h"
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_enter_full_retention(void)
69 /* There is 1 reference hold for all children of the oscillator
70 * clock, the following will remove it. If no one else uses the
71 * oscillator itself it will be disabled if/when we enter retention
76 /* Clear old wake-up events */
77 /* REVISIT: These write to reserved bits? */
78 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
79 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
80 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD
, PM_WKST
);
82 pwrdm_set_next_pwrst(core_pwrdm
, PWRDM_POWER_RET
);
83 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
85 /* Workaround to kill USB */
86 l
= omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0
) | OMAP24XX_USBSTANDBYCTRL
;
87 omap_ctrl_writel(l
, OMAP2_CONTROL_DEVCONF0
);
89 omap2_gpio_prepare_for_idle(0);
91 /* One last check for pending IRQs to avoid extra latency due
92 * to sleeping unnecessarily. */
93 if (omap_irq_pending())
96 /* Jump to SRAM suspend code */
97 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL
),
98 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL
),
99 OMAP_SDRC_REGADDR(SDRC_POWER
));
102 omap2_gpio_resume_after_idle();
106 /* clear CORE wake-up events */
107 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
108 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
110 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
111 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD
, PM_WKST
);
113 /* MPU domain wake events */
114 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
116 omap2_prm_write_mod_reg(0x01, OCP_MOD
,
117 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
119 omap2_prm_write_mod_reg(0x20, OCP_MOD
,
120 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
122 /* Mask future PRCM-to-MPU interrupts */
123 omap2_prm_write_mod_reg(0x0, OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
125 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_ON
);
126 pwrdm_set_next_pwrst(core_pwrdm
, PWRDM_POWER_ON
);
131 static int sti_console_enabled
;
133 static int omap2_allow_mpu_retention(void)
135 if (!omap2xxx_cm_mpu_retention_allowed())
137 if (sti_console_enabled
)
143 static void omap2_enter_mpu_retention(void)
147 /* The peripherals seem not to be able to wake up the MPU when
148 * it is in retention mode. */
149 if (omap2_allow_mpu_retention()) {
150 /* REVISIT: These write to reserved bits? */
151 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
152 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
153 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD
, PM_WKST
);
155 /* Try to enter MPU retention */
156 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
159 /* Block MPU retention */
160 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_ON
);
164 asm("mcr p15, 0, %0, c7, c0, 4" : : "r" (zero
) : "memory", "cc");
166 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_ON
);
169 static int omap2_can_sleep(void)
171 if (omap2xxx_cm_fclks_active())
173 if (__clk_is_enabled(osc_ck
))
175 if (omap_dma_running())
181 static void omap2_pm_idle(void)
183 if (!omap2_can_sleep()) {
184 if (omap_irq_pending())
186 omap2_enter_mpu_retention();
190 if (omap_irq_pending())
193 omap2_enter_full_retention();
196 static void __init
prcm_setup_regs(void)
198 int i
, num_mem_banks
;
199 struct powerdomain
*pwrdm
;
203 * XXX This should be handled by hwmod code or PRCM init code
205 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK
, OCP_MOD
,
206 OMAP2_PRCM_SYSCONFIG_OFFSET
);
209 * Set CORE powerdomain memory banks to retain their contents
212 num_mem_banks
= pwrdm_get_mem_bank_count(core_pwrdm
);
213 for (i
= 0; i
< num_mem_banks
; i
++)
214 pwrdm_set_mem_retst(core_pwrdm
, i
, PWRDM_POWER_RET
);
216 pwrdm_set_logic_retst(core_pwrdm
, PWRDM_POWER_RET
);
218 pwrdm_set_logic_retst(mpu_pwrdm
, PWRDM_POWER_RET
);
220 /* Force-power down DSP, GFX powerdomains */
222 pwrdm
= clkdm_get_pwrdm(dsp_clkdm
);
223 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
225 pwrdm
= clkdm_get_pwrdm(gfx_clkdm
);
226 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
228 /* Enable hardware-supervised idle for all clkdms */
229 clkdm_for_each(omap_pm_clkdms_setup
, NULL
);
230 clkdm_add_wkdep(mpu_clkdm
, wkup_clkdm
);
232 omap_common_suspend_init(omap2_enter_full_retention
);
234 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
236 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
237 OMAP2_PRCM_CLKSSETUP_OFFSET
);
239 /* Configure automatic voltage transition */
240 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
241 OMAP2_PRCM_VOLTSETUP_OFFSET
);
242 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK
|
243 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT
) |
244 OMAP24XX_MEMRETCTRL_MASK
|
245 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT
) |
246 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT
),
247 OMAP24XX_GR_MOD
, OMAP2_PRCM_VOLTCTRL_OFFSET
);
249 /* Enable wake-up events */
250 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK
| OMAP24XX_EN_GPT1_MASK
,
254 int __init
omap2_pm_init(void)
258 printk(KERN_INFO
"Power Management for OMAP2 initializing\n");
259 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_REVISION_OFFSET
);
260 printk(KERN_INFO
"PRCM revision %d.%d\n", (l
>> 4) & 0x0f, l
& 0x0f);
262 /* Look up important powerdomains */
264 mpu_pwrdm
= pwrdm_lookup("mpu_pwrdm");
266 pr_err("PM: mpu_pwrdm not found\n");
268 core_pwrdm
= pwrdm_lookup("core_pwrdm");
270 pr_err("PM: core_pwrdm not found\n");
272 /* Look up important clockdomains */
274 mpu_clkdm
= clkdm_lookup("mpu_clkdm");
276 pr_err("PM: mpu_clkdm not found\n");
278 wkup_clkdm
= clkdm_lookup("wkup_clkdm");
280 pr_err("PM: wkup_clkdm not found\n");
282 dsp_clkdm
= clkdm_lookup("dsp_clkdm");
284 pr_err("PM: dsp_clkdm not found\n");
286 gfx_clkdm
= clkdm_lookup("gfx_clkdm");
288 pr_err("PM: gfx_clkdm not found\n");
291 osc_ck
= clk_get(NULL
, "osc_ck");
292 if (IS_ERR(osc_ck
)) {
293 printk(KERN_ERR
"could not get osc_ck\n");
297 if (cpu_is_omap242x()) {
298 emul_ck
= clk_get(NULL
, "emul_ck");
299 if (IS_ERR(emul_ck
)) {
300 printk(KERN_ERR
"could not get emul_ck\n");
309 * We copy the assembler sleep/wakeup routines to SRAM.
310 * These routines need to be in SRAM as that's the only
311 * memory the MPU can see when it wakes up after the entire
314 omap2_sram_suspend
= omap_sram_push(omap24xx_cpu_suspend
,
315 omap24xx_cpu_suspend_sz
);
317 arm_pm_idle
= omap2_pm_idle
;