blob: 5ca45ca76946fa777a046e45443b74395d4e0238 [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>
32
33#include <asm/mach/time.h>
34#include <asm/mach/irq.h>
35#include <asm/mach-types.h>
36
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/clock.h>
38#include <plat/sram.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/dma.h>
40#include <plat/board.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070041
Tony Lindgrenee0839c2012-02-24 10:34:35 -080042#include <mach/irqs.h>
43
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
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"
Paul Walmsley72e06d02010-12-21 21:05:16 -070052#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070053#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070054
55static void (*omap2_sram_idle)(void);
56static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
57 void __iomem *sdrc_power);
58
Paul Walmsley369d5612010-01-26 20:13:01 -070059static struct powerdomain *mpu_pwrdm, *core_pwrdm;
60static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070061
62static struct clk *osc_ck, *emul_ck;
63
64static int omap2_fclks_active(void)
65{
66 u32 f1, f2;
67
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070068 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
69 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Kevin Hilman4af40162009-02-04 10:51:40 -080070
Paul Walmsley1e056dd2012-02-09 18:24:03 -070071 return (f1 | f2) ? 1 : 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -070072}
73
Paul Walmsley14164082012-02-02 02:30:50 -070074static int omap2_enter_full_retention(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -070075{
76 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070077
78 /* There is 1 reference hold for all children of the oscillator
79 * clock, the following will remove it. If no one else uses the
80 * oscillator itself it will be disabled if/when we enter retention
81 * mode.
82 */
83 clk_disable(osc_ck);
84
85 /* Clear old wake-up events */
86 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070087 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
88 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
89 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -070090
91 /*
92 * Set MPU powerdomain's next power state to RETENTION;
93 * preserve logic state during retention
94 */
95 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
96 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
97
98 /* Workaround to kill USB */
99 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
100 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
101
Paul Walmsley72e06d02010-12-21 21:05:16 -0700102 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700103
Kevin Hilman8bd22942009-05-28 10:56:16 -0700104 /* One last check for pending IRQs to avoid extra latency due
105 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -0800106 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700107 goto no_sleep;
108
109 /* Jump to SRAM suspend code */
110 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
111 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
112 OMAP_SDRC_REGADDR(SDRC_POWER));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700113
Kevin Hilman4af40162009-02-04 10:51:40 -0800114no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800115 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700116
117 clk_enable(osc_ck);
118
119 /* clear CORE wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700120 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
121 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700122
123 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700124 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700125
126 /* MPU domain wake events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700127 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700128 if (l & 0x01)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700129 omap2_prm_write_mod_reg(0x01, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700130 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
131 if (l & 0x20)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700132 omap2_prm_write_mod_reg(0x20, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700133 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
134
135 /* Mask future PRCM-to-MPU interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700136 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
Paul Walmsley14164082012-02-02 02:30:50 -0700137
138 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700139}
140
141static int omap2_i2c_active(void)
142{
143 u32 l;
144
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700145 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsleyf38ca102010-05-20 12:31:04 -0600146 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700147}
148
149static int sti_console_enabled;
150
151static int omap2_allow_mpu_retention(void)
152{
153 u32 l;
154
155 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700156 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600157 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
158 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
159 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700160 return 0;
161 /* Check for UART3. */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700162 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600163 if (l & OMAP24XX_EN_UART3_MASK)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700164 return 0;
165 if (sti_console_enabled)
166 return 0;
167
168 return 1;
169}
170
171static void omap2_enter_mpu_retention(void)
172{
173 int only_idle = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700174
175 /* Putting MPU into the WFI state while a transfer is active
176 * seems to cause the I2C block to timeout. Why? Good question. */
177 if (omap2_i2c_active())
178 return;
179
180 /* The peripherals seem not to be able to wake up the MPU when
181 * it is in retention mode. */
182 if (omap2_allow_mpu_retention()) {
183 /* REVISIT: These write to reserved bits? */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700184 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
185 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
186 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700187
188 /* Try to enter MPU retention */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700189 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600190 OMAP_LOGICRETSTATE_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700191 MPU_MOD, OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700192 } else {
193 /* Block MPU retention */
194
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700195 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
Abhijit Pagare37903002010-01-26 20:12:51 -0700196 OMAP2_PM_PWSTCTRL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700197 only_idle = 1;
198 }
199
Kevin Hilman8bd22942009-05-28 10:56:16 -0700200 omap2_sram_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700201}
202
203static int omap2_can_sleep(void)
204{
205 if (omap2_fclks_active())
206 return 0;
207 if (osc_ck->usecount > 1)
208 return 0;
209 if (omap_dma_running())
210 return 0;
211
212 return 1;
213}
214
215static void omap2_pm_idle(void)
216{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700217 local_fiq_disable();
218
219 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800220 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700221 goto out;
222 omap2_enter_mpu_retention();
223 goto out;
224 }
225
Jouni Hogander94434532009-02-03 15:49:04 -0800226 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700227 goto out;
228
229 omap2_enter_full_retention();
230
231out:
232 local_fiq_enable();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700233}
234
Kevin Hilman8bd22942009-05-28 10:56:16 -0700235static void __init prcm_setup_regs(void)
236{
237 int i, num_mem_banks;
238 struct powerdomain *pwrdm;
239
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700240 /*
241 * Enable autoidle
242 * XXX This should be handled by hwmod code or PRCM init code
243 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700244 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700245 OMAP2_PRCM_SYSCONFIG_OFFSET);
246
Kevin Hilman8bd22942009-05-28 10:56:16 -0700247 /*
248 * Set CORE powerdomain memory banks to retain their contents
249 * during RETENTION
250 */
251 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
252 for (i = 0; i < num_mem_banks; i++)
253 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
254
255 /* Set CORE powerdomain's next power state to RETENTION */
256 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
257
258 /*
259 * Set MPU powerdomain's next power state to RETENTION;
260 * preserve logic state during retention
261 */
262 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
263 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
264
265 /* Force-power down DSP, GFX powerdomains */
266
267 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
268 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700269 clkdm_sleep(dsp_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700270
271 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
272 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700273 clkdm_sleep(gfx_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700274
Paul Walmsley51d070a2011-01-27 02:52:55 -0700275 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley92206fd2012-02-02 02:38:50 -0700276 clkdm_for_each(omap_pm_clkdms_setup, NULL);
Paul Walmsley369d5612010-01-26 20:13:01 -0700277 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700278
Paul Walmsley14164082012-02-02 02:30:50 -0700279#ifdef CONFIG_SUSPEND
280 omap_pm_suspend = omap2_enter_full_retention;
281#endif
282
Kevin Hilman8bd22942009-05-28 10:56:16 -0700283 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
284 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700285 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
286 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700287
288 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700289 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
290 OMAP2_PRCM_VOLTSETUP_OFFSET);
291 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
292 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
293 OMAP24XX_MEMRETCTRL_MASK |
294 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
295 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
296 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700297
298 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700299 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
300 WKUP_MOD, PM_WKEN);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700301}
302
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700303static int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700304{
305 u32 l;
306
307 if (!cpu_is_omap24xx())
308 return -ENODEV;
309
310 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700311 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700312 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
313
Paul Walmsley369d5612010-01-26 20:13:01 -0700314 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315
316 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
317 if (!mpu_pwrdm)
318 pr_err("PM: mpu_pwrdm not found\n");
319
320 core_pwrdm = pwrdm_lookup("core_pwrdm");
321 if (!core_pwrdm)
322 pr_err("PM: core_pwrdm not found\n");
323
Paul Walmsley369d5612010-01-26 20:13:01 -0700324 /* Look up important clockdomains */
325
326 mpu_clkdm = clkdm_lookup("mpu_clkdm");
327 if (!mpu_clkdm)
328 pr_err("PM: mpu_clkdm not found\n");
329
330 wkup_clkdm = clkdm_lookup("wkup_clkdm");
331 if (!wkup_clkdm)
332 pr_err("PM: wkup_clkdm not found\n");
333
Kevin Hilman8bd22942009-05-28 10:56:16 -0700334 dsp_clkdm = clkdm_lookup("dsp_clkdm");
335 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700336 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700337
338 gfx_clkdm = clkdm_lookup("gfx_clkdm");
339 if (!gfx_clkdm)
340 pr_err("PM: gfx_clkdm not found\n");
341
342
343 osc_ck = clk_get(NULL, "osc_ck");
344 if (IS_ERR(osc_ck)) {
345 printk(KERN_ERR "could not get osc_ck\n");
346 return -ENODEV;
347 }
348
349 if (cpu_is_omap242x()) {
350 emul_ck = clk_get(NULL, "emul_ck");
351 if (IS_ERR(emul_ck)) {
352 printk(KERN_ERR "could not get emul_ck\n");
353 clk_put(osc_ck);
354 return -ENODEV;
355 }
356 }
357
358 prcm_setup_regs();
359
360 /* Hack to prevent MPU retention when STI console is enabled. */
361 {
362 const struct omap_sti_console_config *sti;
363
364 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
365 struct omap_sti_console_config);
366 if (sti != NULL && sti->enable)
367 sti_console_enabled = 1;
368 }
369
370 /*
371 * We copy the assembler sleep/wakeup routines to SRAM.
372 * These routines need to be in SRAM as that's the only
373 * memory the MPU can see when it wakes up.
374 */
375 if (cpu_is_omap24xx()) {
376 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
377 omap24xx_idle_loop_suspend_sz);
378
379 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
380 omap24xx_cpu_suspend_sz);
381 }
382
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500383 arm_pm_idle = omap2_pm_idle;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700384
385 return 0;
386}
387
388late_initcall(omap2_pm_init);