blob: fe01c5a03aa242ccf3abd62bdd8d65e84ae29a27 [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>
Rajendra Nayaked1ebc42012-04-27 15:59:32 +053028#include <linux/clk-provider.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
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070034#include <asm/fncpy.h>
35
Kevin Hilman8bd22942009-05-28 10:56:16 -070036#include <asm/mach/time.h>
37#include <asm/mach/irq.h>
38#include <asm/mach-types.h>
David Howells9f97da72012-03-28 18:30:01 +010039#include <asm/system_misc.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070040
Tony Lindgren45c3eb72012-11-30 08:41:50 -080041#include <linux/omap-dma.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070042
Tony Lindgrene4c060d2012-10-05 13:25:59 -070043#include "soc.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
Paul Walmsleya135eaa2012-09-27 10:33:34 -060045#include "clock.h"
Paul Walmsley139563a2012-10-21 01:01:10 -060046#include "prm2xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070047#include "prm-regbits-24xx.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -060048#include "cm2xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070049#include "cm-regbits-24xx.h"
50#include "sdrc.h"
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070051#include "sram.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070052#include "pm.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060053#include "control.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070054#include "powerdomain.h"
Paul Walmsley1540f2142010-12-21 21:05:15 -070055#include "clockdomain.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070056
Kevin Hilman8bd22942009-05-28 10:56:16 -070057static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
58 void __iomem *sdrc_power);
59
Paul Walmsley369d5612010-01-26 20:13:01 -070060static struct powerdomain *mpu_pwrdm, *core_pwrdm;
61static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -070062
63static struct clk *osc_ck, *emul_ck;
64
Paul Walmsley14164082012-02-02 02:30:50 -070065static int omap2_enter_full_retention(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -070066{
67 u32 l;
Kevin Hilman8bd22942009-05-28 10:56:16 -070068
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
72 * mode.
73 */
74 clk_disable(osc_ck);
75
76 /* Clear old wake-up events */
77 /* REVISIT: These write to reserved bits? */
Tero Kristo6bdc4b42014-02-26 15:31:05 +020078 omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0);
79 omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0);
80 omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0);
Kevin Hilman8bd22942009-05-28 10:56:16 -070081
Paul Walmsleyf653b292013-01-26 00:58:14 -070082 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
Kevin Hilman8bd22942009-05-28 10:56:16 -070083 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
84
85 /* Workaround to kill USB */
86 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
87 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
88
Paul Walmsley72e06d02010-12-21 21:05:16 -070089 omap2_gpio_prepare_for_idle(0);
Kevin Hilman8bd22942009-05-28 10:56:16 -070090
Kevin Hilman8bd22942009-05-28 10:56:16 -070091 /* One last check for pending IRQs to avoid extra latency due
92 * to sleeping unnecessarily. */
Jouni Hogander94434532009-02-03 15:49:04 -080093 if (omap_irq_pending())
Kevin Hilman8bd22942009-05-28 10:56:16 -070094 goto no_sleep;
95
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));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700100
Kevin Hilman4af40162009-02-04 10:51:40 -0800101no_sleep:
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800102 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700103
104 clk_enable(osc_ck);
105
106 /* clear CORE wake-up events */
Tero Kristo6bdc4b42014-02-26 15:31:05 +0200107 omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0);
108 omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700109
110 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
Tero Kristo6bdc4b42014-02-26 15:31:05 +0200111 omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, 0x4 | 0x1);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700112
113 /* MPU domain wake events */
Tero Kristo6bdc4b42014-02-26 15:31:05 +0200114 omap2xxx_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET,
115 0x1);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700116
Tero Kristo6bdc4b42014-02-26 15:31:05 +0200117 omap2xxx_prm_clear_mod_irqs(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET,
118 0x20);
Paul Walmsley14164082012-02-02 02:30:50 -0700119
Paul Walmsleyf653b292013-01-26 00:58:14 -0700120 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
121 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_ON);
122
Paul Walmsley14164082012-02-02 02:30:50 -0700123 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700124}
125
Kevin Hilman8bd22942009-05-28 10:56:16 -0700126static int sti_console_enabled;
127
128static int omap2_allow_mpu_retention(void)
129{
Tero Kristocd6e9db2013-10-11 19:15:31 +0300130 if (!omap2xxx_cm_mpu_retention_allowed())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700131 return 0;
132 if (sti_console_enabled)
133 return 0;
134
135 return 1;
136}
137
138static void omap2_enter_mpu_retention(void)
139{
Paul Walmsley088e8802012-12-30 10:15:48 -0700140 const int zero = 0;
141
Kevin Hilman8bd22942009-05-28 10:56:16 -0700142 /* The peripherals seem not to be able to wake up the MPU when
143 * it is in retention mode. */
144 if (omap2_allow_mpu_retention()) {
145 /* REVISIT: These write to reserved bits? */
Tero Kristo6bdc4b42014-02-26 15:31:05 +0200146 omap2xxx_prm_clear_mod_irqs(CORE_MOD, PM_WKST1, ~0);
147 omap2xxx_prm_clear_mod_irqs(CORE_MOD, OMAP24XX_PM_WKST2, ~0);
148 omap2xxx_prm_clear_mod_irqs(WKUP_MOD, PM_WKST, ~0);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700149
150 /* Try to enter MPU retention */
Paul Walmsleyf653b292013-01-26 00:58:14 -0700151 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
152
Kevin Hilman8bd22942009-05-28 10:56:16 -0700153 } else {
154 /* Block MPU retention */
Paul Walmsleyf653b292013-01-26 00:58:14 -0700155 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700156 }
157
Paul Walmsley088e8802012-12-30 10:15:48 -0700158 /* WFI */
159 asm("mcr p15, 0, %0, c7, c0, 4" : : "r" (zero) : "memory", "cc");
Paul Walmsleyf653b292013-01-26 00:58:14 -0700160
161 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700162}
163
164static int omap2_can_sleep(void)
165{
Tero Kristocd6e9db2013-10-11 19:15:31 +0300166 if (omap2xxx_cm_fclks_active())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700167 return 0;
Rajendra Nayaked1ebc42012-04-27 15:59:32 +0530168 if (__clk_is_enabled(osc_ck))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700169 return 0;
170 if (omap_dma_running())
171 return 0;
172
173 return 1;
174}
175
176static void omap2_pm_idle(void)
177{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700178 if (!omap2_can_sleep()) {
Jouni Hogander94434532009-02-03 15:49:04 -0800179 if (omap_irq_pending())
Santosh Shilimkar6b856382013-02-11 19:29:45 +0530180 return;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700181 omap2_enter_mpu_retention();
Santosh Shilimkar6b856382013-02-11 19:29:45 +0530182 return;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700183 }
184
Jouni Hogander94434532009-02-03 15:49:04 -0800185 if (omap_irq_pending())
Santosh Shilimkar6b856382013-02-11 19:29:45 +0530186 return;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700187
188 omap2_enter_full_retention();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700189}
190
Kevin Hilman8bd22942009-05-28 10:56:16 -0700191static void __init prcm_setup_regs(void)
192{
193 int i, num_mem_banks;
194 struct powerdomain *pwrdm;
195
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700196 /*
197 * Enable autoidle
198 * XXX This should be handled by hwmod code or PRCM init code
199 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700200 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700201 OMAP2_PRCM_SYSCONFIG_OFFSET);
202
Kevin Hilman8bd22942009-05-28 10:56:16 -0700203 /*
204 * Set CORE powerdomain memory banks to retain their contents
205 * during RETENTION
206 */
207 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
208 for (i = 0; i < num_mem_banks; i++)
209 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
210
Paul Walmsleyf653b292013-01-26 00:58:14 -0700211 pwrdm_set_logic_retst(core_pwrdm, PWRDM_POWER_RET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700212
Kevin Hilman8bd22942009-05-28 10:56:16 -0700213 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700214
215 /* Force-power down DSP, GFX powerdomains */
216
217 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
218 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700219
220 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
221 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700222
Paul Walmsley51d070a2011-01-27 02:52:55 -0700223 /* Enable hardware-supervised idle for all clkdms */
Paul Walmsley92206fd2012-02-02 02:38:50 -0700224 clkdm_for_each(omap_pm_clkdms_setup, NULL);
Paul Walmsley369d5612010-01-26 20:13:01 -0700225 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700226
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500227 omap_common_suspend_init(omap2_enter_full_retention);
Paul Walmsley14164082012-02-02 02:30:50 -0700228
Kevin Hilman8bd22942009-05-28 10:56:16 -0700229 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
230 * stabilisation */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700231 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
232 OMAP2_PRCM_CLKSSETUP_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700233
234 /* Configure automatic voltage transition */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700235 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
236 OMAP2_PRCM_VOLTSETUP_OFFSET);
237 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
238 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
239 OMAP24XX_MEMRETCTRL_MASK |
240 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
241 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
242 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700243
244 /* Enable wake-up events */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700245 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
246 WKUP_MOD, PM_WKEN);
Tero Kristo944ee5d2014-02-20 19:09:18 +0200247
248 /* Enable SYS_CLKEN control when all domains idle */
249 omap2_prm_set_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK, OMAP24XX_GR_MOD,
250 OMAP2_PRCM_CLKSRC_CTRL_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700251}
252
Shawn Guobbd707a2012-04-26 16:06:50 +0800253int __init omap2_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700254{
255 u32 l;
256
Kevin Hilman8bd22942009-05-28 10:56:16 -0700257 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700258 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700259 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
260
Paul Walmsley369d5612010-01-26 20:13:01 -0700261 /* Look up important powerdomains */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700262
263 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
264 if (!mpu_pwrdm)
265 pr_err("PM: mpu_pwrdm not found\n");
266
267 core_pwrdm = pwrdm_lookup("core_pwrdm");
268 if (!core_pwrdm)
269 pr_err("PM: core_pwrdm not found\n");
270
Paul Walmsley369d5612010-01-26 20:13:01 -0700271 /* Look up important clockdomains */
272
273 mpu_clkdm = clkdm_lookup("mpu_clkdm");
274 if (!mpu_clkdm)
275 pr_err("PM: mpu_clkdm not found\n");
276
277 wkup_clkdm = clkdm_lookup("wkup_clkdm");
278 if (!wkup_clkdm)
279 pr_err("PM: wkup_clkdm not found\n");
280
Kevin Hilman8bd22942009-05-28 10:56:16 -0700281 dsp_clkdm = clkdm_lookup("dsp_clkdm");
282 if (!dsp_clkdm)
Paul Walmsley369d5612010-01-26 20:13:01 -0700283 pr_err("PM: dsp_clkdm not found\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700284
285 gfx_clkdm = clkdm_lookup("gfx_clkdm");
286 if (!gfx_clkdm)
287 pr_err("PM: gfx_clkdm not found\n");
288
289
290 osc_ck = clk_get(NULL, "osc_ck");
291 if (IS_ERR(osc_ck)) {
292 printk(KERN_ERR "could not get osc_ck\n");
293 return -ENODEV;
294 }
295
296 if (cpu_is_omap242x()) {
297 emul_ck = clk_get(NULL, "emul_ck");
298 if (IS_ERR(emul_ck)) {
299 printk(KERN_ERR "could not get emul_ck\n");
300 clk_put(osc_ck);
301 return -ENODEV;
302 }
303 }
304
305 prcm_setup_regs();
306
Kevin Hilman8bd22942009-05-28 10:56:16 -0700307 /*
308 * We copy the assembler sleep/wakeup routines to SRAM.
309 * These routines need to be in SRAM as that's the only
Paul Walmsley088e8802012-12-30 10:15:48 -0700310 * memory the MPU can see when it wakes up after the entire
311 * chip enters idle.
Kevin Hilman8bd22942009-05-28 10:56:16 -0700312 */
Shawn Guobbd707a2012-04-26 16:06:50 +0800313 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
314 omap24xx_cpu_suspend_sz);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500316 arm_pm_idle = omap2_pm_idle;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700317
318 return 0;
319}