blob: 841ba19d64a69b153a38ef594220d1a4054d7e59 [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
2 * OMAP3 Power Management Routines
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation
5 * Tony Lindgren <tony@atomide.com>
6 * Jouni Hogander
7 *
Rajendra Nayak2f5939c2008-09-26 17:50:07 +05308 * Copyright (C) 2007 Texas Instruments, Inc.
9 * Rajendra Nayak <rnayak@ti.com>
10 *
Kevin Hilman8bd22942009-05-28 10:56:16 -070011 * Copyright (C) 2005 Texas Instruments, Inc.
12 * Richard Woodruff <r-woodruff2@ti.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/pm.h>
22#include <linux/suspend.h>
23#include <linux/interrupt.h>
24#include <linux/module.h>
25#include <linux/list.h>
26#include <linux/err.h>
27#include <linux/gpio.h>
Kevin Hilmanc40552b2009-10-06 14:25:09 -070028#include <linux/clk.h>
Tero Kristodccaad82009-11-17 18:34:53 +020029#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Tony Lindgren45c3eb72012-11-30 08:41:50 -080031#include <linux/omap-dma.h>
Tony Lindgrene639cd52014-11-20 12:11:25 -080032#include <linux/omap-gpmc.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070033#include <linux/platform_data/gpio-omap.h>
34
Jean Pihet5e7c58d2011-03-03 11:25:43 +010035#include <trace/events/power.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070036
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070037#include <asm/fncpy.h>
Russell King2c74a0c2011-06-22 17:41:48 +010038#include <asm/suspend.h>
David Howells9f97da72012-03-28 18:30:01 +010039#include <asm/system_misc.h>
Russell King2c74a0c2011-06-22 17:41:48 +010040
Paul Walmsley1540f2142010-12-21 21:05:15 -070041#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070042#include "powerdomain.h"
Tony Lindgrene4c060d2012-10-05 13:25:59 -070043#include "soc.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -060045#include "cm3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070046#include "cm-regbits-34xx.h"
47#include "prm-regbits-34xx.h"
Paul Walmsley139563a2012-10-21 01:01:10 -060048#include "prm3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070049#include "pm.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030050#include "sdrc.h"
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070051#include "sram.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060052#include "control.h"
Tony Lindgren3b8c4eb2014-05-05 17:27:35 -070053#include "vc.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030054
Nishanth Menon8cdfd832010-12-20 14:05:05 -060055/* pm34xx errata defined in pm.h */
56u16 pm34xx_errata;
57
Kevin Hilman8bd22942009-05-28 10:56:16 -070058struct power_state {
59 struct powerdomain *pwrdm;
60 u32 next_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070061#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -070062 u32 saved_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070063#endif
Kevin Hilman8bd22942009-05-28 10:56:16 -070064 struct list_head node;
65};
66
67static LIST_HEAD(pwrst_list);
68
Tero Kristo27d59a42008-10-13 13:15:00 +030069static int (*_omap_save_secure_sram)(u32 *addr);
Jean Pihet46e130d2011-06-29 18:40:23 +020070void (*omap3_do_wfi_sram)(void);
Tero Kristo27d59a42008-10-13 13:15:00 +030071
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053072static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
73static struct powerdomain *core_pwrdm, *per_pwrdm;
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020074
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053075static void omap3_core_save_context(void)
76{
Paul Walmsley596efe42010-12-21 21:05:16 -070077 omap3_ctrl_save_padconf();
Tero Kristodccaad82009-11-17 18:34:53 +020078
79 /*
80 * Force write last pad into memory, as this can fail in some
Jean Pihet83521292010-12-18 16:44:46 +010081 * cases according to errata 1.157, 1.185
Tero Kristodccaad82009-11-17 18:34:53 +020082 */
83 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
84 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
85
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053086 /* Save the Interrupt controller context */
87 omap_intc_save_context();
88 /* Save the GPMC context */
89 omap3_gpmc_save_context();
90 /* Save the system control module context, padconf already save above*/
91 omap3_control_save_context();
Tero Kristof2d11852008-08-28 13:13:31 +000092 omap_dma_global_context_save();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053093}
94
95static void omap3_core_restore_context(void)
96{
97 /* Restore the control module context, padconf restored by h/w */
98 omap3_control_restore_context();
99 /* Restore the GPMC context */
100 omap3_gpmc_restore_context();
101 /* Restore the interrupt controller context */
102 omap_intc_restore_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000103 omap_dma_global_context_restore();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530104}
105
Tero Kristo9d971402008-12-12 11:20:05 +0200106/*
107 * FIXME: This function should be called before entering off-mode after
108 * OMAP3 secure services have been accessed. Currently it is only called
109 * once during boot sequence, but this works as we are not using secure
110 * services.
111 */
Kevin Hilman617fcc92011-01-25 16:40:01 -0800112static void omap3_save_secure_ram_context(void)
Tero Kristo27d59a42008-10-13 13:15:00 +0300113{
114 u32 ret;
Kevin Hilman617fcc92011-01-25 16:40:01 -0800115 int mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300116
117 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
Tero Kristo27d59a42008-10-13 13:15:00 +0300118 /*
119 * MPU next state must be set to POWER_ON temporarily,
120 * otherwise the WFI executed inside the ROM code
121 * will hang the system.
122 */
123 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
Olof Johansson6dd1e352013-11-12 22:51:28 -0800124 ret = _omap_save_secure_sram((u32 *)(unsigned long)
Tero Kristo27d59a42008-10-13 13:15:00 +0300125 __pa(omap3_secure_ram_storage));
Kevin Hilman617fcc92011-01-25 16:40:01 -0800126 pwrdm_set_next_pwrst(mpu_pwrdm, mpu_next_state);
Tero Kristo27d59a42008-10-13 13:15:00 +0300127 /* Following is for error tracking, it should not happen */
128 if (ret) {
Mark A. Greer98179852012-03-17 18:22:48 -0700129 pr_err("save_secure_sram() returns %08x\n", ret);
Tero Kristo27d59a42008-10-13 13:15:00 +0300130 while (1)
131 ;
132 }
133 }
134}
135
Tero Kristo22f51372011-12-16 14:36:59 -0700136static irqreturn_t _prcm_int_handle_io(int irq, void *unused)
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700137{
138 int c;
139
Tero Kristo9cb6d362014-04-04 12:31:51 +0300140 c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, OMAP3430_ST_IO_MASK |
141 OMAP3430_ST_IO_CHAIN_MASK);
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700142
Tero Kristo22f51372011-12-16 14:36:59 -0700143 return c ? IRQ_HANDLED : IRQ_NONE;
Jon Hunter77da2d92009-06-27 00:07:25 -0500144}
145
Tero Kristo22f51372011-12-16 14:36:59 -0700146static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700147{
Tero Kristo22f51372011-12-16 14:36:59 -0700148 int c;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700149
Tero Kristo22f51372011-12-16 14:36:59 -0700150 /*
151 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
152 * these are handled in a separate handler to avoid acking
153 * IO events before parsing in mux code
154 */
Tero Kristo9cb6d362014-04-04 12:31:51 +0300155 c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, ~(OMAP3430_ST_IO_MASK |
156 OMAP3430_ST_IO_CHAIN_MASK));
157 c += omap_prm_clear_mod_irqs(CORE_MOD, 1, ~0);
158 c += omap_prm_clear_mod_irqs(OMAP3430_PER_MOD, 1, ~0);
Tero Kristo22f51372011-12-16 14:36:59 -0700159 if (omap_rev() > OMAP3430_REV_ES1_0) {
Tero Kristo9cb6d362014-04-04 12:31:51 +0300160 c += omap_prm_clear_mod_irqs(CORE_MOD, 3, ~0);
161 c += omap_prm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, ~0);
Tero Kristo22f51372011-12-16 14:36:59 -0700162 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700163
Tero Kristo22f51372011-12-16 14:36:59 -0700164 return c ? IRQ_HANDLED : IRQ_NONE;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700165}
166
Russell Kingcbe26342011-06-30 08:45:49 +0100167static void omap34xx_save_context(u32 *save)
168{
169 u32 val;
170
171 /* Read Auxiliary Control Register */
172 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
173 *save++ = 1;
174 *save++ = val;
175
176 /* Read L2 AUX ctrl register */
177 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
178 *save++ = 1;
179 *save++ = val;
180}
181
Russell King29cb3cd2011-07-02 09:54:01 +0100182static int omap34xx_do_sram_idle(unsigned long save_state)
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530183{
Russell Kingcbe26342011-06-30 08:45:49 +0100184 omap34xx_cpu_suspend(save_state);
Russell King29cb3cd2011-07-02 09:54:01 +0100185 return 0;
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530186}
187
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530188void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700189{
190 /* Variable to tell what needs to be saved and restored
191 * in omap_sram_idle*/
192 /* save_state = 0 => Nothing to save and restored */
193 /* save_state = 1 => Only L1 and logic lost */
194 /* save_state = 2 => Only L2 lost */
195 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530196 int save_state = 0;
197 int mpu_next_state = PWRDM_POWER_ON;
198 int per_next_state = PWRDM_POWER_ON;
199 int core_next_state = PWRDM_POWER_ON;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700200 int per_going_off;
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300201 u32 sdrc_pwr = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700202
Kevin Hilman8bd22942009-05-28 10:56:16 -0700203 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
204 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530205 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700206 case PWRDM_POWER_RET:
207 /* No need to save context */
208 save_state = 0;
209 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530210 case PWRDM_POWER_OFF:
211 save_state = 3;
212 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700213 default:
214 /* Invalid state */
Mark A. Greer98179852012-03-17 18:22:48 -0700215 pr_err("Invalid mpu state in sram_idle\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700216 return;
217 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300218
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530219 /* NEON control */
220 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200221 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530222
Mike Chan40742fa2010-05-03 16:04:06 -0700223 /* Enable IO-PAD and IO-CHAIN wakeups */
Kevin Hilman658ce972008-11-04 20:50:52 -0800224 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200225 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Mike Chan40742fa2010-05-03 16:04:06 -0700226
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700227 pwrdm_pre_transition(NULL);
Charulatha Vff2f8e52011-09-13 18:32:37 +0530228
Mike Chan40742fa2010-05-03 16:04:06 -0700229 /* PER */
Kevin Hilman658ce972008-11-04 20:50:52 -0800230 if (per_next_state < PWRDM_POWER_ON) {
Paul Walmsley72e06d02010-12-21 21:05:16 -0700231 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700232 omap2_gpio_prepare_for_idle(per_going_off);
Kevin Hilman658ce972008-11-04 20:50:52 -0800233 }
234
235 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530236 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530237 if (core_next_state == PWRDM_POWER_OFF) {
238 omap3_core_save_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700239 omap3_cm_save_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530240 }
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530241 }
Mike Chan40742fa2010-05-03 16:04:06 -0700242
Tony Lindgren3b8c4eb2014-05-05 17:27:35 -0700243 /* Configure PMIC signaling for I2C4 or sys_off_mode */
244 omap3_vc_set_pmic_signaling(core_next_state);
245
Tero Kristof18cc2f2009-10-23 19:03:50 +0300246 omap3_intc_prepare_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700247
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530248 /*
Paul Walmsley30474542011-10-06 13:43:23 -0600249 * On EMU/HS devices ROM code restores a SRDC value
250 * from scratchpad which has automatic self refresh on timeout
251 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
252 * Hence store/restore the SDRC_POWER register here.
253 */
254 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
255 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
256 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530257 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300258 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300259
260 /*
Russell King076f2cc2011-06-22 15:42:54 +0100261 * omap3_arm_context is the location where some ARM context
262 * get saved. The rest is placed on the stack, and restored
263 * from there before resuming.
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530264 */
Russell Kingcbe26342011-06-30 08:45:49 +0100265 if (save_state)
266 omap34xx_save_context(omap3_arm_context);
Russell King076f2cc2011-06-22 15:42:54 +0100267 if (save_state == 1 || save_state == 3)
Russell King2c74a0c2011-06-22 17:41:48 +0100268 cpu_suspend(save_state, omap34xx_do_sram_idle);
Russell King076f2cc2011-06-22 15:42:54 +0100269 else
270 omap34xx_do_sram_idle(save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700271
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530272 /* Restore normal SDRC POWER settings */
Paul Walmsley30474542011-10-06 13:43:23 -0600273 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
274 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
275 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300276 core_next_state == PWRDM_POWER_OFF)
277 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
278
Kevin Hilman658ce972008-11-04 20:50:52 -0800279 /* CORE */
Dave Gerlach1560d152016-04-13 20:49:48 -0500280 if (core_next_state < PWRDM_POWER_ON &&
281 pwrdm_read_prev_pwrst(core_pwrdm) == PWRDM_POWER_OFF) {
282 omap3_core_restore_context();
283 omap3_cm_restore_context();
284 omap3_sram_restore_context();
285 omap2_sms_restore_context();
286 } else {
287 /*
288 * In off-mode resume path above, omap3_core_restore_context
289 * also handles the INTC autoidle restore done here so limit
290 * this to non-off mode resume paths so we don't do it twice.
291 */
292 omap3_intc_resume_idle();
Kevin Hilman658ce972008-11-04 20:50:52 -0800293 }
294
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700295 pwrdm_post_transition(NULL);
Kevin Hilman658ce972008-11-04 20:50:52 -0800296
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700297 /* PER */
298 if (per_next_state < PWRDM_POWER_ON)
299 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700300}
301
Kevin Hilman8bd22942009-05-28 10:56:16 -0700302static void omap3_pm_idle(void)
303{
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500304 if (omap_irq_pending())
Santosh Shilimkar6b856382013-02-11 19:29:45 +0530305 return;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700306
Jisheng Zhang6ca227002015-09-18 13:41:21 +0800307 trace_cpu_idle_rcuidle(1, smp_processor_id());
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100308
Kevin Hilman8bd22942009-05-28 10:56:16 -0700309 omap_sram_idle();
310
Jisheng Zhang6ca227002015-09-18 13:41:21 +0800311 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
Kevin Hilman8bd22942009-05-28 10:56:16 -0700312}
313
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700314#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700315static int omap3_pm_suspend(void)
316{
317 struct power_state *pwrst;
318 int state, ret = 0;
319
320 /* Read current next_pwrsts */
321 list_for_each_entry(pwrst, &pwrst_list, node)
322 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
323 /* Set ones wanted by suspend */
324 list_for_each_entry(pwrst, &pwrst_list, node) {
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530325 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700326 goto restore;
327 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
328 goto restore;
329 }
330
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300331 omap3_intc_suspend();
332
Kevin Hilman8bd22942009-05-28 10:56:16 -0700333 omap_sram_idle();
334
335restore:
336 /* Restore next_pwrsts */
337 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700338 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
339 if (state > pwrst->next_state) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600340 pr_info("Powerdomain (%s) didn't enter target state %d\n",
341 pwrst->pwrdm->name, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700342 ret = -1;
343 }
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530344 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700345 }
346 if (ret)
Mark A. Greer98179852012-03-17 18:22:48 -0700347 pr_err("Could not enter target state in pm_suspend\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700348 else
Mark A. Greer98179852012-03-17 18:22:48 -0700349 pr_info("Successfully put all powerdomains to target state\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700350
351 return ret;
352}
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500353#else
354#define omap3_pm_suspend NULL
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700355#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700356
Kevin Hilman8111b222009-04-28 15:27:44 -0700357static void __init prcm_setup_regs(void)
358{
Tero Kristoba12c242014-03-04 17:43:04 +0200359 omap3_ctrl_init();
Tero Kristob296c812009-10-23 19:03:49 +0300360
Tero Kristoc5180a22014-02-26 17:30:43 +0200361 omap3_prm_init_pm(cpu_is_omap3630(), omap3_has_iva());
Kevin Hilman8bd22942009-05-28 10:56:16 -0700362}
363
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700364void omap3_pm_off_mode_enable(int enable)
365{
366 struct power_state *pwrst;
367 u32 state;
368
369 if (enable)
370 state = PWRDM_POWER_OFF;
371 else
372 state = PWRDM_POWER_RET;
373
374 list_for_each_entry(pwrst, &pwrst_list, node) {
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600375 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
376 pwrst->pwrdm == core_pwrdm &&
377 state == PWRDM_POWER_OFF) {
378 pwrst->next_state = PWRDM_POWER_RET;
Ricardo Salveti de Araujoe16b41b2011-01-31 11:35:25 -0200379 pr_warn("%s: Core OFF disabled due to errata i583\n",
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600380 __func__);
381 } else {
382 pwrst->next_state = state;
383 }
384 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700385 }
386}
387
Tero Kristo68d47782008-11-26 12:26:24 +0200388int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
389{
390 struct power_state *pwrst;
391
392 list_for_each_entry(pwrst, &pwrst_list, node) {
393 if (pwrst->pwrdm == pwrdm)
394 return pwrst->next_state;
395 }
396 return -EINVAL;
397}
398
399int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
400{
401 struct power_state *pwrst;
402
403 list_for_each_entry(pwrst, &pwrst_list, node) {
404 if (pwrst->pwrdm == pwrdm) {
405 pwrst->next_state = state;
406 return 0;
407 }
408 }
409 return -EINVAL;
410}
411
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300412static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700413{
414 struct power_state *pwrst;
415
416 if (!pwrdm->pwrsts)
417 return 0;
418
Ming Leid3d381c2009-08-22 21:20:26 +0800419 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700420 if (!pwrst)
421 return -ENOMEM;
422 pwrst->pwrdm = pwrdm;
423 pwrst->next_state = PWRDM_POWER_RET;
424 list_add(&pwrst->node, &pwrst_list);
425
426 if (pwrdm_has_hdwr_sar(pwrdm))
427 pwrdm_enable_hdwr_sar(pwrdm);
428
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530429 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700430}
431
432/*
Jean Pihet46e130d2011-06-29 18:40:23 +0200433 * Push functions to SRAM
434 *
435 * The minimum set of functions is pushed to SRAM for execution:
436 * - omap3_do_wfi for erratum i581 WA,
437 * - save_secure_ram_context for security extensions.
438 */
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530439void omap_push_sram_idle(void)
440{
Jean Pihet46e130d2011-06-29 18:40:23 +0200441 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
442
Tero Kristo27d59a42008-10-13 13:15:00 +0300443 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
444 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
445 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530446}
447
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600448static void __init pm_errata_configure(void)
449{
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600450 if (cpu_is_omap3630()) {
Nishanth Menon458e9992010-12-20 14:05:06 -0600451 pm34xx_errata |= PM_RTA_ERRATUM_i608;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600452 /* Enable the l2 cache toggling in sleep logic */
453 enable_omap3630_toggle_l2_on_restore();
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600454 if (omap_rev() < OMAP3630_REV_ES1_2)
Paul Walmsley856c3c52012-10-16 00:08:53 -0600455 pm34xx_errata |= (PM_SDRC_WAKEUP_ERRATUM_i583 |
456 PM_PER_MEMORIES_ERRATUM_i582);
457 } else if (cpu_is_omap34xx()) {
458 pm34xx_errata |= PM_PER_MEMORIES_ERRATUM_i582;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600459 }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600460}
461
Shawn Guobbd707a2012-04-26 16:06:50 +0800462int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700463{
464 struct power_state *pwrst, *tmp;
Paul Walmsley856c3c52012-10-16 00:08:53 -0600465 struct clockdomain *neon_clkdm, *mpu_clkdm, *per_clkdm, *wkup_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700466 int ret;
467
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600468 if (!omap3_has_io_chain_ctrl())
Joe Perches3d0cb732014-09-13 11:31:16 -0700469 pr_warn("PM: no software I/O chain control; some wakeups may be lost\n");
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600470
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600471 pm_errata_configure();
472
Kevin Hilman8bd22942009-05-28 10:56:16 -0700473 /* XXX prcm_setup_regs needs to be before enabling hw
474 * supervised mode for powerdomains */
475 prcm_setup_regs();
476
Tero Kristo22f51372011-12-16 14:36:59 -0700477 ret = request_irq(omap_prcm_event_to_irq("wkup"),
478 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
479
Kevin Hilman8bd22942009-05-28 10:56:16 -0700480 if (ret) {
Tero Kristo22f51372011-12-16 14:36:59 -0700481 pr_err("pm: Failed to request pm_wkup irq\n");
482 goto err1;
483 }
484
485 /* IO interrupt is shared with mux code */
486 ret = request_irq(omap_prcm_event_to_irq("io"),
487 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
488 omap3_pm_init);
489
490 if (ret) {
491 pr_err("pm: Failed to request pm_io irq\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700492 goto err2;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700493 }
494
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300495 ret = pwrdm_for_each(pwrdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700496 if (ret) {
Mark A. Greer98179852012-03-17 18:22:48 -0700497 pr_err("Failed to setup powerdomains\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700498 goto err3;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700499 }
500
Paul Walmsley92206fd2012-02-02 02:38:50 -0700501 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700502
503 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
504 if (mpu_pwrdm == NULL) {
Mark A. Greer98179852012-03-17 18:22:48 -0700505 pr_err("Failed to get mpu_pwrdm\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700506 ret = -EINVAL;
507 goto err3;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700508 }
509
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530510 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
511 per_pwrdm = pwrdm_lookup("per_pwrdm");
512 core_pwrdm = pwrdm_lookup("core_pwrdm");
513
Paul Walmsley55ed9692010-01-26 20:12:59 -0700514 neon_clkdm = clkdm_lookup("neon_clkdm");
515 mpu_clkdm = clkdm_lookup("mpu_clkdm");
Paul Walmsley856c3c52012-10-16 00:08:53 -0600516 per_clkdm = clkdm_lookup("per_clkdm");
517 wkup_clkdm = clkdm_lookup("wkup_clkdm");
Paul Walmsley55ed9692010-01-26 20:12:59 -0700518
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500519 omap_common_suspend_init(omap3_pm_suspend);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700520
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500521 arm_pm_idle = omap3_pm_idle;
Kalle Jokiniemi03433712008-09-26 11:04:20 +0300522 omap3_idle_init();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700523
Nishanth Menon458e9992010-12-20 14:05:06 -0600524 /*
525 * RTA is disabled during initialization as per erratum i608
526 * it is safer to disable RTA by the bootloader, but we would like
527 * to be doubly sure here and prevent any mishaps.
528 */
529 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
530 omap3630_ctrl_disable_rta();
531
Paul Walmsley856c3c52012-10-16 00:08:53 -0600532 /*
533 * The UART3/4 FIFO and the sidetone memory in McBSP2/3 are
534 * not correctly reset when the PER powerdomain comes back
535 * from OFF or OSWR when the CORE powerdomain is kept active.
536 * See OMAP36xx Erratum i582 "PER Domain reset issue after
537 * Domain-OFF/OSWR Wakeup". This wakeup dependency is not a
538 * complete workaround. The kernel must also prevent the PER
539 * powerdomain from going to OSWR/OFF while the CORE
540 * powerdomain is not going to OSWR/OFF. And if PER last
541 * power state was off while CORE last power state was ON, the
542 * UART3/4 and McBSP2/3 SIDETONE devices need to run a
543 * self-test using their loopback tests; if that fails, those
544 * devices are unusable until the PER/CORE can complete a transition
545 * from ON to OSWR/OFF and then back to ON.
546 *
547 * XXX Technically this workaround is only needed if off-mode
548 * or OSWR is enabled.
549 */
550 if (IS_PM34XX_ERRATUM(PM_PER_MEMORIES_ERRATUM_i582))
551 clkdm_add_wkdep(per_clkdm, wkup_clkdm);
552
Paul Walmsley55ed9692010-01-26 20:12:59 -0700553 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300554 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
555 omap3_secure_ram_storage =
556 kmalloc(0x803F, GFP_KERNEL);
557 if (!omap3_secure_ram_storage)
Paul Walmsley7852ec02012-07-26 00:54:26 -0600558 pr_err("Memory allocation failed when allocating for secure sram context\n");
Tero Kristo27d59a42008-10-13 13:15:00 +0300559
Tero Kristo9d971402008-12-12 11:20:05 +0200560 local_irq_disable();
Tero Kristo9d971402008-12-12 11:20:05 +0200561
562 omap_dma_global_context_save();
Kevin Hilman617fcc92011-01-25 16:40:01 -0800563 omap3_save_secure_ram_context();
Tero Kristo9d971402008-12-12 11:20:05 +0200564 omap_dma_global_context_restore();
565
566 local_irq_enable();
Tero Kristo9d971402008-12-12 11:20:05 +0200567 }
568
569 omap3_save_scratchpad_contents();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700570 return ret;
Mark A. Greerce229c52012-03-17 18:22:47 -0700571
572err3:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700573 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
574 list_del(&pwrst->node);
575 kfree(pwrst);
576 }
Mark A. Greerce229c52012-03-17 18:22:47 -0700577 free_irq(omap_prcm_event_to_irq("io"), omap3_pm_init);
578err2:
579 free_irq(omap_prcm_event_to_irq("wkup"), NULL);
580err1:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700581 return ret;
582}