blob: 4feee45ef0692074e03303aa5ab6dcce5468c587 [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"
Tony Lindgrence491cf2009-10-20 09:40:47 -070038#include <plat/serial.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 */
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700188static int prcm_clear_mod_irqs(s16 module, u8 regs)
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);
Jon Hunter77da2d92009-06-27 00:07:25 -0500200 if (wkst) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700201 iclk = omap2_cm_read_mod_reg(module, iclk_off);
202 fclk = omap2_cm_read_mod_reg(module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500203 while (wkst) {
Vikram Pandita71a80772009-07-17 19:33:09 -0500204 clken = wkst;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700205 omap2_cm_set_mod_reg_bits(clken, module, iclk_off);
Vikram Pandita71a80772009-07-17 19:33:09 -0500206 /*
207 * For USBHOST, we don't know whether HOST1 or
208 * HOST2 woke us up, so enable both f-clocks
209 */
210 if (module == OMAP3430ES2_USBHOST_MOD)
211 clken |= 1 << OMAP3430ES2_EN_USBHOST2_SHIFT;
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700212 omap2_cm_set_mod_reg_bits(clken, module, fclk_off);
213 omap2_prm_write_mod_reg(wkst, module, wkst_off);
214 wkst = omap2_prm_read_mod_reg(module, wkst_off);
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
224static int _prcm_int_handle_wakeup(void)
225{
226 int c;
227
228 c = prcm_clear_mod_irqs(WKUP_MOD, 1);
229 c += prcm_clear_mod_irqs(CORE_MOD, 1);
230 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1);
231 if (omap_rev() > OMAP3430_REV_ES1_0) {
232 c += prcm_clear_mod_irqs(CORE_MOD, 3);
233 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1);
234 }
235
236 return c;
Jon Hunter77da2d92009-06-27 00:07:25 -0500237}
238
239/*
240 * PRCM Interrupt Handler
241 *
242 * The PRM_IRQSTATUS_MPU register indicates if there are any pending
243 * interrupts from the PRCM for the MPU. These bits must be cleared in
244 * order to clear the PRCM interrupt. The PRCM interrupt handler is
245 * implemented to simply clear the PRM_IRQSTATUS_MPU in order to clear
246 * the PRCM interrupt. Please note that bit 0 of the PRM_IRQSTATUS_MPU
247 * register indicates that a wake-up event is pending for the MPU and
248 * this bit can only be cleared if the all the wake-up events latched
249 * in the various PM_WKST_x registers have been cleared. The interrupt
250 * handler is implemented using a do-while loop so that if a wake-up
251 * event occurred during the processing of the prcm interrupt handler
252 * (setting a bit in the corresponding PM_WKST_x register and thus
253 * preventing us from clearing bit 0 of the PRM_IRQSTATUS_MPU register)
254 * this would be handled.
255 */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700256static irqreturn_t prcm_interrupt_handler (int irq, void *dev_id)
257{
Kevin Hilmand6290a32010-04-26 14:59:09 -0700258 u32 irqenable_mpu, irqstatus_mpu;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700259 int c = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700260
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700261 irqenable_mpu = omap2_prm_read_mod_reg(OCP_MOD,
Kevin Hilmand6290a32010-04-26 14:59:09 -0700262 OMAP3_PRM_IRQENABLE_MPU_OFFSET);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700263 irqstatus_mpu = omap2_prm_read_mod_reg(OCP_MOD,
Kevin Hilmand6290a32010-04-26 14:59:09 -0700264 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
265 irqstatus_mpu &= irqenable_mpu;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700266
Kevin Hilmand6290a32010-04-26 14:59:09 -0700267 do {
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600268 if (irqstatus_mpu & (OMAP3430_WKUP_ST_MASK |
269 OMAP3430_IO_ST_MASK)) {
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700270 c = _prcm_int_handle_wakeup();
271
272 /*
273 * Is the MPU PRCM interrupt handler racing with the
274 * IVA2 PRCM interrupt handler ?
275 */
276 WARN(c == 0, "prcm: WARNING: PRCM indicated MPU wakeup "
277 "but no wakeup sources are marked\n");
278 } else {
279 /* XXX we need to expand our PRCM interrupt handler */
280 WARN(1, "prcm: WARNING: PRCM interrupt received, but "
281 "no code to handle it (%08x)\n", irqstatus_mpu);
282 }
283
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700284 omap2_prm_write_mod_reg(irqstatus_mpu, OCP_MOD,
Jon Hunter77da2d92009-06-27 00:07:25 -0500285 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700286
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700287 irqstatus_mpu = omap2_prm_read_mod_reg(OCP_MOD,
Kevin Hilmand6290a32010-04-26 14:59:09 -0700288 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
289 irqstatus_mpu &= irqenable_mpu;
290
291 } while (irqstatus_mpu);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700292
293 return IRQ_HANDLED;
294}
295
Russell Kingcbe26342011-06-30 08:45:49 +0100296static void omap34xx_save_context(u32 *save)
297{
298 u32 val;
299
300 /* Read Auxiliary Control Register */
301 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
302 *save++ = 1;
303 *save++ = val;
304
305 /* Read L2 AUX ctrl register */
306 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
307 *save++ = 1;
308 *save++ = val;
309}
310
Russell King29cb3cd2011-07-02 09:54:01 +0100311static int omap34xx_do_sram_idle(unsigned long save_state)
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530312{
Russell Kingcbe26342011-06-30 08:45:49 +0100313 omap34xx_cpu_suspend(save_state);
Russell King29cb3cd2011-07-02 09:54:01 +0100314 return 0;
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530315}
316
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530317void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700318{
319 /* Variable to tell what needs to be saved and restored
320 * in omap_sram_idle*/
321 /* save_state = 0 => Nothing to save and restored */
322 /* save_state = 1 => Only L1 and logic lost */
323 /* save_state = 2 => Only L2 lost */
324 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530325 int save_state = 0;
326 int mpu_next_state = PWRDM_POWER_ON;
327 int per_next_state = PWRDM_POWER_ON;
328 int core_next_state = PWRDM_POWER_ON;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700329 int per_going_off;
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530330 int core_prev_state, per_prev_state;
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300331 u32 sdrc_pwr = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700332
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530333 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
334 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
335 pwrdm_clear_all_prev_pwrst(core_pwrdm);
336 pwrdm_clear_all_prev_pwrst(per_pwrdm);
337
Kevin Hilman8bd22942009-05-28 10:56:16 -0700338 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
339 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530340 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700341 case PWRDM_POWER_RET:
342 /* No need to save context */
343 save_state = 0;
344 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530345 case PWRDM_POWER_OFF:
346 save_state = 3;
347 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700348 default:
349 /* Invalid state */
350 printk(KERN_ERR "Invalid mpu state in sram_idle\n");
351 return;
352 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300353
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530354 /* NEON control */
355 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200356 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530357
Mike Chan40742fa2010-05-03 16:04:06 -0700358 /* Enable IO-PAD and IO-CHAIN wakeups */
Kevin Hilman658ce972008-11-04 20:50:52 -0800359 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200360 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Kevin Hilmand5c47d72010-08-10 16:04:35 -0700361 if (omap3_has_io_wakeup() &&
362 (per_next_state < PWRDM_POWER_ON ||
363 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700364 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600365 if (omap3_has_io_chain_ctrl())
366 omap3_enable_io_chain();
Mike Chan40742fa2010-05-03 16:04:06 -0700367 }
368
Charulatha Vff2f8e52011-09-13 18:32:37 +0530369 pwrdm_pre_transition();
370
Mike Chan40742fa2010-05-03 16:04:06 -0700371 /* PER */
Kevin Hilman658ce972008-11-04 20:50:52 -0800372 if (per_next_state < PWRDM_POWER_ON) {
Paul Walmsley72e06d02010-12-21 21:05:16 -0700373 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
Paul Walmsley72e06d02010-12-21 21:05:16 -0700374 omap2_gpio_prepare_for_idle(per_going_off);
Kevin Hilmane7410cf2010-09-08 16:37:42 -0700375 if (per_next_state == PWRDM_POWER_OFF)
Tero Kristoecf157d2008-12-01 13:17:29 +0200376 omap3_per_save_context();
Kevin Hilman658ce972008-11-04 20:50:52 -0800377 }
378
379 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530380 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530381 if (core_next_state == PWRDM_POWER_OFF) {
382 omap3_core_save_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700383 omap3_cm_save_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530384 }
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530385 }
Mike Chan40742fa2010-05-03 16:04:06 -0700386
Tero Kristof18cc2f2009-10-23 19:03:50 +0300387 omap3_intc_prepare_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700388
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530389 /*
Paul Walmsley30474542011-10-06 13:43:23 -0600390 * On EMU/HS devices ROM code restores a SRDC value
391 * from scratchpad which has automatic self refresh on timeout
392 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
393 * Hence store/restore the SDRC_POWER register here.
394 */
395 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
396 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
397 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530398 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300399 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300400
401 /*
Russell King076f2cc2011-06-22 15:42:54 +0100402 * omap3_arm_context is the location where some ARM context
403 * get saved. The rest is placed on the stack, and restored
404 * from there before resuming.
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530405 */
Russell Kingcbe26342011-06-30 08:45:49 +0100406 if (save_state)
407 omap34xx_save_context(omap3_arm_context);
Russell King076f2cc2011-06-22 15:42:54 +0100408 if (save_state == 1 || save_state == 3)
Russell King2c74a0c2011-06-22 17:41:48 +0100409 cpu_suspend(save_state, omap34xx_do_sram_idle);
Russell King076f2cc2011-06-22 15:42:54 +0100410 else
411 omap34xx_do_sram_idle(save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700412
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530413 /* Restore normal SDRC POWER settings */
Paul Walmsley30474542011-10-06 13:43:23 -0600414 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
415 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
416 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
Tero Kristo13a6fe0f2008-10-13 13:17:06 +0300417 core_next_state == PWRDM_POWER_OFF)
418 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
419
Kevin Hilman658ce972008-11-04 20:50:52 -0800420 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530421 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530422 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
423 if (core_prev_state == PWRDM_POWER_OFF) {
424 omap3_core_restore_context();
Paul Walmsleyf0611a52010-12-21 15:30:56 -0700425 omap3_cm_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530426 omap3_sram_restore_context();
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300427 omap2_sms_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530428 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800429 if (core_next_state == PWRDM_POWER_OFF)
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700430 omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK,
Kevin Hilman658ce972008-11-04 20:50:52 -0800431 OMAP3430_GR_MOD,
432 OMAP3_PRM_VOLTCTRL_OFFSET);
433 }
Tero Kristof18cc2f2009-10-23 19:03:50 +0300434 omap3_intc_resume_idle();
Kevin Hilman658ce972008-11-04 20:50:52 -0800435
Charulatha Vff2f8e52011-09-13 18:32:37 +0530436 pwrdm_post_transition();
437
Kevin Hilman658ce972008-11-04 20:50:52 -0800438 /* PER */
439 if (per_next_state < PWRDM_POWER_ON) {
440 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
Kevin Hilman43ffcd92009-01-27 11:09:24 -0800441 omap2_gpio_resume_after_idle();
442 if (per_prev_state == PWRDM_POWER_OFF)
Kevin Hilman658ce972008-11-04 20:50:52 -0800443 omap3_per_restore_context();
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530444 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300445
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200446 /* Disable IO-PAD and IO-CHAIN wakeup */
Kevin Hilman58a55592010-08-16 09:21:19 +0300447 if (omap3_has_io_wakeup() &&
448 (per_next_state < PWRDM_POWER_ON ||
449 core_next_state < PWRDM_POWER_ON)) {
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700450 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD,
451 PM_WKEN);
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600452 if (omap3_has_io_chain_ctrl())
453 omap3_disable_io_chain();
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200454 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800455
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700456 clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700457}
458
Rajendra Nayak20b01662008-10-08 17:31:22 +0530459int omap3_can_sleep(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700460{
Kevin Hilman4af40162009-02-04 10:51:40 -0800461 if (!omap_uart_can_sleep())
462 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700463 return 1;
464}
465
Kevin Hilman8bd22942009-05-28 10:56:16 -0700466static void omap3_pm_idle(void)
467{
468 local_irq_disable();
469 local_fiq_disable();
470
471 if (!omap3_can_sleep())
472 goto out;
473
Tero Kristocf228542009-03-20 15:21:02 +0200474 if (omap_irq_pending() || need_resched())
Kevin Hilman8bd22942009-05-28 10:56:16 -0700475 goto out;
476
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100477 trace_power_start(POWER_CSTATE, 1, smp_processor_id());
478 trace_cpu_idle(1, smp_processor_id());
479
Kevin Hilman8bd22942009-05-28 10:56:16 -0700480 omap_sram_idle();
481
Jean Pihet5e7c58d2011-03-03 11:25:43 +0100482 trace_power_end(smp_processor_id());
483 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
484
Kevin Hilman8bd22942009-05-28 10:56:16 -0700485out:
486 local_fiq_enable();
487 local_irq_enable();
488}
489
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700490#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700491static int omap3_pm_suspend(void)
492{
493 struct power_state *pwrst;
494 int state, ret = 0;
495
496 /* Read current next_pwrsts */
497 list_for_each_entry(pwrst, &pwrst_list, node)
498 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
499 /* Set ones wanted by suspend */
500 list_for_each_entry(pwrst, &pwrst_list, node) {
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530501 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
Kevin Hilman8bd22942009-05-28 10:56:16 -0700502 goto restore;
503 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
504 goto restore;
505 }
506
Tero Kristo2bbe3af2009-10-23 19:03:48 +0300507 omap3_intc_suspend();
508
Kevin Hilman8bd22942009-05-28 10:56:16 -0700509 omap_sram_idle();
510
511restore:
512 /* Restore next_pwrsts */
513 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700514 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
515 if (state > pwrst->next_state) {
516 printk(KERN_INFO "Powerdomain (%s) didn't enter "
517 "target state %d\n",
518 pwrst->pwrdm->name, pwrst->next_state);
519 ret = -1;
520 }
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530521 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700522 }
523 if (ret)
524 printk(KERN_ERR "Could not enter target state in pm_suspend\n");
525 else
526 printk(KERN_INFO "Successfully put all powerdomains "
527 "to target state\n");
528
529 return ret;
530}
531
Tero Kristo24662112009-03-05 16:32:23 +0200532static int omap3_pm_enter(suspend_state_t unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700533{
534 int ret = 0;
535
Tero Kristo24662112009-03-05 16:32:23 +0200536 switch (suspend_state) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700537 case PM_SUSPEND_STANDBY:
538 case PM_SUSPEND_MEM:
539 ret = omap3_pm_suspend();
540 break;
541 default:
542 ret = -EINVAL;
543 }
544
545 return ret;
546}
547
Tero Kristo24662112009-03-05 16:32:23 +0200548/* Hooks to enable / disable UART interrupts during suspend */
549static int omap3_pm_begin(suspend_state_t state)
550{
Jean Pihetc1663812010-12-09 18:39:58 +0100551 disable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200552 suspend_state = state;
Tero Kristo24662112009-03-05 16:32:23 +0200553 return 0;
554}
555
556static void omap3_pm_end(void)
557{
558 suspend_state = PM_SUSPEND_ON;
Jean Pihetc1663812010-12-09 18:39:58 +0100559 enable_hlt();
Tero Kristo24662112009-03-05 16:32:23 +0200560 return;
561}
562
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100563static const struct platform_suspend_ops omap_pm_ops = {
Tero Kristo24662112009-03-05 16:32:23 +0200564 .begin = omap3_pm_begin,
565 .end = omap3_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700566 .enter = omap3_pm_enter,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700567 .valid = suspend_valid_only_mem,
568};
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700569#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700570
Kevin Hilman1155e422008-11-25 11:48:24 -0800571
572/**
573 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
574 * retention
575 *
576 * In cases where IVA2 is activated by bootcode, it may prevent
577 * full-chip retention or off-mode because it is not idle. This
578 * function forces the IVA2 into idle state so it can go
579 * into retention/off and thus allow full-chip retention/off.
580 *
581 **/
582static void __init omap3_iva_idle(void)
583{
584 /* ensure IVA2 clock is disabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700585 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800586
587 /* if no clock activity, nothing else to do */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700588 if (!(omap2_cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
Kevin Hilman1155e422008-11-25 11:48:24 -0800589 OMAP3430_CLKACTIVITY_IVA2_MASK))
590 return;
591
592 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700593 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600594 OMAP3430_RST2_IVA2_MASK |
595 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700596 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800597
598 /* Enable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700599 omap2_cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK,
Kevin Hilman1155e422008-11-25 11:48:24 -0800600 OMAP3430_IVA2_MOD, CM_FCLKEN);
601
602 /* Set IVA2 boot mode to 'idle' */
603 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
604 OMAP343X_CONTROL_IVA2_BOOTMOD);
605
606 /* Un-reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700607 omap2_prm_write_mod_reg(0, OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800608
609 /* Disable IVA2 clock */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700610 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
Kevin Hilman1155e422008-11-25 11:48:24 -0800611
612 /* Reset IVA2 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700613 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600614 OMAP3430_RST2_IVA2_MASK |
615 OMAP3430_RST3_IVA2_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700616 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman1155e422008-11-25 11:48:24 -0800617}
618
Kevin Hilman8111b222009-04-28 15:27:44 -0700619static void __init omap3_d2d_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700620{
Kevin Hilman8111b222009-04-28 15:27:44 -0700621 u16 mask, padconf;
622
623 /* In a stand alone OMAP3430 where there is not a stacked
624 * modem for the D2D Idle Ack and D2D MStandby must be pulled
625 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
626 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
627 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
628 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
629 padconf |= mask;
630 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
631
632 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
633 padconf |= mask;
634 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
635
Kevin Hilman8bd22942009-05-28 10:56:16 -0700636 /* reset modem */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700637 omap2_prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON_MASK |
Paul Walmsley2bc4ef72010-05-18 18:47:24 -0600638 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST_MASK,
Abhijit Pagare37903002010-01-26 20:12:51 -0700639 CORE_MOD, OMAP2_RM_RSTCTRL);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700640 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP2_RM_RSTCTRL);
Kevin Hilman8111b222009-04-28 15:27:44 -0700641}
Kevin Hilman8bd22942009-05-28 10:56:16 -0700642
Kevin Hilman8111b222009-04-28 15:27:44 -0700643static void __init prcm_setup_regs(void)
644{
Govindraj.Re5863682010-09-27 20:20:25 +0530645 u32 omap3630_en_uart4_mask = cpu_is_omap3630() ?
646 OMAP3630_EN_UART4_MASK : 0;
647 u32 omap3630_grpsel_uart4_mask = cpu_is_omap3630() ?
648 OMAP3630_GRPSEL_UART4_MASK : 0;
649
Paul Walmsley4ef70c02011-02-25 15:39:30 -0700650 /* XXX This should be handled by hwmod code or SCM init code */
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600651 omap_ctrl_writel(OMAP3430_AUTOIDLE_MASK, OMAP2_CONTROL_SYSCONFIG);
Tero Kristob296c812009-10-23 19:03:49 +0300652
Kevin Hilman8bd22942009-05-28 10:56:16 -0700653 /*
Kevin Hilman8bd22942009-05-28 10:56:16 -0700654 * Enable control of expternal oscillator through
655 * sys_clkreq. In the long run clock framework should
656 * take care of this.
657 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700658 omap2_prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700659 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
660 OMAP3430_GR_MOD,
661 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
662
663 /* setup wakup source */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700664 omap2_prm_write_mod_reg(OMAP3430_EN_IO_MASK | OMAP3430_EN_GPIO1_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600665 OMAP3430_EN_GPT1_MASK | OMAP3430_EN_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700666 WKUP_MOD, PM_WKEN);
667 /* No need to write EN_IO, that is always enabled */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700668 omap2_prm_write_mod_reg(OMAP3430_GRPSEL_GPIO1_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600669 OMAP3430_GRPSEL_GPT1_MASK |
670 OMAP3430_GRPSEL_GPT12_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700671 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
672 /* For some reason IO doesn't generate wakeup event even if
673 * it is selected to mpu wakeup goup */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700674 omap2_prm_write_mod_reg(OMAP3430_IO_EN_MASK | OMAP3430_WKUP_EN_MASK,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700675 OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET);
Kevin Hilman1155e422008-11-25 11:48:24 -0800676
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530677 /* Enable PM_WKEN to support DSS LPR */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700678 omap2_prm_write_mod_reg(OMAP3430_PM_WKEN_DSS_EN_DSS_MASK,
Subramani Venkateshb92c5722009-12-22 15:07:50 +0530679 OMAP3430_DSS_MOD, PM_WKEN);
680
Kevin Hilmanb427f922009-10-22 14:48:13 -0700681 /* Enable wakeups in PER */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700682 omap2_prm_write_mod_reg(omap3630_en_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530683 OMAP3430_EN_GPIO2_MASK | OMAP3430_EN_GPIO3_MASK |
Paul Walmsley2fd0f752010-05-18 18:40:23 -0600684 OMAP3430_EN_GPIO4_MASK | OMAP3430_EN_GPIO5_MASK |
685 OMAP3430_EN_GPIO6_MASK | OMAP3430_EN_UART3_MASK |
686 OMAP3430_EN_MCBSP2_MASK | OMAP3430_EN_MCBSP3_MASK |
687 OMAP3430_EN_MCBSP4_MASK,
Kevin Hilmanb427f922009-10-22 14:48:13 -0700688 OMAP3430_PER_MOD, PM_WKEN);
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000689 /* and allow them to wake up MPU */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700690 omap2_prm_write_mod_reg(omap3630_grpsel_uart4_mask |
Govindraj.Re5863682010-09-27 20:20:25 +0530691 OMAP3430_GRPSEL_GPIO2_MASK |
Paul Walmsley275f6752010-05-18 18:40:23 -0600692 OMAP3430_GRPSEL_GPIO3_MASK |
693 OMAP3430_GRPSEL_GPIO4_MASK |
694 OMAP3430_GRPSEL_GPIO5_MASK |
695 OMAP3430_GRPSEL_GPIO6_MASK |
696 OMAP3430_GRPSEL_UART3_MASK |
697 OMAP3430_GRPSEL_MCBSP2_MASK |
698 OMAP3430_GRPSEL_MCBSP3_MASK |
699 OMAP3430_GRPSEL_MCBSP4_MASK,
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000700 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
701
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700702 /* Don't attach IVA interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700703 omap2_prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
704 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
705 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
706 omap2_prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700707
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700708 /* Clear any pending 'reset' flags */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700709 omap2_prm_write_mod_reg(0xffffffff, MPU_MOD, OMAP2_RM_RSTST);
710 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP2_RM_RSTST);
711 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, OMAP2_RM_RSTST);
712 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, OMAP2_RM_RSTST);
713 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, OMAP2_RM_RSTST);
714 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, OMAP2_RM_RSTST);
715 omap2_prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, OMAP2_RM_RSTST);
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700716
Kevin Hilman014c46d2009-04-27 07:50:23 -0700717 /* Clear any pending PRCM interrupts */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700718 omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman014c46d2009-04-27 07:50:23 -0700719
Kevin Hilman1155e422008-11-25 11:48:24 -0800720 omap3_iva_idle();
Kevin Hilman8111b222009-04-28 15:27:44 -0700721 omap3_d2d_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700722}
723
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700724void omap3_pm_off_mode_enable(int enable)
725{
726 struct power_state *pwrst;
727 u32 state;
728
729 if (enable)
730 state = PWRDM_POWER_OFF;
731 else
732 state = PWRDM_POWER_RET;
733
734 list_for_each_entry(pwrst, &pwrst_list, node) {
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600735 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
736 pwrst->pwrdm == core_pwrdm &&
737 state == PWRDM_POWER_OFF) {
738 pwrst->next_state = PWRDM_POWER_RET;
Ricardo Salveti de Araujoe16b41b2011-01-31 11:35:25 -0200739 pr_warn("%s: Core OFF disabled due to errata i583\n",
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600740 __func__);
741 } else {
742 pwrst->next_state = state;
743 }
744 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700745 }
746}
747
Tero Kristo68d47782008-11-26 12:26:24 +0200748int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
749{
750 struct power_state *pwrst;
751
752 list_for_each_entry(pwrst, &pwrst_list, node) {
753 if (pwrst->pwrdm == pwrdm)
754 return pwrst->next_state;
755 }
756 return -EINVAL;
757}
758
759int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
760{
761 struct power_state *pwrst;
762
763 list_for_each_entry(pwrst, &pwrst_list, node) {
764 if (pwrst->pwrdm == pwrdm) {
765 pwrst->next_state = state;
766 return 0;
767 }
768 }
769 return -EINVAL;
770}
771
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300772static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700773{
774 struct power_state *pwrst;
775
776 if (!pwrdm->pwrsts)
777 return 0;
778
Ming Leid3d381c2009-08-22 21:20:26 +0800779 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700780 if (!pwrst)
781 return -ENOMEM;
782 pwrst->pwrdm = pwrdm;
783 pwrst->next_state = PWRDM_POWER_RET;
784 list_add(&pwrst->node, &pwrst_list);
785
786 if (pwrdm_has_hdwr_sar(pwrdm))
787 pwrdm_enable_hdwr_sar(pwrdm);
788
Santosh Shilimkareb6a2c72010-09-15 01:04:01 +0530789 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700790}
791
792/*
793 * Enable hw supervised mode for all clockdomains if it's
794 * supported. Initiate sleep transition for other clockdomains, if
795 * they are not used
796 */
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300797static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700798{
799 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
Rajendra Nayak5cd19372011-02-25 16:06:48 -0700800 clkdm_allow_idle(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700801 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
802 atomic_read(&clkdm->usecount) == 0)
Rajendra Nayak68b921a2011-02-25 16:06:47 -0700803 clkdm_sleep(clkdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700804 return 0;
805}
806
Jean Pihet46e130d2011-06-29 18:40:23 +0200807/*
808 * Push functions to SRAM
809 *
810 * The minimum set of functions is pushed to SRAM for execution:
811 * - omap3_do_wfi for erratum i581 WA,
812 * - save_secure_ram_context for security extensions.
813 */
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530814void omap_push_sram_idle(void)
815{
Jean Pihet46e130d2011-06-29 18:40:23 +0200816 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
817
Tero Kristo27d59a42008-10-13 13:15:00 +0300818 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
819 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
820 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +0530821}
822
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600823static void __init pm_errata_configure(void)
824{
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600825 if (cpu_is_omap3630()) {
Nishanth Menon458e9992010-12-20 14:05:06 -0600826 pm34xx_errata |= PM_RTA_ERRATUM_i608;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600827 /* Enable the l2 cache toggling in sleep logic */
828 enable_omap3630_toggle_l2_on_restore();
Eduardo Valentincc1b6022010-12-20 14:05:09 -0600829 if (omap_rev() < OMAP3630_REV_ES1_2)
830 pm34xx_errata |= PM_SDRC_WAKEUP_ERRATUM_i583;
Peter 'p2' De Schrijverc4236d22010-12-20 14:05:07 -0600831 }
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600832}
833
Kevin Hilman7cc515f2009-06-10 09:02:25 -0700834static int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700835{
836 struct power_state *pwrst, *tmp;
Paul Walmsley55ed9692010-01-26 20:12:59 -0700837 struct clockdomain *neon_clkdm, *per_clkdm, *mpu_clkdm, *core_clkdm;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700838 int ret;
839
840 if (!cpu_is_omap34xx())
841 return -ENODEV;
842
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600843 if (!omap3_has_io_chain_ctrl())
844 pr_warning("PM: no software I/O chain control; some wakeups may be lost\n");
845
Nishanth Menon8cdfd832010-12-20 14:05:05 -0600846 pm_errata_configure();
847
Kevin Hilman8bd22942009-05-28 10:56:16 -0700848 /* XXX prcm_setup_regs needs to be before enabling hw
849 * supervised mode for powerdomains */
850 prcm_setup_regs();
851
852 ret = request_irq(INT_34XX_PRCM_MPU_IRQ,
853 (irq_handler_t)prcm_interrupt_handler,
854 IRQF_DISABLED, "prcm", NULL);
855 if (ret) {
856 printk(KERN_ERR "request_irq failed to register for 0x%x\n",
857 INT_34XX_PRCM_MPU_IRQ);
858 goto err1;
859 }
860
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300861 ret = pwrdm_for_each(pwrdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700862 if (ret) {
863 printk(KERN_ERR "Failed to setup powerdomains\n");
864 goto err2;
865 }
866
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +0300867 (void) clkdm_for_each(clkdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700868
869 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
870 if (mpu_pwrdm == NULL) {
871 printk(KERN_ERR "Failed to get mpu_pwrdm\n");
872 goto err2;
873 }
874
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530875 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
876 per_pwrdm = pwrdm_lookup("per_pwrdm");
877 core_pwrdm = pwrdm_lookup("core_pwrdm");
Tero Kristoc16c3f62008-12-11 16:46:57 +0200878 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530879
Paul Walmsley55ed9692010-01-26 20:12:59 -0700880 neon_clkdm = clkdm_lookup("neon_clkdm");
881 mpu_clkdm = clkdm_lookup("mpu_clkdm");
882 per_clkdm = clkdm_lookup("per_clkdm");
883 core_clkdm = clkdm_lookup("core_clkdm");
884
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700885#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -0700886 suspend_set_ops(&omap_pm_ops);
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700887#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700888
889 pm_idle = omap3_pm_idle;
Kalle Jokiniemi03433712008-09-26 11:04:20 +0300890 omap3_idle_init();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700891
Nishanth Menon458e9992010-12-20 14:05:06 -0600892 /*
893 * RTA is disabled during initialization as per erratum i608
894 * it is safer to disable RTA by the bootloader, but we would like
895 * to be doubly sure here and prevent any mishaps.
896 */
897 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
898 omap3630_ctrl_disable_rta();
899
Paul Walmsley55ed9692010-01-26 20:12:59 -0700900 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
Tero Kristo27d59a42008-10-13 13:15:00 +0300901 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
902 omap3_secure_ram_storage =
903 kmalloc(0x803F, GFP_KERNEL);
904 if (!omap3_secure_ram_storage)
905 printk(KERN_ERR "Memory allocation failed when"
906 "allocating for secure sram context\n");
Tero Kristo27d59a42008-10-13 13:15:00 +0300907
Tero Kristo9d971402008-12-12 11:20:05 +0200908 local_irq_disable();
909 local_fiq_disable();
910
911 omap_dma_global_context_save();
Kevin Hilman617fcc92011-01-25 16:40:01 -0800912 omap3_save_secure_ram_context();
Tero Kristo9d971402008-12-12 11:20:05 +0200913 omap_dma_global_context_restore();
914
915 local_irq_enable();
916 local_fiq_enable();
917 }
918
919 omap3_save_scratchpad_contents();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700920err1:
921 return ret;
922err2:
923 free_irq(INT_34XX_PRCM_MPU_IRQ, NULL);
924 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
925 list_del(&pwrst->node);
926 kfree(pwrst);
927 }
928 return ret;
929}
930
931late_initcall(omap3_pm_init);