blob: 53d8de5764e8fdc3d121bc69e84d510b70d79380 [file] [log] [blame]
Santosh Shilimkarb2b97622010-06-16 22:19:48 +05301/*
2 * OMAP MPUSS low power code
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Santosh Shilimkar <santosh.shilimkar@ti.com>
6 *
7 * OMAP4430 MPUSS mainly consists of dual Cortex-A9 with per-CPU
8 * Local timer and Watchdog, GIC, SCU, PL310 L2 cache controller,
9 * CPU0 and CPU1 LPRM modules.
10 * CPU0, CPU1 and MPUSS each have there own power domain and
11 * hence multiple low power combinations of MPUSS are possible.
12 *
13 * The CPU0 and CPU1 can't support Closed switch Retention (CSWR)
14 * because the mode is not supported by hw constraints of dormant
15 * mode. While waking up from the dormant mode, a reset signal
16 * to the Cortex-A9 processor must be asserted by the external
17 * power controller.
18 *
19 * With architectural inputs and hardware recommendations, only
20 * below modes are supported from power gain vs latency point of view.
21 *
22 * CPU0 CPU1 MPUSS
23 * ----------------------------------------------
24 * ON ON ON
25 * ON(Inactive) OFF ON(Inactive)
26 * OFF OFF CSWR
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053027 * OFF OFF OSWR
28 * OFF OFF OFF(Device OFF *TBD)
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053029 * ----------------------------------------------
30 *
31 * Note: CPU0 is the master core and it is the last CPU to go down
32 * and first to wake-up when MPUSS low power states are excercised
33 *
34 *
35 * This program is free software; you can redistribute it and/or modify
36 * it under the terms of the GNU General Public License version 2 as
37 * published by the Free Software Foundation.
38 */
39
40#include <linux/kernel.h>
41#include <linux/io.h>
42#include <linux/errno.h>
43#include <linux/linkage.h>
44#include <linux/smp.h>
45
46#include <asm/cacheflush.h>
47#include <asm/tlbflush.h>
48#include <asm/smp_scu.h>
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053049#include <asm/pgalloc.h>
50#include <asm/suspend.h>
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053051#include <asm/hardware/cache-l2x0.h>
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053052
Tony Lindgrene4c060d2012-10-05 13:25:59 -070053#include "soc.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053054#include "common.h"
Tony Lindgrenc49f34b2012-08-31 16:08:07 -070055#include "omap44xx.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053056#include "omap4-sar-layout.h"
57#include "pm.h"
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053058#include "prcm_mpu44xx.h"
Santosh Shilimkara89726d2013-02-06 19:39:07 +053059#include "prcm_mpu54xx.h"
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053060#include "prminst44xx.h"
61#include "prcm44xx.h"
62#include "prm44xx.h"
63#include "prm-regbits-44xx.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053064
65#ifdef CONFIG_SMP
66
67struct omap4_cpu_pm_info {
68 struct powerdomain *pwrdm;
69 void __iomem *scu_sar_addr;
70 void __iomem *wkup_sar_addr;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053071 void __iomem *l2x0_sar_addr;
Santosh Shilimkarff999b82012-10-18 12:20:05 +030072 void (*secondary_startup)(void);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053073};
74
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053075/**
76 * struct cpu_pm_ops - CPU pm operations
77 * @finish_suspend: CPU suspend finisher function pointer
78 * @resume: CPU resume function pointer
79 * @scu_prepare: CPU Snoop Control program function pointer
80 *
81 * Structure holds functions pointer for CPU low power operations like
82 * suspend, resume and scu programming.
83 */
84struct cpu_pm_ops {
85 int (*finish_suspend)(unsigned long cpu_state);
86 void (*resume)(void);
87 void (*scu_prepare)(unsigned int cpu_id, unsigned int cpu_state);
88};
89
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053090static DEFINE_PER_CPU(struct omap4_cpu_pm_info, omap4_pm_info);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053091static struct powerdomain *mpuss_pd;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053092static void __iomem *sar_base;
Santosh Shilimkara89726d2013-02-06 19:39:07 +053093static u32 cpu_context_offset;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053094
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053095static int default_finish_suspend(unsigned long cpu_state)
96{
97 omap_do_wfi();
98 return 0;
99}
100
101static void dummy_cpu_resume(void)
102{}
103
104static void dummy_scu_prepare(unsigned int cpu_id, unsigned int cpu_state)
105{}
106
107struct cpu_pm_ops omap_pm_ops = {
108 .finish_suspend = default_finish_suspend,
109 .resume = dummy_cpu_resume,
110 .scu_prepare = dummy_scu_prepare,
111};
112
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530113/*
114 * Program the wakeup routine address for the CPU0 and CPU1
115 * used for OFF or DORMANT wakeup.
116 */
117static inline void set_cpu_wakeup_addr(unsigned int cpu_id, u32 addr)
118{
119 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
120
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530121 if (pm_info->wkup_sar_addr)
122 writel_relaxed(addr, pm_info->wkup_sar_addr);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530123}
124
125/*
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530126 * Store the SCU power status value to scratchpad memory
127 */
128static void scu_pwrst_prepare(unsigned int cpu_id, unsigned int cpu_state)
129{
130 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
131 u32 scu_pwr_st;
132
133 switch (cpu_state) {
134 case PWRDM_POWER_RET:
135 scu_pwr_st = SCU_PM_DORMANT;
136 break;
137 case PWRDM_POWER_OFF:
138 scu_pwr_st = SCU_PM_POWEROFF;
139 break;
140 case PWRDM_POWER_ON:
141 case PWRDM_POWER_INACTIVE:
142 default:
143 scu_pwr_st = SCU_PM_NORMAL;
144 break;
145 }
146
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530147 if (pm_info->scu_sar_addr)
148 writel_relaxed(scu_pwr_st, pm_info->scu_sar_addr);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530149}
150
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530151/* Helper functions for MPUSS OSWR */
152static inline void mpuss_clear_prev_logic_pwrst(void)
153{
154 u32 reg;
155
156 reg = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
157 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
158 omap4_prminst_write_inst_reg(reg, OMAP4430_PRM_PARTITION,
159 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
160}
161
162static inline void cpu_clear_prev_logic_pwrst(unsigned int cpu_id)
163{
164 u32 reg;
165
166 if (cpu_id) {
167 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU1_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530168 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530169 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU1_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530170 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530171 } else {
172 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU0_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530173 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530174 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU0_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530175 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530176 }
177}
178
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530179/*
180 * Store the CPU cluster state for L2X0 low power operations.
181 */
182static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state)
183{
184 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
185
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530186 if (pm_info->l2x0_sar_addr)
187 writel_relaxed(save_state, pm_info->l2x0_sar_addr);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530188}
189
190/*
191 * Save the L2X0 AUXCTRL and POR value to SAR memory. Its used to
192 * in every restore MPUSS OFF path.
193 */
194#ifdef CONFIG_CACHE_L2X0
Russell King7a09b282014-04-05 10:57:44 +0100195static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530196{
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530197 void __iomem *l2x0_base = omap4_get_l2cache_base();
198
199 if (l2x0_base && sar_base) {
200 writel_relaxed(l2x0_saved_regs.aux_ctrl,
201 sar_base + L2X0_AUXCTRL_OFFSET);
202 writel_relaxed(l2x0_saved_regs.prefetch_ctrl,
203 sar_base + L2X0_PREFETCH_CTRL_OFFSET);
204 }
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530205}
206#else
Russell King7a09b282014-04-05 10:57:44 +0100207static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530208{}
209#endif
210
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530211/**
212 * omap4_enter_lowpower: OMAP4 MPUSS Low Power Entry Function
213 * The purpose of this function is to manage low power programming
214 * of OMAP4 MPUSS subsystem
215 * @cpu : CPU ID
216 * @power_state: Low power state.
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530217 *
218 * MPUSS states for the context save:
219 * save_state =
220 * 0 - Nothing lost and no need to save: MPUSS INACTIVE
221 * 1 - CPUx L1 and logic lost: MPUSS CSWR
222 * 2 - CPUx L1 and logic lost + GIC lost: MPUSS OSWR
223 * 3 - CPUx L1 and logic lost + GIC + L2 lost: DEVICE OFF
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530224 */
225int omap4_enter_lowpower(unsigned int cpu, unsigned int power_state)
226{
Paul Walmsley32d174e2013-01-26 00:58:13 -0700227 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530228 unsigned int save_state = 0;
229 unsigned int wakeup_cpu;
230
231 if (omap_rev() == OMAP4430_REV_ES1_0)
232 return -ENXIO;
233
234 switch (power_state) {
235 case PWRDM_POWER_ON:
236 case PWRDM_POWER_INACTIVE:
237 save_state = 0;
238 break;
239 case PWRDM_POWER_OFF:
240 save_state = 1;
241 break;
242 case PWRDM_POWER_RET:
243 default:
244 /*
245 * CPUx CSWR is invalid hardware state. Also CPUx OSWR
246 * doesn't make much scense, since logic is lost and $L1
247 * needs to be cleaned because of coherency. This makes
248 * CPUx OSWR equivalent to CPUX OFF and hence not supported
249 */
250 WARN_ON(1);
251 return -ENXIO;
252 }
253
Kevin Hilmane0555482012-05-11 16:00:24 -0700254 pwrdm_pre_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530255
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530256 /*
257 * Check MPUSS next state and save interrupt controller if needed.
258 * In MPUSS OSWR or device OFF, interrupt controller contest is lost.
259 */
260 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530261 if ((pwrdm_read_next_pwrst(mpuss_pd) == PWRDM_POWER_RET) &&
262 (pwrdm_read_logic_retst(mpuss_pd) == PWRDM_POWER_OFF))
263 save_state = 2;
264
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530265 cpu_clear_prev_logic_pwrst(cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700266 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530267 set_cpu_wakeup_addr(cpu, virt_to_phys(omap_pm_ops.resume));
268 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530269 l2x0_pwrst_prepare(cpu, save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530270
271 /*
272 * Call low level function with targeted low power state.
273 */
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530274 if (save_state)
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530275 cpu_suspend(save_state, omap_pm_ops.finish_suspend);
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530276 else
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530277 omap_pm_ops.finish_suspend(save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530278
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300279 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) && cpu)
280 gic_dist_enable();
281
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530282 /*
283 * Restore the CPUx power state to ON otherwise CPUx
284 * power domain can transitions to programmed low power
285 * state while doing WFI outside the low powe code. On
286 * secure devices, CPUx does WFI which can result in
287 * domain transition
288 */
289 wakeup_cpu = smp_processor_id();
Paul Walmsley32d174e2013-01-26 00:58:13 -0700290 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530291
Kevin Hilmane0555482012-05-11 16:00:24 -0700292 pwrdm_post_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530293
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530294 return 0;
295}
296
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530297/**
298 * omap4_hotplug_cpu: OMAP4 CPU hotplug entry
299 * @cpu : CPU ID
300 * @power_state: CPU low power state.
301 */
Paul Gortmaker8bd26e32013-06-17 15:43:14 -0400302int omap4_hotplug_cpu(unsigned int cpu, unsigned int power_state)
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530303{
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300304 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700305 unsigned int cpu_state = 0;
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530306
307 if (omap_rev() == OMAP4430_REV_ES1_0)
308 return -ENXIO;
309
310 if (power_state == PWRDM_POWER_OFF)
311 cpu_state = 1;
312
Paul Walmsley32d174e2013-01-26 00:58:13 -0700313 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
314 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300315 set_cpu_wakeup_addr(cpu, virt_to_phys(pm_info->secondary_startup));
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530316 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530317
318 /*
Masanari Iida260db902012-07-12 00:56:57 +0900319 * CPU never retuns back if targeted power state is OFF mode.
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530320 * CPU ONLINE follows normal CPU ONLINE ptah via
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530321 * omap4_secondary_startup().
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530322 */
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530323 omap_pm_ops.finish_suspend(cpu_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530324
Paul Walmsley32d174e2013-01-26 00:58:13 -0700325 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530326 return 0;
327}
328
329
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530330/*
Santosh Shilimkar6d846c42012-04-12 17:01:52 +0530331 * Enable Mercury Fast HG retention mode by default.
332 */
333static void enable_mercury_retention_mode(void)
334{
335 u32 reg;
336
337 reg = omap4_prcm_mpu_read_inst_reg(OMAP54XX_PRCM_MPU_DEVICE_INST,
338 OMAP54XX_PRCM_MPU_PRM_PSCON_COUNT_OFFSET);
339 /* Enable HG_EN, HG_RAMPUP = fast mode */
340 reg |= BIT(24) | BIT(25);
341 omap4_prcm_mpu_write_inst_reg(reg, OMAP54XX_PRCM_MPU_DEVICE_INST,
342 OMAP54XX_PRCM_MPU_PRM_PSCON_COUNT_OFFSET);
343}
344
345/*
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530346 * Initialise OMAP4 MPUSS
347 */
348int __init omap4_mpuss_init(void)
349{
350 struct omap4_cpu_pm_info *pm_info;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530351
352 if (omap_rev() == OMAP4430_REV_ES1_0) {
353 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
354 return -ENODEV;
355 }
356
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530357 if (cpu_is_omap44xx())
358 sar_base = omap4_get_sar_ram_base();
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530359
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530360 /* Initilaise per CPU PM information */
361 pm_info = &per_cpu(omap4_pm_info, 0x0);
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530362 if (sar_base) {
363 pm_info->scu_sar_addr = sar_base + SCU_OFFSET0;
364 pm_info->wkup_sar_addr = sar_base +
365 CPU0_WAKEUP_NS_PA_ADDR_OFFSET;
366 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET0;
367 }
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530368 pm_info->pwrdm = pwrdm_lookup("cpu0_pwrdm");
369 if (!pm_info->pwrdm) {
370 pr_err("Lookup failed for CPU0 pwrdm\n");
371 return -ENODEV;
372 }
373
374 /* Clear CPU previous power domain state */
375 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530376 cpu_clear_prev_logic_pwrst(0);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530377
378 /* Initialise CPU0 power domain state to ON */
379 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
380
381 pm_info = &per_cpu(omap4_pm_info, 0x1);
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530382 if (sar_base) {
383 pm_info->scu_sar_addr = sar_base + SCU_OFFSET1;
384 pm_info->wkup_sar_addr = sar_base +
385 CPU1_WAKEUP_NS_PA_ADDR_OFFSET;
386 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET1;
387 }
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300388 if (cpu_is_omap446x())
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530389 pm_info->secondary_startup = omap4460_secondary_startup;
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300390 else
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530391 pm_info->secondary_startup = omap4_secondary_startup;
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300392
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530393 pm_info->pwrdm = pwrdm_lookup("cpu1_pwrdm");
394 if (!pm_info->pwrdm) {
395 pr_err("Lookup failed for CPU1 pwrdm\n");
396 return -ENODEV;
397 }
398
399 /* Clear CPU previous power domain state */
400 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530401 cpu_clear_prev_logic_pwrst(1);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530402
403 /* Initialise CPU1 power domain state to ON */
404 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
405
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530406 mpuss_pd = pwrdm_lookup("mpu_pwrdm");
407 if (!mpuss_pd) {
408 pr_err("Failed to lookup MPUSS power domain\n");
409 return -ENODEV;
410 }
411 pwrdm_clear_all_prev_pwrst(mpuss_pd);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530412 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530413
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530414 if (sar_base) {
415 /* Save device type on scratchpad for low level code to use */
416 writel_relaxed((omap_type() != OMAP2_DEVICE_TYPE_GP) ? 1 : 0,
417 sar_base + OMAP_TYPE_OFFSET);
418 save_l2x0_context();
419 }
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530420
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530421 if (cpu_is_omap44xx()) {
422 omap_pm_ops.finish_suspend = omap4_finish_suspend;
423 omap_pm_ops.resume = omap4_cpu_resume;
424 omap_pm_ops.scu_prepare = scu_pwrst_prepare;
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530425 cpu_context_offset = OMAP4_RM_CPU0_CPU0_CONTEXT_OFFSET;
426 } else if (soc_is_omap54xx() || soc_is_dra7xx()) {
427 cpu_context_offset = OMAP54XX_RM_CPU0_CPU0_CONTEXT_OFFSET;
Santosh Shilimkar6d846c42012-04-12 17:01:52 +0530428 enable_mercury_retention_mode();
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530429 }
430
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530431 return 0;
432}
433
434#endif