blob: 175564c88a3035dcdaba4d1be9d2d00e5437078e [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 Lindgren4b254082012-08-30 15:37:24 -070032#include <linux/platform_data/gpio-omap.h>
33
Jean Pihet5e7c58d2011-03-03 11:25:43 +010034#include <trace/events/power.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070035
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070036#include <asm/fncpy.h>
Russell King2c74a0c2011-06-22 17:41:48 +010037#include <asm/suspend.h>
David Howells9f97da72012-03-28 18:30:01 +010038#include <asm/system_misc.h>
Russell King2c74a0c2011-06-22 17:41:48 +010039
Paul Walmsley1540f2142010-12-21 21:05:15 -070040#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070041#include "powerdomain.h"
Tony Lindgrene4c060d2012-10-05 13:25:59 -070042#include "soc.h"
Tony Lindgren4e653312011-11-10 22:45:17 +010043#include "common.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -060044#include "cm3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070045#include "cm-regbits-34xx.h"
Tony Lindgren99f0b8d2012-10-17 11:07:18 -070046#include "gpmc.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070047#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 Kristo0efc0f62014-02-25 15:40:30 +0200140 c = omap3xxx_prm_clear_mod_irqs(WKUP_MOD, 1,
141 ~(OMAP3430_ST_IO_MASK |
142 OMAP3430_ST_IO_CHAIN_MASK));
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700143
Tero Kristo22f51372011-12-16 14:36:59 -0700144 return c ? IRQ_HANDLED : IRQ_NONE;
Jon Hunter77da2d92009-06-27 00:07:25 -0500145}
146
Tero Kristo22f51372011-12-16 14:36:59 -0700147static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700148{
Tero Kristo22f51372011-12-16 14:36:59 -0700149 int c;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700150
Tero Kristo22f51372011-12-16 14:36:59 -0700151 /*
152 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
153 * these are handled in a separate handler to avoid acking
154 * IO events before parsing in mux code
155 */
Tero Kristo0efc0f62014-02-25 15:40:30 +0200156 c = omap3xxx_prm_clear_mod_irqs(WKUP_MOD, 1,
157 OMAP3430_ST_IO_MASK |
158 OMAP3430_ST_IO_CHAIN_MASK);
159 c += omap3xxx_prm_clear_mod_irqs(CORE_MOD, 1, 0);
160 c += omap3xxx_prm_clear_mod_irqs(OMAP3430_PER_MOD, 1, 0);
Tero Kristo22f51372011-12-16 14:36:59 -0700161 if (omap_rev() > OMAP3430_REV_ES1_0) {
Tero Kristo0efc0f62014-02-25 15:40:30 +0200162 c += omap3xxx_prm_clear_mod_irqs(CORE_MOD, 3, 0);
163 c += omap3xxx_prm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, 0);
Tero Kristo22f51372011-12-16 14:36:59 -0700164 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700165
Tero Kristo22f51372011-12-16 14:36:59 -0700166 return c ? IRQ_HANDLED : IRQ_NONE;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700167}
168
Russell Kingcbe26342011-06-30 08:45:49 +0100169static void omap34xx_save_context(u32 *save)
170{
171 u32 val;
172
173 /* Read Auxiliary Control Register */
174 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
175 *save++ = 1;
176 *save++ = val;
177
178 /* Read L2 AUX ctrl register */
179 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
180 *save++ = 1;
181 *save++ = val;
182}
183
Russell King29cb3cd2011-07-02 09:54:01 +0100184static int omap34xx_do_sram_idle(unsigned long save_state)
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530185{
Russell Kingcbe26342011-06-30 08:45:49 +0100186 omap34xx_cpu_suspend(save_state);
Russell King29cb3cd2011-07-02 09:54:01 +0100187 return 0;
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530188}
189
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530190void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700191{
192 /* Variable to tell what needs to be saved and restored
193 * in omap_sram_idle*/
194 /* save_state = 0 => Nothing to save and restored */
195 /* save_state = 1 => Only L1 and logic lost */
196 /* save_state = 2 => Only L2 lost */
197 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530198 int save_state = 0;
199 int mpu_next_state = PWRDM_POWER_ON;
200 int per_next_state = PWRDM_POWER_ON;
201 int core_next_state = PWRDM_POWER_ON;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700202 int per_going_off;
Paul Walmsleyeeb37112012-04-13 06:34:32 -0600203 int core_prev_state;
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300204 u32 sdrc_pwr = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700205
Kevin Hilman8bd22942009-05-28 10:56:16 -0700206 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
207 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530208 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700209 case PWRDM_POWER_RET:
210 /* No need to save context */
211 save_state = 0;
212 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530213 case PWRDM_POWER_OFF:
214 save_state = 3;
215 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700216 default:
217 /* Invalid state */
Mark A. Greer98179852012-03-17 18:22:48 -0700218 pr_err("Invalid mpu state in sram_idle\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700219 return;
220 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300221
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530222 /* NEON control */
223 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200224 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530225
Mike Chan40742fa2010-05-03 16:04:06 -0700226 /* Enable IO-PAD and IO-CHAIN wakeups */
Kevin Hilman658ce972008-11-04 20:50:52 -0800227 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200228 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Mike Chan40742fa2010-05-03 16:04:06 -0700229
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700230 pwrdm_pre_transition(NULL);
Charulatha Vff2f8e52011-09-13 18:32:37 +0530231
Mike Chan40742fa2010-05-03 16:04:06 -0700232 /* PER */
Kevin Hilman658ce972008-11-04 20:50:52 -0800233 if (per_next_state < PWRDM_POWER_ON) {
Paul Walmsley72e06d02010-12-21 21:05:16 -0700234 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700235 omap2_gpio_prepare_for_idle(per_going_off);
Kevin Hilman658ce972008-11-04 20:50:52 -0800236 }
237
238 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530239 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530240 if (core_next_state == PWRDM_POWER_OFF) {
241 omap3_core_save_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700242 omap3_cm_save_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530243 }
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530244 }
Mike Chan40742fa2010-05-03 16:04:06 -0700245
Tony Lindgren3b8c4eb2014-05-05 17:27:35 -0700246 /* Configure PMIC signaling for I2C4 or sys_off_mode */
247 omap3_vc_set_pmic_signaling(core_next_state);
248
Tero Kristof18cc2f2009-10-23 19:03:50 +0300249 omap3_intc_prepare_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700250
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530251 /*
Paul Walmsley30474542011-10-06 13:43:23 -0600252 * On EMU/HS devices ROM code restores a SRDC value
253 * from scratchpad which has automatic self refresh on timeout
254 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
255 * Hence store/restore the SDRC_POWER register here.
256 */
257 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
258 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
259 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530260 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300261 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300262
263 /*
Russell King076f2cc2011-06-22 15:42:54 +0100264 * omap3_arm_context is the location where some ARM context
265 * get saved. The rest is placed on the stack, and restored
266 * from there before resuming.
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530267 */
Russell Kingcbe26342011-06-30 08:45:49 +0100268 if (save_state)
269 omap34xx_save_context(omap3_arm_context);
Russell King076f2cc2011-06-22 15:42:54 +0100270 if (save_state == 1 || save_state == 3)
Russell King2c74a0c2011-06-22 17:41:48 +0100271 cpu_suspend(save_state, omap34xx_do_sram_idle);
Russell King076f2cc2011-06-22 15:42:54 +0100272 else
273 omap34xx_do_sram_idle(save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700274
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530275 /* Restore normal SDRC POWER settings */
Paul Walmsley30474542011-10-06 13:43:23 -0600276 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
277 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
278 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300279 core_next_state == PWRDM_POWER_OFF)
280 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
281
Kevin Hilman658ce972008-11-04 20:50:52 -0800282 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530283 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530284 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
285 if (core_prev_state == PWRDM_POWER_OFF) {
286 omap3_core_restore_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700287 omap3_cm_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530288 omap3_sram_restore_context();
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300289 omap2_sms_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530290 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800291 }
Tero Kristof18cc2f2009-10-23 19:03:50 +0300292 omap3_intc_resume_idle();
Kevin Hilman658ce972008-11-04 20:50:52 -0800293
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700294 pwrdm_post_transition(NULL);
Kevin Hilman658ce972008-11-04 20:50:52 -0800295
Kevin Hilmane0e29fd2012-08-07 11:28:06 -0700296 /* PER */
297 if (per_next_state < PWRDM_POWER_ON)
298 omap2_gpio_resume_after_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700299}
300
Kevin Hilman8bd22942009-05-28 10:56:16 -0700301static void omap3_pm_idle(void)
302{
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500303 if (omap_irq_pending())
Santosh Shilimkar6b856382013-02-11 19:29:45 +0530304 return;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700305
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100306 trace_cpu_idle(1, smp_processor_id());
307
Kevin Hilman8bd22942009-05-28 10:56:16 -0700308 omap_sram_idle();
309
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100310 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
Kevin Hilman8bd22942009-05-28 10:56:16 -0700311}
312
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700313#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700314static int omap3_pm_suspend(void)
315{
316 struct power_state *pwrst;
317 int state, ret = 0;
318
319 /* Read current next_pwrsts */
320 list_for_each_entry(pwrst, &pwrst_list, node)
321 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
322 /* Set ones wanted by suspend */
323 list_for_each_entry(pwrst, &pwrst_list, node) {
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530324 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700325 goto restore;
326 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
327 goto restore;
328 }
329
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300330 omap3_intc_suspend();
331
Kevin Hilman8bd22942009-05-28 10:56:16 -0700332 omap_sram_idle();
333
334restore:
335 /* Restore next_pwrsts */
336 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700337 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
338 if (state > pwrst->next_state) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600339 pr_info("Powerdomain (%s) didn't enter target state %d\n",
340 pwrst->pwrdm->name, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700341 ret = -1;
342 }
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530343 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700344 }
345 if (ret)
Mark A. Greer98179852012-03-17 18:22:48 -0700346 pr_err("Could not enter target state in pm_suspend\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700347 else
Mark A. Greer98179852012-03-17 18:22:48 -0700348 pr_info("Successfully put all powerdomains to target state\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700349
350 return ret;
351}
Dave Gerlach2e4b62d2014-05-12 13:33:21 -0500352#else
353#define omap3_pm_suspend NULL
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700354#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700355
Kevin Hilman8111b222009-04-28 15:27:44 -0700356static void __init prcm_setup_regs(void)
357{
Tero Kristoba12c242014-03-04 17:43:04 +0200358 omap3_ctrl_init();
Tero Kristob296c812009-10-23 19:03:49 +0300359
Tero Kristoc5180a22014-02-26 17:30:43 +0200360 omap3_prm_init_pm(cpu_is_omap3630(), omap3_has_iva());
Kevin Hilman8bd22942009-05-28 10:56:16 -0700361}
362
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700363void omap3_pm_off_mode_enable(int enable)
364{
365 struct power_state *pwrst;
366 u32 state;
367
368 if (enable)
369 state = PWRDM_POWER_OFF;
370 else
371 state = PWRDM_POWER_RET;
372
373 list_for_each_entry(pwrst, &pwrst_list, node) {
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600374 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
375 pwrst->pwrdm == core_pwrdm &&
376 state == PWRDM_POWER_OFF) {
377 pwrst->next_state = PWRDM_POWER_RET;
Ricardo Salveti de Araujoe16b41b2011-01-31 11:35:25 -0200378 pr_warn("%s: Core OFF disabled due to errata i583\n",
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600379 __func__);
380 } else {
381 pwrst->next_state = state;
382 }
383 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700384 }
385}
386
Tero Kristo68d47782008-11-26 12:26:24 +0200387int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
388{
389 struct power_state *pwrst;
390
391 list_for_each_entry(pwrst, &pwrst_list, node) {
392 if (pwrst->pwrdm == pwrdm)
393 return pwrst->next_state;
394 }
395 return -EINVAL;
396}
397
398int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
399{
400 struct power_state *pwrst;
401
402 list_for_each_entry(pwrst, &pwrst_list, node) {
403 if (pwrst->pwrdm == pwrdm) {
404 pwrst->next_state = state;
405 return 0;
406 }
407 }
408 return -EINVAL;
409}
410
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300411static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700412{
413 struct power_state *pwrst;
414
415 if (!pwrdm->pwrsts)
416 return 0;
417
Ming Leid3d381c2009-08-22 21:20:26 +0800418 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700419 if (!pwrst)
420 return -ENOMEM;
421 pwrst->pwrdm = pwrdm;
422 pwrst->next_state = PWRDM_POWER_RET;
423 list_add(&pwrst->node, &pwrst_list);
424
425 if (pwrdm_has_hdwr_sar(pwrdm))
426 pwrdm_enable_hdwr_sar(pwrdm);
427
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530428 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700429}
430
431/*
Jean Pihet46e130d2011-06-29 18:40:23 +0200432 * Push functions to SRAM
433 *
434 * The minimum set of functions is pushed to SRAM for execution:
435 * - omap3_do_wfi for erratum i581 WA,
436 * - save_secure_ram_context for security extensions.
437 */
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530438void omap_push_sram_idle(void)
439{
Jean Pihet46e130d2011-06-29 18:40:23 +0200440 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
441
Tero Kristo27d59a42008-10-13 13:15:00 +0300442 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
443 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
444 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530445}
446
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600447static void __init pm_errata_configure(void)
448{
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600449 if (cpu_is_omap3630()) {
Nishanth Menon458e9992010-12-20 14:05:06 -0600450 pm34xx_errata |= PM_RTA_ERRATUM_i608;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600451 /* Enable the l2 cache toggling in sleep logic */
452 enable_omap3630_toggle_l2_on_restore();
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600453 if (omap_rev() < OMAP3630_REV_ES1_2)
Paul Walmsley856c3c52012-10-16 00:08:53 -0600454 pm34xx_errata |= (PM_SDRC_WAKEUP_ERRATUM_i583 |
455 PM_PER_MEMORIES_ERRATUM_i582);
456 } else if (cpu_is_omap34xx()) {
457 pm34xx_errata |= PM_PER_MEMORIES_ERRATUM_i582;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600458 }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600459}
460
Shawn Guobbd707a2012-04-26 16:06:50 +0800461int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700462{
463 struct power_state *pwrst, *tmp;
Paul Walmsley856c3c52012-10-16 00:08:53 -0600464 struct clockdomain *neon_clkdm, *mpu_clkdm, *per_clkdm, *wkup_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700465 int ret;
466
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600467 if (!omap3_has_io_chain_ctrl())
Joe Perches3d0cb732014-09-13 11:31:16 -0700468 pr_warn("PM: no software I/O chain control; some wakeups may be lost\n");
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600469
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600470 pm_errata_configure();
471
Kevin Hilman8bd22942009-05-28 10:56:16 -0700472 /* XXX prcm_setup_regs needs to be before enabling hw
473 * supervised mode for powerdomains */
474 prcm_setup_regs();
475
Tero Kristo22f51372011-12-16 14:36:59 -0700476 ret = request_irq(omap_prcm_event_to_irq("wkup"),
477 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
478
Kevin Hilman8bd22942009-05-28 10:56:16 -0700479 if (ret) {
Tero Kristo22f51372011-12-16 14:36:59 -0700480 pr_err("pm: Failed to request pm_wkup irq\n");
481 goto err1;
482 }
483
484 /* IO interrupt is shared with mux code */
485 ret = request_irq(omap_prcm_event_to_irq("io"),
486 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
487 omap3_pm_init);
Kevin Hilman99b59df2012-04-27 16:05:51 -0700488 enable_irq(omap_prcm_event_to_irq("io"));
Tero Kristo22f51372011-12-16 14:36:59 -0700489
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}