Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
[deliverable/linux.git] / arch / arm / mach-exynos / pm.c
CommitLineData
c9347101 1/*
0d713cf1 2 * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
1663895c
JL
3 * http://www.samsung.com
4 *
c9347101 5 * EXYNOS - Power Management support
1663895c
JL
6 *
7 * Based on arch/arm/mach-s3c2410/pm.c
8 * Copyright (c) 2006 Simtec Electronics
9 * Ben Dooks <ben@simtec.co.uk>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14*/
15
16#include <linux/init.h>
17#include <linux/suspend.h>
85f9f908 18#include <linux/cpu_pm.h>
1663895c 19#include <linux/io.h>
56c03d91 20#include <linux/err.h>
1663895c 21
2b9d9c32 22#include <asm/firmware.h>
63b870f1 23#include <asm/smp_scu.h>
d710aa31 24#include <asm/suspend.h>
af997114 25#include <asm/cacheflush.h>
1663895c 26
32b0aa9a
PD
27#include <mach/map.h>
28
d710aa31 29#include <plat/pm-common.h>
ccd458c1
KK
30
31#include "common.h"
6b7bfd82 32#include "exynos-pmu.h"
65c9a853 33#include "regs-pmu.h"
1663895c 34
134abc29
BZ
35static inline void __iomem *exynos_boot_vector_addr(void)
36{
37 if (samsung_rev() == EXYNOS4210_REV_1_1)
38 return pmu_base_addr + S5P_INFORM7;
39 else if (samsung_rev() == EXYNOS4210_REV_1_0)
40 return sysram_base_addr + 0x24;
41 return pmu_base_addr + S5P_INFORM0;
42}
43
44static inline void __iomem *exynos_boot_vector_flag(void)
45{
46 if (samsung_rev() == EXYNOS4210_REV_1_1)
47 return pmu_base_addr + S5P_INFORM6;
48 else if (samsung_rev() == EXYNOS4210_REV_1_0)
49 return sysram_base_addr + 0x20;
50 return pmu_base_addr + S5P_INFORM1;
51}
3681bafe 52
e30b154b 53#define S5P_CHECK_AFTR 0xFCBA0D10
3681bafe 54
f4ba4b01
JL
55/* For Cortex-A9 Diagnostic and Power control register */
56static unsigned int save_arm_register[2];
57
0d713cf1 58void exynos_cpu_save_register(void)
309e08c4
DL
59{
60 unsigned long tmp;
61
62 /* Save Power control register */
63 asm ("mrc p15, 0, %0, c15, c0, 0"
64 : "=r" (tmp) : : "cc");
65
66 save_arm_register[0] = tmp;
67
68 /* Save Diagnostic register */
69 asm ("mrc p15, 0, %0, c15, c0, 1"
70 : "=r" (tmp) : : "cc");
71
72 save_arm_register[1] = tmp;
73}
74
0d713cf1 75void exynos_cpu_restore_register(void)
309e08c4
DL
76{
77 unsigned long tmp;
78
79 /* Restore Power control register */
80 tmp = save_arm_register[0];
81
82 asm volatile ("mcr p15, 0, %0, c15, c0, 0"
83 : : "r" (tmp)
84 : "cc");
85
86 /* Restore Diagnostic register */
87 tmp = save_arm_register[1];
88
89 asm volatile ("mcr p15, 0, %0, c15, c0, 1"
90 : : "r" (tmp)
91 : "cc");
92}
93
0d713cf1 94void exynos_pm_central_suspend(void)
01601b34
TF
95{
96 unsigned long tmp;
97
98 /* Setting Central Sequence Register for power down mode */
99 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
100 tmp &= ~S5P_CENTRAL_LOWPWR_CFG;
101 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
102}
103
0d713cf1 104int exynos_pm_central_resume(void)
01601b34
TF
105{
106 unsigned long tmp;
107
108 /*
109 * If PMU failed while entering sleep mode, WFI will be
110 * ignored by PMU and then exiting cpu_do_idle().
111 * S5P_CENTRAL_LOWPWR_CFG bit will not be set automatically
112 * in this situation.
113 */
114 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
115 if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
116 tmp |= S5P_CENTRAL_LOWPWR_CFG;
117 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
118 /* clear the wakeup state register */
119 pmu_raw_writel(0x0, S5P_WAKEUP_STAT);
120 /* No need to perform below restore code */
121 return -1;
122 }
123
124 return 0;
125}
126
127/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
128static void exynos_set_wakeupmask(long mask)
129{
130 pmu_raw_writel(mask, S5P_WAKEUP_MASK);
89366409
BZ
131 if (soc_is_exynos3250())
132 pmu_raw_writel(0x0, S5P_WAKEUP_MASK2);
01601b34
TF
133}
134
135static void exynos_cpu_set_boot_vector(long flags)
136{
134abc29
BZ
137 __raw_writel(virt_to_phys(exynos_cpu_resume),
138 exynos_boot_vector_addr());
139 __raw_writel(flags, exynos_boot_vector_flag());
01601b34
TF
140}
141
142static int exynos_aftr_finisher(unsigned long flags)
143{
a135e201
BZ
144 int ret;
145
89366409 146 exynos_set_wakeupmask(soc_is_exynos3250() ? 0x40003ffe : 0x0000ff3e);
01601b34
TF
147 /* Set value of power down register for aftr mode */
148 exynos_sys_powerdown_conf(SYS_AFTR);
a135e201
BZ
149
150 ret = call_firmware_op(do_idle, FW_DO_IDLE_AFTR);
151 if (ret == -ENOSYS) {
152 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
153 exynos_cpu_save_register();
154 exynos_cpu_set_boot_vector(S5P_CHECK_AFTR);
155 cpu_do_idle();
156 }
01601b34
TF
157
158 return 1;
159}
160
161void exynos_enter_aftr(void)
162{
89366409
BZ
163 unsigned int cpuid = smp_processor_id();
164
01601b34
TF
165 cpu_pm_enter();
166
89366409
BZ
167 if (soc_is_exynos3250())
168 exynos_set_boot_flag(cpuid, C2_STATE);
169
01601b34 170 exynos_pm_central_suspend();
01601b34 171
865e8b76
BZ
172 if (of_machine_is_compatible("samsung,exynos4212") ||
173 of_machine_is_compatible("samsung,exynos4412")) {
174 /* Setting SEQ_OPTION register */
175 pmu_raw_writel(S5P_USE_STANDBY_WFI0 | S5P_USE_STANDBY_WFE0,
176 S5P_CENTRAL_SEQ_OPTION);
177 }
178
01601b34
TF
179 cpu_suspend(0, exynos_aftr_finisher);
180
181 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) {
182 scu_enable(S5P_VA_SCU);
a135e201
BZ
183 if (call_firmware_op(resume) == -ENOSYS)
184 exynos_cpu_restore_register();
01601b34
TF
185 }
186
187 exynos_pm_central_resume();
188
89366409
BZ
189 if (soc_is_exynos3250())
190 exynos_clear_boot_flag(cpuid, C2_STATE);
191
01601b34
TF
192 cpu_pm_exit();
193}
712eddf7 194
cfdda353 195#if defined(CONFIG_SMP) && defined(CONFIG_ARM_EXYNOS_CPUIDLE)
712eddf7
BZ
196static atomic_t cpu1_wakeup = ATOMIC_INIT(0);
197
198static int exynos_cpu0_enter_aftr(void)
199{
200 int ret = -1;
201
202 /*
203 * If the other cpu is powered on, we have to power it off, because
204 * the AFTR state won't work otherwise
205 */
206 if (cpu_online(1)) {
207 /*
208 * We reach a sync point with the coupled idle state, we know
209 * the other cpu will power down itself or will abort the
210 * sequence, let's wait for one of these to happen
211 */
212 while (exynos_cpu_power_state(1)) {
af997114
BZ
213 unsigned long boot_addr;
214
712eddf7
BZ
215 /*
216 * The other cpu may skip idle and boot back
217 * up again
218 */
219 if (atomic_read(&cpu1_wakeup))
220 goto abort;
221
222 /*
223 * The other cpu may bounce through idle and
224 * boot back up again, getting stuck in the
225 * boot rom code
226 */
af997114
BZ
227 ret = exynos_get_boot_addr(1, &boot_addr);
228 if (ret)
229 goto fail;
230 ret = -1;
231 if (boot_addr == 0)
712eddf7
BZ
232 goto abort;
233
234 cpu_relax();
235 }
236 }
237
238 exynos_enter_aftr();
239 ret = 0;
240
241abort:
242 if (cpu_online(1)) {
af997114
BZ
243 unsigned long boot_addr = virt_to_phys(exynos_cpu_resume);
244
712eddf7
BZ
245 /*
246 * Set the boot vector to something non-zero
247 */
af997114
BZ
248 ret = exynos_set_boot_addr(1, boot_addr);
249 if (ret)
250 goto fail;
712eddf7
BZ
251 dsb();
252
253 /*
254 * Turn on cpu1 and wait for it to be on
255 */
256 exynos_cpu_power_up(1);
257 while (exynos_cpu_power_state(1) != S5P_CORE_LOCAL_PWR_EN)
258 cpu_relax();
259
af997114
BZ
260 if (soc_is_exynos3250()) {
261 while (!pmu_raw_readl(S5P_PMU_SPARE2) &&
262 !atomic_read(&cpu1_wakeup))
263 cpu_relax();
264
265 if (!atomic_read(&cpu1_wakeup))
266 exynos_core_restart(1);
267 }
268
712eddf7 269 while (!atomic_read(&cpu1_wakeup)) {
af997114
BZ
270 smp_rmb();
271
712eddf7
BZ
272 /*
273 * Poke cpu1 out of the boot rom
274 */
712eddf7 275
af997114
BZ
276 ret = exynos_set_boot_addr(1, boot_addr);
277 if (ret)
278 goto fail;
279
280 call_firmware_op(cpu_boot, 1);
281
282 if (soc_is_exynos3250())
283 dsb_sev();
284 else
285 arch_send_wakeup_ipi_mask(cpumask_of(1));
712eddf7
BZ
286 }
287 }
af997114 288fail:
712eddf7
BZ
289 return ret;
290}
291
292static int exynos_wfi_finisher(unsigned long flags)
293{
af997114
BZ
294 if (soc_is_exynos3250())
295 flush_cache_all();
712eddf7
BZ
296 cpu_do_idle();
297
298 return -1;
299}
300
301static int exynos_cpu1_powerdown(void)
302{
303 int ret = -1;
304
305 /*
306 * Idle sequence for cpu1
307 */
308 if (cpu_pm_enter())
309 goto cpu1_aborted;
310
311 /*
312 * Turn off cpu 1
313 */
314 exynos_cpu_power_down(1);
315
af997114
BZ
316 if (soc_is_exynos3250())
317 pmu_raw_writel(0, S5P_PMU_SPARE2);
318
712eddf7
BZ
319 ret = cpu_suspend(0, exynos_wfi_finisher);
320
321 cpu_pm_exit();
322
323cpu1_aborted:
324 dsb();
325 /*
326 * Notify cpu 0 that cpu 1 is awake
327 */
328 atomic_set(&cpu1_wakeup, 1);
329
330 return ret;
331}
332
333static void exynos_pre_enter_aftr(void)
334{
af997114
BZ
335 unsigned long boot_addr = virt_to_phys(exynos_cpu_resume);
336
337 (void)exynos_set_boot_addr(1, boot_addr);
712eddf7
BZ
338}
339
340static void exynos_post_enter_aftr(void)
341{
342 atomic_set(&cpu1_wakeup, 0);
343}
344
345struct cpuidle_exynos_data cpuidle_coupled_exynos_data = {
346 .cpu0_enter_aftr = exynos_cpu0_enter_aftr,
347 .cpu1_powerdown = exynos_cpu1_powerdown,
348 .pre_enter_aftr = exynos_pre_enter_aftr,
349 .post_enter_aftr = exynos_post_enter_aftr,
350};
cfdda353 351#endif /* CONFIG_SMP && CONFIG_ARM_EXYNOS_CPUIDLE */
This page took 0.240855 seconds and 5 git commands to generate.