blob: 94428b476d8fec2c3de6ef50a9baf67467317bf9 [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>
Tony Lindgren8a8be462016-11-07 16:50:11 -070051#include <asm/virt.h>
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053052#include <asm/hardware/cache-l2x0.h>
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053053
Tony Lindgrene4c060d2012-10-05 13:25:59 -070054#include "soc.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053055#include "common.h"
Tony Lindgrenc49f34b2012-08-31 16:08:07 -070056#include "omap44xx.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053057#include "omap4-sar-layout.h"
58#include "pm.h"
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053059#include "prcm_mpu44xx.h"
Santosh Shilimkara89726d2013-02-06 19:39:07 +053060#include "prcm_mpu54xx.h"
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +053061#include "prminst44xx.h"
62#include "prcm44xx.h"
63#include "prm44xx.h"
64#include "prm-regbits-44xx.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053065
Tony Lindgren0573b952016-06-22 01:59:39 -070066static void __iomem *sar_base;
67
Tony Lindgrenb3bf2892016-07-03 23:29:45 -070068#if defined(CONFIG_PM) && defined(CONFIG_SMP)
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053069
70struct omap4_cpu_pm_info {
71 struct powerdomain *pwrdm;
72 void __iomem *scu_sar_addr;
73 void __iomem *wkup_sar_addr;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053074 void __iomem *l2x0_sar_addr;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053075};
76
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053077/**
78 * struct cpu_pm_ops - CPU pm operations
79 * @finish_suspend: CPU suspend finisher function pointer
80 * @resume: CPU resume function pointer
81 * @scu_prepare: CPU Snoop Control program function pointer
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -050082 * @hotplug_restart: CPU restart function pointer
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053083 *
84 * Structure holds functions pointer for CPU low power operations like
85 * suspend, resume and scu programming.
86 */
87struct cpu_pm_ops {
88 int (*finish_suspend)(unsigned long cpu_state);
89 void (*resume)(void);
90 void (*scu_prepare)(unsigned int cpu_id, unsigned int cpu_state);
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -050091 void (*hotplug_restart)(void);
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053092};
93
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053094static DEFINE_PER_CPU(struct omap4_cpu_pm_info, omap4_pm_info);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053095static struct powerdomain *mpuss_pd;
Santosh Shilimkara89726d2013-02-06 19:39:07 +053096static u32 cpu_context_offset;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053097
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053098static int default_finish_suspend(unsigned long cpu_state)
99{
100 omap_do_wfi();
101 return 0;
102}
103
104static void dummy_cpu_resume(void)
105{}
106
107static void dummy_scu_prepare(unsigned int cpu_id, unsigned int cpu_state)
108{}
109
Sekhar Norif734a9b2015-07-11 20:29:15 +0530110static struct cpu_pm_ops omap_pm_ops = {
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530111 .finish_suspend = default_finish_suspend,
112 .resume = dummy_cpu_resume,
113 .scu_prepare = dummy_scu_prepare,
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -0500114 .hotplug_restart = dummy_cpu_resume,
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530115};
116
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530117/*
118 * Program the wakeup routine address for the CPU0 and CPU1
119 * used for OFF or DORMANT wakeup.
120 */
121static inline void set_cpu_wakeup_addr(unsigned int cpu_id, u32 addr)
122{
123 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
124
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530125 if (pm_info->wkup_sar_addr)
126 writel_relaxed(addr, pm_info->wkup_sar_addr);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530127}
128
129/*
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530130 * Store the SCU power status value to scratchpad memory
131 */
132static void scu_pwrst_prepare(unsigned int cpu_id, unsigned int cpu_state)
133{
134 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
135 u32 scu_pwr_st;
136
137 switch (cpu_state) {
138 case PWRDM_POWER_RET:
139 scu_pwr_st = SCU_PM_DORMANT;
140 break;
141 case PWRDM_POWER_OFF:
142 scu_pwr_st = SCU_PM_POWEROFF;
143 break;
144 case PWRDM_POWER_ON:
145 case PWRDM_POWER_INACTIVE:
146 default:
147 scu_pwr_st = SCU_PM_NORMAL;
148 break;
149 }
150
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530151 if (pm_info->scu_sar_addr)
152 writel_relaxed(scu_pwr_st, pm_info->scu_sar_addr);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530153}
154
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530155/* Helper functions for MPUSS OSWR */
156static inline void mpuss_clear_prev_logic_pwrst(void)
157{
158 u32 reg;
159
160 reg = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
161 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
162 omap4_prminst_write_inst_reg(reg, OMAP4430_PRM_PARTITION,
163 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
164}
165
166static inline void cpu_clear_prev_logic_pwrst(unsigned int cpu_id)
167{
168 u32 reg;
169
170 if (cpu_id) {
171 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU1_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530172 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530173 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU1_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530174 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530175 } else {
176 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU0_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530177 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530178 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU0_INST,
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530179 cpu_context_offset);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530180 }
181}
182
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530183/*
184 * Store the CPU cluster state for L2X0 low power operations.
185 */
186static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state)
187{
188 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
189
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530190 if (pm_info->l2x0_sar_addr)
191 writel_relaxed(save_state, pm_info->l2x0_sar_addr);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530192}
193
194/*
195 * Save the L2X0 AUXCTRL and POR value to SAR memory. Its used to
196 * in every restore MPUSS OFF path.
197 */
198#ifdef CONFIG_CACHE_L2X0
Russell King7a09b282014-04-05 10:57:44 +0100199static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530200{
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530201 void __iomem *l2x0_base = omap4_get_l2cache_base();
202
203 if (l2x0_base && sar_base) {
204 writel_relaxed(l2x0_saved_regs.aux_ctrl,
205 sar_base + L2X0_AUXCTRL_OFFSET);
206 writel_relaxed(l2x0_saved_regs.prefetch_ctrl,
207 sar_base + L2X0_PREFETCH_CTRL_OFFSET);
208 }
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530209}
210#else
Russell King7a09b282014-04-05 10:57:44 +0100211static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530212{}
213#endif
214
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530215/**
216 * omap4_enter_lowpower: OMAP4 MPUSS Low Power Entry Function
217 * The purpose of this function is to manage low power programming
218 * of OMAP4 MPUSS subsystem
219 * @cpu : CPU ID
220 * @power_state: Low power state.
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530221 *
222 * MPUSS states for the context save:
223 * save_state =
224 * 0 - Nothing lost and no need to save: MPUSS INACTIVE
225 * 1 - CPUx L1 and logic lost: MPUSS CSWR
226 * 2 - CPUx L1 and logic lost + GIC lost: MPUSS OSWR
227 * 3 - CPUx L1 and logic lost + GIC + L2 lost: DEVICE OFF
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530228 */
229int omap4_enter_lowpower(unsigned int cpu, unsigned int power_state)
230{
Paul Walmsley32d174e2013-01-26 00:58:13 -0700231 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Nishanth Menona30d81b2014-10-21 15:24:36 -0500232 unsigned int save_state = 0, cpu_logic_state = PWRDM_POWER_RET;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530233 unsigned int wakeup_cpu;
234
235 if (omap_rev() == OMAP4430_REV_ES1_0)
236 return -ENXIO;
237
238 switch (power_state) {
239 case PWRDM_POWER_ON:
240 case PWRDM_POWER_INACTIVE:
241 save_state = 0;
242 break;
243 case PWRDM_POWER_OFF:
Nishanth Menona30d81b2014-10-21 15:24:36 -0500244 cpu_logic_state = PWRDM_POWER_OFF;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530245 save_state = 1;
246 break;
247 case PWRDM_POWER_RET:
Rajendra Nayak6099dd32013-05-27 15:46:44 +0530248 if (IS_PM44XX_ERRATUM(PM_OMAP4_CPU_OSWR_DISABLE)) {
249 save_state = 0;
250 break;
251 }
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530252 default:
253 /*
254 * CPUx CSWR is invalid hardware state. Also CPUx OSWR
255 * doesn't make much scense, since logic is lost and $L1
256 * needs to be cleaned because of coherency. This makes
257 * CPUx OSWR equivalent to CPUX OFF and hence not supported
258 */
259 WARN_ON(1);
260 return -ENXIO;
261 }
262
Kevin Hilmane0555482012-05-11 16:00:24 -0700263 pwrdm_pre_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530264
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530265 /*
266 * Check MPUSS next state and save interrupt controller if needed.
267 * In MPUSS OSWR or device OFF, interrupt controller contest is lost.
268 */
269 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530270 if ((pwrdm_read_next_pwrst(mpuss_pd) == PWRDM_POWER_RET) &&
271 (pwrdm_read_logic_retst(mpuss_pd) == PWRDM_POWER_OFF))
272 save_state = 2;
273
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530274 cpu_clear_prev_logic_pwrst(cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700275 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Nishanth Menona30d81b2014-10-21 15:24:36 -0500276 pwrdm_set_logic_retst(pm_info->pwrdm, cpu_logic_state);
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530277 set_cpu_wakeup_addr(cpu, virt_to_phys(omap_pm_ops.resume));
278 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530279 l2x0_pwrst_prepare(cpu, save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530280
281 /*
282 * Call low level function with targeted low power state.
283 */
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530284 if (save_state)
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530285 cpu_suspend(save_state, omap_pm_ops.finish_suspend);
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530286 else
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530287 omap_pm_ops.finish_suspend(save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530288
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300289 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) && cpu)
290 gic_dist_enable();
291
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530292 /*
293 * Restore the CPUx power state to ON otherwise CPUx
294 * power domain can transitions to programmed low power
295 * state while doing WFI outside the low powe code. On
296 * secure devices, CPUx does WFI which can result in
297 * domain transition
298 */
299 wakeup_cpu = smp_processor_id();
Paul Walmsley32d174e2013-01-26 00:58:13 -0700300 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530301
Kevin Hilmane0555482012-05-11 16:00:24 -0700302 pwrdm_post_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530303
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530304 return 0;
305}
306
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530307/**
308 * omap4_hotplug_cpu: OMAP4 CPU hotplug entry
309 * @cpu : CPU ID
310 * @power_state: CPU low power state.
311 */
Paul Gortmaker8bd26e32013-06-17 15:43:14 -0400312int omap4_hotplug_cpu(unsigned int cpu, unsigned int power_state)
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530313{
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300314 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700315 unsigned int cpu_state = 0;
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530316
317 if (omap_rev() == OMAP4430_REV_ES1_0)
318 return -ENXIO;
319
Nishanth Menon3e6a1c92014-07-24 10:24:19 -0500320 /* Use the achievable power state for the domain */
321 power_state = pwrdm_get_valid_lp_state(pm_info->pwrdm,
322 false, power_state);
323
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530324 if (power_state == PWRDM_POWER_OFF)
325 cpu_state = 1;
326
Paul Walmsley32d174e2013-01-26 00:58:13 -0700327 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
328 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -0500329 set_cpu_wakeup_addr(cpu, virt_to_phys(omap_pm_ops.hotplug_restart));
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530330 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530331
332 /*
Masanari Iida260db902012-07-12 00:56:57 +0900333 * CPU never retuns back if targeted power state is OFF mode.
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530334 * CPU ONLINE follows normal CPU ONLINE ptah via
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530335 * omap4_secondary_startup().
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530336 */
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530337 omap_pm_ops.finish_suspend(cpu_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530338
Paul Walmsley32d174e2013-01-26 00:58:13 -0700339 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530340 return 0;
341}
342
343
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530344/*
Santosh Shilimkar6d846c42012-04-12 17:01:52 +0530345 * Enable Mercury Fast HG retention mode by default.
346 */
347static void enable_mercury_retention_mode(void)
348{
349 u32 reg;
350
351 reg = omap4_prcm_mpu_read_inst_reg(OMAP54XX_PRCM_MPU_DEVICE_INST,
352 OMAP54XX_PRCM_MPU_PRM_PSCON_COUNT_OFFSET);
353 /* Enable HG_EN, HG_RAMPUP = fast mode */
354 reg |= BIT(24) | BIT(25);
355 omap4_prcm_mpu_write_inst_reg(reg, OMAP54XX_PRCM_MPU_DEVICE_INST,
356 OMAP54XX_PRCM_MPU_PRM_PSCON_COUNT_OFFSET);
357}
358
359/*
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530360 * Initialise OMAP4 MPUSS
361 */
362int __init omap4_mpuss_init(void)
363{
364 struct omap4_cpu_pm_info *pm_info;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530365
366 if (omap_rev() == OMAP4430_REV_ES1_0) {
367 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
368 return -ENODEV;
369 }
370
371 /* Initilaise per CPU PM information */
372 pm_info = &per_cpu(omap4_pm_info, 0x0);
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530373 if (sar_base) {
374 pm_info->scu_sar_addr = sar_base + SCU_OFFSET0;
Tony Lindgren8a8be462016-11-07 16:50:11 -0700375 if (cpu_is_omap44xx())
376 pm_info->wkup_sar_addr = sar_base +
377 CPU0_WAKEUP_NS_PA_ADDR_OFFSET;
378 else
379 pm_info->wkup_sar_addr = sar_base +
380 OMAP5_CPU0_WAKEUP_NS_PA_ADDR_OFFSET;
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530381 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET0;
382 }
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530383 pm_info->pwrdm = pwrdm_lookup("cpu0_pwrdm");
384 if (!pm_info->pwrdm) {
385 pr_err("Lookup failed for CPU0 pwrdm\n");
386 return -ENODEV;
387 }
388
389 /* Clear CPU previous power domain state */
390 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530391 cpu_clear_prev_logic_pwrst(0);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530392
393 /* Initialise CPU0 power domain state to ON */
394 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
395
396 pm_info = &per_cpu(omap4_pm_info, 0x1);
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530397 if (sar_base) {
398 pm_info->scu_sar_addr = sar_base + SCU_OFFSET1;
Tony Lindgren8a8be462016-11-07 16:50:11 -0700399 if (cpu_is_omap44xx())
400 pm_info->wkup_sar_addr = sar_base +
401 CPU1_WAKEUP_NS_PA_ADDR_OFFSET;
402 else
403 pm_info->wkup_sar_addr = sar_base +
404 OMAP5_CPU1_WAKEUP_NS_PA_ADDR_OFFSET;
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530405 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET1;
406 }
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300407
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530408 pm_info->pwrdm = pwrdm_lookup("cpu1_pwrdm");
409 if (!pm_info->pwrdm) {
410 pr_err("Lookup failed for CPU1 pwrdm\n");
411 return -ENODEV;
412 }
413
414 /* Clear CPU previous power domain state */
415 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530416 cpu_clear_prev_logic_pwrst(1);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530417
418 /* Initialise CPU1 power domain state to ON */
419 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
420
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530421 mpuss_pd = pwrdm_lookup("mpu_pwrdm");
422 if (!mpuss_pd) {
423 pr_err("Failed to lookup MPUSS power domain\n");
424 return -ENODEV;
425 }
426 pwrdm_clear_all_prev_pwrst(mpuss_pd);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530427 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530428
Rajendra Nayak325f29da2013-05-03 15:34:40 +0530429 if (sar_base) {
430 /* Save device type on scratchpad for low level code to use */
431 writel_relaxed((omap_type() != OMAP2_DEVICE_TYPE_GP) ? 1 : 0,
432 sar_base + OMAP_TYPE_OFFSET);
433 save_l2x0_context();
434 }
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530435
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530436 if (cpu_is_omap44xx()) {
437 omap_pm_ops.finish_suspend = omap4_finish_suspend;
438 omap_pm_ops.resume = omap4_cpu_resume;
439 omap_pm_ops.scu_prepare = scu_pwrst_prepare;
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -0500440 omap_pm_ops.hotplug_restart = omap4_secondary_startup;
Santosh Shilimkara89726d2013-02-06 19:39:07 +0530441 cpu_context_offset = OMAP4_RM_CPU0_CPU0_CONTEXT_OFFSET;
442 } else if (soc_is_omap54xx() || soc_is_dra7xx()) {
443 cpu_context_offset = OMAP54XX_RM_CPU0_CPU0_CONTEXT_OFFSET;
Santosh Shilimkar6d846c42012-04-12 17:01:52 +0530444 enable_mercury_retention_mode();
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530445 }
446
Santosh Shilimkare97c4eb2014-06-06 17:30:43 -0500447 if (cpu_is_omap446x())
448 omap_pm_ops.hotplug_restart = omap4460_secondary_startup;
449
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530450 return 0;
451}
452
453#endif
Tony Lindgren0573b952016-06-22 01:59:39 -0700454
455/*
456 * For kexec, we must set CPU1_WAKEUP_NS_PA_ADDR to point to
457 * current kernel's secondary_startup() early before
458 * clockdomains_init(). Otherwise clockdomain_init() can
459 * wake CPU1 and cause a hang.
460 */
461void __init omap4_mpuss_early_init(void)
462{
463 unsigned long startup_pa;
464
Tony Lindgren8a8be462016-11-07 16:50:11 -0700465 if (!(cpu_is_omap44xx() || soc_is_omap54xx()))
Tony Lindgren0573b952016-06-22 01:59:39 -0700466 return;
467
468 sar_base = omap4_get_sar_ram_base();
469
470 if (cpu_is_omap443x())
471 startup_pa = virt_to_phys(omap4_secondary_startup);
Tony Lindgren8a8be462016-11-07 16:50:11 -0700472 else if (cpu_is_omap446x())
Tony Lindgren0573b952016-06-22 01:59:39 -0700473 startup_pa = virt_to_phys(omap4460_secondary_startup);
Tony Lindgren8a8be462016-11-07 16:50:11 -0700474 else if ((__boot_cpu_mode & MODE_MASK) == HYP_MODE)
475 startup_pa = virt_to_phys(omap5_secondary_hyp_startup);
476 else
477 startup_pa = virt_to_phys(omap5_secondary_startup);
Tony Lindgren0573b952016-06-22 01:59:39 -0700478
Tony Lindgren8a8be462016-11-07 16:50:11 -0700479 if (cpu_is_omap44xx())
480 writel_relaxed(startup_pa, sar_base +
481 CPU1_WAKEUP_NS_PA_ADDR_OFFSET);
482 else
483 writel_relaxed(startup_pa, sar_base +
484 OMAP5_CPU1_WAKEUP_NS_PA_ADDR_OFFSET);
Tony Lindgren0573b952016-06-22 01:59:39 -0700485}