ARM: OMAP4: Workaround the OCP synchronisation issue with 32K synctimer.
[linux-2.6-block.git] / arch / arm / mach-omap2 / pm34xx.c
CommitLineData
8bd22949
KH
1/*
2 * OMAP3 Power Management Routines
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation
5 * Tony Lindgren <tony@atomide.com>
6 * Jouni Hogander
7 *
2f5939c3
RN
8 * Copyright (C) 2007 Texas Instruments, Inc.
9 * Rajendra Nayak <rnayak@ti.com>
10 *
8bd22949
KH
11 * 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>
c40552bc 28#include <linux/clk.h>
dccaad89 29#include <linux/delay.h>
5a0e3ad6 30#include <linux/slab.h>
5e7c58dc 31#include <trace/events/power.h>
8bd22949 32
2c74a0ce
RK
33#include <asm/suspend.h>
34
ce491cf8 35#include <plat/sram.h>
1540f214 36#include "clockdomain.h"
72e06d08 37#include "powerdomain.h"
61255ab9 38#include <plat/sdrc.h>
2f5939c3
RN
39#include <plat/prcm.h>
40#include <plat/gpmc.h>
f2d11858 41#include <plat/dma.h>
8bd22949 42
4e65331c 43#include "common.h"
59fb659b 44#include "cm2xxx_3xxx.h"
8bd22949
KH
45#include "cm-regbits-34xx.h"
46#include "prm-regbits-34xx.h"
47
59fb659b 48#include "prm2xxx_3xxx.h"
8bd22949 49#include "pm.h"
13a6fe0f 50#include "sdrc.h"
4814ced5 51#include "control.h"
13a6fe0f 52
e83df17f
KH
53#ifdef CONFIG_SUSPEND
54static suspend_state_t suspend_state = PM_SUSPEND_ON;
e83df17f
KH
55#endif
56
8cdfd834
NM
57/* pm34xx errata defined in pm.h */
58u16 pm34xx_errata;
59
8bd22949
KH
60struct power_state {
61 struct powerdomain *pwrdm;
62 u32 next_state;
10f90ed2 63#ifdef CONFIG_SUSPEND
8bd22949 64 u32 saved_state;
10f90ed2 65#endif
8bd22949
KH
66 struct list_head node;
67};
68
69static LIST_HEAD(pwrst_list);
70
27d59a4a 71static int (*_omap_save_secure_sram)(u32 *addr);
46e130d2 72void (*omap3_do_wfi_sram)(void);
27d59a4a 73
fa3c2a4f
RN
74static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
75static struct powerdomain *core_pwrdm, *per_pwrdm;
c16c3f67 76static struct powerdomain *cam_pwrdm;
fa3c2a4f 77
2f5939c3
RN
78static 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
3a7ec26b
KJ
88static void omap3_enable_io_chain(void)
89{
90 int timeout = 0;
91
b02b9172
PW
92 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);
96
97 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;
3a7ec26b 103 }
b02b9172
PW
104 omap2_prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN_MASK,
105 WKUP_MOD, PM_WKEN);
3a7ec26b
KJ
106 }
107}
108
109static void omap3_disable_io_chain(void)
110{
b02b9172
PW
111 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN_MASK, WKUP_MOD,
112 PM_WKEN);
3a7ec26b
KJ
113}
114
2f5939c3
RN
115static void omap3_core_save_context(void)
116{
596efe47 117 omap3_ctrl_save_padconf();
dccaad89
TK
118
119 /*
120 * Force write last pad into memory, as this can fail in some
83521291 121 * cases according to errata 1.157, 1.185
dccaad89
TK
122 */
123 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
124 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
125
2f5939c3
RN
126 /* 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();
f2d11858 132 omap_dma_global_context_save();
2f5939c3
RN
133}
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();
f2d11858 143 omap_dma_global_context_restore();
2f5939c3
RN
144}
145
9d97140b
TK
146/*
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 */
617fcc98 152static void omap3_save_secure_ram_context(void)
27d59a4a
TK
153{
154 u32 ret;
617fcc98 155 int mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
27d59a4a
TK
156
157 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
27d59a4a
TK
158 /*
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));
617fcc98 166 pwrdm_set_next_pwrst(mpu_pwrdm, mpu_next_state);
27d59a4a
TK
167 /* Following is for error tracking, it should not happen */
168 if (ret) {
169 printk(KERN_ERR "save_secure_sram() returns %08x\n",
170 ret);
171 while (1)
172 ;
173 }
174 }
175}
176
77da2d91
JH
177/*
178 * PRCM Interrupt Handler Helper Function
179 *
180 * The purpose of this function is to clear any wake-up events latched
181 * in the PRCM PM_WKST_x registers. It is possible that a wake-up event
182 * may occur whilst attempting to clear a PM_WKST_x register and thus
183 * set another bit in this register. A while loop is used to ensure
184 * that any peripheral wake-up events occurring while attempting to
185 * clear the PM_WKST_x are detected and cleared.
186 */
22f51371 187static int prcm_clear_mod_irqs(s16 module, u8 regs, u32 ignore_bits)
8bd22949 188{
71a80775 189 u32 wkst, fclk, iclk, clken;
77da2d91
JH
190 u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1;
191 u16 fclk_off = (regs == 3) ? OMAP3430ES2_CM_FCLKEN3 : CM_FCLKEN1;
192 u16 iclk_off = (regs == 3) ? CM_ICLKEN3 : CM_ICLKEN1;
5d805978
PW
193 u16 grpsel_off = (regs == 3) ?
194 OMAP3430ES2_PM_MPUGRPSEL3 : OMAP3430_PM_MPUGRPSEL;
8cb0ac99 195 int c = 0;
8bd22949 196
c4d7e58f
PW
197 wkst = omap2_prm_read_mod_reg(module, wkst_off);
198 wkst &= omap2_prm_read_mod_reg(module, grpsel_off);
22f51371 199 wkst &= ~ignore_bits;
8bd22949 200 if (wkst) {
c4d7e58f
PW
201 iclk = omap2_cm_read_mod_reg(module, iclk_off);
202 fclk = omap2_cm_read_mod_reg(module, fclk_off);
77da2d91 203 while (wkst) {
71a80775 204 clken = wkst;
c4d7e58f 205 omap2_cm_set_mod_reg_bits(clken, module, iclk_off);
71a80775
VP
206 /*
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;
c4d7e58f
PW
212 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);
22f51371 215 wkst &= ~ignore_bits;
8cb0ac99 216 c++;
77da2d91 217 }
c4d7e58f
PW
218 omap2_cm_write_mod_reg(iclk, module, iclk_off);
219 omap2_cm_write_mod_reg(fclk, module, fclk_off);
8bd22949 220 }
8cb0ac99
PW
221
222 return c;
223}
224
22f51371 225static irqreturn_t _prcm_int_handle_io(int irq, void *unused)
8cb0ac99
PW
226{
227 int c;
228
22f51371
TK
229 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
230 ~(OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK));
8cb0ac99 231
22f51371 232 return c ? IRQ_HANDLED : IRQ_NONE;
77da2d91 233}
8bd22949 234
22f51371 235static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
77da2d91 236{
22f51371 237 int c;
d6290a3e 238
22f51371
TK
239 /*
240 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
241 * these are handled in a separate handler to avoid acking
242 * IO events before parsing in mux code
243 */
244 c = prcm_clear_mod_irqs(WKUP_MOD, 1,
245 OMAP3430_ST_IO_MASK | OMAP3430_ST_IO_CHAIN_MASK);
246 c += prcm_clear_mod_irqs(CORE_MOD, 1, 0);
247 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1, 0);
248 if (omap_rev() > OMAP3430_REV_ES1_0) {
249 c += prcm_clear_mod_irqs(CORE_MOD, 3, 0);
250 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, 0);
251 }
8bd22949 252
22f51371 253 return c ? IRQ_HANDLED : IRQ_NONE;
8bd22949
KH
254}
255
cbe26349
RK
256static void omap34xx_save_context(u32 *save)
257{
258 u32 val;
259
260 /* Read Auxiliary Control Register */
261 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
262 *save++ = 1;
263 *save++ = val;
264
265 /* Read L2 AUX ctrl register */
266 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
267 *save++ = 1;
268 *save++ = val;
269}
270
29cb3cd2 271static int omap34xx_do_sram_idle(unsigned long save_state)
57f277b0 272{
cbe26349 273 omap34xx_cpu_suspend(save_state);
29cb3cd2 274 return 0;
57f277b0
RN
275}
276
99e6a4d2 277void omap_sram_idle(void)
8bd22949
KH
278{
279 /* Variable to tell what needs to be saved and restored
280 * in omap_sram_idle*/
281 /* save_state = 0 => Nothing to save and restored */
282 /* save_state = 1 => Only L1 and logic lost */
283 /* save_state = 2 => Only L2 lost */
284 /* save_state = 3 => L1, L2 and logic lost */
fa3c2a4f
RN
285 int save_state = 0;
286 int mpu_next_state = PWRDM_POWER_ON;
287 int per_next_state = PWRDM_POWER_ON;
288 int core_next_state = PWRDM_POWER_ON;
72e06d08 289 int per_going_off;
2f5939c3 290 int core_prev_state, per_prev_state;
13a6fe0f 291 u32 sdrc_pwr = 0;
8bd22949 292
fa3c2a4f
RN
293 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
294 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
295 pwrdm_clear_all_prev_pwrst(core_pwrdm);
296 pwrdm_clear_all_prev_pwrst(per_pwrdm);
297
8bd22949
KH
298 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
299 switch (mpu_next_state) {
fa3c2a4f 300 case PWRDM_POWER_ON:
8bd22949
KH
301 case PWRDM_POWER_RET:
302 /* No need to save context */
303 save_state = 0;
304 break;
61255ab9
RN
305 case PWRDM_POWER_OFF:
306 save_state = 3;
307 break;
8bd22949
KH
308 default:
309 /* Invalid state */
310 printk(KERN_ERR "Invalid mpu state in sram_idle\n");
311 return;
312 }
fe617af7 313
fa3c2a4f
RN
314 /* NEON control */
315 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
7139178e 316 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
fa3c2a4f 317
40742fa8 318 /* Enable IO-PAD and IO-CHAIN wakeups */
658ce97e 319 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
ecf157d0 320 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
d5c47d7e
KH
321 if (omap3_has_io_wakeup() &&
322 (per_next_state < PWRDM_POWER_ON ||
323 core_next_state < PWRDM_POWER_ON)) {
c4d7e58f 324 omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, PM_WKEN);
b02b9172
PW
325 if (omap3_has_io_chain_ctrl())
326 omap3_enable_io_chain();
40742fa8
MC
327 }
328
ff2f8e5f
C
329 pwrdm_pre_transition();
330
40742fa8 331 /* PER */
658ce97e 332 if (per_next_state < PWRDM_POWER_ON) {
72e06d08 333 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
72e06d08 334 omap2_gpio_prepare_for_idle(per_going_off);
e7410cf7 335 if (per_next_state == PWRDM_POWER_OFF)
ecf157d0 336 omap3_per_save_context();
658ce97e
KH
337 }
338
339 /* CORE */
fa3c2a4f 340 if (core_next_state < PWRDM_POWER_ON) {
2f5939c3
RN
341 if (core_next_state == PWRDM_POWER_OFF) {
342 omap3_core_save_context();
f0611a5c 343 omap3_cm_save_context();
2f5939c3 344 }
fa3c2a4f 345 }
40742fa8 346
f18cc2ff 347 omap3_intc_prepare_idle();
8bd22949 348
13a6fe0f 349 /*
30474544
PW
350 * On EMU/HS devices ROM code restores a SRDC value
351 * from scratchpad which has automatic self refresh on timeout
352 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
353 * Hence store/restore the SDRC_POWER register here.
354 */
355 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
356 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
357 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
f265dc4c 358 core_next_state == PWRDM_POWER_OFF)
13a6fe0f 359 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
13a6fe0f 360
61255ab9 361 /*
076f2cc4
RK
362 * omap3_arm_context is the location where some ARM context
363 * get saved. The rest is placed on the stack, and restored
364 * from there before resuming.
61255ab9 365 */
cbe26349
RK
366 if (save_state)
367 omap34xx_save_context(omap3_arm_context);
076f2cc4 368 if (save_state == 1 || save_state == 3)
2c74a0ce 369 cpu_suspend(save_state, omap34xx_do_sram_idle);
076f2cc4
RK
370 else
371 omap34xx_do_sram_idle(save_state);
8bd22949 372
f265dc4c 373 /* Restore normal SDRC POWER settings */
30474544
PW
374 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
375 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
376 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
13a6fe0f
TK
377 core_next_state == PWRDM_POWER_OFF)
378 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
379
658ce97e 380 /* CORE */
fa3c2a4f 381 if (core_next_state < PWRDM_POWER_ON) {
2f5939c3
RN
382 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
383 if (core_prev_state == PWRDM_POWER_OFF) {
384 omap3_core_restore_context();
f0611a5c 385 omap3_cm_restore_context();
2f5939c3 386 omap3_sram_restore_context();
8a917d2f 387 omap2_sms_restore_context();
2f5939c3 388 }
658ce97e 389 if (core_next_state == PWRDM_POWER_OFF)
c4d7e58f 390 omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK,
658ce97e
KH
391 OMAP3430_GR_MOD,
392 OMAP3_PRM_VOLTCTRL_OFFSET);
393 }
f18cc2ff 394 omap3_intc_resume_idle();
658ce97e 395
ff2f8e5f
C
396 pwrdm_post_transition();
397
658ce97e
KH
398 /* PER */
399 if (per_next_state < PWRDM_POWER_ON) {
400 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
43ffcd9a
KH
401 omap2_gpio_resume_after_idle();
402 if (per_prev_state == PWRDM_POWER_OFF)
658ce97e 403 omap3_per_restore_context();
fa3c2a4f 404 }
fe617af7 405
3a7ec26b 406 /* Disable IO-PAD and IO-CHAIN wakeup */
58a5559e
KH
407 if (omap3_has_io_wakeup() &&
408 (per_next_state < PWRDM_POWER_ON ||
409 core_next_state < PWRDM_POWER_ON)) {
c4d7e58f
PW
410 omap2_prm_clear_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD,
411 PM_WKEN);
b02b9172
PW
412 if (omap3_has_io_chain_ctrl())
413 omap3_disable_io_chain();
3a7ec26b 414 }
658ce97e 415
5cd1937b 416 clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
8bd22949
KH
417}
418
8bd22949
KH
419static void omap3_pm_idle(void)
420{
421 local_irq_disable();
422 local_fiq_disable();
423
cf22854c 424 if (omap_irq_pending() || need_resched())
8bd22949
KH
425 goto out;
426
5e7c58dc
JP
427 trace_power_start(POWER_CSTATE, 1, smp_processor_id());
428 trace_cpu_idle(1, smp_processor_id());
429
8bd22949
KH
430 omap_sram_idle();
431
5e7c58dc
JP
432 trace_power_end(smp_processor_id());
433 trace_cpu_idle(PWR_EVENT_EXIT, smp_processor_id());
434
8bd22949
KH
435out:
436 local_fiq_enable();
437 local_irq_enable();
438}
439
10f90ed2 440#ifdef CONFIG_SUSPEND
8bd22949
KH
441static int omap3_pm_suspend(void)
442{
443 struct power_state *pwrst;
444 int state, ret = 0;
445
446 /* Read current next_pwrsts */
447 list_for_each_entry(pwrst, &pwrst_list, node)
448 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
449 /* Set ones wanted by suspend */
450 list_for_each_entry(pwrst, &pwrst_list, node) {
eb6a2c75 451 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
8bd22949
KH
452 goto restore;
453 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
454 goto restore;
455 }
456
2bbe3af3
TK
457 omap3_intc_suspend();
458
8bd22949
KH
459 omap_sram_idle();
460
461restore:
462 /* Restore next_pwrsts */
463 list_for_each_entry(pwrst, &pwrst_list, node) {
8bd22949
KH
464 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
465 if (state > pwrst->next_state) {
466 printk(KERN_INFO "Powerdomain (%s) didn't enter "
467 "target state %d\n",
468 pwrst->pwrdm->name, pwrst->next_state);
469 ret = -1;
470 }
eb6a2c75 471 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
8bd22949
KH
472 }
473 if (ret)
474 printk(KERN_ERR "Could not enter target state in pm_suspend\n");
475 else
476 printk(KERN_INFO "Successfully put all powerdomains "
477 "to target state\n");
478
479 return ret;
480}
481
2466211e 482static int omap3_pm_enter(suspend_state_t unused)
8bd22949
KH
483{
484 int ret = 0;
485
2466211e 486 switch (suspend_state) {
8bd22949
KH
487 case PM_SUSPEND_STANDBY:
488 case PM_SUSPEND_MEM:
489 ret = omap3_pm_suspend();
490 break;
491 default:
492 ret = -EINVAL;
493 }
494
495 return ret;
496}
497
2466211e
TK
498/* Hooks to enable / disable UART interrupts during suspend */
499static int omap3_pm_begin(suspend_state_t state)
500{
c166381d 501 disable_hlt();
2466211e 502 suspend_state = state;
22f51371 503 omap_prcm_irq_prepare();
2466211e
TK
504 return 0;
505}
506
507static void omap3_pm_end(void)
508{
509 suspend_state = PM_SUSPEND_ON;
c166381d 510 enable_hlt();
2466211e
TK
511 return;
512}
513
22f51371
TK
514static void omap3_pm_finish(void)
515{
516 omap_prcm_irq_complete();
517}
518
2f55ac07 519static const struct platform_suspend_ops omap_pm_ops = {
2466211e
TK
520 .begin = omap3_pm_begin,
521 .end = omap3_pm_end,
8bd22949 522 .enter = omap3_pm_enter,
22f51371 523 .finish = omap3_pm_finish,
8bd22949
KH
524 .valid = suspend_valid_only_mem,
525};
10f90ed2 526#endif /* CONFIG_SUSPEND */
8bd22949 527
1155e426
KH
528
529/**
530 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
531 * retention
532 *
533 * In cases where IVA2 is activated by bootcode, it may prevent
534 * full-chip retention or off-mode because it is not idle. This
535 * function forces the IVA2 into idle state so it can go
536 * into retention/off and thus allow full-chip retention/off.
537 *
538 **/
539static void __init omap3_iva_idle(void)
540{
541 /* ensure IVA2 clock is disabled */
c4d7e58f 542 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
1155e426
KH
543
544 /* if no clock activity, nothing else to do */
c4d7e58f 545 if (!(omap2_cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
1155e426
KH
546 OMAP3430_CLKACTIVITY_IVA2_MASK))
547 return;
548
549 /* Reset IVA2 */
c4d7e58f 550 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
2bc4ef71
PW
551 OMAP3430_RST2_IVA2_MASK |
552 OMAP3430_RST3_IVA2_MASK,
37903009 553 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
554
555 /* Enable IVA2 clock */
c4d7e58f 556 omap2_cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK,
1155e426
KH
557 OMAP3430_IVA2_MOD, CM_FCLKEN);
558
559 /* Set IVA2 boot mode to 'idle' */
560 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
561 OMAP343X_CONTROL_IVA2_BOOTMOD);
562
563 /* Un-reset IVA2 */
c4d7e58f 564 omap2_prm_write_mod_reg(0, OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
565
566 /* Disable IVA2 clock */
c4d7e58f 567 omap2_cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
1155e426
KH
568
569 /* Reset IVA2 */
c4d7e58f 570 omap2_prm_write_mod_reg(OMAP3430_RST1_IVA2_MASK |
2bc4ef71
PW
571 OMAP3430_RST2_IVA2_MASK |
572 OMAP3430_RST3_IVA2_MASK,
37903009 573 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
574}
575
8111b221 576static void __init omap3_d2d_idle(void)
8bd22949 577{
8111b221
KH
578 u16 mask, padconf;
579
580 /* In a stand alone OMAP3430 where there is not a stacked
581 * modem for the D2D Idle Ack and D2D MStandby must be pulled
582 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
583 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
584 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
585 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
586 padconf |= mask;
587 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
588
589 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
590 padconf |= mask;
591 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
592
8bd22949 593 /* reset modem */
c4d7e58f 594 omap2_prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON_MASK |
2bc4ef71 595 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST_MASK,
37903009 596 CORE_MOD, OMAP2_RM_RSTCTRL);
c4d7e58f 597 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP2_RM_RSTCTRL);
8111b221 598}
8bd22949 599
8111b221
KH
600static void __init prcm_setup_regs(void)
601{
e5863689
G
602 u32 omap3630_en_uart4_mask = cpu_is_omap3630() ?
603 OMAP3630_EN_UART4_MASK : 0;
604 u32 omap3630_grpsel_uart4_mask = cpu_is_omap3630() ?
605 OMAP3630_GRPSEL_UART4_MASK : 0;
606
4ef70c06 607 /* XXX This should be handled by hwmod code or SCM init code */
2fd0f75c 608 omap_ctrl_writel(OMAP3430_AUTOIDLE_MASK, OMAP2_CONTROL_SYSCONFIG);
b296c811 609
8bd22949
KH
610 /*
611 * Enable control of expternal oscillator through
612 * sys_clkreq. In the long run clock framework should
613 * take care of this.
614 */
c4d7e58f 615 omap2_prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
8bd22949
KH
616 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
617 OMAP3430_GR_MOD,
618 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
619
620 /* setup wakup source */
c4d7e58f 621 omap2_prm_write_mod_reg(OMAP3430_EN_IO_MASK | OMAP3430_EN_GPIO1_MASK |
2fd0f75c 622 OMAP3430_EN_GPT1_MASK | OMAP3430_EN_GPT12_MASK,
8bd22949
KH
623 WKUP_MOD, PM_WKEN);
624 /* No need to write EN_IO, that is always enabled */
c4d7e58f 625 omap2_prm_write_mod_reg(OMAP3430_GRPSEL_GPIO1_MASK |
275f675c
PW
626 OMAP3430_GRPSEL_GPT1_MASK |
627 OMAP3430_GRPSEL_GPT12_MASK,
8bd22949 628 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
1155e426 629
b92c5721 630 /* Enable PM_WKEN to support DSS LPR */
c4d7e58f 631 omap2_prm_write_mod_reg(OMAP3430_PM_WKEN_DSS_EN_DSS_MASK,
b92c5721
SV
632 OMAP3430_DSS_MOD, PM_WKEN);
633
b427f92f 634 /* Enable wakeups in PER */
c4d7e58f 635 omap2_prm_write_mod_reg(omap3630_en_uart4_mask |
e5863689 636 OMAP3430_EN_GPIO2_MASK | OMAP3430_EN_GPIO3_MASK |
2fd0f75c
PW
637 OMAP3430_EN_GPIO4_MASK | OMAP3430_EN_GPIO5_MASK |
638 OMAP3430_EN_GPIO6_MASK | OMAP3430_EN_UART3_MASK |
639 OMAP3430_EN_MCBSP2_MASK | OMAP3430_EN_MCBSP3_MASK |
640 OMAP3430_EN_MCBSP4_MASK,
b427f92f 641 OMAP3430_PER_MOD, PM_WKEN);
eb350f74 642 /* and allow them to wake up MPU */
c4d7e58f 643 omap2_prm_write_mod_reg(omap3630_grpsel_uart4_mask |
e5863689 644 OMAP3430_GRPSEL_GPIO2_MASK |
275f675c
PW
645 OMAP3430_GRPSEL_GPIO3_MASK |
646 OMAP3430_GRPSEL_GPIO4_MASK |
647 OMAP3430_GRPSEL_GPIO5_MASK |
648 OMAP3430_GRPSEL_GPIO6_MASK |
649 OMAP3430_GRPSEL_UART3_MASK |
650 OMAP3430_GRPSEL_MCBSP2_MASK |
651 OMAP3430_GRPSEL_MCBSP3_MASK |
652 OMAP3430_GRPSEL_MCBSP4_MASK,
eb350f74
KH
653 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
654
d3fd3290 655 /* Don't attach IVA interrupts */
c4d7e58f
PW
656 omap2_prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
657 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
658 omap2_prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
659 omap2_prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
d3fd3290 660
b1340d17 661 /* Clear any pending 'reset' flags */
c4d7e58f
PW
662 omap2_prm_write_mod_reg(0xffffffff, MPU_MOD, OMAP2_RM_RSTST);
663 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP2_RM_RSTST);
664 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, OMAP2_RM_RSTST);
665 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, OMAP2_RM_RSTST);
666 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, OMAP2_RM_RSTST);
667 omap2_prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, OMAP2_RM_RSTST);
668 omap2_prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, OMAP2_RM_RSTST);
b1340d17 669
014c46db 670 /* Clear any pending PRCM interrupts */
c4d7e58f 671 omap2_prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
014c46db 672
1155e426 673 omap3_iva_idle();
8111b221 674 omap3_d2d_idle();
8bd22949
KH
675}
676
c40552bc
KH
677void omap3_pm_off_mode_enable(int enable)
678{
679 struct power_state *pwrst;
680 u32 state;
681
682 if (enable)
683 state = PWRDM_POWER_OFF;
684 else
685 state = PWRDM_POWER_RET;
686
687 list_for_each_entry(pwrst, &pwrst_list, node) {
cc1b6028
EV
688 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
689 pwrst->pwrdm == core_pwrdm &&
690 state == PWRDM_POWER_OFF) {
691 pwrst->next_state = PWRDM_POWER_RET;
e16b41bf 692 pr_warn("%s: Core OFF disabled due to errata i583\n",
cc1b6028
EV
693 __func__);
694 } else {
695 pwrst->next_state = state;
696 }
697 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
c40552bc
KH
698 }
699}
700
68d4778c
TK
701int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
702{
703 struct power_state *pwrst;
704
705 list_for_each_entry(pwrst, &pwrst_list, node) {
706 if (pwrst->pwrdm == pwrdm)
707 return pwrst->next_state;
708 }
709 return -EINVAL;
710}
711
712int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
713{
714 struct power_state *pwrst;
715
716 list_for_each_entry(pwrst, &pwrst_list, node) {
717 if (pwrst->pwrdm == pwrdm) {
718 pwrst->next_state = state;
719 return 0;
720 }
721 }
722 return -EINVAL;
723}
724
a23456e9 725static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
8bd22949
KH
726{
727 struct power_state *pwrst;
728
729 if (!pwrdm->pwrsts)
730 return 0;
731
d3d381c6 732 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
8bd22949
KH
733 if (!pwrst)
734 return -ENOMEM;
735 pwrst->pwrdm = pwrdm;
736 pwrst->next_state = PWRDM_POWER_RET;
737 list_add(&pwrst->node, &pwrst_list);
738
739 if (pwrdm_has_hdwr_sar(pwrdm))
740 pwrdm_enable_hdwr_sar(pwrdm);
741
eb6a2c75 742 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
8bd22949
KH
743}
744
745/*
746 * Enable hw supervised mode for all clockdomains if it's
747 * supported. Initiate sleep transition for other clockdomains, if
748 * they are not used
749 */
a23456e9 750static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
8bd22949
KH
751{
752 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
5cd1937b 753 clkdm_allow_idle(clkdm);
8bd22949
KH
754 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
755 atomic_read(&clkdm->usecount) == 0)
68b921ad 756 clkdm_sleep(clkdm);
8bd22949
KH
757 return 0;
758}
759
46e130d2
JP
760/*
761 * Push functions to SRAM
762 *
763 * The minimum set of functions is pushed to SRAM for execution:
764 * - omap3_do_wfi for erratum i581 WA,
765 * - save_secure_ram_context for security extensions.
766 */
3231fc88
RN
767void omap_push_sram_idle(void)
768{
46e130d2
JP
769 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
770
27d59a4a
TK
771 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
772 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
773 save_secure_ram_context_sz);
3231fc88
RN
774}
775
8cdfd834
NM
776static void __init pm_errata_configure(void)
777{
c4236d2e 778 if (cpu_is_omap3630()) {
458e999e 779 pm34xx_errata |= PM_RTA_ERRATUM_i608;
c4236d2e
PDS
780 /* Enable the l2 cache toggling in sleep logic */
781 enable_omap3630_toggle_l2_on_restore();
cc1b6028
EV
782 if (omap_rev() < OMAP3630_REV_ES1_2)
783 pm34xx_errata |= PM_SDRC_WAKEUP_ERRATUM_i583;
c4236d2e 784 }
8cdfd834
NM
785}
786
7cc515f7 787static int __init omap3_pm_init(void)
8bd22949
KH
788{
789 struct power_state *pwrst, *tmp;
55ed9694 790 struct clockdomain *neon_clkdm, *per_clkdm, *mpu_clkdm, *core_clkdm;
8bd22949
KH
791 int ret;
792
793 if (!cpu_is_omap34xx())
794 return -ENODEV;
795
b02b9172
PW
796 if (!omap3_has_io_chain_ctrl())
797 pr_warning("PM: no software I/O chain control; some wakeups may be lost\n");
798
8cdfd834
NM
799 pm_errata_configure();
800
8bd22949
KH
801 /* XXX prcm_setup_regs needs to be before enabling hw
802 * supervised mode for powerdomains */
803 prcm_setup_regs();
804
22f51371
TK
805 ret = request_irq(omap_prcm_event_to_irq("wkup"),
806 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
807
808 if (ret) {
809 pr_err("pm: Failed to request pm_wkup irq\n");
810 goto err1;
811 }
812
813 /* IO interrupt is shared with mux code */
814 ret = request_irq(omap_prcm_event_to_irq("io"),
815 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
816 omap3_pm_init);
817
8bd22949 818 if (ret) {
22f51371 819 pr_err("pm: Failed to request pm_io irq\n");
8bd22949
KH
820 goto err1;
821 }
822
a23456e9 823 ret = pwrdm_for_each(pwrdms_setup, NULL);
8bd22949
KH
824 if (ret) {
825 printk(KERN_ERR "Failed to setup powerdomains\n");
826 goto err2;
827 }
828
a23456e9 829 (void) clkdm_for_each(clkdms_setup, NULL);
8bd22949
KH
830
831 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
832 if (mpu_pwrdm == NULL) {
833 printk(KERN_ERR "Failed to get mpu_pwrdm\n");
834 goto err2;
835 }
836
fa3c2a4f
RN
837 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
838 per_pwrdm = pwrdm_lookup("per_pwrdm");
839 core_pwrdm = pwrdm_lookup("core_pwrdm");
c16c3f67 840 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
fa3c2a4f 841
55ed9694
PW
842 neon_clkdm = clkdm_lookup("neon_clkdm");
843 mpu_clkdm = clkdm_lookup("mpu_clkdm");
844 per_clkdm = clkdm_lookup("per_clkdm");
845 core_clkdm = clkdm_lookup("core_clkdm");
846
10f90ed2 847#ifdef CONFIG_SUSPEND
8bd22949 848 suspend_set_ops(&omap_pm_ops);
10f90ed2 849#endif /* CONFIG_SUSPEND */
8bd22949
KH
850
851 pm_idle = omap3_pm_idle;
0343371e 852 omap3_idle_init();
8bd22949 853
458e999e
NM
854 /*
855 * RTA is disabled during initialization as per erratum i608
856 * it is safer to disable RTA by the bootloader, but we would like
857 * to be doubly sure here and prevent any mishaps.
858 */
859 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
860 omap3630_ctrl_disable_rta();
861
55ed9694 862 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
27d59a4a
TK
863 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
864 omap3_secure_ram_storage =
865 kmalloc(0x803F, GFP_KERNEL);
866 if (!omap3_secure_ram_storage)
867 printk(KERN_ERR "Memory allocation failed when"
868 "allocating for secure sram context\n");
9d97140b
TK
869
870 local_irq_disable();
871 local_fiq_disable();
872
873 omap_dma_global_context_save();
617fcc98 874 omap3_save_secure_ram_context();
9d97140b
TK
875 omap_dma_global_context_restore();
876
877 local_irq_enable();
878 local_fiq_enable();
27d59a4a 879 }
27d59a4a 880
9d97140b 881 omap3_save_scratchpad_contents();
8bd22949
KH
882err1:
883 return ret;
884err2:
885 free_irq(INT_34XX_PRCM_MPU_IRQ, NULL);
886 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
887 list_del(&pwrst->node);
888 kfree(pwrst);
889 }
890 return ret;
891}
892
893late_initcall(omap3_pm_init);