blob: 02dca24ec0ab603ba4339dc559e826b8c156aadc [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>
Kevin Hilman8bd22942009-05-28 10:56:16 -070029#include <linux/irq.h>
30#include <linux/time.h>
31#include <linux/gpio.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070032#include <linux/platform_data/gpio-omap.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070033
34#include <asm/mach/time.h>
35#include <asm/mach/irq.h>
36#include <asm/mach-types.h>
David Howells9f97da72012-03-28 18:30:01 +010037#include <asm/system_misc.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070038
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>
Kevin Hilman8bd22942009-05-28 10:56:16 -070042
Tony Lindgren4e653312011-11-10 22:45:17 +010043#include "common.h"
Paul Walmsley139563a2012-10-21 01:01:10 -060044#include "prm2xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070045#include "prm-regbits-24xx.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -060046#include "cm2xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070047#include "cm-regbits-24xx.h"
48#include "sdrc.h"
49#include "pm.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060050#include "control.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070051#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070052#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070053
54static void (*omap2_sram_idle)(void);
55static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
56 void __iomem *sdrc_power);
57
Paul Walmsley369d5612010-01-26 20:13:01 -070058static struct powerdomain *mpu_pwrdm, *core_pwrdm;
59static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070060
61static struct clk *osc_ck, *emul_ck;
62
63static int omap2_fclks_active(void)
64{
65 u32 f1, f2;
66
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070067 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
68 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Kevin Hilman4af40162009-02-04 10:51:40 -080069
Paul Walmsley1e056dd2012-02-09 18:24:03 -070070 return (f1 | f2) ? 1 : 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -070071}
72
Paul Walmsley14164082012-02-02 02:30:50 -070073static int omap2_enter_full_retention(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -070074{
75 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070076
77 /* There is 1 reference hold for all children of the oscillator
78 * clock, the following will remove it. If no one else uses the
79 * oscillator itself it will be disabled if/when we enter retention
80 * mode.
81 */
82 clk_disable(osc_ck);
83
84 /* Clear old wake-up events */
85 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070086 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
87 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
88 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -070089
90 /*
91 * Set MPU powerdomain's next power state to RETENTION;
92 * preserve logic state during retention
93 */
94 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
95 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
96
97 /* Workaround to kill USB */
98 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
99 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
100
Paul Walmsley72e06d02010-12-21 21:05:16 -0700101 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700102
Kevin Hilman8bd22942009-05-28 10:56:16 -0700103 /* One last check for pending IRQs to avoid extra latency due
104 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800105 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700106 goto no_sleep;
107
108 /* Jump to SRAM suspend code */
109 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
110 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
111 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700112
Kevin Hilman4af40162009-02-04 10:51:40 -0800113no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800114 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700115
116 clk_enable(osc_ck);
117
118 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700119 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
120 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700121
122 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700123 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700124
125 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700126 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700127 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700128 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700129 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
130 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700131 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700132 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
133
134 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700135 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Paul Walmsley14164082012-02-02 02:30:50 -0700136
137 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700138}
139
140static int omap2_i2c_active(void)
141{
142 u32 l;
143
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700144 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600145 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700146}
147
148static int sti_console_enabled;
149
150static int omap2_allow_mpu_retention(void)
151{
152 u32 l;
153
154 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700155 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600156 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
157 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
158 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700159 return 0;
160 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700161 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600162 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700163 return 0;
164 if (sti_console_enabled)
165 return 0;
166
167 return 1;
168}
169
170static void omap2_enter_mpu_retention(void)
171{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700172 /* Putting MPU into the WFI state while a transfer is active
173 * seems to cause the I2C block to timeout. Why? Good question. */
174 if (omap2_i2c_active())
175 return;
176
177 /* The peripherals seem not to be able to wake up the MPU when
178 * it is in retention mode. */
179 if (omap2_allow_mpu_retention()) {
180 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700181 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
182 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
183 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700184
185 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700186 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600187 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700188 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700189 } else {
190 /* Block MPU retention */
191
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700192 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700193 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700194 }
195
Kevin Hilman8bd22942009-05-28 10:56:16 -0700196 omap2_sram_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700197}
198
199static int omap2_can_sleep(void)
200{
201 if (omap2_fclks_active())
202 return 0;
203 if (osc_ck->usecount > 1)
204 return 0;
205 if (omap_dma_running())
206 return 0;
207
208 return 1;
209}
210
211static void omap2_pm_idle(void)
212{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700213 local_fiq_disable();
214
215 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800216 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700217 goto out;
218 omap2_enter_mpu_retention();
219 goto out;
220 }
221
Jouni Hogander94434532009-02-03 15:49:04 -0800222 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700223 goto out;
224
225 omap2_enter_full_retention();
226
227out:
228 local_fiq_enable();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700229}
230
Kevin Hilman8bd22942009-05-28 10:56:16 -0700231static void __init prcm_setup_regs(void)
232{
233 int i, num_mem_banks;
234 struct powerdomain *pwrdm;
235
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700236 /*
237 * Enable autoidle
238 * XXX This should be handled by hwmod code or PRCM init code
239 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700240 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700241 OMAP2_PRCM_SYSCONFIG_OFFSET);
242
Kevin Hilman8bd22942009-05-28 10:56:16 -0700243 /*
244 * Set CORE powerdomain memory banks to retain their contents
245 * during RETENTION
246 */
247 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
248 for (i = 0; i < num_mem_banks; i++)
249 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
250
251 /* Set CORE powerdomain's next power state to RETENTION */
252 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
253
254 /*
255 * Set MPU powerdomain's next power state to RETENTION;
256 * preserve logic state during retention
257 */
258 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
259 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
260
261 /* Force-power down DSP, GFX powerdomains */
262
263 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
264 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700265 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700266
267 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
268 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700269 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700270
Paul Walmsley51d070a2011-01-27 02:52:55 -0700271 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley92206fd2012-02-02 02:38:50 -0700272 clkdm_for_each(omap_pm_clkdms_setup, NULL);
Paul Walmsley369d5612010-01-26 20:13:01 -0700273 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700274
Paul Walmsley14164082012-02-02 02:30:50 -0700275#ifdef CONFIG_SUSPEND
276 omap_pm_suspend = omap2_enter_full_retention;
277#endif
278
Kevin Hilman8bd22942009-05-28 10:56:16 -0700279 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
280 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700281 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
282 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700283
284 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700285 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
286 OMAP2_PRCM_VOLTSETUP_OFFSET);
287 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
288 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
289 OMAP24XX_MEMRETCTRL_MASK |
290 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
291 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
292 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700293
294 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700295 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
296 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700297}
298
Shawn Guobbd707a2012-04-26 16:06:50 +0800299int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700300{
301 u32 l;
302
Kevin Hilman8bd22942009-05-28 10:56:16 -0700303 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700304 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700305 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
306
Paul Walmsley369d5612010-01-26 20:13:01 -0700307 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700308
309 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
310 if (!mpu_pwrdm)
311 pr_err("PM: mpu_pwrdm not found\n");
312
313 core_pwrdm = pwrdm_lookup("core_pwrdm");
314 if (!core_pwrdm)
315 pr_err("PM: core_pwrdm not found\n");
316
Paul Walmsley369d5612010-01-26 20:13:01 -0700317 /* Look up important clockdomains */
318
319 mpu_clkdm = clkdm_lookup("mpu_clkdm");
320 if (!mpu_clkdm)
321 pr_err("PM: mpu_clkdm not found\n");
322
323 wkup_clkdm = clkdm_lookup("wkup_clkdm");
324 if (!wkup_clkdm)
325 pr_err("PM: wkup_clkdm not found\n");
326
Kevin Hilman8bd22942009-05-28 10:56:16 -0700327 dsp_clkdm = clkdm_lookup("dsp_clkdm");
328 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700329 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700330
331 gfx_clkdm = clkdm_lookup("gfx_clkdm");
332 if (!gfx_clkdm)
333 pr_err("PM: gfx_clkdm not found\n");
334
335
336 osc_ck = clk_get(NULL, "osc_ck");
337 if (IS_ERR(osc_ck)) {
338 printk(KERN_ERR "could not get osc_ck\n");
339 return -ENODEV;
340 }
341
342 if (cpu_is_omap242x()) {
343 emul_ck = clk_get(NULL, "emul_ck");
344 if (IS_ERR(emul_ck)) {
345 printk(KERN_ERR "could not get emul_ck\n");
346 clk_put(osc_ck);
347 return -ENODEV;
348 }
349 }
350
351 prcm_setup_regs();
352
Kevin Hilman8bd22942009-05-28 10:56:16 -0700353 /*
354 * We copy the assembler sleep/wakeup routines to SRAM.
355 * These routines need to be in SRAM as that's the only
356 * memory the MPU can see when it wakes up.
357 */
Shawn Guobbd707a2012-04-26 16:06:50 +0800358 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
359 omap24xx_idle_loop_suspend_sz);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700360
Shawn Guobbd707a2012-04-26 16:06:50 +0800361 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
362 omap24xx_cpu_suspend_sz);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700363
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500364 arm_pm_idle = omap2_pm_idle;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700365
366 return 0;
367}