blob: 61cb77f8cf12deb1b9fd4486755908d3cbe9f39f [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"
59#include "prminst44xx.h"
60#include "prcm44xx.h"
61#include "prm44xx.h"
62#include "prm-regbits-44xx.h"
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053063
64#ifdef CONFIG_SMP
65
66struct omap4_cpu_pm_info {
67 struct powerdomain *pwrdm;
68 void __iomem *scu_sar_addr;
69 void __iomem *wkup_sar_addr;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053070 void __iomem *l2x0_sar_addr;
Santosh Shilimkarff999b82012-10-18 12:20:05 +030071 void (*secondary_startup)(void);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053072};
73
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053074/**
75 * struct cpu_pm_ops - CPU pm operations
76 * @finish_suspend: CPU suspend finisher function pointer
77 * @resume: CPU resume function pointer
78 * @scu_prepare: CPU Snoop Control program function pointer
79 *
80 * Structure holds functions pointer for CPU low power operations like
81 * suspend, resume and scu programming.
82 */
83struct cpu_pm_ops {
84 int (*finish_suspend)(unsigned long cpu_state);
85 void (*resume)(void);
86 void (*scu_prepare)(unsigned int cpu_id, unsigned int cpu_state);
87};
88
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053089static DEFINE_PER_CPU(struct omap4_cpu_pm_info, omap4_pm_info);
Santosh Shilimkare44f9a72010-06-16 22:19:49 +053090static struct powerdomain *mpuss_pd;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +053091static void __iomem *sar_base;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +053092
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +053093static int default_finish_suspend(unsigned long cpu_state)
94{
95 omap_do_wfi();
96 return 0;
97}
98
99static void dummy_cpu_resume(void)
100{}
101
102static void dummy_scu_prepare(unsigned int cpu_id, unsigned int cpu_state)
103{}
104
105struct cpu_pm_ops omap_pm_ops = {
106 .finish_suspend = default_finish_suspend,
107 .resume = dummy_cpu_resume,
108 .scu_prepare = dummy_scu_prepare,
109};
110
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530111/*
112 * Program the wakeup routine address for the CPU0 and CPU1
113 * used for OFF or DORMANT wakeup.
114 */
115static inline void set_cpu_wakeup_addr(unsigned int cpu_id, u32 addr)
116{
117 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
118
119 __raw_writel(addr, pm_info->wkup_sar_addr);
120}
121
122/*
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530123 * Store the SCU power status value to scratchpad memory
124 */
125static void scu_pwrst_prepare(unsigned int cpu_id, unsigned int cpu_state)
126{
127 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
128 u32 scu_pwr_st;
129
130 switch (cpu_state) {
131 case PWRDM_POWER_RET:
132 scu_pwr_st = SCU_PM_DORMANT;
133 break;
134 case PWRDM_POWER_OFF:
135 scu_pwr_st = SCU_PM_POWEROFF;
136 break;
137 case PWRDM_POWER_ON:
138 case PWRDM_POWER_INACTIVE:
139 default:
140 scu_pwr_st = SCU_PM_NORMAL;
141 break;
142 }
143
144 __raw_writel(scu_pwr_st, pm_info->scu_sar_addr);
145}
146
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530147/* Helper functions for MPUSS OSWR */
148static inline void mpuss_clear_prev_logic_pwrst(void)
149{
150 u32 reg;
151
152 reg = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
153 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
154 omap4_prminst_write_inst_reg(reg, OMAP4430_PRM_PARTITION,
155 OMAP4430_PRM_MPU_INST, OMAP4_RM_MPU_MPU_CONTEXT_OFFSET);
156}
157
158static inline void cpu_clear_prev_logic_pwrst(unsigned int cpu_id)
159{
160 u32 reg;
161
162 if (cpu_id) {
163 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU1_INST,
164 OMAP4_RM_CPU1_CPU1_CONTEXT_OFFSET);
165 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU1_INST,
166 OMAP4_RM_CPU1_CPU1_CONTEXT_OFFSET);
167 } else {
168 reg = omap4_prcm_mpu_read_inst_reg(OMAP4430_PRCM_MPU_CPU0_INST,
169 OMAP4_RM_CPU0_CPU0_CONTEXT_OFFSET);
170 omap4_prcm_mpu_write_inst_reg(reg, OMAP4430_PRCM_MPU_CPU0_INST,
171 OMAP4_RM_CPU0_CPU0_CONTEXT_OFFSET);
172 }
173}
174
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530175/*
176 * Store the CPU cluster state for L2X0 low power operations.
177 */
178static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state)
179{
180 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu_id);
181
182 __raw_writel(save_state, pm_info->l2x0_sar_addr);
183}
184
185/*
186 * Save the L2X0 AUXCTRL and POR value to SAR memory. Its used to
187 * in every restore MPUSS OFF path.
188 */
189#ifdef CONFIG_CACHE_L2X0
Russell King7a09b282014-04-05 10:57:44 +0100190static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530191{
Russell King7a09b282014-04-05 10:57:44 +0100192 __raw_writel(l2x0_saved_regs.aux_ctrl,
193 sar_base + L2X0_AUXCTRL_OFFSET);
194 __raw_writel(l2x0_saved_regs.prefetch_ctrl,
195 sar_base + L2X0_PREFETCH_CTRL_OFFSET);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530196}
197#else
Russell King7a09b282014-04-05 10:57:44 +0100198static void __init save_l2x0_context(void)
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530199{}
200#endif
201
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530202/**
203 * omap4_enter_lowpower: OMAP4 MPUSS Low Power Entry Function
204 * The purpose of this function is to manage low power programming
205 * of OMAP4 MPUSS subsystem
206 * @cpu : CPU ID
207 * @power_state: Low power state.
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530208 *
209 * MPUSS states for the context save:
210 * save_state =
211 * 0 - Nothing lost and no need to save: MPUSS INACTIVE
212 * 1 - CPUx L1 and logic lost: MPUSS CSWR
213 * 2 - CPUx L1 and logic lost + GIC lost: MPUSS OSWR
214 * 3 - CPUx L1 and logic lost + GIC + L2 lost: DEVICE OFF
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530215 */
216int omap4_enter_lowpower(unsigned int cpu, unsigned int power_state)
217{
Paul Walmsley32d174e2013-01-26 00:58:13 -0700218 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530219 unsigned int save_state = 0;
220 unsigned int wakeup_cpu;
221
222 if (omap_rev() == OMAP4430_REV_ES1_0)
223 return -ENXIO;
224
225 switch (power_state) {
226 case PWRDM_POWER_ON:
227 case PWRDM_POWER_INACTIVE:
228 save_state = 0;
229 break;
230 case PWRDM_POWER_OFF:
231 save_state = 1;
232 break;
233 case PWRDM_POWER_RET:
234 default:
235 /*
236 * CPUx CSWR is invalid hardware state. Also CPUx OSWR
237 * doesn't make much scense, since logic is lost and $L1
238 * needs to be cleaned because of coherency. This makes
239 * CPUx OSWR equivalent to CPUX OFF and hence not supported
240 */
241 WARN_ON(1);
242 return -ENXIO;
243 }
244
Kevin Hilmane0555482012-05-11 16:00:24 -0700245 pwrdm_pre_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530246
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530247 /*
248 * Check MPUSS next state and save interrupt controller if needed.
249 * In MPUSS OSWR or device OFF, interrupt controller contest is lost.
250 */
251 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530252 if ((pwrdm_read_next_pwrst(mpuss_pd) == PWRDM_POWER_RET) &&
253 (pwrdm_read_logic_retst(mpuss_pd) == PWRDM_POWER_OFF))
254 save_state = 2;
255
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530256 cpu_clear_prev_logic_pwrst(cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700257 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530258 set_cpu_wakeup_addr(cpu, virt_to_phys(omap_pm_ops.resume));
259 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530260 l2x0_pwrst_prepare(cpu, save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530261
262 /*
263 * Call low level function with targeted low power state.
264 */
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530265 if (save_state)
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530266 cpu_suspend(save_state, omap_pm_ops.finish_suspend);
Santosh Shilimkar72433eb2013-02-13 14:25:24 +0530267 else
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530268 omap_pm_ops.finish_suspend(save_state);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530269
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300270 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) && cpu)
271 gic_dist_enable();
272
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530273 /*
274 * Restore the CPUx power state to ON otherwise CPUx
275 * power domain can transitions to programmed low power
276 * state while doing WFI outside the low powe code. On
277 * secure devices, CPUx does WFI which can result in
278 * domain transition
279 */
280 wakeup_cpu = smp_processor_id();
Paul Walmsley32d174e2013-01-26 00:58:13 -0700281 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530282
Kevin Hilmane0555482012-05-11 16:00:24 -0700283 pwrdm_post_transition(NULL);
Santosh Shilimkar49404dd2011-01-10 01:02:15 +0530284
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530285 return 0;
286}
287
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530288/**
289 * omap4_hotplug_cpu: OMAP4 CPU hotplug entry
290 * @cpu : CPU ID
291 * @power_state: CPU low power state.
292 */
Paul Gortmaker8bd26e32013-06-17 15:43:14 -0400293int omap4_hotplug_cpu(unsigned int cpu, unsigned int power_state)
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530294{
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300295 struct omap4_cpu_pm_info *pm_info = &per_cpu(omap4_pm_info, cpu);
Paul Walmsley32d174e2013-01-26 00:58:13 -0700296 unsigned int cpu_state = 0;
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530297
298 if (omap_rev() == OMAP4430_REV_ES1_0)
299 return -ENXIO;
300
301 if (power_state == PWRDM_POWER_OFF)
302 cpu_state = 1;
303
Paul Walmsley32d174e2013-01-26 00:58:13 -0700304 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
305 pwrdm_set_next_pwrst(pm_info->pwrdm, power_state);
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300306 set_cpu_wakeup_addr(cpu, virt_to_phys(pm_info->secondary_startup));
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530307 omap_pm_ops.scu_prepare(cpu, power_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530308
309 /*
Masanari Iida260db902012-07-12 00:56:57 +0900310 * CPU never retuns back if targeted power state is OFF mode.
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530311 * CPU ONLINE follows normal CPU ONLINE ptah via
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530312 * omap4_secondary_startup().
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530313 */
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530314 omap_pm_ops.finish_suspend(cpu_state);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530315
Paul Walmsley32d174e2013-01-26 00:58:13 -0700316 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
Santosh Shilimkarb5b4f282010-06-16 22:19:48 +0530317 return 0;
318}
319
320
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530321/*
322 * Initialise OMAP4 MPUSS
323 */
324int __init omap4_mpuss_init(void)
325{
326 struct omap4_cpu_pm_info *pm_info;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530327
328 if (omap_rev() == OMAP4430_REV_ES1_0) {
329 WARN(1, "Power Management not supported on OMAP4430 ES1.0\n");
330 return -ENODEV;
331 }
332
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530333 sar_base = omap4_get_sar_ram_base();
334
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530335 /* Initilaise per CPU PM information */
336 pm_info = &per_cpu(omap4_pm_info, 0x0);
337 pm_info->scu_sar_addr = sar_base + SCU_OFFSET0;
338 pm_info->wkup_sar_addr = sar_base + CPU0_WAKEUP_NS_PA_ADDR_OFFSET;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530339 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET0;
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530340 pm_info->pwrdm = pwrdm_lookup("cpu0_pwrdm");
341 if (!pm_info->pwrdm) {
342 pr_err("Lookup failed for CPU0 pwrdm\n");
343 return -ENODEV;
344 }
345
346 /* Clear CPU previous power domain state */
347 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530348 cpu_clear_prev_logic_pwrst(0);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530349
350 /* Initialise CPU0 power domain state to ON */
351 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
352
353 pm_info = &per_cpu(omap4_pm_info, 0x1);
354 pm_info->scu_sar_addr = sar_base + SCU_OFFSET1;
355 pm_info->wkup_sar_addr = sar_base + CPU1_WAKEUP_NS_PA_ADDR_OFFSET;
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530356 pm_info->l2x0_sar_addr = sar_base + L2X0_SAVE_OFFSET1;
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300357 if (cpu_is_omap446x())
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530358 pm_info->secondary_startup = omap4460_secondary_startup;
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300359 else
Santosh Shilimkarbaf4b7d2013-04-05 18:29:02 +0530360 pm_info->secondary_startup = omap4_secondary_startup;
Santosh Shilimkarff999b82012-10-18 12:20:05 +0300361
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530362 pm_info->pwrdm = pwrdm_lookup("cpu1_pwrdm");
363 if (!pm_info->pwrdm) {
364 pr_err("Lookup failed for CPU1 pwrdm\n");
365 return -ENODEV;
366 }
367
368 /* Clear CPU previous power domain state */
369 pwrdm_clear_all_prev_pwrst(pm_info->pwrdm);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530370 cpu_clear_prev_logic_pwrst(1);
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530371
372 /* Initialise CPU1 power domain state to ON */
373 pwrdm_set_next_pwrst(pm_info->pwrdm, PWRDM_POWER_ON);
374
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530375 mpuss_pd = pwrdm_lookup("mpu_pwrdm");
376 if (!mpuss_pd) {
377 pr_err("Failed to lookup MPUSS power domain\n");
378 return -ENODEV;
379 }
380 pwrdm_clear_all_prev_pwrst(mpuss_pd);
Santosh Shilimkar3ba2a732011-06-06 14:33:29 +0530381 mpuss_clear_prev_logic_pwrst();
Santosh Shilimkare44f9a72010-06-16 22:19:49 +0530382
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530383 /* Save device type on scratchpad for low level code to use */
384 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
385 __raw_writel(1, sar_base + OMAP_TYPE_OFFSET);
386 else
387 __raw_writel(0, sar_base + OMAP_TYPE_OFFSET);
388
Santosh Shilimkar5e94c6e32011-01-09 02:59:09 +0530389 save_l2x0_context();
390
Santosh Shilimkar9f192cf2013-04-05 18:29:00 +0530391 if (cpu_is_omap44xx()) {
392 omap_pm_ops.finish_suspend = omap4_finish_suspend;
393 omap_pm_ops.resume = omap4_cpu_resume;
394 omap_pm_ops.scu_prepare = scu_pwrst_prepare;
395 }
396
Santosh Shilimkarb2b97622010-06-16 22:19:48 +0530397 return 0;
398}
399
400#endif