ARM: dts: am57xx-beagle-x15: remove extcon_usb1
[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>
45c3eb7d 31#include <linux/omap-dma.h>
e639cd5b 32#include <linux/omap-gpmc.h>
4b25408f
TL
33#include <linux/platform_data/gpio-omap.h>
34
5e7c58dc 35#include <trace/events/power.h>
8bd22949 36
bf027ca1 37#include <asm/fncpy.h>
2c74a0ce 38#include <asm/suspend.h>
9f97da78 39#include <asm/system_misc.h>
2c74a0ce 40
1540f214 41#include "clockdomain.h"
72e06d08 42#include "powerdomain.h"
e4c060db 43#include "soc.h"
4e65331c 44#include "common.h"
ff4ae5d9 45#include "cm3xxx.h"
8bd22949
KH
46#include "cm-regbits-34xx.h"
47#include "prm-regbits-34xx.h"
139563ad 48#include "prm3xxx.h"
8bd22949 49#include "pm.h"
13a6fe0f 50#include "sdrc.h"
bf027ca1 51#include "sram.h"
4814ced5 52#include "control.h"
3b8c4ebb 53#include "vc.h"
13a6fe0f 54
8cdfd834
NM
55/* pm34xx errata defined in pm.h */
56u16 pm34xx_errata;
57
8bd22949
KH
58struct power_state {
59 struct powerdomain *pwrdm;
60 u32 next_state;
10f90ed2 61#ifdef CONFIG_SUSPEND
8bd22949 62 u32 saved_state;
10f90ed2 63#endif
8bd22949
KH
64 struct list_head node;
65};
66
67static LIST_HEAD(pwrst_list);
68
27d59a4a 69static int (*_omap_save_secure_sram)(u32 *addr);
46e130d2 70void (*omap3_do_wfi_sram)(void);
27d59a4a 71
fa3c2a4f
RN
72static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
73static struct powerdomain *core_pwrdm, *per_pwrdm;
3a7ec26b 74
2f5939c3
RN
75static void omap3_core_save_context(void)
76{
596efe47 77 omap3_ctrl_save_padconf();
dccaad89
TK
78
79 /*
80 * Force write last pad into memory, as this can fail in some
83521291 81 * cases according to errata 1.157, 1.185
dccaad89
TK
82 */
83 omap_ctrl_writel(omap_ctrl_readl(OMAP343X_PADCONF_ETK_D14),
84 OMAP343X_CONTROL_MEM_WKUP + 0x2a0);
85
2f5939c3
RN
86 /* Save the Interrupt controller context */
87 omap_intc_save_context();
88 /* Save the GPMC context */
89 omap3_gpmc_save_context();
90 /* Save the system control module context, padconf already save above*/
91 omap3_control_save_context();
f2d11858 92 omap_dma_global_context_save();
2f5939c3
RN
93}
94
95static void omap3_core_restore_context(void)
96{
97 /* Restore the control module context, padconf restored by h/w */
98 omap3_control_restore_context();
99 /* Restore the GPMC context */
100 omap3_gpmc_restore_context();
101 /* Restore the interrupt controller context */
102 omap_intc_restore_context();
f2d11858 103 omap_dma_global_context_restore();
2f5939c3
RN
104}
105
9d97140b
TK
106/*
107 * FIXME: This function should be called before entering off-mode after
108 * OMAP3 secure services have been accessed. Currently it is only called
109 * once during boot sequence, but this works as we are not using secure
110 * services.
111 */
617fcc98 112static void omap3_save_secure_ram_context(void)
27d59a4a
TK
113{
114 u32 ret;
617fcc98 115 int mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
27d59a4a
TK
116
117 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
27d59a4a
TK
118 /*
119 * MPU next state must be set to POWER_ON temporarily,
120 * otherwise the WFI executed inside the ROM code
121 * will hang the system.
122 */
123 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
6dd1e357 124 ret = _omap_save_secure_sram((u32 *)(unsigned long)
27d59a4a 125 __pa(omap3_secure_ram_storage));
617fcc98 126 pwrdm_set_next_pwrst(mpu_pwrdm, mpu_next_state);
27d59a4a
TK
127 /* Following is for error tracking, it should not happen */
128 if (ret) {
98179856 129 pr_err("save_secure_sram() returns %08x\n", ret);
27d59a4a
TK
130 while (1)
131 ;
132 }
133 }
134}
135
22f51371 136static irqreturn_t _prcm_int_handle_io(int irq, void *unused)
8cb0ac99
PW
137{
138 int c;
139
9cb6d363
TK
140 c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, OMAP3430_ST_IO_MASK |
141 OMAP3430_ST_IO_CHAIN_MASK);
8cb0ac99 142
22f51371 143 return c ? IRQ_HANDLED : IRQ_NONE;
77da2d91 144}
8bd22949 145
22f51371 146static irqreturn_t _prcm_int_handle_wakeup(int irq, void *unused)
77da2d91 147{
22f51371 148 int c;
d6290a3e 149
22f51371
TK
150 /*
151 * Clear all except ST_IO and ST_IO_CHAIN for wkup module,
152 * these are handled in a separate handler to avoid acking
153 * IO events before parsing in mux code
154 */
9cb6d363
TK
155 c = omap_prm_clear_mod_irqs(WKUP_MOD, 1, ~(OMAP3430_ST_IO_MASK |
156 OMAP3430_ST_IO_CHAIN_MASK));
157 c += omap_prm_clear_mod_irqs(CORE_MOD, 1, ~0);
158 c += omap_prm_clear_mod_irqs(OMAP3430_PER_MOD, 1, ~0);
22f51371 159 if (omap_rev() > OMAP3430_REV_ES1_0) {
9cb6d363
TK
160 c += omap_prm_clear_mod_irqs(CORE_MOD, 3, ~0);
161 c += omap_prm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1, ~0);
22f51371 162 }
8bd22949 163
22f51371 164 return c ? IRQ_HANDLED : IRQ_NONE;
8bd22949
KH
165}
166
cbe26349
RK
167static void omap34xx_save_context(u32 *save)
168{
169 u32 val;
170
171 /* Read Auxiliary Control Register */
172 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (val));
173 *save++ = 1;
174 *save++ = val;
175
176 /* Read L2 AUX ctrl register */
177 asm("mrc p15, 1, %0, c9, c0, 2" : "=r" (val));
178 *save++ = 1;
179 *save++ = val;
180}
181
29cb3cd2 182static int omap34xx_do_sram_idle(unsigned long save_state)
57f277b0 183{
cbe26349 184 omap34xx_cpu_suspend(save_state);
29cb3cd2 185 return 0;
57f277b0
RN
186}
187
99e6a4d2 188void omap_sram_idle(void)
8bd22949
KH
189{
190 /* Variable to tell what needs to be saved and restored
191 * in omap_sram_idle*/
192 /* save_state = 0 => Nothing to save and restored */
193 /* save_state = 1 => Only L1 and logic lost */
194 /* save_state = 2 => Only L2 lost */
195 /* save_state = 3 => L1, L2 and logic lost */
fa3c2a4f
RN
196 int save_state = 0;
197 int mpu_next_state = PWRDM_POWER_ON;
198 int per_next_state = PWRDM_POWER_ON;
199 int core_next_state = PWRDM_POWER_ON;
72e06d08 200 int per_going_off;
eeb3711b 201 int core_prev_state;
13a6fe0f 202 u32 sdrc_pwr = 0;
8bd22949 203
8bd22949
KH
204 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
205 switch (mpu_next_state) {
fa3c2a4f 206 case PWRDM_POWER_ON:
8bd22949
KH
207 case PWRDM_POWER_RET:
208 /* No need to save context */
209 save_state = 0;
210 break;
61255ab9
RN
211 case PWRDM_POWER_OFF:
212 save_state = 3;
213 break;
8bd22949
KH
214 default:
215 /* Invalid state */
98179856 216 pr_err("Invalid mpu state in sram_idle\n");
8bd22949
KH
217 return;
218 }
fe617af7 219
fa3c2a4f
RN
220 /* NEON control */
221 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
7139178e 222 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
fa3c2a4f 223
40742fa8 224 /* Enable IO-PAD and IO-CHAIN wakeups */
658ce97e 225 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
ecf157d0 226 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
40742fa8 227
e0e29fd7 228 pwrdm_pre_transition(NULL);
ff2f8e5f 229
40742fa8 230 /* PER */
658ce97e 231 if (per_next_state < PWRDM_POWER_ON) {
72e06d08 232 per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0;
72e06d08 233 omap2_gpio_prepare_for_idle(per_going_off);
658ce97e
KH
234 }
235
236 /* CORE */
fa3c2a4f 237 if (core_next_state < PWRDM_POWER_ON) {
2f5939c3
RN
238 if (core_next_state == PWRDM_POWER_OFF) {
239 omap3_core_save_context();
f0611a5c 240 omap3_cm_save_context();
2f5939c3 241 }
fa3c2a4f 242 }
40742fa8 243
3b8c4ebb
TL
244 /* Configure PMIC signaling for I2C4 or sys_off_mode */
245 omap3_vc_set_pmic_signaling(core_next_state);
246
f18cc2ff 247 omap3_intc_prepare_idle();
8bd22949 248
13a6fe0f 249 /*
30474544
PW
250 * On EMU/HS devices ROM code restores a SRDC value
251 * from scratchpad which has automatic self refresh on timeout
252 * of AUTO_CNT = 1 enabled. This takes care of erratum ID i443.
253 * Hence store/restore the SDRC_POWER register here.
254 */
255 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
256 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
257 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
f265dc4c 258 core_next_state == PWRDM_POWER_OFF)
13a6fe0f 259 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
13a6fe0f 260
61255ab9 261 /*
076f2cc4
RK
262 * omap3_arm_context is the location where some ARM context
263 * get saved. The rest is placed on the stack, and restored
264 * from there before resuming.
61255ab9 265 */
cbe26349
RK
266 if (save_state)
267 omap34xx_save_context(omap3_arm_context);
076f2cc4 268 if (save_state == 1 || save_state == 3)
2c74a0ce 269 cpu_suspend(save_state, omap34xx_do_sram_idle);
076f2cc4
RK
270 else
271 omap34xx_do_sram_idle(save_state);
8bd22949 272
f265dc4c 273 /* Restore normal SDRC POWER settings */
30474544
PW
274 if (cpu_is_omap3430() && omap_rev() >= OMAP3430_REV_ES3_0 &&
275 (omap_type() == OMAP2_DEVICE_TYPE_EMU ||
276 omap_type() == OMAP2_DEVICE_TYPE_SEC) &&
13a6fe0f
TK
277 core_next_state == PWRDM_POWER_OFF)
278 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
279
658ce97e 280 /* CORE */
fa3c2a4f 281 if (core_next_state < PWRDM_POWER_ON) {
2f5939c3
RN
282 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
283 if (core_prev_state == PWRDM_POWER_OFF) {
284 omap3_core_restore_context();
f0611a5c 285 omap3_cm_restore_context();
2f5939c3 286 omap3_sram_restore_context();
8a917d2f 287 omap2_sms_restore_context();
2f5939c3 288 }
658ce97e 289 }
f18cc2ff 290 omap3_intc_resume_idle();
658ce97e 291
e0e29fd7
KH
292 pwrdm_post_transition(NULL);
293
658ce97e 294 /* PER */
e0e29fd7 295 if (per_next_state < PWRDM_POWER_ON)
43ffcd9a 296 omap2_gpio_resume_after_idle();
8bd22949
KH
297}
298
8bd22949
KH
299static void omap3_pm_idle(void)
300{
0bcd24b0 301 if (omap_irq_pending())
6b85638b 302 return;
8bd22949 303
6ca22700 304 trace_cpu_idle_rcuidle(1, smp_processor_id());
5e7c58dc 305
8bd22949
KH
306 omap_sram_idle();
307
6ca22700 308 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
8bd22949
KH
309}
310
10f90ed2 311#ifdef CONFIG_SUSPEND
8bd22949
KH
312static int omap3_pm_suspend(void)
313{
314 struct power_state *pwrst;
315 int state, ret = 0;
316
317 /* Read current next_pwrsts */
318 list_for_each_entry(pwrst, &pwrst_list, node)
319 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
320 /* Set ones wanted by suspend */
321 list_for_each_entry(pwrst, &pwrst_list, node) {
eb6a2c75 322 if (omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
8bd22949
KH
323 goto restore;
324 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
325 goto restore;
326 }
327
2bbe3af3
TK
328 omap3_intc_suspend();
329
8bd22949
KH
330 omap_sram_idle();
331
332restore:
333 /* Restore next_pwrsts */
334 list_for_each_entry(pwrst, &pwrst_list, node) {
8bd22949
KH
335 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
336 if (state > pwrst->next_state) {
7852ec05
PW
337 pr_info("Powerdomain (%s) didn't enter target state %d\n",
338 pwrst->pwrdm->name, pwrst->next_state);
8bd22949
KH
339 ret = -1;
340 }
eb6a2c75 341 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
8bd22949
KH
342 }
343 if (ret)
98179856 344 pr_err("Could not enter target state in pm_suspend\n");
8bd22949 345 else
98179856 346 pr_info("Successfully put all powerdomains to target state\n");
8bd22949
KH
347
348 return ret;
349}
2e4b62dc
DG
350#else
351#define omap3_pm_suspend NULL
10f90ed2 352#endif /* CONFIG_SUSPEND */
8bd22949 353
8111b221
KH
354static void __init prcm_setup_regs(void)
355{
ba12c242 356 omap3_ctrl_init();
b296c811 357
c5180a2b 358 omap3_prm_init_pm(cpu_is_omap3630(), omap3_has_iva());
8bd22949
KH
359}
360
c40552bc
KH
361void omap3_pm_off_mode_enable(int enable)
362{
363 struct power_state *pwrst;
364 u32 state;
365
366 if (enable)
367 state = PWRDM_POWER_OFF;
368 else
369 state = PWRDM_POWER_RET;
370
371 list_for_each_entry(pwrst, &pwrst_list, node) {
cc1b6028
EV
372 if (IS_PM34XX_ERRATUM(PM_SDRC_WAKEUP_ERRATUM_i583) &&
373 pwrst->pwrdm == core_pwrdm &&
374 state == PWRDM_POWER_OFF) {
375 pwrst->next_state = PWRDM_POWER_RET;
e16b41bf 376 pr_warn("%s: Core OFF disabled due to errata i583\n",
cc1b6028
EV
377 __func__);
378 } else {
379 pwrst->next_state = state;
380 }
381 omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
c40552bc
KH
382 }
383}
384
68d4778c
TK
385int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
386{
387 struct power_state *pwrst;
388
389 list_for_each_entry(pwrst, &pwrst_list, node) {
390 if (pwrst->pwrdm == pwrdm)
391 return pwrst->next_state;
392 }
393 return -EINVAL;
394}
395
396int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
397{
398 struct power_state *pwrst;
399
400 list_for_each_entry(pwrst, &pwrst_list, node) {
401 if (pwrst->pwrdm == pwrdm) {
402 pwrst->next_state = state;
403 return 0;
404 }
405 }
406 return -EINVAL;
407}
408
a23456e9 409static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
8bd22949
KH
410{
411 struct power_state *pwrst;
412
413 if (!pwrdm->pwrsts)
414 return 0;
415
d3d381c6 416 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
8bd22949
KH
417 if (!pwrst)
418 return -ENOMEM;
419 pwrst->pwrdm = pwrdm;
420 pwrst->next_state = PWRDM_POWER_RET;
421 list_add(&pwrst->node, &pwrst_list);
422
423 if (pwrdm_has_hdwr_sar(pwrdm))
424 pwrdm_enable_hdwr_sar(pwrdm);
425
eb6a2c75 426 return omap_set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
8bd22949
KH
427}
428
46e130d2
JP
429/*
430 * Push functions to SRAM
431 *
432 * The minimum set of functions is pushed to SRAM for execution:
433 * - omap3_do_wfi for erratum i581 WA,
434 * - save_secure_ram_context for security extensions.
435 */
3231fc88
RN
436void omap_push_sram_idle(void)
437{
46e130d2
JP
438 omap3_do_wfi_sram = omap_sram_push(omap3_do_wfi, omap3_do_wfi_sz);
439
27d59a4a
TK
440 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
441 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
442 save_secure_ram_context_sz);
3231fc88
RN
443}
444
8cdfd834
NM
445static void __init pm_errata_configure(void)
446{
c4236d2e 447 if (cpu_is_omap3630()) {
458e999e 448 pm34xx_errata |= PM_RTA_ERRATUM_i608;
c4236d2e
PDS
449 /* Enable the l2 cache toggling in sleep logic */
450 enable_omap3630_toggle_l2_on_restore();
cc1b6028 451 if (omap_rev() < OMAP3630_REV_ES1_2)
856c3c5b
PW
452 pm34xx_errata |= (PM_SDRC_WAKEUP_ERRATUM_i583 |
453 PM_PER_MEMORIES_ERRATUM_i582);
454 } else if (cpu_is_omap34xx()) {
455 pm34xx_errata |= PM_PER_MEMORIES_ERRATUM_i582;
c4236d2e 456 }
8cdfd834
NM
457}
458
bbd707ac 459int __init omap3_pm_init(void)
8bd22949
KH
460{
461 struct power_state *pwrst, *tmp;
856c3c5b 462 struct clockdomain *neon_clkdm, *mpu_clkdm, *per_clkdm, *wkup_clkdm;
8bd22949
KH
463 int ret;
464
b02b9172 465 if (!omap3_has_io_chain_ctrl())
3d0cb73e 466 pr_warn("PM: no software I/O chain control; some wakeups may be lost\n");
b02b9172 467
8cdfd834
NM
468 pm_errata_configure();
469
8bd22949
KH
470 /* XXX prcm_setup_regs needs to be before enabling hw
471 * supervised mode for powerdomains */
472 prcm_setup_regs();
473
22f51371
TK
474 ret = request_irq(omap_prcm_event_to_irq("wkup"),
475 _prcm_int_handle_wakeup, IRQF_NO_SUSPEND, "pm_wkup", NULL);
476
477 if (ret) {
478 pr_err("pm: Failed to request pm_wkup irq\n");
479 goto err1;
480 }
481
482 /* IO interrupt is shared with mux code */
483 ret = request_irq(omap_prcm_event_to_irq("io"),
484 _prcm_int_handle_io, IRQF_SHARED | IRQF_NO_SUSPEND, "pm_io",
485 omap3_pm_init);
99b59df0 486 enable_irq(omap_prcm_event_to_irq("io"));
22f51371 487
8bd22949 488 if (ret) {
22f51371 489 pr_err("pm: Failed to request pm_io irq\n");
ce229c5d 490 goto err2;
8bd22949
KH
491 }
492
a23456e9 493 ret = pwrdm_for_each(pwrdms_setup, NULL);
8bd22949 494 if (ret) {
98179856 495 pr_err("Failed to setup powerdomains\n");
ce229c5d 496 goto err3;
8bd22949
KH
497 }
498
92206fd2 499 (void) clkdm_for_each(omap_pm_clkdms_setup, NULL);
8bd22949
KH
500
501 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
502 if (mpu_pwrdm == NULL) {
98179856 503 pr_err("Failed to get mpu_pwrdm\n");
ce229c5d
MG
504 ret = -EINVAL;
505 goto err3;
8bd22949
KH
506 }
507
fa3c2a4f
RN
508 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
509 per_pwrdm = pwrdm_lookup("per_pwrdm");
510 core_pwrdm = pwrdm_lookup("core_pwrdm");
511
55ed9694
PW
512 neon_clkdm = clkdm_lookup("neon_clkdm");
513 mpu_clkdm = clkdm_lookup("mpu_clkdm");
856c3c5b
PW
514 per_clkdm = clkdm_lookup("per_clkdm");
515 wkup_clkdm = clkdm_lookup("wkup_clkdm");
55ed9694 516
2e4b62dc 517 omap_common_suspend_init(omap3_pm_suspend);
8bd22949 518
0bcd24b0 519 arm_pm_idle = omap3_pm_idle;
0343371e 520 omap3_idle_init();
8bd22949 521
458e999e
NM
522 /*
523 * RTA is disabled during initialization as per erratum i608
524 * it is safer to disable RTA by the bootloader, but we would like
525 * to be doubly sure here and prevent any mishaps.
526 */
527 if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
528 omap3630_ctrl_disable_rta();
529
856c3c5b
PW
530 /*
531 * The UART3/4 FIFO and the sidetone memory in McBSP2/3 are
532 * not correctly reset when the PER powerdomain comes back
533 * from OFF or OSWR when the CORE powerdomain is kept active.
534 * See OMAP36xx Erratum i582 "PER Domain reset issue after
535 * Domain-OFF/OSWR Wakeup". This wakeup dependency is not a
536 * complete workaround. The kernel must also prevent the PER
537 * powerdomain from going to OSWR/OFF while the CORE
538 * powerdomain is not going to OSWR/OFF. And if PER last
539 * power state was off while CORE last power state was ON, the
540 * UART3/4 and McBSP2/3 SIDETONE devices need to run a
541 * self-test using their loopback tests; if that fails, those
542 * devices are unusable until the PER/CORE can complete a transition
543 * from ON to OSWR/OFF and then back to ON.
544 *
545 * XXX Technically this workaround is only needed if off-mode
546 * or OSWR is enabled.
547 */
548 if (IS_PM34XX_ERRATUM(PM_PER_MEMORIES_ERRATUM_i582))
549 clkdm_add_wkdep(per_clkdm, wkup_clkdm);
550
55ed9694 551 clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
27d59a4a
TK
552 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
553 omap3_secure_ram_storage =
554 kmalloc(0x803F, GFP_KERNEL);
555 if (!omap3_secure_ram_storage)
7852ec05 556 pr_err("Memory allocation failed when allocating for secure sram context\n");
9d97140b
TK
557
558 local_irq_disable();
9d97140b
TK
559
560 omap_dma_global_context_save();
617fcc98 561 omap3_save_secure_ram_context();
9d97140b
TK
562 omap_dma_global_context_restore();
563
564 local_irq_enable();
27d59a4a 565 }
27d59a4a 566
9d97140b 567 omap3_save_scratchpad_contents();
8bd22949 568 return ret;
ce229c5d
MG
569
570err3:
8bd22949
KH
571 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
572 list_del(&pwrst->node);
573 kfree(pwrst);
574 }
ce229c5d
MG
575 free_irq(omap_prcm_event_to_irq("io"), omap3_pm_init);
576err2:
577 free_irq(omap_prcm_event_to_irq("wkup"), NULL);
578err1:
8bd22949
KH
579 return ret;
580}