blob: 64d95e69bc5026d39ccdf249de3822b52bda5c8b [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>
Jean Pihet5e7c58d2011-03-03 11:25:43 +010031#include <trace/events/power.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070032
Russell King2c74a0c2011-06-22 17:41:48 +010033#include <asm/suspend.h>
David Howells9f97da72012-03-28 18:30:01 +010034#include <asm/system_misc.h>
Russell King2c74a0c2011-06-22 17:41:48 +010035
Tony Lindgrence491cf2009-10-20 09:40:47 -070036#include <plat/sram.h>
Paul Walmsley1540f2142010-12-21 21:05:15 -070037#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070038#include "powerdomain.h"
Rajendra Nayak61255ab2008-09-26 17:49:56 +053039#include <plat/sdrc.h>
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053040#include <plat/prcm.h>
41#include <plat/gpmc.h>
Tero Kristof2d11852008-08-28 13:13:31 +000042#include <plat/dma.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070043
Tony Lindgren4e653312011-11-10 22:45:17 +010044#include "common.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070045#include "cm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070046#include "cm-regbits-34xx.h"
47#include "prm-regbits-34xx.h"
48
Paul Walmsley59fb6592010-12-21 15:30:55 -070049#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070050#include "pm.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030051#include "sdrc.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060052#include "control.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030053
Kevin Hilmane83df172010-12-08 22:40:40 +000054#ifdef CONFIG_SUSPEND
55static suspend_state_t suspend_state = PM_SUSPEND_ON;
Kevin Hilmane83df172010-12-08 22:40:40 +000056#endif
57
Nishanth Menon8cdfd832010-12-20 14:05:05 -060058/* pm34xx errata defined in pm.h */
59u16 pm34xx_errata;
60
Kevin Hilman8bd22942009-05-28 10:56:16 -070061struct power_state {
62 struct powerdomain *pwrdm;
63 u32 next_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070064#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -070065 u32 saved_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070066#endif
Kevin Hilman8bd22942009-05-28 10:56:16 -070067 struct list_head node;
68};
69
70static LIST_HEAD(pwrst_list);
71
Tero Kristo27d59a42008-10-13 13:15:00 +030072static int (*_omap_save_secure_sram)(u32 *addr);
Jean Pihet46e130d2011-06-29 18:40:23 +020073void (*omap3_do_wfi_sram)(void);
Tero Kristo27d59a42008-10-13 13:15:00 +030074
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053075static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
76static struct powerdomain *core_pwrdm, *per_pwrdm;
Tero Kristoc16c3f62008-12-11 16:46:57 +020077static struct powerdomain *cam_pwrdm;
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053078
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053079static inline void omap3_per_save_context(void)
80{
81 omap_gpio_save_context();
82}
83
84static inline void omap3_per_restore_context(void)
85{
86 omap_gpio_restore_context();
87}
88
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020089static void omap3_enable_io_chain(void)
90{
91 int timeout = 0;
92
Paul Walmsleyb02b9172011-10-06 17:18:45 -060093 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD,
94 PM_WKEN);
95 /* Do a readback to assure write has been done */
96 omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020097
Paul Walmsleyb02b9172011-10-06 17:18:45 -060098 while (!(omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN) &
99 OMAP3430_ST_IO_CHAIN_MASK)) {
100 timeout++;
101 if (timeout > 1000) {
102 pr_err("Wake up daisy chain activation failed.\n");
103 return;
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200104 }
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600105 omap2_prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN_MASK,
106 WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200107 }
108}
109
110static void omap3_disable_io_chain(void)
111{
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600112 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD,
113 PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200114}
115
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530116static void omap3_core_save_context(void)
117{
Paul Walmsley596efe42010-12-21 21:05:16 -0700118 omap3_ctrl_save_padconf();
Tero Kristodccaad82009-11-17 18:34:53 +0200119
120 /*
121 * Force write last pad into memory, as this can fail in some
Jean Pihet83521292010-12-18 16:44:46 +0100122 * cases according to errata 1.157, 1.185
Tero Kristodccaad82009-11-17 18:34:53 +0200123 */
124 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
125 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
126
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530127 /* Save the Interrupt controller context */
128 omap_intc_save_context();
129 /* Save the GPMC context */
130 omap3_gpmc_save_context();
131 /* Save the system control module context, padconf already save above*/
132 omap3_control_save_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000133 omap_dma_global_context_save();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530134}
135
136static void omap3_core_restore_context(void)
137{
138 /* Restore the control module context, padconf restored by h/w */
139 omap3_control_restore_context();
140 /* Restore the GPMC context */
141 omap3_gpmc_restore_context();
142 /* Restore the interrupt controller context */
143 omap_intc_restore_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000144 omap_dma_global_context_restore();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530145}
146
Tero Kristo9d971402008-12-12 11:20:05 +0200147/*
148 * FIXME: This function should be called before entering off-mode after
149 * OMAP3 secure services have been accessed. Currently it is only called
150 * once during boot sequence, but this works as we are not using secure
151 * services.
152 */
Kevin Hilman617fcc92011-01-25 16:40:01 -0800153static void omap3_save_secure_ram_context(void)
Tero Kristo27d59a42008-10-13 13:15:00 +0300154{
155 u32 ret;
Kevin Hilman617fcc92011-01-25 16:40:01 -0800156 int mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300157
158 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
Tero Kristo27d59a42008-10-13 13:15:00 +0300159 /*
160 * MPU next state must be set to POWER_ON temporarily,
161 * otherwise the WFI executed inside the ROM code
162 * will hang the system.
163 */
164 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
165 ret = _omap_save_secure_sram((u32 *)
166 __pa(omap3_secure_ram_storage));
Kevin Hilman617fcc92011-01-25 16:40:01 -0800167 pwrdm_set_next_pwrst(mpu_pwrdm, mpu_next_state);
Tero Kristo27d59a42008-10-13 13:15:00 +0300168 /* Following is for error tracking, it should not happen */
169 if (ret) {
170 printk(KERN_ERR "save_secure_sram() returns %08x\n",
171 ret);
172 while (1)
173 ;
174 }
175 }
176}
177
Jon Hunter77da2d92009-06-27 00:07:25 -0500178/*
179 * PRCM Interrupt Handler Helper Function
180 *
181 * The purpose of this function is to clear any wake-up events latched
182 * in the PRCM PM_WKST_x registers. It is possible that a wake-up event
183 * may occur whilst attempting to clear a PM_WKST_x register and thus
184 * set another bit in this register. A while loop is used to ensure
185 * that any peripheral wake-up events occurring while attempting to
186 * clear the PM_WKST_x are detected and cleared.
187 */
Tero Kristo22f51372011-12-16 14:36:59 -0700188static int prcm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits)
Jon Hunter77da2d92009-06-27 00:07:25 -0500189{
Vikram Pandita71a80772009-07-17 19:33:09 -0500190 u32 wkst, fclk, iclk, clken;
Jon Hunter77da2d92009-06-27 00:07:25 -0500191 u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1;
192 u16 fclk_off = (regs == 3) ? OMAP3430ES2_CM_FCLKEN3 : CM_FCLKEN1;
193 u16 iclk_off = (regs == 3) ? CM_ICLKEN3 : CM_ICLKEN1;
Paul Walmsley5d805972009-07-22 10:18:07 -0700194 u16 grpsel_off = (regs == 3) ?
195 OMAP3430ES2_PM_MPUGRPSEL3 : OMAP3430_PM_MPUGRPSEL;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700196 int c = 0;
Jon Hunter77da2d92009-06-27 00:07:25 -0500197
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700198 wkst = omap2_prm_read_mod_reg(module, wkst_off);
199 wkst &= omap2_prm_read_mod_reg(module, grpsel_off);
Tero Kristo22f51372011-12-16 14:36:59 -0700200 wkst &= ~ignore_bits;
Jon Hunter77da2d92009-06-27 00:07:25 -0500201 if (wkst) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700202 iclk = omap2_cm_read_mod_reg(module, iclk_off);
203 fclk = omap2_cm_read_mod_reg(module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500204 while (wkst) {
Vikram Pandita71a80772009-07-17 19:33:09 -0500205 clken = wkst;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700206 omap2_cm_set_mod_reg_bits(clken, module, iclk_off);
Vikram Pandita71a80772009-07-17 19:33:09 -0500207 /*
208 * For USBHOST, we don't know whether HOST1 or
209 * HOST2 woke us up, so enable both f-clocks
210 */
211 if (module == OMAP3430ES2_USBHOST_MOD)
212 clken |= 1 << OMAP3430ES2_EN_USBHOST2_SHIFT;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700213 omap2_cm_set_mod_reg_bits(clken, module, fclk_off);
214 omap2_prm_write_mod_reg(wkst, module, wkst_off);
215 wkst = omap2_prm_read_mod_reg(module, wkst_off);
Tero Kristo22f51372011-12-16 14:36:59 -0700216 wkst &= ~ignore_bits;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700217 c++;
Jon Hunter77da2d92009-06-27 00:07:25 -0500218 }
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700219 omap2_cm_write_mod_reg(iclk, module, iclk_off);
220 omap2_cm_write_mod_reg(fclk, module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500221 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700222
223 return c;
224}
225
Tero Kristo22f51372011-12-16 14:36:59 -0700226static irqreturn_t _prcm_int_handle_io(int irq, void *unused)
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700227{
228 int c;
229
Tero Kristo22f51372011-12-16 14:36:59 -0700230 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
231 ~(OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK));
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700232
Tero Kristo22f51372011-12-16 14:36:59 -0700233 return c ? IRQ_HANDLED : IRQ_NONE;
Jon Hunter77da2d92009-06-27 00:07:25 -0500234}
235
Tero Kristo22f51372011-12-16 14:36:59 -0700236static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700237{
Tero Kristo22f51372011-12-16 14:36:59 -0700238 int c;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700239
Tero Kristo22f51372011-12-16 14:36:59 -0700240 /*
241 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
242 * these are handled in a separate handler to avoid acking
243 * IO events before parsing in mux code
244 */
245 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
246 OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK);
247 c += prcm_clear_mod_irqs(CORE_MOD, 1, 0);
248 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1, 0);
249 if (omap_rev() > OMAP3430_REV_ES1_0) {
250 c += prcm_clear_mod_irqs(CORE_MOD, 3, 0);
251 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, 0);
252 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700253
Tero Kristo22f51372011-12-16 14:36:59 -0700254 return c ? IRQ_HANDLED : IRQ_NONE;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700255}
256
Russell Kingcbe26342011-06-30 08:45:49 +0100257static void omap34xx_save_context(u32 *save)
258{
259 u32 val;
260
261 /* Read Auxiliary Control Register */
262 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
263 *save++ = 1;
264 *save++ = val;
265
266 /* Read L2 AUX ctrl register */
267 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
268 *save++ = 1;
269 *save++ = val;
270}
271
Russell King29cb3cd2011-07-02 09:54:01 +0100272static int omap34xx_do_sram_idle(unsigned long save_state)
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530273{
Russell Kingcbe26342011-06-30 08:45:49 +0100274 omap34xx_cpu_suspend(save_state);
Russell King29cb3cd2011-07-02 09:54:01 +0100275 return 0;
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530276}
277
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530278void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700279{
280 /* Variable to tell what needs to be saved and restored
281 * in omap_sram_idle*/
282 /* save_state = 0 => Nothing to save and restored */
283 /* save_state = 1 => Only L1 and logic lost */
284 /* save_state = 2 => Only L2 lost */
285 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530286 int save_state = 0;
287 int mpu_next_state = PWRDM_POWER_ON;
288 int per_next_state = PWRDM_POWER_ON;
289 int core_next_state = PWRDM_POWER_ON;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700290 int per_going_off;
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530291 int core_prev_state, per_prev_state;
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300292 u32 sdrc_pwr = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700293
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530294 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
295 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
296 pwrdm_clear_all_prev_pwrst(core_pwrdm);
297 pwrdm_clear_all_prev_pwrst(per_pwrdm);
298
Kevin Hilman8bd22942009-05-28 10:56:16 -0700299 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
300 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530301 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700302 case PWRDM_POWER_RET:
303 /* No need to save context */
304 save_state = 0;
305 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530306 case PWRDM_POWER_OFF:
307 save_state = 3;
308 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700309 default:
310 /* Invalid state */
311 printk(KERN_ERR "Invalid mpu state in sram_idle\n");
312 return;
313 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300314
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530315 /* NEON control */
316 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200317 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530318
Mike Chan40742fa2010-05-03 16:04:06 -0700319 /* Enable IO-PAD and IO-CHAIN wakeups */
Kevin Hilman658ce972008-11-04 20:50:52 -0800320 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200321 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Kevin Hilmand5c47d72010-08-10 16:04:35 -0700322 if (omap3_has_io_wakeup() &&
323 (per_next_state < PWRDM_POWER_ON ||
324 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700325 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600326 if (omap3_has_io_chain_ctrl())
327 omap3_enable_io_chain();
Mike Chan40742fa2010-05-03 16:04:06 -0700328 }
329
Charulatha Vff2f8e52011-09-13 18:32:37 +0530330 pwrdm_pre_transition();
331
Mike Chan40742fa2010-05-03 16:04:06 -0700332 /* PER */
Kevin Hilman658ce972008-11-04 20:50:52 -0800333 if (per_next_state < PWRDM_POWER_ON) {
Paul Walmsley72e06d02010-12-21 21:05:16 -0700334 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700335 omap2_gpio_prepare_for_idle(per_going_off);
Kevin Hilmane7410cf2010-09-08 16:37:42 -0700336 if (per_next_state == PWRDM_POWER_OFF)
Tero Kristoecf157d2008-12-01 13:17:29 +0200337 omap3_per_save_context();
Kevin Hilman658ce972008-11-04 20:50:52 -0800338 }
339
340 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530341 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530342 if (core_next_state == PWRDM_POWER_OFF) {
343 omap3_core_save_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700344 omap3_cm_save_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530345 }
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530346 }
Mike Chan40742fa2010-05-03 16:04:06 -0700347
Tero Kristof18cc2f2009-10-23 19:03:50 +0300348 omap3_intc_prepare_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700349
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530350 /*
Paul Walmsley30474542011-10-06 13:43:23 -0600351 * On EMU/HS devices ROM code restores a SRDC value
352 * from scratchpad which has automatic self refresh on timeout
353 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
354 * Hence store/restore the SDRC_POWER register here.
355 */
356 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
357 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
358 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530359 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300360 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300361
362 /*
Russell King076f2cc2011-06-22 15:42:54 +0100363 * omap3_arm_context is the location where some ARM context
364 * get saved. The rest is placed on the stack, and restored
365 * from there before resuming.
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530366 */
Russell Kingcbe26342011-06-30 08:45:49 +0100367 if (save_state)
368 omap34xx_save_context(omap3_arm_context);
Russell King076f2cc2011-06-22 15:42:54 +0100369 if (save_state == 1 || save_state == 3)
Russell King2c74a0c2011-06-22 17:41:48 +0100370 cpu_suspend(save_state, omap34xx_do_sram_idle);
Russell King076f2cc2011-06-22 15:42:54 +0100371 else
372 omap34xx_do_sram_idle(save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700373
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530374 /* Restore normal SDRC POWER settings */
Paul Walmsley30474542011-10-06 13:43:23 -0600375 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
376 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
377 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300378 core_next_state == PWRDM_POWER_OFF)
379 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
380
Kevin Hilman658ce972008-11-04 20:50:52 -0800381 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530382 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530383 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
384 if (core_prev_state == PWRDM_POWER_OFF) {
385 omap3_core_restore_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700386 omap3_cm_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530387 omap3_sram_restore_context();
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300388 omap2_sms_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530389 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800390 if (core_next_state == PWRDM_POWER_OFF)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700391 omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK,
Kevin Hilman658ce972008-11-04 20:50:52 -0800392 OMAP3430_GR_MOD,
393 OMAP3_PRM_VOLTCTRL_OFFSET);
394 }
Tero Kristof18cc2f2009-10-23 19:03:50 +0300395 omap3_intc_resume_idle();
Kevin Hilman658ce972008-11-04 20:50:52 -0800396
Charulatha Vff2f8e52011-09-13 18:32:37 +0530397 pwrdm_post_transition();
398
Kevin Hilman658ce972008-11-04 20:50:52 -0800399 /* PER */
400 if (per_next_state < PWRDM_POWER_ON) {
401 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800402 omap2_gpio_resume_after_idle();
403 if (per_prev_state == PWRDM_POWER_OFF)
Kevin Hilman658ce972008-11-04 20:50:52 -0800404 omap3_per_restore_context();
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530405 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300406
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200407 /* Disable IO-PAD and IO-CHAIN wakeup */
Kevin Hilman58a55592010-08-16 09:21:19 +0300408 if (omap3_has_io_wakeup() &&
409 (per_next_state < PWRDM_POWER_ON ||
410 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700411 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD,
412 PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600413 if (omap3_has_io_chain_ctrl())
414 omap3_disable_io_chain();
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200415 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800416
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700417 clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700418}
419
Kevin Hilman8bd22942009-05-28 10:56:16 -0700420static void omap3_pm_idle(void)
421{
422 local_irq_disable();
423 local_fiq_disable();
424
Tero Kristocf228542009-03-20 15:21:02 +0200425 if (omap_irq_pending() || need_resched())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700426 goto out;
427
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100428 trace_power_start(POWER_CSTATE, 1, smp_processor_id());
429 trace_cpu_idle(1, smp_processor_id());
430
Kevin Hilman8bd22942009-05-28 10:56:16 -0700431 omap_sram_idle();
432
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100433 trace_power_end(smp_processor_id());
434 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
435
Kevin Hilman8bd22942009-05-28 10:56:16 -0700436out:
437 local_fiq_enable();
438 local_irq_enable();
439}
440
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700441#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700442static int omap3_pm_suspend(void)
443{
444 struct power_state *pwrst;
445 int state, ret = 0;
446
447 /* Read current next_pwrsts */
448 list_for_each_entry(pwrst, &pwrst_list, node)
449 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
450 /* Set ones wanted by suspend */
451 list_for_each_entry(pwrst, &pwrst_list, node) {
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530452 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700453 goto restore;
454 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
455 goto restore;
456 }
457
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300458 omap3_intc_suspend();
459
Kevin Hilman8bd22942009-05-28 10:56:16 -0700460 omap_sram_idle();
461
462restore:
463 /* Restore next_pwrsts */
464 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700465 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
466 if (state > pwrst->next_state) {
467 printk(KERN_INFO "Powerdomain (%s) didn't enter "
468 "target state %d\n",
469 pwrst->pwrdm->name, pwrst->next_state);
470 ret = -1;
471 }
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530472 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700473 }
474 if (ret)
475 printk(KERN_ERR "Could not enter target state in pm_suspend\n");
476 else
477 printk(KERN_INFO "Successfully put all powerdomains "
478 "to target state\n");
479
480 return ret;
481}
482
Tero Kristo24662112009-03-05 16:32:23 +0200483static int omap3_pm_enter(suspend_state_t unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700484{
485 int ret = 0;
486
Tero Kristo24662112009-03-05 16:32:23 +0200487 switch (suspend_state) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700488 case PM_SUSPEND_STANDBY:
489 case PM_SUSPEND_MEM:
490 ret = omap3_pm_suspend();
491 break;
492 default:
493 ret = -EINVAL;
494 }
495
496 return ret;
497}
498
Tero Kristo24662112009-03-05 16:32:23 +0200499/* Hooks to enable / disable UART interrupts during suspend */
500static int omap3_pm_begin(suspend_state_t state)
501{
Jean Pihetc1663812010-12-09 18:39:58 +0100502 disable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200503 suspend_state = state;
Tero Kristo22f51372011-12-16 14:36:59 -0700504 omap_prcm_irq_prepare();
Tero Kristo24662112009-03-05 16:32:23 +0200505 return 0;
506}
507
508static void omap3_pm_end(void)
509{
510 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100511 enable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200512 return;
513}
514
Tero Kristo22f51372011-12-16 14:36:59 -0700515static void omap3_pm_finish(void)
516{
517 omap_prcm_irq_complete();
518}
519
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100520static const struct platform_suspend_ops omap_pm_ops = {
Tero Kristo24662112009-03-05 16:32:23 +0200521 .begin = omap3_pm_begin,
522 .end = omap3_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700523 .enter = omap3_pm_enter,
Tero Kristo22f51372011-12-16 14:36:59 -0700524 .finish = omap3_pm_finish,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700525 .valid = suspend_valid_only_mem,
526};
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700527#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700528
Kevin Hilman1155e422008-11-25 11:48:24 -0800529
530/**
531 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
532 * retention
533 *
534 * In cases where IVA2 is activated by bootcode, it may prevent
535 * full-chip retention or off-mode because it is not idle. This
536 * function forces the IVA2 into idle state so it can go
537 * into retention/off and thus allow full-chip retention/off.
538 *
539 **/
540static void __init omap3_iva_idle(void)
541{
542 /* ensure IVA2 clock is disabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700543 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800544
545 /* if no clock activity, nothing else to do */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700546 if (!(omap2_cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
Kevin Hilman1155e422008-11-25 11:48:24 -0800547 OMAP3430_CLKACTIVITY_IVA2_MASK))
548 return;
549
550 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700551 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600552 OMAP3430_RST2_IVA2_MASK |
553 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700554 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800555
556 /* Enable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700557 omap2_cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK,
Kevin Hilman1155e422008-11-25 11:48:24 -0800558 OMAP3430_IVA2_MOD, CM_FCLKEN);
559
560 /* Set IVA2 boot mode to 'idle' */
561 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
562 OMAP343X_CONTROL_IVA2_BOOTMOD);
563
564 /* Un-reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700565 omap2_prm_write_mod_reg(0, OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800566
567 /* Disable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700568 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800569
570 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700571 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600572 OMAP3430_RST2_IVA2_MASK |
573 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700574 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800575}
576
Kevin Hilman8111b222009-04-28 15:27:44 -0700577static void __init omap3_d2d_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700578{
Kevin Hilman8111b222009-04-28 15:27:44 -0700579 u16 mask, padconf;
580
581 /* In a stand alone OMAP3430 where there is not a stacked
582 * modem for the D2D Idle Ack and D2D MStandby must be pulled
583 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
584 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
585 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
586 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
587 padconf |= mask;
588 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
589
590 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
591 padconf |= mask;
592 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
593
Kevin Hilman8bd22942009-05-28 10:56:16 -0700594 /* reset modem */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700595 omap2_prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600596 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700597 CORE_MOD, OMAP2_RM_RSTCTRL);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700598 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman8111b222009-04-28 15:27:44 -0700599}
Kevin Hilman8bd22942009-05-28 10:56:16 -0700600
Kevin Hilman8111b222009-04-28 15:27:44 -0700601static void __init prcm_setup_regs(void)
602{
Govindraj.Re5863682010-09-27 20:20:25 +0530603 u32 omap3630_en_uart4_mask = cpu_is_omap3630() ?
604 OMAP3630_EN_UART4_MASK : 0;
605 u32 omap3630_grpsel_uart4_mask = cpu_is_omap3630() ?
606 OMAP3630_GRPSEL_UART4_MASK : 0;
607
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700608 /* XXX This should be handled by hwmod code or SCM init code */
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600609 omap_ctrl_writel(OMAP3430_AUTOIDLE_MASK, OMAP2_CONTROL_SYSCONFIG);
Tero Kristob296c812009-10-23 19:03:49 +0300610
Kevin Hilman8bd22942009-05-28 10:56:16 -0700611 /*
Kevin Hilman8bd22942009-05-28 10:56:16 -0700612 * Enable control of expternal oscillator through
613 * sys_clkreq. In the long run clock framework should
614 * take care of this.
615 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700616 omap2_prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700617 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
618 OMAP3430_GR_MOD,
619 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
620
621 /* setup wakup source */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700622 omap2_prm_write_mod_reg(OMAP3430_EN_IO_MASK | OMAP3430_EN_GPIO1_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600623 OMAP3430_EN_GPT1_MASK | OMAP3430_EN_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700624 WKUP_MOD, PM_WKEN);
625 /* No need to write EN_IO, that is always enabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700626 omap2_prm_write_mod_reg(OMAP3430_GRPSEL_GPIO1_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600627 OMAP3430_GRPSEL_GPT1_MASK |
628 OMAP3430_GRPSEL_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700629 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800630
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530631 /* Enable PM_WKEN to support DSS LPR */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700632 omap2_prm_write_mod_reg(OMAP3430_PM_WKEN_DSS_EN_DSS_MASK,
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530633 OMAP3430_DSS_MOD, PM_WKEN);
634
Kevin Hilmanb427f922009-10-22 14:48:13 -0700635 /* Enable wakeups in PER */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700636 omap2_prm_write_mod_reg(omap3630_en_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530637 OMAP3430_EN_GPIO2_MASK | OMAP3430_EN_GPIO3_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600638 OMAP3430_EN_GPIO4_MASK | OMAP3430_EN_GPIO5_MASK |
639 OMAP3430_EN_GPIO6_MASK | OMAP3430_EN_UART3_MASK |
640 OMAP3430_EN_MCBSP2_MASK | OMAP3430_EN_MCBSP3_MASK |
641 OMAP3430_EN_MCBSP4_MASK,
Kevin Hilmanb427f922009-10-22 14:48:13 -0700642 OMAP3430_PER_MOD, PM_WKEN);
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000643 /* and allow them to wake up MPU */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700644 omap2_prm_write_mod_reg(omap3630_grpsel_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530645 OMAP3430_GRPSEL_GPIO2_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600646 OMAP3430_GRPSEL_GPIO3_MASK |
647 OMAP3430_GRPSEL_GPIO4_MASK |
648 OMAP3430_GRPSEL_GPIO5_MASK |
649 OMAP3430_GRPSEL_GPIO6_MASK |
650 OMAP3430_GRPSEL_UART3_MASK |
651 OMAP3430_GRPSEL_MCBSP2_MASK |
652 OMAP3430_GRPSEL_MCBSP3_MASK |
653 OMAP3430_GRPSEL_MCBSP4_MASK,
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000654 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
655
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700656 /* Don't attach IVA interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700657 omap2_prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
658 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
659 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
660 omap2_prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700661
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700662 /* Clear any pending 'reset' flags */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700663 omap2_prm_write_mod_reg(0xffffffff, MPU_MOD, OMAP2_RM_RSTST);
664 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP2_RM_RSTST);
665 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, OMAP2_RM_RSTST);
666 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, OMAP2_RM_RSTST);
667 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, OMAP2_RM_RSTST);
668 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, OMAP2_RM_RSTST);
669 omap2_prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, OMAP2_RM_RSTST);
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700670
Kevin Hilman014c46d2009-04-27 07:50:23 -0700671 /* Clear any pending PRCM interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700672 omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman014c46d2009-04-27 07:50:23 -0700673
Kevin Hilman1155e422008-11-25 11:48:24 -0800674 omap3_iva_idle();
Kevin Hilman8111b222009-04-28 15:27:44 -0700675 omap3_d2d_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700676}
677
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700678void omap3_pm_off_mode_enable(int enable)
679{
680 struct power_state *pwrst;
681 u32 state;
682
683 if (enable)
684 state = PWRDM_POWER_OFF;
685 else
686 state = PWRDM_POWER_RET;
687
688 list_for_each_entry(pwrst, &pwrst_list, node) {
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600689 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
690 pwrst->pwrdm == core_pwrdm &&
691 state == PWRDM_POWER_OFF) {
692 pwrst->next_state = PWRDM_POWER_RET;
Ricardo Salveti de Araujoe16b41b2011-01-31 11:35:25 -0200693 pr_warn("%s: Core OFF disabled due to errata i583\n",
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600694 __func__);
695 } else {
696 pwrst->next_state = state;
697 }
698 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700699 }
700}
701
Tero Kristo68d47782008-11-26 12:26:24 +0200702int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
703{
704 struct power_state *pwrst;
705
706 list_for_each_entry(pwrst, &pwrst_list, node) {
707 if (pwrst->pwrdm == pwrdm)
708 return pwrst->next_state;
709 }
710 return -EINVAL;
711}
712
713int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
714{
715 struct power_state *pwrst;
716
717 list_for_each_entry(pwrst, &pwrst_list, node) {
718 if (pwrst->pwrdm == pwrdm) {
719 pwrst->next_state = state;
720 return 0;
721 }
722 }
723 return -EINVAL;
724}
725
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300726static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700727{
728 struct power_state *pwrst;
729
730 if (!pwrdm->pwrsts)
731 return 0;
732
Ming Leid3d381c2009-08-22 21:20:26 +0800733 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700734 if (!pwrst)
735 return -ENOMEM;
736 pwrst->pwrdm = pwrdm;
737 pwrst->next_state = PWRDM_POWER_RET;
738 list_add(&pwrst->node, &pwrst_list);
739
740 if (pwrdm_has_hdwr_sar(pwrdm))
741 pwrdm_enable_hdwr_sar(pwrdm);
742
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530743 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700744}
745
746/*
747 * Enable hw supervised mode for all clockdomains if it's
748 * supported. Initiate sleep transition for other clockdomains, if
749 * they are not used
750 */
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300751static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700752{
753 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700754 clkdm_allow_idle(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700755 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
756 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700757 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700758 return 0;
759}
760
Jean Pihet46e130d2011-06-29 18:40:23 +0200761/*
762 * Push functions to SRAM
763 *
764 * The minimum set of functions is pushed to SRAM for execution:
765 * - omap3_do_wfi for erratum i581 WA,
766 * - save_secure_ram_context for security extensions.
767 */
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530768void omap_push_sram_idle(void)
769{
Jean Pihet46e130d2011-06-29 18:40:23 +0200770 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
771
Tero Kristo27d59a42008-10-13 13:15:00 +0300772 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
773 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
774 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530775}
776
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600777static void __init pm_errata_configure(void)
778{
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600779 if (cpu_is_omap3630()) {
Nishanth Menon458e9992010-12-20 14:05:06 -0600780 pm34xx_errata |= PM_RTA_ERRATUM_i608;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600781 /* Enable the l2 cache toggling in sleep logic */
782 enable_omap3630_toggle_l2_on_restore();
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600783 if (omap_rev() < OMAP3630_REV_ES1_2)
784 pm34xx_errata |= PM_SDRC_WAKEUP_ERRATUM_i583;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600785 }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600786}
787
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700788static int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700789{
790 struct power_state *pwrst, *tmp;
Paul Walmsley55ed9692010-01-26 20:12:59 -0700791 struct clockdomain *neon_clkdm, *per_clkdm, *mpu_clkdm, *core_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700792 int ret;
793
794 if (!cpu_is_omap34xx())
795 return -ENODEV;
796
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600797 if (!omap3_has_io_chain_ctrl())
798 pr_warning("PM: no software I/O chain control; some wakeups may be lost\n");
799
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600800 pm_errata_configure();
801
Kevin Hilman8bd22942009-05-28 10:56:16 -0700802 /* XXX prcm_setup_regs needs to be before enabling hw
803 * supervised mode for powerdomains */
804 prcm_setup_regs();
805
Tero Kristo22f51372011-12-16 14:36:59 -0700806 ret = request_irq(omap_prcm_event_to_irq("wkup"),
807 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
808
Kevin Hilman8bd22942009-05-28 10:56:16 -0700809 if (ret) {
Tero Kristo22f51372011-12-16 14:36:59 -0700810 pr_err("pm: Failed to request pm_wkup irq\n");
811 goto err1;
812 }
813
814 /* IO interrupt is shared with mux code */
815 ret = request_irq(omap_prcm_event_to_irq("io"),
816 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
817 omap3_pm_init);
818
819 if (ret) {
820 pr_err("pm: Failed to request pm_io irq\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700821 goto err1;
822 }
823
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300824 ret = pwrdm_for_each(pwrdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700825 if (ret) {
826 printk(KERN_ERR "Failed to setup powerdomains\n");
827 goto err2;
828 }
829
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300830 (void) clkdm_for_each(clkdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700831
832 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
833 if (mpu_pwrdm == NULL) {
834 printk(KERN_ERR "Failed to get mpu_pwrdm\n");
835 goto err2;
836 }
837
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530838 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
839 per_pwrdm = pwrdm_lookup("per_pwrdm");
840 core_pwrdm = pwrdm_lookup("core_pwrdm");
Tero Kristoc16c3f62008-12-11 16:46:57 +0200841 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530842
Paul Walmsley55ed9692010-01-26 20:12:59 -0700843 neon_clkdm = clkdm_lookup("neon_clkdm");
844 mpu_clkdm = clkdm_lookup("mpu_clkdm");
845 per_clkdm = clkdm_lookup("per_clkdm");
846 core_clkdm = clkdm_lookup("core_clkdm");
847
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700848#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700849 suspend_set_ops(&omap_pm_ops);
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700850#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700851
852 pm_idle = omap3_pm_idle;
Kalle Jokiniemi03433712008-09-26 11:04:20 +0300853 omap3_idle_init();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700854
Nishanth Menon458e9992010-12-20 14:05:06 -0600855 /*
856 * RTA is disabled during initialization as per erratum i608
857 * it is safer to disable RTA by the bootloader, but we would like
858 * to be doubly sure here and prevent any mishaps.
859 */
860 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
861 omap3630_ctrl_disable_rta();
862
Paul Walmsley55ed9692010-01-26 20:12:59 -0700863 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300864 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
865 omap3_secure_ram_storage =
866 kmalloc(0x803F, GFP_KERNEL);
867 if (!omap3_secure_ram_storage)
868 printk(KERN_ERR "Memory allocation failed when"
869 "allocating for secure sram context\n");
Tero Kristo27d59a42008-10-13 13:15:00 +0300870
Tero Kristo9d971402008-12-12 11:20:05 +0200871 local_irq_disable();
872 local_fiq_disable();
873
874 omap_dma_global_context_save();
Kevin Hilman617fcc92011-01-25 16:40:01 -0800875 omap3_save_secure_ram_context();
Tero Kristo9d971402008-12-12 11:20:05 +0200876 omap_dma_global_context_restore();
877
878 local_irq_enable();
879 local_fiq_enable();
880 }
881
882 omap3_save_scratchpad_contents();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700883err1:
884 return ret;
885err2:
886 free_irq(INT_34XX_PRCM_MPU_IRQ, NULL);
887 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
888 list_del(&pwrst->node);
889 kfree(pwrst);
890 }
891 return ret;
892}
893
894late_initcall(omap3_pm_init);