blob: 6aeacf66079039133c9adeae2397083fc11961d2 [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>
34
Tony Lindgrence491cf2009-10-20 09:40:47 -070035#include <plat/sram.h>
Paul Walmsley1540f2142010-12-21 21:05:15 -070036#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -070037#include "powerdomain.h"
Rajendra Nayak61255ab2008-09-26 17:49:56 +053038#include <plat/sdrc.h>
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053039#include <plat/prcm.h>
40#include <plat/gpmc.h>
Tero Kristof2d11852008-08-28 13:13:31 +000041#include <plat/dma.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070042
Tony Lindgren4e653312011-11-10 22:45:17 +010043#include "common.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -070044#include "cm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070045#include "cm-regbits-34xx.h"
46#include "prm-regbits-34xx.h"
47
Paul Walmsley59fb6592010-12-21 15:30:55 -070048#include "prm2xxx_3xxx.h"
Kevin Hilman8bd22942009-05-28 10:56:16 -070049#include "pm.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030050#include "sdrc.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060051#include "control.h"
Tero Kristo13a6fe0f2008-10-13 13:17:06 +030052
Kevin Hilmane83df172010-12-08 22:40:40 +000053#ifdef CONFIG_SUSPEND
54static suspend_state_t suspend_state = PM_SUSPEND_ON;
Kevin Hilmane83df172010-12-08 22:40:40 +000055#endif
56
Nishanth Menon8cdfd832010-12-20 14:05:05 -060057/* pm34xx errata defined in pm.h */
58u16 pm34xx_errata;
59
Kevin Hilman8bd22942009-05-28 10:56:16 -070060struct power_state {
61 struct powerdomain *pwrdm;
62 u32 next_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070063#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -070064 u32 saved_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070065#endif
Kevin Hilman8bd22942009-05-28 10:56:16 -070066 struct list_head node;
67};
68
69static LIST_HEAD(pwrst_list);
70
Tero Kristo27d59a42008-10-13 13:15:00 +030071static int (*_omap_save_secure_sram)(u32 *addr);
Jean Pihet46e130d2011-06-29 18:40:23 +020072void (*omap3_do_wfi_sram)(void);
Tero Kristo27d59a42008-10-13 13:15:00 +030073
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053074static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
75static struct powerdomain *core_pwrdm, *per_pwrdm;
Tero Kristoc16c3f62008-12-11 16:46:57 +020076static struct powerdomain *cam_pwrdm;
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053077
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053078static inline void omap3_per_save_context(void)
79{
80 omap_gpio_save_context();
81}
82
83static inline void omap3_per_restore_context(void)
84{
85 omap_gpio_restore_context();
86}
87
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020088static void omap3_enable_io_chain(void)
89{
90 int timeout = 0;
91
Paul Walmsleyb02b9172011-10-06 17:18:45 -060092 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD,
93 PM_WKEN);
94 /* Do a readback to assure write has been done */
95 omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020096
Paul Walmsleyb02b9172011-10-06 17:18:45 -060097 while (!(omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN) &
98 OMAP3430_ST_IO_CHAIN_MASK)) {
99 timeout++;
100 if (timeout > 1000) {
101 pr_err("Wake up daisy chain activation failed.\n");
102 return;
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200103 }
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600104 omap2_prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN_MASK,
105 WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200106 }
107}
108
109static void omap3_disable_io_chain(void)
110{
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600111 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD,
112 PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200113}
114
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530115static void omap3_core_save_context(void)
116{
Paul Walmsley596efe42010-12-21 21:05:16 -0700117 omap3_ctrl_save_padconf();
Tero Kristodccaad82009-11-17 18:34:53 +0200118
119 /*
120 * Force write last pad into memory, as this can fail in some
Jean Pihet83521292010-12-18 16:44:46 +0100121 * cases according to errata 1.157, 1.185
Tero Kristodccaad82009-11-17 18:34:53 +0200122 */
123 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
124 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
125
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530126 /* Save the Interrupt controller context */
127 omap_intc_save_context();
128 /* Save the GPMC context */
129 omap3_gpmc_save_context();
130 /* Save the system control module context, padconf already save above*/
131 omap3_control_save_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000132 omap_dma_global_context_save();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530133}
134
135static void omap3_core_restore_context(void)
136{
137 /* Restore the control module context, padconf restored by h/w */
138 omap3_control_restore_context();
139 /* Restore the GPMC context */
140 omap3_gpmc_restore_context();
141 /* Restore the interrupt controller context */
142 omap_intc_restore_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000143 omap_dma_global_context_restore();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530144}
145
Tero Kristo9d971402008-12-12 11:20:05 +0200146/*
147 * FIXME: This function should be called before entering off-mode after
148 * OMAP3 secure services have been accessed. Currently it is only called
149 * once during boot sequence, but this works as we are not using secure
150 * services.
151 */
Kevin Hilman617fcc92011-01-25 16:40:01 -0800152static void omap3_save_secure_ram_context(void)
Tero Kristo27d59a42008-10-13 13:15:00 +0300153{
154 u32 ret;
Kevin Hilman617fcc92011-01-25 16:40:01 -0800155 int mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300156
157 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
Tero Kristo27d59a42008-10-13 13:15:00 +0300158 /*
159 * MPU next state must be set to POWER_ON temporarily,
160 * otherwise the WFI executed inside the ROM code
161 * will hang the system.
162 */
163 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
164 ret = _omap_save_secure_sram((u32 *)
165 __pa(omap3_secure_ram_storage));
Kevin Hilman617fcc92011-01-25 16:40:01 -0800166 pwrdm_set_next_pwrst(mpu_pwrdm, mpu_next_state);
Tero Kristo27d59a42008-10-13 13:15:00 +0300167 /* Following is for error tracking, it should not happen */
168 if (ret) {
Mark A. Greer98179852012-03-17 18:22:48 -0700169 pr_err("save_secure_sram() returns %08x\n", ret);
Tero Kristo27d59a42008-10-13 13:15:00 +0300170 while (1)
171 ;
172 }
173 }
174}
175
Jon Hunter77da2d92009-06-27 00:07:25 -0500176/*
177 * PRCM Interrupt Handler Helper Function
178 *
179 * The purpose of this function is to clear any wake-up events latched
180 * in the PRCM PM_WKST_x registers. It is possible that a wake-up event
181 * may occur whilst attempting to clear a PM_WKST_x register and thus
182 * set another bit in this register. A while loop is used to ensure
183 * that any peripheral wake-up events occurring while attempting to
184 * clear the PM_WKST_x are detected and cleared.
185 */
Tero Kristo22f51372011-12-16 14:36:59 -0700186static int prcm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits)
Jon Hunter77da2d92009-06-27 00:07:25 -0500187{
Vikram Pandita71a80772009-07-17 19:33:09 -0500188 u32 wkst, fclk, iclk, clken;
Jon Hunter77da2d92009-06-27 00:07:25 -0500189 u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1;
190 u16 fclk_off = (regs == 3) ? OMAP3430ES2_CM_FCLKEN3 : CM_FCLKEN1;
191 u16 iclk_off = (regs == 3) ? CM_ICLKEN3 : CM_ICLKEN1;
Paul Walmsley5d805972009-07-22 10:18:07 -0700192 u16 grpsel_off = (regs == 3) ?
193 OMAP3430ES2_PM_MPUGRPSEL3 : OMAP3430_PM_MPUGRPSEL;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700194 int c = 0;
Jon Hunter77da2d92009-06-27 00:07:25 -0500195
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700196 wkst = omap2_prm_read_mod_reg(module, wkst_off);
197 wkst &= omap2_prm_read_mod_reg(module, grpsel_off);
Tero Kristo22f51372011-12-16 14:36:59 -0700198 wkst &= ~ignore_bits;
Jon Hunter77da2d92009-06-27 00:07:25 -0500199 if (wkst) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700200 iclk = omap2_cm_read_mod_reg(module, iclk_off);
201 fclk = omap2_cm_read_mod_reg(module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500202 while (wkst) {
Vikram Pandita71a80772009-07-17 19:33:09 -0500203 clken = wkst;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700204 omap2_cm_set_mod_reg_bits(clken, module, iclk_off);
Vikram Pandita71a80772009-07-17 19:33:09 -0500205 /*
206 * For USBHOST, we don't know whether HOST1 or
207 * HOST2 woke us up, so enable both f-clocks
208 */
209 if (module == OMAP3430ES2_USBHOST_MOD)
210 clken |= 1 << OMAP3430ES2_EN_USBHOST2_SHIFT;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700211 omap2_cm_set_mod_reg_bits(clken, module, fclk_off);
212 omap2_prm_write_mod_reg(wkst, module, wkst_off);
213 wkst = omap2_prm_read_mod_reg(module, wkst_off);
Tero Kristo22f51372011-12-16 14:36:59 -0700214 wkst &= ~ignore_bits;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700215 c++;
Jon Hunter77da2d92009-06-27 00:07:25 -0500216 }
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700217 omap2_cm_write_mod_reg(iclk, module, iclk_off);
218 omap2_cm_write_mod_reg(fclk, module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500219 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700220
221 return c;
222}
223
Tero Kristo22f51372011-12-16 14:36:59 -0700224static irqreturn_t _prcm_int_handle_io(int irq, void *unused)
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700225{
226 int c;
227
Tero Kristo22f51372011-12-16 14:36:59 -0700228 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
229 ~(OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK));
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700230
Tero Kristo22f51372011-12-16 14:36:59 -0700231 return c ? IRQ_HANDLED : IRQ_NONE;
Jon Hunter77da2d92009-06-27 00:07:25 -0500232}
233
Tero Kristo22f51372011-12-16 14:36:59 -0700234static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700235{
Tero Kristo22f51372011-12-16 14:36:59 -0700236 int c;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700237
Tero Kristo22f51372011-12-16 14:36:59 -0700238 /*
239 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
240 * these are handled in a separate handler to avoid acking
241 * IO events before parsing in mux code
242 */
243 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
244 OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK);
245 c += prcm_clear_mod_irqs(CORE_MOD, 1, 0);
246 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1, 0);
247 if (omap_rev() > OMAP3430_REV_ES1_0) {
248 c += prcm_clear_mod_irqs(CORE_MOD, 3, 0);
249 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, 0);
250 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700251
Tero Kristo22f51372011-12-16 14:36:59 -0700252 return c ? IRQ_HANDLED : IRQ_NONE;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700253}
254
Russell Kingcbe26342011-06-30 08:45:49 +0100255static void omap34xx_save_context(u32 *save)
256{
257 u32 val;
258
259 /* Read Auxiliary Control Register */
260 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
261 *save++ = 1;
262 *save++ = val;
263
264 /* Read L2 AUX ctrl register */
265 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
266 *save++ = 1;
267 *save++ = val;
268}
269
Russell King29cb3cd2011-07-02 09:54:01 +0100270static int omap34xx_do_sram_idle(unsigned long save_state)
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530271{
Russell Kingcbe26342011-06-30 08:45:49 +0100272 omap34xx_cpu_suspend(save_state);
Russell King29cb3cd2011-07-02 09:54:01 +0100273 return 0;
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530274}
275
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530276void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700277{
278 /* Variable to tell what needs to be saved and restored
279 * in omap_sram_idle*/
280 /* save_state = 0 => Nothing to save and restored */
281 /* save_state = 1 => Only L1 and logic lost */
282 /* save_state = 2 => Only L2 lost */
283 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530284 int save_state = 0;
285 int mpu_next_state = PWRDM_POWER_ON;
286 int per_next_state = PWRDM_POWER_ON;
287 int core_next_state = PWRDM_POWER_ON;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700288 int per_going_off;
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530289 int core_prev_state, per_prev_state;
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300290 u32 sdrc_pwr = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700291
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530292 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
293 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
294 pwrdm_clear_all_prev_pwrst(core_pwrdm);
295 pwrdm_clear_all_prev_pwrst(per_pwrdm);
296
Kevin Hilman8bd22942009-05-28 10:56:16 -0700297 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
298 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530299 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700300 case PWRDM_POWER_RET:
301 /* No need to save context */
302 save_state = 0;
303 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530304 case PWRDM_POWER_OFF:
305 save_state = 3;
306 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700307 default:
308 /* Invalid state */
Mark A. Greer98179852012-03-17 18:22:48 -0700309 pr_err("Invalid mpu state in sram_idle\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700310 return;
311 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300312
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530313 /* NEON control */
314 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200315 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530316
Mike Chan40742fa2010-05-03 16:04:06 -0700317 /* Enable IO-PAD and IO-CHAIN wakeups */
Kevin Hilman658ce972008-11-04 20:50:52 -0800318 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200319 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Kevin Hilmand5c47d72010-08-10 16:04:35 -0700320 if (omap3_has_io_wakeup() &&
321 (per_next_state < PWRDM_POWER_ON ||
322 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700323 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600324 if (omap3_has_io_chain_ctrl())
325 omap3_enable_io_chain();
Mike Chan40742fa2010-05-03 16:04:06 -0700326 }
327
Charulatha Vff2f8e52011-09-13 18:32:37 +0530328 pwrdm_pre_transition();
329
Mike Chan40742fa2010-05-03 16:04:06 -0700330 /* PER */
Kevin Hilman658ce972008-11-04 20:50:52 -0800331 if (per_next_state < PWRDM_POWER_ON) {
Paul Walmsley72e06d02010-12-21 21:05:16 -0700332 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700333 omap2_gpio_prepare_for_idle(per_going_off);
Kevin Hilmane7410cf2010-09-08 16:37:42 -0700334 if (per_next_state == PWRDM_POWER_OFF)
Tero Kristoecf157d2008-12-01 13:17:29 +0200335 omap3_per_save_context();
Kevin Hilman658ce972008-11-04 20:50:52 -0800336 }
337
338 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530339 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530340 if (core_next_state == PWRDM_POWER_OFF) {
341 omap3_core_save_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700342 omap3_cm_save_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530343 }
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530344 }
Mike Chan40742fa2010-05-03 16:04:06 -0700345
Tero Kristof18cc2f2009-10-23 19:03:50 +0300346 omap3_intc_prepare_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700347
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530348 /*
Paul Walmsley30474542011-10-06 13:43:23 -0600349 * On EMU/HS devices ROM code restores a SRDC value
350 * from scratchpad which has automatic self refresh on timeout
351 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
352 * Hence store/restore the SDRC_POWER register here.
353 */
354 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
355 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
356 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530357 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300358 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300359
360 /*
Russell King076f2cc2011-06-22 15:42:54 +0100361 * omap3_arm_context is the location where some ARM context
362 * get saved. The rest is placed on the stack, and restored
363 * from there before resuming.
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530364 */
Russell Kingcbe26342011-06-30 08:45:49 +0100365 if (save_state)
366 omap34xx_save_context(omap3_arm_context);
Russell King076f2cc2011-06-22 15:42:54 +0100367 if (save_state == 1 || save_state == 3)
Russell King2c74a0c2011-06-22 17:41:48 +0100368 cpu_suspend(save_state, omap34xx_do_sram_idle);
Russell King076f2cc2011-06-22 15:42:54 +0100369 else
370 omap34xx_do_sram_idle(save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700371
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530372 /* Restore normal SDRC POWER settings */
Paul Walmsley30474542011-10-06 13:43:23 -0600373 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
374 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
375 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300376 core_next_state == PWRDM_POWER_OFF)
377 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
378
Kevin Hilman658ce972008-11-04 20:50:52 -0800379 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530380 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530381 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
382 if (core_prev_state == PWRDM_POWER_OFF) {
383 omap3_core_restore_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700384 omap3_cm_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530385 omap3_sram_restore_context();
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300386 omap2_sms_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530387 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800388 if (core_next_state == PWRDM_POWER_OFF)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700389 omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK,
Kevin Hilman658ce972008-11-04 20:50:52 -0800390 OMAP3430_GR_MOD,
391 OMAP3_PRM_VOLTCTRL_OFFSET);
392 }
Tero Kristof18cc2f2009-10-23 19:03:50 +0300393 omap3_intc_resume_idle();
Kevin Hilman658ce972008-11-04 20:50:52 -0800394
Charulatha Vff2f8e52011-09-13 18:32:37 +0530395 pwrdm_post_transition();
396
Kevin Hilman658ce972008-11-04 20:50:52 -0800397 /* PER */
398 if (per_next_state < PWRDM_POWER_ON) {
399 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800400 omap2_gpio_resume_after_idle();
401 if (per_prev_state == PWRDM_POWER_OFF)
Kevin Hilman658ce972008-11-04 20:50:52 -0800402 omap3_per_restore_context();
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530403 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300404
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200405 /* Disable IO-PAD and IO-CHAIN wakeup */
Kevin Hilman58a55592010-08-16 09:21:19 +0300406 if (omap3_has_io_wakeup() &&
407 (per_next_state < PWRDM_POWER_ON ||
408 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700409 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD,
410 PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600411 if (omap3_has_io_chain_ctrl())
412 omap3_disable_io_chain();
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200413 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800414
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700415 clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700416}
417
Kevin Hilman8bd22942009-05-28 10:56:16 -0700418static void omap3_pm_idle(void)
419{
420 local_irq_disable();
421 local_fiq_disable();
422
Tero Kristocf228542009-03-20 15:21:02 +0200423 if (omap_irq_pending() || need_resched())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700424 goto out;
425
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100426 trace_power_start(POWER_CSTATE, 1, smp_processor_id());
427 trace_cpu_idle(1, smp_processor_id());
428
Kevin Hilman8bd22942009-05-28 10:56:16 -0700429 omap_sram_idle();
430
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100431 trace_power_end(smp_processor_id());
432 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
433
Kevin Hilman8bd22942009-05-28 10:56:16 -0700434out:
435 local_fiq_enable();
436 local_irq_enable();
437}
438
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700439#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700440static int omap3_pm_suspend(void)
441{
442 struct power_state *pwrst;
443 int state, ret = 0;
444
445 /* Read current next_pwrsts */
446 list_for_each_entry(pwrst, &pwrst_list, node)
447 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
448 /* Set ones wanted by suspend */
449 list_for_each_entry(pwrst, &pwrst_list, node) {
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530450 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700451 goto restore;
452 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
453 goto restore;
454 }
455
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300456 omap3_intc_suspend();
457
Kevin Hilman8bd22942009-05-28 10:56:16 -0700458 omap_sram_idle();
459
460restore:
461 /* Restore next_pwrsts */
462 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700463 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
464 if (state > pwrst->next_state) {
Mark A. Greer98179852012-03-17 18:22:48 -0700465 pr_info("Powerdomain (%s) didn't enter "
466 "target state %d\n",
Kevin Hilman8bd22942009-05-28 10:56:16 -0700467 pwrst->pwrdm->name, pwrst->next_state);
468 ret = -1;
469 }
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530470 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700471 }
472 if (ret)
Mark A. Greer98179852012-03-17 18:22:48 -0700473 pr_err("Could not enter target state in pm_suspend\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700474 else
Mark A. Greer98179852012-03-17 18:22:48 -0700475 pr_info("Successfully put all powerdomains to target state\n");
Kevin Hilman8bd22942009-05-28 10:56:16 -0700476
477 return ret;
478}
479
Tero Kristo24662112009-03-05 16:32:23 +0200480static int omap3_pm_enter(suspend_state_t unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700481{
482 int ret = 0;
483
Tero Kristo24662112009-03-05 16:32:23 +0200484 switch (suspend_state) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700485 case PM_SUSPEND_STANDBY:
486 case PM_SUSPEND_MEM:
487 ret = omap3_pm_suspend();
488 break;
489 default:
490 ret = -EINVAL;
491 }
492
493 return ret;
494}
495
Tero Kristo24662112009-03-05 16:32:23 +0200496/* Hooks to enable / disable UART interrupts during suspend */
497static int omap3_pm_begin(suspend_state_t state)
498{
Jean Pihetc1663812010-12-09 18:39:58 +0100499 disable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200500 suspend_state = state;
Tero Kristo22f51372011-12-16 14:36:59 -0700501 omap_prcm_irq_prepare();
Tero Kristo24662112009-03-05 16:32:23 +0200502 return 0;
503}
504
505static void omap3_pm_end(void)
506{
507 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100508 enable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200509 return;
510}
511
Tero Kristo22f51372011-12-16 14:36:59 -0700512static void omap3_pm_finish(void)
513{
514 omap_prcm_irq_complete();
515}
516
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100517static const struct platform_suspend_ops omap_pm_ops = {
Tero Kristo24662112009-03-05 16:32:23 +0200518 .begin = omap3_pm_begin,
519 .end = omap3_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700520 .enter = omap3_pm_enter,
Tero Kristo22f51372011-12-16 14:36:59 -0700521 .finish = omap3_pm_finish,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700522 .valid = suspend_valid_only_mem,
523};
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700524#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700525
Kevin Hilman1155e422008-11-25 11:48:24 -0800526
527/**
528 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
529 * retention
530 *
531 * In cases where IVA2 is activated by bootcode, it may prevent
532 * full-chip retention or off-mode because it is not idle. This
533 * function forces the IVA2 into idle state so it can go
534 * into retention/off and thus allow full-chip retention/off.
535 *
536 **/
537static void __init omap3_iva_idle(void)
538{
539 /* ensure IVA2 clock is disabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700540 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800541
542 /* if no clock activity, nothing else to do */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700543 if (!(omap2_cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
Kevin Hilman1155e422008-11-25 11:48:24 -0800544 OMAP3430_CLKACTIVITY_IVA2_MASK))
545 return;
546
547 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700548 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600549 OMAP3430_RST2_IVA2_MASK |
550 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700551 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800552
553 /* Enable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700554 omap2_cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK,
Kevin Hilman1155e422008-11-25 11:48:24 -0800555 OMAP3430_IVA2_MOD, CM_FCLKEN);
556
557 /* Set IVA2 boot mode to 'idle' */
558 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
559 OMAP343X_CONTROL_IVA2_BOOTMOD);
560
561 /* Un-reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700562 omap2_prm_write_mod_reg(0, OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800563
564 /* Disable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700565 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800566
567 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700568 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600569 OMAP3430_RST2_IVA2_MASK |
570 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700571 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800572}
573
Kevin Hilman8111b222009-04-28 15:27:44 -0700574static void __init omap3_d2d_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700575{
Kevin Hilman8111b222009-04-28 15:27:44 -0700576 u16 mask, padconf;
577
578 /* In a stand alone OMAP3430 where there is not a stacked
579 * modem for the D2D Idle Ack and D2D MStandby must be pulled
580 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
581 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
582 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
583 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
584 padconf |= mask;
585 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
586
587 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
588 padconf |= mask;
589 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
590
Kevin Hilman8bd22942009-05-28 10:56:16 -0700591 /* reset modem */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700592 omap2_prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600593 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700594 CORE_MOD, OMAP2_RM_RSTCTRL);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700595 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman8111b222009-04-28 15:27:44 -0700596}
Kevin Hilman8bd22942009-05-28 10:56:16 -0700597
Kevin Hilman8111b222009-04-28 15:27:44 -0700598static void __init prcm_setup_regs(void)
599{
Govindraj.Re5863682010-09-27 20:20:25 +0530600 u32 omap3630_en_uart4_mask = cpu_is_omap3630() ?
601 OMAP3630_EN_UART4_MASK : 0;
602 u32 omap3630_grpsel_uart4_mask = cpu_is_omap3630() ?
603 OMAP3630_GRPSEL_UART4_MASK : 0;
604
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700605 /* XXX This should be handled by hwmod code or SCM init code */
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600606 omap_ctrl_writel(OMAP3430_AUTOIDLE_MASK, OMAP2_CONTROL_SYSCONFIG);
Tero Kristob296c812009-10-23 19:03:49 +0300607
Kevin Hilman8bd22942009-05-28 10:56:16 -0700608 /*
Kevin Hilman8bd22942009-05-28 10:56:16 -0700609 * Enable control of expternal oscillator through
610 * sys_clkreq. In the long run clock framework should
611 * take care of this.
612 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700613 omap2_prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700614 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
615 OMAP3430_GR_MOD,
616 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
617
618 /* setup wakup source */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700619 omap2_prm_write_mod_reg(OMAP3430_EN_IO_MASK | OMAP3430_EN_GPIO1_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600620 OMAP3430_EN_GPT1_MASK | OMAP3430_EN_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700621 WKUP_MOD, PM_WKEN);
622 /* No need to write EN_IO, that is always enabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700623 omap2_prm_write_mod_reg(OMAP3430_GRPSEL_GPIO1_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600624 OMAP3430_GRPSEL_GPT1_MASK |
625 OMAP3430_GRPSEL_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700626 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800627
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530628 /* Enable PM_WKEN to support DSS LPR */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700629 omap2_prm_write_mod_reg(OMAP3430_PM_WKEN_DSS_EN_DSS_MASK,
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530630 OMAP3430_DSS_MOD, PM_WKEN);
631
Kevin Hilmanb427f922009-10-22 14:48:13 -0700632 /* Enable wakeups in PER */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700633 omap2_prm_write_mod_reg(omap3630_en_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530634 OMAP3430_EN_GPIO2_MASK | OMAP3430_EN_GPIO3_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600635 OMAP3430_EN_GPIO4_MASK | OMAP3430_EN_GPIO5_MASK |
636 OMAP3430_EN_GPIO6_MASK | OMAP3430_EN_UART3_MASK |
637 OMAP3430_EN_MCBSP2_MASK | OMAP3430_EN_MCBSP3_MASK |
638 OMAP3430_EN_MCBSP4_MASK,
Kevin Hilmanb427f922009-10-22 14:48:13 -0700639 OMAP3430_PER_MOD, PM_WKEN);
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000640 /* and allow them to wake up MPU */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700641 omap2_prm_write_mod_reg(omap3630_grpsel_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530642 OMAP3430_GRPSEL_GPIO2_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600643 OMAP3430_GRPSEL_GPIO3_MASK |
644 OMAP3430_GRPSEL_GPIO4_MASK |
645 OMAP3430_GRPSEL_GPIO5_MASK |
646 OMAP3430_GRPSEL_GPIO6_MASK |
647 OMAP3430_GRPSEL_UART3_MASK |
648 OMAP3430_GRPSEL_MCBSP2_MASK |
649 OMAP3430_GRPSEL_MCBSP3_MASK |
650 OMAP3430_GRPSEL_MCBSP4_MASK,
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000651 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
652
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700653 /* Don't attach IVA interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700654 omap2_prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
655 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
656 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
657 omap2_prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700658
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700659 /* Clear any pending 'reset' flags */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700660 omap2_prm_write_mod_reg(0xffffffff, MPU_MOD, OMAP2_RM_RSTST);
661 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP2_RM_RSTST);
662 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, OMAP2_RM_RSTST);
663 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, OMAP2_RM_RSTST);
664 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, OMAP2_RM_RSTST);
665 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, OMAP2_RM_RSTST);
666 omap2_prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, OMAP2_RM_RSTST);
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700667
Kevin Hilman014c46d2009-04-27 07:50:23 -0700668 /* Clear any pending PRCM interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700669 omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman014c46d2009-04-27 07:50:23 -0700670
Kevin Hilman1155e422008-11-25 11:48:24 -0800671 omap3_iva_idle();
Kevin Hilman8111b222009-04-28 15:27:44 -0700672 omap3_d2d_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700673}
674
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700675void omap3_pm_off_mode_enable(int enable)
676{
677 struct power_state *pwrst;
678 u32 state;
679
680 if (enable)
681 state = PWRDM_POWER_OFF;
682 else
683 state = PWRDM_POWER_RET;
684
685 list_for_each_entry(pwrst, &pwrst_list, node) {
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600686 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
687 pwrst->pwrdm == core_pwrdm &&
688 state == PWRDM_POWER_OFF) {
689 pwrst->next_state = PWRDM_POWER_RET;
Ricardo Salveti de Araujoe16b41b2011-01-31 11:35:25 -0200690 pr_warn("%s: Core OFF disabled due to errata i583\n",
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600691 __func__);
692 } else {
693 pwrst->next_state = state;
694 }
695 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700696 }
697}
698
Tero Kristo68d47782008-11-26 12:26:24 +0200699int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
700{
701 struct power_state *pwrst;
702
703 list_for_each_entry(pwrst, &pwrst_list, node) {
704 if (pwrst->pwrdm == pwrdm)
705 return pwrst->next_state;
706 }
707 return -EINVAL;
708}
709
710int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
711{
712 struct power_state *pwrst;
713
714 list_for_each_entry(pwrst, &pwrst_list, node) {
715 if (pwrst->pwrdm == pwrdm) {
716 pwrst->next_state = state;
717 return 0;
718 }
719 }
720 return -EINVAL;
721}
722
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300723static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700724{
725 struct power_state *pwrst;
726
727 if (!pwrdm->pwrsts)
728 return 0;
729
Ming Leid3d381c2009-08-22 21:20:26 +0800730 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700731 if (!pwrst)
732 return -ENOMEM;
733 pwrst->pwrdm = pwrdm;
734 pwrst->next_state = PWRDM_POWER_RET;
735 list_add(&pwrst->node, &pwrst_list);
736
737 if (pwrdm_has_hdwr_sar(pwrdm))
738 pwrdm_enable_hdwr_sar(pwrdm);
739
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530740 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700741}
742
743/*
744 * Enable hw supervised mode for all clockdomains if it's
745 * supported. Initiate sleep transition for other clockdomains, if
746 * they are not used
747 */
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300748static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700749{
750 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700751 clkdm_allow_idle(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700752 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
753 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700754 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700755 return 0;
756}
757
Jean Pihet46e130d2011-06-29 18:40:23 +0200758/*
759 * Push functions to SRAM
760 *
761 * The minimum set of functions is pushed to SRAM for execution:
762 * - omap3_do_wfi for erratum i581 WA,
763 * - save_secure_ram_context for security extensions.
764 */
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530765void omap_push_sram_idle(void)
766{
Jean Pihet46e130d2011-06-29 18:40:23 +0200767 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
768
Tero Kristo27d59a42008-10-13 13:15:00 +0300769 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
770 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
771 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530772}
773
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600774static void __init pm_errata_configure(void)
775{
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600776 if (cpu_is_omap3630()) {
Nishanth Menon458e9992010-12-20 14:05:06 -0600777 pm34xx_errata |= PM_RTA_ERRATUM_i608;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600778 /* Enable the l2 cache toggling in sleep logic */
779 enable_omap3630_toggle_l2_on_restore();
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600780 if (omap_rev() < OMAP3630_REV_ES1_2)
781 pm34xx_errata |= PM_SDRC_WAKEUP_ERRATUM_i583;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600782 }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600783}
784
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700785static int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700786{
787 struct power_state *pwrst, *tmp;
Paul Walmsley55ed9692010-01-26 20:12:59 -0700788 struct clockdomain *neon_clkdm, *per_clkdm, *mpu_clkdm, *core_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700789 int ret;
790
791 if (!cpu_is_omap34xx())
792 return -ENODEV;
793
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600794 if (!omap3_has_io_chain_ctrl())
795 pr_warning("PM: no software I/O chain control; some wakeups may be lost\n");
796
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600797 pm_errata_configure();
798
Kevin Hilman8bd22942009-05-28 10:56:16 -0700799 /* XXX prcm_setup_regs needs to be before enabling hw
800 * supervised mode for powerdomains */
801 prcm_setup_regs();
802
Tero Kristo22f51372011-12-16 14:36:59 -0700803 ret = request_irq(omap_prcm_event_to_irq("wkup"),
804 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
805
Kevin Hilman8bd22942009-05-28 10:56:16 -0700806 if (ret) {
Tero Kristo22f51372011-12-16 14:36:59 -0700807 pr_err("pm: Failed to request pm_wkup irq\n");
808 goto err1;
809 }
810
811 /* IO interrupt is shared with mux code */
812 ret = request_irq(omap_prcm_event_to_irq("io"),
813 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
814 omap3_pm_init);
815
816 if (ret) {
817 pr_err("pm: Failed to request pm_io irq\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700818 goto err2;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700819 }
820
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300821 ret = pwrdm_for_each(pwrdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700822 if (ret) {
Mark A. Greer98179852012-03-17 18:22:48 -0700823 pr_err("Failed to setup powerdomains\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700824 goto err3;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700825 }
826
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300827 (void) clkdm_for_each(clkdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700828
829 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
830 if (mpu_pwrdm == NULL) {
Mark A. Greer98179852012-03-17 18:22:48 -0700831 pr_err("Failed to get mpu_pwrdm\n");
Mark A. Greerce229c52012-03-17 18:22:47 -0700832 ret = -EINVAL;
833 goto err3;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700834 }
835
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530836 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
837 per_pwrdm = pwrdm_lookup("per_pwrdm");
838 core_pwrdm = pwrdm_lookup("core_pwrdm");
Tero Kristoc16c3f62008-12-11 16:46:57 +0200839 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530840
Paul Walmsley55ed9692010-01-26 20:12:59 -0700841 neon_clkdm = clkdm_lookup("neon_clkdm");
842 mpu_clkdm = clkdm_lookup("mpu_clkdm");
843 per_clkdm = clkdm_lookup("per_clkdm");
844 core_clkdm = clkdm_lookup("core_clkdm");
845
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700846#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700847 suspend_set_ops(&omap_pm_ops);
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700848#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700849
850 pm_idle = omap3_pm_idle;
Kalle Jokiniemi03433712008-09-26 11:04:20 +0300851 omap3_idle_init();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700852
Nishanth Menon458e9992010-12-20 14:05:06 -0600853 /*
854 * RTA is disabled during initialization as per erratum i608
855 * it is safer to disable RTA by the bootloader, but we would like
856 * to be doubly sure here and prevent any mishaps.
857 */
858 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
859 omap3630_ctrl_disable_rta();
860
Paul Walmsley55ed9692010-01-26 20:12:59 -0700861 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300862 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
863 omap3_secure_ram_storage =
864 kmalloc(0x803F, GFP_KERNEL);
865 if (!omap3_secure_ram_storage)
Mark A. Greer98179852012-03-17 18:22:48 -0700866 pr_err("Memory allocation failed when "
867 "allocating for secure sram context\n");
Tero Kristo27d59a42008-10-13 13:15:00 +0300868
Tero Kristo9d971402008-12-12 11:20:05 +0200869 local_irq_disable();
870 local_fiq_disable();
871
872 omap_dma_global_context_save();
Kevin Hilman617fcc92011-01-25 16:40:01 -0800873 omap3_save_secure_ram_context();
Tero Kristo9d971402008-12-12 11:20:05 +0200874 omap_dma_global_context_restore();
875
876 local_irq_enable();
877 local_fiq_enable();
878 }
879
880 omap3_save_scratchpad_contents();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700881 return ret;
Mark A. Greerce229c52012-03-17 18:22:47 -0700882
883err3:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700884 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
885 list_del(&pwrst->node);
886 kfree(pwrst);
887 }
Mark A. Greerce229c52012-03-17 18:22:47 -0700888 free_irq(omap_prcm_event_to_irq("io"), omap3_pm_init);
889err2:
890 free_irq(omap_prcm_event_to_irq("wkup"), NULL);
891err1:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700892 return ret;
893}
894
895late_initcall(omap3_pm_init);