OMAP3: PM: Remove PER wakeup dependency on CORE.
[deliverable/linux.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>
8bd22949 31
ce491cf8
TL
32#include <plat/sram.h>
33#include <plat/clockdomain.h>
34#include <plat/powerdomain.h>
35#include <plat/control.h>
36#include <plat/serial.h>
61255ab9 37#include <plat/sdrc.h>
2f5939c3
RN
38#include <plat/prcm.h>
39#include <plat/gpmc.h>
f2d11858 40#include <plat/dma.h>
d7814e4d 41#include <plat/dmtimer.h>
8bd22949 42
57f277b0
RN
43#include <asm/tlbflush.h>
44
8bd22949
KH
45#include "cm.h"
46#include "cm-regbits-34xx.h"
47#include "prm-regbits-34xx.h"
48
49#include "prm.h"
50#include "pm.h"
13a6fe0f
TK
51#include "sdrc.h"
52
2f5939c3
RN
53/* Scratchpad offsets */
54#define OMAP343X_TABLE_ADDRESS_OFFSET 0x31
55#define OMAP343X_TABLE_VALUE_OFFSET 0x30
56#define OMAP343X_CONTROL_REG_VALUE_OFFSET 0x32
57
c40552bc
KH
58u32 enable_off_mode;
59u32 sleep_while_idle;
d7814e4d 60u32 wakeup_timer_seconds;
8e2efde9 61u32 wakeup_timer_milliseconds;
c40552bc 62
8bd22949
KH
63struct power_state {
64 struct powerdomain *pwrdm;
65 u32 next_state;
10f90ed2 66#ifdef CONFIG_SUSPEND
8bd22949 67 u32 saved_state;
10f90ed2 68#endif
8bd22949
KH
69 struct list_head node;
70};
71
72static LIST_HEAD(pwrst_list);
73
74static void (*_omap_sram_idle)(u32 *addr, int save_state);
75
27d59a4a
TK
76static int (*_omap_save_secure_sram)(u32 *addr);
77
fa3c2a4f
RN
78static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
79static struct powerdomain *core_pwrdm, *per_pwrdm;
c16c3f67 80static struct powerdomain *cam_pwrdm;
fa3c2a4f 81
2f5939c3
RN
82static inline void omap3_per_save_context(void)
83{
84 omap_gpio_save_context();
85}
86
87static inline void omap3_per_restore_context(void)
88{
89 omap_gpio_restore_context();
90}
91
3a7ec26b
KJ
92static void omap3_enable_io_chain(void)
93{
94 int timeout = 0;
95
96 if (omap_rev() >= OMAP3430_REV_ES3_1) {
97 prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN, WKUP_MOD, PM_WKEN);
98 /* Do a readback to assure write has been done */
99 prm_read_mod_reg(WKUP_MOD, PM_WKEN);
100
101 while (!(prm_read_mod_reg(WKUP_MOD, PM_WKST) &
102 OMAP3430_ST_IO_CHAIN)) {
103 timeout++;
104 if (timeout > 1000) {
105 printk(KERN_ERR "Wake up daisy chain "
106 "activation failed.\n");
107 return;
108 }
109 prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN,
110 WKUP_MOD, PM_WKST);
111 }
112 }
113}
114
115static void omap3_disable_io_chain(void)
116{
117 if (omap_rev() >= OMAP3430_REV_ES3_1)
118 prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN, WKUP_MOD, PM_WKEN);
119}
120
2f5939c3
RN
121static void omap3_core_save_context(void)
122{
123 u32 control_padconf_off;
124
125 /* Save the padconf registers */
126 control_padconf_off = omap_ctrl_readl(OMAP343X_CONTROL_PADCONF_OFF);
127 control_padconf_off |= START_PADCONF_SAVE;
128 omap_ctrl_writel(control_padconf_off, OMAP343X_CONTROL_PADCONF_OFF);
129 /* wait for the save to complete */
1b6e821f
RK
130 while (!(omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS)
131 & PADCONF_SAVE_DONE))
dccaad89
TK
132 udelay(1);
133
134 /*
135 * Force write last pad into memory, as this can fail in some
136 * cases according to erratas 1.157, 1.185
137 */
138 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
139 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
140
2f5939c3
RN
141 /* Save the Interrupt controller context */
142 omap_intc_save_context();
143 /* Save the GPMC context */
144 omap3_gpmc_save_context();
145 /* Save the system control module context, padconf already save above*/
146 omap3_control_save_context();
f2d11858 147 omap_dma_global_context_save();
2f5939c3
RN
148}
149
150static void omap3_core_restore_context(void)
151{
152 /* Restore the control module context, padconf restored by h/w */
153 omap3_control_restore_context();
154 /* Restore the GPMC context */
155 omap3_gpmc_restore_context();
156 /* Restore the interrupt controller context */
157 omap_intc_restore_context();
f2d11858 158 omap_dma_global_context_restore();
2f5939c3
RN
159}
160
9d97140b
TK
161/*
162 * FIXME: This function should be called before entering off-mode after
163 * OMAP3 secure services have been accessed. Currently it is only called
164 * once during boot sequence, but this works as we are not using secure
165 * services.
166 */
27d59a4a
TK
167static void omap3_save_secure_ram_context(u32 target_mpu_state)
168{
169 u32 ret;
170
171 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
27d59a4a
TK
172 /*
173 * MPU next state must be set to POWER_ON temporarily,
174 * otherwise the WFI executed inside the ROM code
175 * will hang the system.
176 */
177 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
178 ret = _omap_save_secure_sram((u32 *)
179 __pa(omap3_secure_ram_storage));
180 pwrdm_set_next_pwrst(mpu_pwrdm, target_mpu_state);
181 /* Following is for error tracking, it should not happen */
182 if (ret) {
183 printk(KERN_ERR "save_secure_sram() returns %08x\n",
184 ret);
185 while (1)
186 ;
187 }
188 }
189}
190
77da2d91
JH
191/*
192 * PRCM Interrupt Handler Helper Function
193 *
194 * The purpose of this function is to clear any wake-up events latched
195 * in the PRCM PM_WKST_x registers. It is possible that a wake-up event
196 * may occur whilst attempting to clear a PM_WKST_x register and thus
197 * set another bit in this register. A while loop is used to ensure
198 * that any peripheral wake-up events occurring while attempting to
199 * clear the PM_WKST_x are detected and cleared.
200 */
8cb0ac99 201static int prcm_clear_mod_irqs(s16 module, u8 regs)
8bd22949 202{
71a80775 203 u32 wkst, fclk, iclk, clken;
77da2d91
JH
204 u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1;
205 u16 fclk_off = (regs == 3) ? OMAP3430ES2_CM_FCLKEN3 : CM_FCLKEN1;
206 u16 iclk_off = (regs == 3) ? CM_ICLKEN3 : CM_ICLKEN1;
5d805978
PW
207 u16 grpsel_off = (regs == 3) ?
208 OMAP3430ES2_PM_MPUGRPSEL3 : OMAP3430_PM_MPUGRPSEL;
8cb0ac99 209 int c = 0;
8bd22949 210
77da2d91 211 wkst = prm_read_mod_reg(module, wkst_off);
5d805978 212 wkst &= prm_read_mod_reg(module, grpsel_off);
8bd22949 213 if (wkst) {
77da2d91
JH
214 iclk = cm_read_mod_reg(module, iclk_off);
215 fclk = cm_read_mod_reg(module, fclk_off);
216 while (wkst) {
71a80775
VP
217 clken = wkst;
218 cm_set_mod_reg_bits(clken, module, iclk_off);
219 /*
220 * For USBHOST, we don't know whether HOST1 or
221 * HOST2 woke us up, so enable both f-clocks
222 */
223 if (module == OMAP3430ES2_USBHOST_MOD)
224 clken |= 1 << OMAP3430ES2_EN_USBHOST2_SHIFT;
225 cm_set_mod_reg_bits(clken, module, fclk_off);
77da2d91
JH
226 prm_write_mod_reg(wkst, module, wkst_off);
227 wkst = prm_read_mod_reg(module, wkst_off);
8cb0ac99 228 c++;
77da2d91
JH
229 }
230 cm_write_mod_reg(iclk, module, iclk_off);
231 cm_write_mod_reg(fclk, module, fclk_off);
8bd22949 232 }
8cb0ac99
PW
233
234 return c;
235}
236
237static int _prcm_int_handle_wakeup(void)
238{
239 int c;
240
241 c = prcm_clear_mod_irqs(WKUP_MOD, 1);
242 c += prcm_clear_mod_irqs(CORE_MOD, 1);
243 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1);
244 if (omap_rev() > OMAP3430_REV_ES1_0) {
245 c += prcm_clear_mod_irqs(CORE_MOD, 3);
246 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1);
247 }
248
249 return c;
77da2d91 250}
8bd22949 251
77da2d91
JH
252/*
253 * PRCM Interrupt Handler
254 *
255 * The PRM_IRQSTATUS_MPU register indicates if there are any pending
256 * interrupts from the PRCM for the MPU. These bits must be cleared in
257 * order to clear the PRCM interrupt. The PRCM interrupt handler is
258 * implemented to simply clear the PRM_IRQSTATUS_MPU in order to clear
259 * the PRCM interrupt. Please note that bit 0 of the PRM_IRQSTATUS_MPU
260 * register indicates that a wake-up event is pending for the MPU and
261 * this bit can only be cleared if the all the wake-up events latched
262 * in the various PM_WKST_x registers have been cleared. The interrupt
263 * handler is implemented using a do-while loop so that if a wake-up
264 * event occurred during the processing of the prcm interrupt handler
265 * (setting a bit in the corresponding PM_WKST_x register and thus
266 * preventing us from clearing bit 0 of the PRM_IRQSTATUS_MPU register)
267 * this would be handled.
268 */
269static irqreturn_t prcm_interrupt_handler (int irq, void *dev_id)
270{
d6290a3e 271 u32 irqenable_mpu, irqstatus_mpu;
8cb0ac99 272 int c = 0;
77da2d91 273
d6290a3e
KH
274 irqenable_mpu = prm_read_mod_reg(OCP_MOD,
275 OMAP3_PRM_IRQENABLE_MPU_OFFSET);
276 irqstatus_mpu = prm_read_mod_reg(OCP_MOD,
277 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
278 irqstatus_mpu &= irqenable_mpu;
8cb0ac99 279
d6290a3e 280 do {
8cb0ac99
PW
281 if (irqstatus_mpu & (OMAP3430_WKUP_ST | OMAP3430_IO_ST)) {
282 c = _prcm_int_handle_wakeup();
283
284 /*
285 * Is the MPU PRCM interrupt handler racing with the
286 * IVA2 PRCM interrupt handler ?
287 */
288 WARN(c == 0, "prcm: WARNING: PRCM indicated MPU wakeup "
289 "but no wakeup sources are marked\n");
290 } else {
291 /* XXX we need to expand our PRCM interrupt handler */
292 WARN(1, "prcm: WARNING: PRCM interrupt received, but "
293 "no code to handle it (%08x)\n", irqstatus_mpu);
294 }
295
77da2d91
JH
296 prm_write_mod_reg(irqstatus_mpu, OCP_MOD,
297 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
8bd22949 298
d6290a3e
KH
299 irqstatus_mpu = prm_read_mod_reg(OCP_MOD,
300 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
301 irqstatus_mpu &= irqenable_mpu;
302
303 } while (irqstatus_mpu);
8bd22949
KH
304
305 return IRQ_HANDLED;
306}
307
57f277b0
RN
308static void restore_control_register(u32 val)
309{
310 __asm__ __volatile__ ("mcr p15, 0, %0, c1, c0, 0" : : "r" (val));
311}
312
313/* Function to restore the table entry that was modified for enabling MMU */
314static void restore_table_entry(void)
315{
316 u32 *scratchpad_address;
317 u32 previous_value, control_reg_value;
318 u32 *address;
319
320 scratchpad_address = OMAP2_L4_IO_ADDRESS(OMAP343X_SCRATCHPAD);
321
322 /* Get address of entry that was modified */
323 address = (u32 *)__raw_readl(scratchpad_address +
324 OMAP343X_TABLE_ADDRESS_OFFSET);
325 /* Get the previous value which needs to be restored */
326 previous_value = __raw_readl(scratchpad_address +
327 OMAP343X_TABLE_VALUE_OFFSET);
328 address = __va(address);
329 *address = previous_value;
330 flush_tlb_all();
331 control_reg_value = __raw_readl(scratchpad_address
332 + OMAP343X_CONTROL_REG_VALUE_OFFSET);
333 /* This will enable caches and prediction */
334 restore_control_register(control_reg_value);
335}
336
99e6a4d2 337void omap_sram_idle(void)
8bd22949
KH
338{
339 /* Variable to tell what needs to be saved and restored
340 * in omap_sram_idle*/
341 /* save_state = 0 => Nothing to save and restored */
342 /* save_state = 1 => Only L1 and logic lost */
343 /* save_state = 2 => Only L2 lost */
344 /* save_state = 3 => L1, L2 and logic lost */
fa3c2a4f
RN
345 int save_state = 0;
346 int mpu_next_state = PWRDM_POWER_ON;
347 int per_next_state = PWRDM_POWER_ON;
348 int core_next_state = PWRDM_POWER_ON;
2f5939c3 349 int core_prev_state, per_prev_state;
13a6fe0f 350 u32 sdrc_pwr = 0;
ecf157d0 351 int per_state_modified = 0;
8bd22949
KH
352
353 if (!_omap_sram_idle)
354 return;
355
fa3c2a4f
RN
356 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
357 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
358 pwrdm_clear_all_prev_pwrst(core_pwrdm);
359 pwrdm_clear_all_prev_pwrst(per_pwrdm);
360
8bd22949
KH
361 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
362 switch (mpu_next_state) {
fa3c2a4f 363 case PWRDM_POWER_ON:
8bd22949
KH
364 case PWRDM_POWER_RET:
365 /* No need to save context */
366 save_state = 0;
367 break;
61255ab9
RN
368 case PWRDM_POWER_OFF:
369 save_state = 3;
370 break;
8bd22949
KH
371 default:
372 /* Invalid state */
373 printk(KERN_ERR "Invalid mpu state in sram_idle\n");
374 return;
375 }
fe617af7
PDS
376 pwrdm_pre_transition();
377
fa3c2a4f
RN
378 /* NEON control */
379 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
7139178e 380 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
fa3c2a4f 381
40742fa8 382 /* Enable IO-PAD and IO-CHAIN wakeups */
658ce97e 383 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
ecf157d0 384 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
40742fa8
MC
385 if (per_next_state < PWRDM_POWER_ON ||
386 core_next_state < PWRDM_POWER_ON) {
387 prm_set_mod_reg_bits(OMAP3430_EN_IO, WKUP_MOD, PM_WKEN);
388 omap3_enable_io_chain();
389 }
390
391 /* PER */
658ce97e 392 if (per_next_state < PWRDM_POWER_ON) {
658ce97e 393 omap_uart_prepare_idle(2);
ecf157d0
TK
394 omap2_gpio_prepare_for_retention();
395 if (per_next_state == PWRDM_POWER_OFF) {
396 if (core_next_state == PWRDM_POWER_ON) {
397 per_next_state = PWRDM_POWER_RET;
398 pwrdm_set_next_pwrst(per_pwrdm, per_next_state);
399 per_state_modified = 1;
400 } else
401 omap3_per_save_context();
402 }
658ce97e
KH
403 }
404
c16c3f67
TK
405 if (pwrdm_read_pwrst(cam_pwrdm) == PWRDM_POWER_ON)
406 omap2_clkdm_deny_idle(mpu_pwrdm->pwrdm_clkdms[0]);
407
658ce97e 408 /* CORE */
fa3c2a4f 409 if (core_next_state < PWRDM_POWER_ON) {
fa3c2a4f
RN
410 omap_uart_prepare_idle(0);
411 omap_uart_prepare_idle(1);
2f5939c3
RN
412 if (core_next_state == PWRDM_POWER_OFF) {
413 omap3_core_save_context();
414 omap3_prcm_save_context();
415 }
fa3c2a4f 416 }
40742fa8 417
f18cc2ff 418 omap3_intc_prepare_idle();
8bd22949 419
13a6fe0f 420 /*
f265dc4c
RN
421 * On EMU/HS devices ROM code restores a SRDC value
422 * from scratchpad which has automatic self refresh on timeout
423 * of AUTO_CNT = 1 enabled. This takes care of errata 1.142.
424 * Hence store/restore the SDRC_POWER register here.
425 */
13a6fe0f
TK
426 if (omap_rev() >= OMAP3430_REV_ES3_0 &&
427 omap_type() != OMAP2_DEVICE_TYPE_GP &&
f265dc4c 428 core_next_state == PWRDM_POWER_OFF)
13a6fe0f 429 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
13a6fe0f 430
61255ab9
RN
431 /*
432 * omap3_arm_context is the location where ARM registers
433 * get saved. The restore path then reads from this
434 * location and restores them back.
435 */
436 _omap_sram_idle(omap3_arm_context, save_state);
8bd22949
KH
437 cpu_init();
438
f265dc4c 439 /* Restore normal SDRC POWER settings */
13a6fe0f
TK
440 if (omap_rev() >= OMAP3430_REV_ES3_0 &&
441 omap_type() != OMAP2_DEVICE_TYPE_GP &&
442 core_next_state == PWRDM_POWER_OFF)
443 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
444
57f277b0
RN
445 /* Restore table entry modified during MMU restoration */
446 if (pwrdm_read_prev_pwrst(mpu_pwrdm) == PWRDM_POWER_OFF)
447 restore_table_entry();
448
658ce97e 449 /* CORE */
fa3c2a4f 450 if (core_next_state < PWRDM_POWER_ON) {
2f5939c3
RN
451 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
452 if (core_prev_state == PWRDM_POWER_OFF) {
453 omap3_core_restore_context();
454 omap3_prcm_restore_context();
455 omap3_sram_restore_context();
8a917d2f 456 omap2_sms_restore_context();
2f5939c3 457 }
658ce97e
KH
458 omap_uart_resume_idle(0);
459 omap_uart_resume_idle(1);
460 if (core_next_state == PWRDM_POWER_OFF)
461 prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF,
462 OMAP3430_GR_MOD,
463 OMAP3_PRM_VOLTCTRL_OFFSET);
464 }
f18cc2ff 465 omap3_intc_resume_idle();
658ce97e
KH
466
467 /* PER */
468 if (per_next_state < PWRDM_POWER_ON) {
469 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
658ce97e
KH
470 if (per_prev_state == PWRDM_POWER_OFF)
471 omap3_per_restore_context();
fa3c2a4f 472 omap2_gpio_resume_after_retention();
ecf157d0
TK
473 omap_uart_resume_idle(2);
474 if (per_state_modified)
475 pwrdm_set_next_pwrst(per_pwrdm, PWRDM_POWER_OFF);
fa3c2a4f 476 }
fe617af7 477
3a7ec26b 478 /* Disable IO-PAD and IO-CHAIN wakeup */
40742fa8
MC
479 if (per_next_state < PWRDM_POWER_ON ||
480 core_next_state < PWRDM_POWER_ON) {
658ce97e 481 prm_clear_mod_reg_bits(OMAP3430_EN_IO, WKUP_MOD, PM_WKEN);
3a7ec26b
KJ
482 omap3_disable_io_chain();
483 }
658ce97e 484
fe617af7
PDS
485 pwrdm_post_transition();
486
c16c3f67 487 omap2_clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
8bd22949
KH
488}
489
20b01669 490int omap3_can_sleep(void)
8bd22949 491{
c40552bc
KH
492 if (!sleep_while_idle)
493 return 0;
4af4016c
KH
494 if (!omap_uart_can_sleep())
495 return 0;
8bd22949
KH
496 return 1;
497}
498
499/* This sets pwrdm state (other than mpu & core. Currently only ON &
500 * RET are supported. Function is assuming that clkdm doesn't have
501 * hw_sup mode enabled. */
20b01669 502int set_pwrdm_state(struct powerdomain *pwrdm, u32 state)
8bd22949
KH
503{
504 u32 cur_state;
505 int sleep_switch = 0;
506 int ret = 0;
507
508 if (pwrdm == NULL || IS_ERR(pwrdm))
509 return -EINVAL;
510
511 while (!(pwrdm->pwrsts & (1 << state))) {
512 if (state == PWRDM_POWER_OFF)
513 return ret;
514 state--;
515 }
516
517 cur_state = pwrdm_read_next_pwrst(pwrdm);
518 if (cur_state == state)
519 return ret;
520
521 if (pwrdm_read_pwrst(pwrdm) < PWRDM_POWER_ON) {
522 omap2_clkdm_wakeup(pwrdm->pwrdm_clkdms[0]);
523 sleep_switch = 1;
524 pwrdm_wait_transition(pwrdm);
525 }
526
527 ret = pwrdm_set_next_pwrst(pwrdm, state);
528 if (ret) {
529 printk(KERN_ERR "Unable to set state of powerdomain: %s\n",
530 pwrdm->name);
531 goto err;
532 }
533
534 if (sleep_switch) {
535 omap2_clkdm_allow_idle(pwrdm->pwrdm_clkdms[0]);
536 pwrdm_wait_transition(pwrdm);
fe617af7 537 pwrdm_state_switch(pwrdm);
8bd22949
KH
538 }
539
540err:
541 return ret;
542}
543
544static void omap3_pm_idle(void)
545{
546 local_irq_disable();
547 local_fiq_disable();
548
549 if (!omap3_can_sleep())
550 goto out;
551
cf22854c 552 if (omap_irq_pending() || need_resched())
8bd22949
KH
553 goto out;
554
555 omap_sram_idle();
556
557out:
558 local_fiq_enable();
559 local_irq_enable();
560}
561
10f90ed2 562#ifdef CONFIG_SUSPEND
2466211e
TK
563static suspend_state_t suspend_state;
564
8e2efde9 565static void omap2_pm_wakeup_on_timer(u32 seconds, u32 milliseconds)
d7814e4d
KH
566{
567 u32 tick_rate, cycles;
568
8e2efde9 569 if (!seconds && !milliseconds)
d7814e4d
KH
570 return;
571
572 tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gptimer_wakeup));
8e2efde9 573 cycles = tick_rate * seconds + tick_rate * milliseconds / 1000;
d7814e4d
KH
574 omap_dm_timer_stop(gptimer_wakeup);
575 omap_dm_timer_set_load_start(gptimer_wakeup, 0, 0xffffffff - cycles);
576
8e2efde9
AK
577 pr_info("PM: Resume timer in %u.%03u secs"
578 " (%d ticks at %d ticks/sec.)\n",
579 seconds, milliseconds, cycles, tick_rate);
d7814e4d
KH
580}
581
8bd22949
KH
582static int omap3_pm_prepare(void)
583{
584 disable_hlt();
585 return 0;
586}
587
588static int omap3_pm_suspend(void)
589{
590 struct power_state *pwrst;
591 int state, ret = 0;
592
8e2efde9
AK
593 if (wakeup_timer_seconds || wakeup_timer_milliseconds)
594 omap2_pm_wakeup_on_timer(wakeup_timer_seconds,
595 wakeup_timer_milliseconds);
d7814e4d 596
8bd22949
KH
597 /* Read current next_pwrsts */
598 list_for_each_entry(pwrst, &pwrst_list, node)
599 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
600 /* Set ones wanted by suspend */
601 list_for_each_entry(pwrst, &pwrst_list, node) {
602 if (set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
603 goto restore;
604 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
605 goto restore;
606 }
607
4af4016c 608 omap_uart_prepare_suspend();
2bbe3af3
TK
609 omap3_intc_suspend();
610
8bd22949
KH
611 omap_sram_idle();
612
613restore:
614 /* Restore next_pwrsts */
615 list_for_each_entry(pwrst, &pwrst_list, node) {
8bd22949
KH
616 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
617 if (state > pwrst->next_state) {
618 printk(KERN_INFO "Powerdomain (%s) didn't enter "
619 "target state %d\n",
620 pwrst->pwrdm->name, pwrst->next_state);
621 ret = -1;
622 }
6c5f8039 623 set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
8bd22949
KH
624 }
625 if (ret)
626 printk(KERN_ERR "Could not enter target state in pm_suspend\n");
627 else
628 printk(KERN_INFO "Successfully put all powerdomains "
629 "to target state\n");
630
631 return ret;
632}
633
2466211e 634static int omap3_pm_enter(suspend_state_t unused)
8bd22949
KH
635{
636 int ret = 0;
637
2466211e 638 switch (suspend_state) {
8bd22949
KH
639 case PM_SUSPEND_STANDBY:
640 case PM_SUSPEND_MEM:
641 ret = omap3_pm_suspend();
642 break;
643 default:
644 ret = -EINVAL;
645 }
646
647 return ret;
648}
649
650static void omap3_pm_finish(void)
651{
652 enable_hlt();
653}
654
2466211e
TK
655/* Hooks to enable / disable UART interrupts during suspend */
656static int omap3_pm_begin(suspend_state_t state)
657{
658 suspend_state = state;
659 omap_uart_enable_irqs(0);
660 return 0;
661}
662
663static void omap3_pm_end(void)
664{
665 suspend_state = PM_SUSPEND_ON;
666 omap_uart_enable_irqs(1);
667 return;
668}
669
8bd22949 670static struct platform_suspend_ops omap_pm_ops = {
2466211e
TK
671 .begin = omap3_pm_begin,
672 .end = omap3_pm_end,
8bd22949
KH
673 .prepare = omap3_pm_prepare,
674 .enter = omap3_pm_enter,
675 .finish = omap3_pm_finish,
676 .valid = suspend_valid_only_mem,
677};
10f90ed2 678#endif /* CONFIG_SUSPEND */
8bd22949 679
1155e426
KH
680
681/**
682 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
683 * retention
684 *
685 * In cases where IVA2 is activated by bootcode, it may prevent
686 * full-chip retention or off-mode because it is not idle. This
687 * function forces the IVA2 into idle state so it can go
688 * into retention/off and thus allow full-chip retention/off.
689 *
690 **/
691static void __init omap3_iva_idle(void)
692{
693 /* ensure IVA2 clock is disabled */
694 cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
695
696 /* if no clock activity, nothing else to do */
697 if (!(cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
698 OMAP3430_CLKACTIVITY_IVA2_MASK))
699 return;
700
701 /* Reset IVA2 */
702 prm_write_mod_reg(OMAP3430_RST1_IVA2 |
703 OMAP3430_RST2_IVA2 |
704 OMAP3430_RST3_IVA2,
37903009 705 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
706
707 /* Enable IVA2 clock */
dfa6d6f8 708 cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK,
1155e426
KH
709 OMAP3430_IVA2_MOD, CM_FCLKEN);
710
711 /* Set IVA2 boot mode to 'idle' */
712 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
713 OMAP343X_CONTROL_IVA2_BOOTMOD);
714
715 /* Un-reset IVA2 */
37903009 716 prm_write_mod_reg(0, OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
717
718 /* Disable IVA2 clock */
719 cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
720
721 /* Reset IVA2 */
722 prm_write_mod_reg(OMAP3430_RST1_IVA2 |
723 OMAP3430_RST2_IVA2 |
724 OMAP3430_RST3_IVA2,
37903009 725 OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
1155e426
KH
726}
727
8111b221 728static void __init omap3_d2d_idle(void)
8bd22949 729{
8111b221
KH
730 u16 mask, padconf;
731
732 /* In a stand alone OMAP3430 where there is not a stacked
733 * modem for the D2D Idle Ack and D2D MStandby must be pulled
734 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
735 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
736 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
737 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
738 padconf |= mask;
739 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
740
741 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
742 padconf |= mask;
743 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
744
8bd22949
KH
745 /* reset modem */
746 prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON |
747 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST,
37903009
AP
748 CORE_MOD, OMAP2_RM_RSTCTRL);
749 prm_write_mod_reg(0, CORE_MOD, OMAP2_RM_RSTCTRL);
8111b221 750}
8bd22949 751
8111b221
KH
752static void __init prcm_setup_regs(void)
753{
8bd22949
KH
754 /* XXX Reset all wkdeps. This should be done when initializing
755 * powerdomains */
756 prm_write_mod_reg(0, OMAP3430_IVA2_MOD, PM_WKDEP);
757 prm_write_mod_reg(0, MPU_MOD, PM_WKDEP);
758 prm_write_mod_reg(0, OMAP3430_DSS_MOD, PM_WKDEP);
759 prm_write_mod_reg(0, OMAP3430_NEON_MOD, PM_WKDEP);
760 prm_write_mod_reg(0, OMAP3430_CAM_MOD, PM_WKDEP);
761 prm_write_mod_reg(0, OMAP3430_PER_MOD, PM_WKDEP);
762 if (omap_rev() > OMAP3430_REV_ES1_0) {
763 prm_write_mod_reg(0, OMAP3430ES2_SGX_MOD, PM_WKDEP);
764 prm_write_mod_reg(0, OMAP3430ES2_USBHOST_MOD, PM_WKDEP);
765 } else
766 prm_write_mod_reg(0, GFX_MOD, PM_WKDEP);
767
768 /*
769 * Enable interface clock autoidle for all modules.
770 * Note that in the long run this should be done by clockfw
771 */
772 cm_write_mod_reg(
8111b221 773 OMAP3430_AUTO_MODEM |
8bd22949
KH
774 OMAP3430ES2_AUTO_MMC3 |
775 OMAP3430ES2_AUTO_ICR |
776 OMAP3430_AUTO_AES2 |
777 OMAP3430_AUTO_SHA12 |
778 OMAP3430_AUTO_DES2 |
779 OMAP3430_AUTO_MMC2 |
780 OMAP3430_AUTO_MMC1 |
781 OMAP3430_AUTO_MSPRO |
782 OMAP3430_AUTO_HDQ |
783 OMAP3430_AUTO_MCSPI4 |
784 OMAP3430_AUTO_MCSPI3 |
785 OMAP3430_AUTO_MCSPI2 |
786 OMAP3430_AUTO_MCSPI1 |
787 OMAP3430_AUTO_I2C3 |
788 OMAP3430_AUTO_I2C2 |
789 OMAP3430_AUTO_I2C1 |
790 OMAP3430_AUTO_UART2 |
791 OMAP3430_AUTO_UART1 |
792 OMAP3430_AUTO_GPT11 |
793 OMAP3430_AUTO_GPT10 |
794 OMAP3430_AUTO_MCBSP5 |
795 OMAP3430_AUTO_MCBSP1 |
796 OMAP3430ES1_AUTO_FAC | /* This is es1 only */
797 OMAP3430_AUTO_MAILBOXES |
798 OMAP3430_AUTO_OMAPCTRL |
799 OMAP3430ES1_AUTO_FSHOSTUSB |
800 OMAP3430_AUTO_HSOTGUSB |
8111b221 801 OMAP3430_AUTO_SAD2D |
8bd22949
KH
802 OMAP3430_AUTO_SSI,
803 CORE_MOD, CM_AUTOIDLE1);
804
805 cm_write_mod_reg(
806 OMAP3430_AUTO_PKA |
807 OMAP3430_AUTO_AES1 |
808 OMAP3430_AUTO_RNG |
809 OMAP3430_AUTO_SHA11 |
810 OMAP3430_AUTO_DES1,
811 CORE_MOD, CM_AUTOIDLE2);
812
813 if (omap_rev() > OMAP3430_REV_ES1_0) {
814 cm_write_mod_reg(
8111b221 815 OMAP3430_AUTO_MAD2D |
8bd22949
KH
816 OMAP3430ES2_AUTO_USBTLL,
817 CORE_MOD, CM_AUTOIDLE3);
818 }
819
820 cm_write_mod_reg(
821 OMAP3430_AUTO_WDT2 |
822 OMAP3430_AUTO_WDT1 |
823 OMAP3430_AUTO_GPIO1 |
824 OMAP3430_AUTO_32KSYNC |
825 OMAP3430_AUTO_GPT12 |
826 OMAP3430_AUTO_GPT1 ,
827 WKUP_MOD, CM_AUTOIDLE);
828
829 cm_write_mod_reg(
830 OMAP3430_AUTO_DSS,
831 OMAP3430_DSS_MOD,
832 CM_AUTOIDLE);
833
834 cm_write_mod_reg(
835 OMAP3430_AUTO_CAM,
836 OMAP3430_CAM_MOD,
837 CM_AUTOIDLE);
838
839 cm_write_mod_reg(
840 OMAP3430_AUTO_GPIO6 |
841 OMAP3430_AUTO_GPIO5 |
842 OMAP3430_AUTO_GPIO4 |
843 OMAP3430_AUTO_GPIO3 |
844 OMAP3430_AUTO_GPIO2 |
845 OMAP3430_AUTO_WDT3 |
846 OMAP3430_AUTO_UART3 |
847 OMAP3430_AUTO_GPT9 |
848 OMAP3430_AUTO_GPT8 |
849 OMAP3430_AUTO_GPT7 |
850 OMAP3430_AUTO_GPT6 |
851 OMAP3430_AUTO_GPT5 |
852 OMAP3430_AUTO_GPT4 |
853 OMAP3430_AUTO_GPT3 |
854 OMAP3430_AUTO_GPT2 |
855 OMAP3430_AUTO_MCBSP4 |
856 OMAP3430_AUTO_MCBSP3 |
857 OMAP3430_AUTO_MCBSP2,
858 OMAP3430_PER_MOD,
859 CM_AUTOIDLE);
860
861 if (omap_rev() > OMAP3430_REV_ES1_0) {
862 cm_write_mod_reg(
863 OMAP3430ES2_AUTO_USBHOST,
864 OMAP3430ES2_USBHOST_MOD,
865 CM_AUTOIDLE);
866 }
867
b296c811
TK
868 omap_ctrl_writel(OMAP3430_AUTOIDLE, OMAP2_CONTROL_SYSCONFIG);
869
8bd22949
KH
870 /*
871 * Set all plls to autoidle. This is needed until autoidle is
872 * enabled by clockfw
873 */
874 cm_write_mod_reg(1 << OMAP3430_AUTO_IVA2_DPLL_SHIFT,
875 OMAP3430_IVA2_MOD, CM_AUTOIDLE2);
876 cm_write_mod_reg(1 << OMAP3430_AUTO_MPU_DPLL_SHIFT,
877 MPU_MOD,
878 CM_AUTOIDLE2);
879 cm_write_mod_reg((1 << OMAP3430_AUTO_PERIPH_DPLL_SHIFT) |
880 (1 << OMAP3430_AUTO_CORE_DPLL_SHIFT),
881 PLL_MOD,
882 CM_AUTOIDLE);
883 cm_write_mod_reg(1 << OMAP3430ES2_AUTO_PERIPH2_DPLL_SHIFT,
884 PLL_MOD,
885 CM_AUTOIDLE2);
886
887 /*
888 * Enable control of expternal oscillator through
889 * sys_clkreq. In the long run clock framework should
890 * take care of this.
891 */
892 prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
893 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
894 OMAP3430_GR_MOD,
895 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
896
897 /* setup wakup source */
898 prm_write_mod_reg(OMAP3430_EN_IO | OMAP3430_EN_GPIO1 |
899 OMAP3430_EN_GPT1 | OMAP3430_EN_GPT12,
900 WKUP_MOD, PM_WKEN);
901 /* No need to write EN_IO, that is always enabled */
902 prm_write_mod_reg(OMAP3430_EN_GPIO1 | OMAP3430_EN_GPT1 |
903 OMAP3430_EN_GPT12,
904 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
905 /* For some reason IO doesn't generate wakeup event even if
906 * it is selected to mpu wakeup goup */
907 prm_write_mod_reg(OMAP3430_IO_EN | OMAP3430_WKUP_EN,
908 OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET);
1155e426 909
b92c5721
SV
910 /* Enable PM_WKEN to support DSS LPR */
911 prm_write_mod_reg(OMAP3430_PM_WKEN_DSS_EN_DSS,
912 OMAP3430_DSS_MOD, PM_WKEN);
913
b427f92f 914 /* Enable wakeups in PER */
eb350f74
KH
915 prm_write_mod_reg(OMAP3430_EN_GPIO2 | OMAP3430_EN_GPIO3 |
916 OMAP3430_EN_GPIO4 | OMAP3430_EN_GPIO5 |
e3d93296
PU
917 OMAP3430_EN_GPIO6 | OMAP3430_EN_UART3 |
918 OMAP3430_EN_MCBSP2 | OMAP3430_EN_MCBSP3 |
919 OMAP3430_EN_MCBSP4,
b427f92f 920 OMAP3430_PER_MOD, PM_WKEN);
eb350f74
KH
921 /* and allow them to wake up MPU */
922 prm_write_mod_reg(OMAP3430_GRPSEL_GPIO2 | OMAP3430_EN_GPIO3 |
923 OMAP3430_GRPSEL_GPIO4 | OMAP3430_EN_GPIO5 |
e3d93296
PU
924 OMAP3430_GRPSEL_GPIO6 | OMAP3430_EN_UART3 |
925 OMAP3430_EN_MCBSP2 | OMAP3430_EN_MCBSP3 |
926 OMAP3430_EN_MCBSP4,
eb350f74
KH
927 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
928
d3fd3290
KH
929 /* Don't attach IVA interrupts */
930 prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
931 prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
932 prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
933 prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
934
b1340d17 935 /* Clear any pending 'reset' flags */
37903009
AP
936 prm_write_mod_reg(0xffffffff, MPU_MOD, OMAP2_RM_RSTST);
937 prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP2_RM_RSTST);
938 prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, OMAP2_RM_RSTST);
939 prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, OMAP2_RM_RSTST);
940 prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, OMAP2_RM_RSTST);
941 prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, OMAP2_RM_RSTST);
942 prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, OMAP2_RM_RSTST);
b1340d17 943
014c46db
KH
944 /* Clear any pending PRCM interrupts */
945 prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
946
1155e426 947 omap3_iva_idle();
8111b221 948 omap3_d2d_idle();
8bd22949
KH
949}
950
c40552bc
KH
951void omap3_pm_off_mode_enable(int enable)
952{
953 struct power_state *pwrst;
954 u32 state;
955
956 if (enable)
957 state = PWRDM_POWER_OFF;
958 else
959 state = PWRDM_POWER_RET;
960
6af83b38
SP
961#ifdef CONFIG_CPU_IDLE
962 omap3_cpuidle_update_states();
963#endif
964
c40552bc
KH
965 list_for_each_entry(pwrst, &pwrst_list, node) {
966 pwrst->next_state = state;
967 set_pwrdm_state(pwrst->pwrdm, state);
968 }
969}
970
68d4778c
TK
971int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
972{
973 struct power_state *pwrst;
974
975 list_for_each_entry(pwrst, &pwrst_list, node) {
976 if (pwrst->pwrdm == pwrdm)
977 return pwrst->next_state;
978 }
979 return -EINVAL;
980}
981
982int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
983{
984 struct power_state *pwrst;
985
986 list_for_each_entry(pwrst, &pwrst_list, node) {
987 if (pwrst->pwrdm == pwrdm) {
988 pwrst->next_state = state;
989 return 0;
990 }
991 }
992 return -EINVAL;
993}
994
a23456e9 995static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
8bd22949
KH
996{
997 struct power_state *pwrst;
998
999 if (!pwrdm->pwrsts)
1000 return 0;
1001
d3d381c6 1002 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
8bd22949
KH
1003 if (!pwrst)
1004 return -ENOMEM;
1005 pwrst->pwrdm = pwrdm;
1006 pwrst->next_state = PWRDM_POWER_RET;
1007 list_add(&pwrst->node, &pwrst_list);
1008
1009 if (pwrdm_has_hdwr_sar(pwrdm))
1010 pwrdm_enable_hdwr_sar(pwrdm);
1011
1012 return set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
1013}
1014
1015/*
1016 * Enable hw supervised mode for all clockdomains if it's
1017 * supported. Initiate sleep transition for other clockdomains, if
1018 * they are not used
1019 */
a23456e9 1020static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
8bd22949 1021{
369d5614
PW
1022 clkdm_clear_all_wkdeps(clkdm);
1023 clkdm_clear_all_sleepdeps(clkdm);
1024
8bd22949
KH
1025 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
1026 omap2_clkdm_allow_idle(clkdm);
1027 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
1028 atomic_read(&clkdm->usecount) == 0)
1029 omap2_clkdm_sleep(clkdm);
1030 return 0;
1031}
1032
3231fc88
RN
1033void omap_push_sram_idle(void)
1034{
1035 _omap_sram_idle = omap_sram_push(omap34xx_cpu_suspend,
1036 omap34xx_cpu_suspend_sz);
27d59a4a
TK
1037 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
1038 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
1039 save_secure_ram_context_sz);
3231fc88
RN
1040}
1041
7cc515f7 1042static int __init omap3_pm_init(void)
8bd22949
KH
1043{
1044 struct power_state *pwrst, *tmp;
55ed9694 1045 struct clockdomain *neon_clkdm, *per_clkdm, *mpu_clkdm, *core_clkdm;
8bd22949
KH
1046 int ret;
1047
1048 if (!cpu_is_omap34xx())
1049 return -ENODEV;
1050
1051 printk(KERN_ERR "Power Management for TI OMAP3.\n");
1052
1053 /* XXX prcm_setup_regs needs to be before enabling hw
1054 * supervised mode for powerdomains */
1055 prcm_setup_regs();
1056
1057 ret = request_irq(INT_34XX_PRCM_MPU_IRQ,
1058 (irq_handler_t)prcm_interrupt_handler,
1059 IRQF_DISABLED, "prcm", NULL);
1060 if (ret) {
1061 printk(KERN_ERR "request_irq failed to register for 0x%x\n",
1062 INT_34XX_PRCM_MPU_IRQ);
1063 goto err1;
1064 }
1065
a23456e9 1066 ret = pwrdm_for_each(pwrdms_setup, NULL);
8bd22949
KH
1067 if (ret) {
1068 printk(KERN_ERR "Failed to setup powerdomains\n");
1069 goto err2;
1070 }
1071
a23456e9 1072 (void) clkdm_for_each(clkdms_setup, NULL);
8bd22949
KH
1073
1074 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
1075 if (mpu_pwrdm == NULL) {
1076 printk(KERN_ERR "Failed to get mpu_pwrdm\n");
1077 goto err2;
1078 }
1079
fa3c2a4f
RN
1080 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
1081 per_pwrdm = pwrdm_lookup("per_pwrdm");
1082 core_pwrdm = pwrdm_lookup("core_pwrdm");
c16c3f67 1083 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
fa3c2a4f 1084
55ed9694
PW
1085 neon_clkdm = clkdm_lookup("neon_clkdm");
1086 mpu_clkdm = clkdm_lookup("mpu_clkdm");
1087 per_clkdm = clkdm_lookup("per_clkdm");
1088 core_clkdm = clkdm_lookup("core_clkdm");
1089
3231fc88 1090 omap_push_sram_idle();
10f90ed2 1091#ifdef CONFIG_SUSPEND
8bd22949 1092 suspend_set_ops(&omap_pm_ops);
10f90ed2 1093#endif /* CONFIG_SUSPEND */
8bd22949
KH
1094
1095 pm_idle = omap3_pm_idle;
0343371e 1096 omap3_idle_init();
8bd22949 1097
55ed9694 1098 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
27d59a4a
TK
1099 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
1100 omap3_secure_ram_storage =
1101 kmalloc(0x803F, GFP_KERNEL);
1102 if (!omap3_secure_ram_storage)
1103 printk(KERN_ERR "Memory allocation failed when"
1104 "allocating for secure sram context\n");
9d97140b
TK
1105
1106 local_irq_disable();
1107 local_fiq_disable();
1108
1109 omap_dma_global_context_save();
1110 omap3_save_secure_ram_context(PWRDM_POWER_ON);
1111 omap_dma_global_context_restore();
1112
1113 local_irq_enable();
1114 local_fiq_enable();
27d59a4a 1115 }
27d59a4a 1116
9d97140b 1117 omap3_save_scratchpad_contents();
8bd22949
KH
1118err1:
1119 return ret;
1120err2:
1121 free_irq(INT_34XX_PRCM_MPU_IRQ, NULL);
1122 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
1123 list_del(&pwrst->node);
1124 kfree(pwrst);
1125 }
1126 return ret;
1127}
1128
1129late_initcall(omap3_pm_init);
This page took 0.134265 seconds and 5 git commands to generate.