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>
30 #include <linux/irq.h>
31 #include <linux/time.h>
32 #include <linux/gpio.h>
33 #include <linux/console.h>
35 #include <asm/mach/time.h>
36 #include <asm/mach/irq.h>
37 #include <asm/mach-types.h>
39 #include <mach/irqs.h>
40 #include <plat/clock.h>
41 #include <plat/sram.h>
43 #include <plat/board.h>
45 #include "prm2xxx_3xxx.h"
46 #include "prm-regbits-24xx.h"
47 #include "cm2xxx_3xxx.h"
48 #include "cm-regbits-24xx.h"
53 #include "powerdomain.h"
54 #include "clockdomain.h"
57 static suspend_state_t suspend_state
= PM_SUSPEND_ON
;
58 static inline bool is_suspending(void)
60 return (suspend_state
!= PM_SUSPEND_ON
);
63 static inline bool is_suspending(void)
69 static void (*omap2_sram_idle
)(void);
70 static void (*omap2_sram_suspend
)(u32 dllctrl
, void __iomem
*sdrc_dlla_ctrl
,
71 void __iomem
*sdrc_power
);
73 static struct powerdomain
*mpu_pwrdm
, *core_pwrdm
;
74 static struct clockdomain
*dsp_clkdm
, *mpu_clkdm
, *wkup_clkdm
, *gfx_clkdm
;
76 static struct clk
*osc_ck
, *emul_ck
;
78 static int omap2_fclks_active(void)
82 f1
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
83 f2
= omap2_cm_read_mod_reg(CORE_MOD
, OMAP24XX_CM_FCLKEN2
);
85 /* Ignore UART clocks. These are handled by UART core (serial.c) */
86 f1
&= ~(OMAP24XX_EN_UART1_MASK
| OMAP24XX_EN_UART2_MASK
);
87 f2
&= ~OMAP24XX_EN_UART3_MASK
;
94 static void omap2_enter_full_retention(void)
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
105 /* Clear old wake-up events */
106 /* REVISIT: These write to reserved bits? */
107 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
);
112 * Set MPU powerdomain's next power state to RETENTION;
113 * preserve logic state during retention
115 pwrdm_set_logic_retst(mpu_pwrdm
, PWRDM_POWER_RET
);
116 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
118 /* Workaround to kill USB */
119 l
= omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0
) | OMAP24XX_USBSTANDBYCTRL
;
120 omap_ctrl_writel(l
, OMAP2_CONTROL_DEVCONF0
);
122 omap2_gpio_prepare_for_idle(0);
124 /* One last check for pending IRQs to avoid extra latency due
125 * to sleeping unnecessarily. */
126 if (omap_irq_pending())
129 /* Block console output in case it is on one of the OMAP UARTs */
130 if (!is_suspending())
131 if (!console_trylock())
134 omap_uart_prepare_idle(0);
135 omap_uart_prepare_idle(1);
136 omap_uart_prepare_idle(2);
138 /* Jump to SRAM suspend code */
139 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL
),
140 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL
),
141 OMAP_SDRC_REGADDR(SDRC_POWER
));
143 omap_uart_resume_idle(2);
144 omap_uart_resume_idle(1);
145 omap_uart_resume_idle(0);
147 if (!is_suspending())
151 omap2_gpio_resume_after_idle();
155 /* clear CORE wake-up events */
156 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
157 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
159 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
160 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD
, PM_WKST
);
162 /* MPU domain wake events */
163 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
165 omap2_prm_write_mod_reg(0x01, OCP_MOD
,
166 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
168 omap2_prm_write_mod_reg(0x20, OCP_MOD
,
169 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
171 /* Mask future PRCM-to-MPU interrupts */
172 omap2_prm_write_mod_reg(0x0, OCP_MOD
, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET
);
175 static int omap2_i2c_active(void)
179 l
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
180 return l
& (OMAP2420_EN_I2C2_MASK
| OMAP2420_EN_I2C1_MASK
);
183 static int sti_console_enabled
;
185 static int omap2_allow_mpu_retention(void)
189 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
190 l
= omap2_cm_read_mod_reg(CORE_MOD
, CM_FCLKEN1
);
191 if (l
& (OMAP2420_EN_MMC_MASK
| OMAP24XX_EN_UART2_MASK
|
192 OMAP24XX_EN_UART1_MASK
| OMAP24XX_EN_MCSPI2_MASK
|
193 OMAP24XX_EN_MCSPI1_MASK
| OMAP24XX_EN_DSS1_MASK
))
195 /* Check for UART3. */
196 l
= omap2_cm_read_mod_reg(CORE_MOD
, OMAP24XX_CM_FCLKEN2
);
197 if (l
& OMAP24XX_EN_UART3_MASK
)
199 if (sti_console_enabled
)
205 static void omap2_enter_mpu_retention(void)
209 /* Putting MPU into the WFI state while a transfer is active
210 * seems to cause the I2C block to timeout. Why? Good question. */
211 if (omap2_i2c_active())
214 /* The peripherals seem not to be able to wake up the MPU when
215 * it is in retention mode. */
216 if (omap2_allow_mpu_retention()) {
217 /* REVISIT: These write to reserved bits? */
218 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, PM_WKST1
);
219 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD
, OMAP24XX_PM_WKST2
);
220 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD
, PM_WKST
);
222 /* Try to enter MPU retention */
223 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT
) |
224 OMAP_LOGICRETSTATE_MASK
,
225 MPU_MOD
, OMAP2_PM_PWSTCTRL
);
227 /* Block MPU retention */
229 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK
, MPU_MOD
,
237 static int omap2_can_sleep(void)
239 if (omap2_fclks_active())
241 if (!omap_uart_can_sleep())
243 if (osc_ck
->usecount
> 1)
245 if (omap_dma_running())
251 static void omap2_pm_idle(void)
256 if (!omap2_can_sleep()) {
257 if (omap_irq_pending())
259 omap2_enter_mpu_retention();
263 if (omap_irq_pending())
266 omap2_enter_full_retention();
273 #ifdef CONFIG_SUSPEND
274 static int omap2_pm_begin(suspend_state_t state
)
277 suspend_state
= state
;
281 static int omap2_pm_suspend(void)
285 wken_wkup
= omap2_prm_read_mod_reg(WKUP_MOD
, PM_WKEN
);
286 wken_wkup
&= ~OMAP24XX_EN_GPT1_MASK
;
287 omap2_prm_write_mod_reg(wken_wkup
, WKUP_MOD
, PM_WKEN
);
290 mir1
= omap_readl(0x480fe0a4);
291 omap_writel(1 << 5, 0x480fe0ac);
293 omap_uart_prepare_suspend();
294 omap2_enter_full_retention();
296 omap_writel(mir1
, 0x480fe0a4);
297 omap2_prm_write_mod_reg(wken_wkup
, WKUP_MOD
, PM_WKEN
);
302 static int omap2_pm_enter(suspend_state_t state
)
307 case PM_SUSPEND_STANDBY
:
309 ret
= omap2_pm_suspend();
318 static void omap2_pm_end(void)
320 suspend_state
= PM_SUSPEND_ON
;
324 static const struct platform_suspend_ops omap_pm_ops
= {
325 .begin
= omap2_pm_begin
,
326 .enter
= omap2_pm_enter
,
328 .valid
= suspend_valid_only_mem
,
331 static const struct platform_suspend_ops __initdata omap_pm_ops
;
332 #endif /* CONFIG_SUSPEND */
334 /* XXX This function should be shareable between OMAP2xxx and OMAP3 */
335 static int __init
clkdms_setup(struct clockdomain
*clkdm
, void *unused
)
337 if (clkdm
->flags
& CLKDM_CAN_ENABLE_AUTO
)
338 clkdm_allow_idle(clkdm
);
339 else if (clkdm
->flags
& CLKDM_CAN_FORCE_SLEEP
&&
340 atomic_read(&clkdm
->usecount
) == 0)
345 static void __init
prcm_setup_regs(void)
347 int i
, num_mem_banks
;
348 struct powerdomain
*pwrdm
;
352 * XXX This should be handled by hwmod code or PRCM init code
354 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK
, OCP_MOD
,
355 OMAP2_PRCM_SYSCONFIG_OFFSET
);
358 * Set CORE powerdomain memory banks to retain their contents
361 num_mem_banks
= pwrdm_get_mem_bank_count(core_pwrdm
);
362 for (i
= 0; i
< num_mem_banks
; i
++)
363 pwrdm_set_mem_retst(core_pwrdm
, i
, PWRDM_POWER_RET
);
365 /* Set CORE powerdomain's next power state to RETENTION */
366 pwrdm_set_next_pwrst(core_pwrdm
, PWRDM_POWER_RET
);
369 * Set MPU powerdomain's next power state to RETENTION;
370 * preserve logic state during retention
372 pwrdm_set_logic_retst(mpu_pwrdm
, PWRDM_POWER_RET
);
373 pwrdm_set_next_pwrst(mpu_pwrdm
, PWRDM_POWER_RET
);
375 /* Force-power down DSP, GFX powerdomains */
377 pwrdm
= clkdm_get_pwrdm(dsp_clkdm
);
378 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
379 clkdm_sleep(dsp_clkdm
);
381 pwrdm
= clkdm_get_pwrdm(gfx_clkdm
);
382 pwrdm_set_next_pwrst(pwrdm
, PWRDM_POWER_OFF
);
383 clkdm_sleep(gfx_clkdm
);
385 /* Enable hardware-supervised idle for all clkdms */
386 clkdm_for_each(clkdms_setup
, NULL
);
387 clkdm_add_wkdep(mpu_clkdm
, wkup_clkdm
);
389 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
391 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
392 OMAP2_PRCM_CLKSSETUP_OFFSET
);
394 /* Configure automatic voltage transition */
395 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT
, OMAP24XX_GR_MOD
,
396 OMAP2_PRCM_VOLTSETUP_OFFSET
);
397 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK
|
398 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT
) |
399 OMAP24XX_MEMRETCTRL_MASK
|
400 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT
) |
401 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT
),
402 OMAP24XX_GR_MOD
, OMAP2_PRCM_VOLTCTRL_OFFSET
);
404 /* Enable wake-up events */
405 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK
| OMAP24XX_EN_GPT1_MASK
,
409 static int __init
omap2_pm_init(void)
413 if (!cpu_is_omap24xx())
416 printk(KERN_INFO
"Power Management for OMAP2 initializing\n");
417 l
= omap2_prm_read_mod_reg(OCP_MOD
, OMAP2_PRCM_REVISION_OFFSET
);
418 printk(KERN_INFO
"PRCM revision %d.%d\n", (l
>> 4) & 0x0f, l
& 0x0f);
420 /* Look up important powerdomains */
422 mpu_pwrdm
= pwrdm_lookup("mpu_pwrdm");
424 pr_err("PM: mpu_pwrdm not found\n");
426 core_pwrdm
= pwrdm_lookup("core_pwrdm");
428 pr_err("PM: core_pwrdm not found\n");
430 /* Look up important clockdomains */
432 mpu_clkdm
= clkdm_lookup("mpu_clkdm");
434 pr_err("PM: mpu_clkdm not found\n");
436 wkup_clkdm
= clkdm_lookup("wkup_clkdm");
438 pr_err("PM: wkup_clkdm not found\n");
440 dsp_clkdm
= clkdm_lookup("dsp_clkdm");
442 pr_err("PM: dsp_clkdm not found\n");
444 gfx_clkdm
= clkdm_lookup("gfx_clkdm");
446 pr_err("PM: gfx_clkdm not found\n");
449 osc_ck
= clk_get(NULL
, "osc_ck");
450 if (IS_ERR(osc_ck
)) {
451 printk(KERN_ERR
"could not get osc_ck\n");
455 if (cpu_is_omap242x()) {
456 emul_ck
= clk_get(NULL
, "emul_ck");
457 if (IS_ERR(emul_ck
)) {
458 printk(KERN_ERR
"could not get emul_ck\n");
466 /* Hack to prevent MPU retention when STI console is enabled. */
468 const struct omap_sti_console_config
*sti
;
470 sti
= omap_get_config(OMAP_TAG_STI_CONSOLE
,
471 struct omap_sti_console_config
);
472 if (sti
!= NULL
&& sti
->enable
)
473 sti_console_enabled
= 1;
477 * We copy the assembler sleep/wakeup routines to SRAM.
478 * These routines need to be in SRAM as that's the only
479 * memory the MPU can see when it wakes up.
481 if (cpu_is_omap24xx()) {
482 omap2_sram_idle
= omap_sram_push(omap24xx_idle_loop_suspend
,
483 omap24xx_idle_loop_suspend_sz
);
485 omap2_sram_suspend
= omap_sram_push(omap24xx_cpu_suspend
,
486 omap24xx_cpu_suspend_sz
);
489 suspend_set_ops(&omap_pm_ops
);
490 pm_idle
= omap2_pm_idle
;
495 late_initcall(omap2_pm_init
);