USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / mach-exynos / pm.c
blobdc4346ecf16d33e2402921a7efb8fce629de1a4c
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
4 // http://www.samsung.com
5 //
6 // EXYNOS - Power Management support
7 //
8 // Based on arch/arm/mach-s3c2410/pm.c
9 // Copyright (c) 2006 Simtec Electronics
10 // Ben Dooks <ben@simtec.co.uk>
12 #include <linux/init.h>
13 #include <linux/suspend.h>
14 #include <linux/cpu_pm.h>
15 #include <linux/io.h>
16 #include <linux/of.h>
17 #include <linux/soc/samsung/exynos-regs-pmu.h>
18 #include <linux/soc/samsung/exynos-pmu.h>
20 #include <asm/firmware.h>
21 #include <asm/smp_scu.h>
22 #include <asm/suspend.h>
23 #include <asm/cacheflush.h>
25 #include <mach/map.h>
27 #include "common.h"
29 static inline void __iomem *exynos_boot_vector_addr(void)
31 if (samsung_rev() == EXYNOS4210_REV_1_1)
32 return pmu_base_addr + S5P_INFORM7;
33 else if (samsung_rev() == EXYNOS4210_REV_1_0)
34 return sysram_base_addr + 0x24;
35 return pmu_base_addr + S5P_INFORM0;
38 static inline void __iomem *exynos_boot_vector_flag(void)
40 if (samsung_rev() == EXYNOS4210_REV_1_1)
41 return pmu_base_addr + S5P_INFORM6;
42 else if (samsung_rev() == EXYNOS4210_REV_1_0)
43 return sysram_base_addr + 0x20;
44 return pmu_base_addr + S5P_INFORM1;
47 #define S5P_CHECK_AFTR 0xFCBA0D10
49 /* For Cortex-A9 Diagnostic and Power control register */
50 static unsigned int save_arm_register[2];
52 void exynos_cpu_save_register(void)
54 unsigned long tmp;
56 /* Save Power control register */
57 asm ("mrc p15, 0, %0, c15, c0, 0"
58 : "=r" (tmp) : : "cc");
60 save_arm_register[0] = tmp;
62 /* Save Diagnostic register */
63 asm ("mrc p15, 0, %0, c15, c0, 1"
64 : "=r" (tmp) : : "cc");
66 save_arm_register[1] = tmp;
69 void exynos_cpu_restore_register(void)
71 unsigned long tmp;
73 /* Restore Power control register */
74 tmp = save_arm_register[0];
76 asm volatile ("mcr p15, 0, %0, c15, c0, 0"
77 : : "r" (tmp)
78 : "cc");
80 /* Restore Diagnostic register */
81 tmp = save_arm_register[1];
83 asm volatile ("mcr p15, 0, %0, c15, c0, 1"
84 : : "r" (tmp)
85 : "cc");
88 void exynos_pm_central_suspend(void)
90 unsigned long tmp;
92 /* Setting Central Sequence Register for power down mode */
93 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
94 tmp &= ~S5P_CENTRAL_LOWPWR_CFG;
95 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
98 int exynos_pm_central_resume(void)
100 unsigned long tmp;
103 * If PMU failed while entering sleep mode, WFI will be
104 * ignored by PMU and then exiting cpu_do_idle().
105 * S5P_CENTRAL_LOWPWR_CFG bit will not be set automatically
106 * in this situation.
108 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
109 if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
110 tmp |= S5P_CENTRAL_LOWPWR_CFG;
111 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
112 /* clear the wakeup state register */
113 pmu_raw_writel(0x0, S5P_WAKEUP_STAT);
114 /* No need to perform below restore code */
115 return -1;
118 return 0;
121 /* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
122 static void exynos_set_wakeupmask(long mask)
124 pmu_raw_writel(mask, S5P_WAKEUP_MASK);
125 if (soc_is_exynos3250())
126 pmu_raw_writel(0x0, S5P_WAKEUP_MASK2);
129 static void exynos_cpu_set_boot_vector(long flags)
131 writel_relaxed(__pa_symbol(exynos_cpu_resume),
132 exynos_boot_vector_addr());
133 writel_relaxed(flags, exynos_boot_vector_flag());
136 static int exynos_aftr_finisher(unsigned long flags)
138 int ret;
140 exynos_set_wakeupmask(soc_is_exynos3250() ? 0x40003ffe : 0x0000ff3e);
141 /* Set value of power down register for aftr mode */
142 exynos_sys_powerdown_conf(SYS_AFTR);
144 ret = call_firmware_op(do_idle, FW_DO_IDLE_AFTR);
145 if (ret == -ENOSYS) {
146 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
147 exynos_cpu_save_register();
148 exynos_cpu_set_boot_vector(S5P_CHECK_AFTR);
149 cpu_do_idle();
152 return 1;
155 void exynos_enter_aftr(void)
157 unsigned int cpuid = smp_processor_id();
159 cpu_pm_enter();
161 if (soc_is_exynos3250())
162 exynos_set_boot_flag(cpuid, C2_STATE);
164 exynos_pm_central_suspend();
166 if (of_machine_is_compatible("samsung,exynos4412")) {
167 /* Setting SEQ_OPTION register */
168 pmu_raw_writel(S5P_USE_STANDBY_WFI0 | S5P_USE_STANDBY_WFE0,
169 S5P_CENTRAL_SEQ_OPTION);
172 cpu_suspend(0, exynos_aftr_finisher);
174 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) {
175 scu_enable(S5P_VA_SCU);
176 if (call_firmware_op(resume) == -ENOSYS)
177 exynos_cpu_restore_register();
180 exynos_pm_central_resume();
182 if (soc_is_exynos3250())
183 exynos_clear_boot_flag(cpuid, C2_STATE);
185 cpu_pm_exit();
188 #if defined(CONFIG_SMP) && defined(CONFIG_ARM_EXYNOS_CPUIDLE)
189 static atomic_t cpu1_wakeup = ATOMIC_INIT(0);
191 static int exynos_cpu0_enter_aftr(void)
193 int ret = -1;
196 * If the other cpu is powered on, we have to power it off, because
197 * the AFTR state won't work otherwise
199 if (cpu_online(1)) {
201 * We reach a sync point with the coupled idle state, we know
202 * the other cpu will power down itself or will abort the
203 * sequence, let's wait for one of these to happen
205 while (exynos_cpu_power_state(1)) {
206 unsigned long boot_addr;
209 * The other cpu may skip idle and boot back
210 * up again
212 if (atomic_read(&cpu1_wakeup))
213 goto abort;
216 * The other cpu may bounce through idle and
217 * boot back up again, getting stuck in the
218 * boot rom code
220 ret = exynos_get_boot_addr(1, &boot_addr);
221 if (ret)
222 goto fail;
223 ret = -1;
224 if (boot_addr == 0)
225 goto abort;
227 cpu_relax();
231 exynos_enter_aftr();
232 ret = 0;
234 abort:
235 if (cpu_online(1)) {
236 unsigned long boot_addr = __pa_symbol(exynos_cpu_resume);
239 * Set the boot vector to something non-zero
241 ret = exynos_set_boot_addr(1, boot_addr);
242 if (ret)
243 goto fail;
244 dsb();
247 * Turn on cpu1 and wait for it to be on
249 exynos_cpu_power_up(1);
250 while (exynos_cpu_power_state(1) != S5P_CORE_LOCAL_PWR_EN)
251 cpu_relax();
253 if (soc_is_exynos3250()) {
254 while (!pmu_raw_readl(S5P_PMU_SPARE2) &&
255 !atomic_read(&cpu1_wakeup))
256 cpu_relax();
258 if (!atomic_read(&cpu1_wakeup))
259 exynos_core_restart(1);
262 while (!atomic_read(&cpu1_wakeup)) {
263 smp_rmb();
266 * Poke cpu1 out of the boot rom
269 ret = exynos_set_boot_addr(1, boot_addr);
270 if (ret)
271 goto fail;
273 call_firmware_op(cpu_boot, 1);
275 if (soc_is_exynos3250())
276 dsb_sev();
277 else
278 arch_send_wakeup_ipi_mask(cpumask_of(1));
281 fail:
282 return ret;
285 static int exynos_wfi_finisher(unsigned long flags)
287 if (soc_is_exynos3250())
288 flush_cache_all();
289 cpu_do_idle();
291 return -1;
294 static int exynos_cpu1_powerdown(void)
296 int ret = -1;
299 * Idle sequence for cpu1
301 if (cpu_pm_enter())
302 goto cpu1_aborted;
305 * Turn off cpu 1
307 exynos_cpu_power_down(1);
309 if (soc_is_exynos3250())
310 pmu_raw_writel(0, S5P_PMU_SPARE2);
312 ret = cpu_suspend(0, exynos_wfi_finisher);
314 cpu_pm_exit();
316 cpu1_aborted:
317 dsb();
319 * Notify cpu 0 that cpu 1 is awake
321 atomic_set(&cpu1_wakeup, 1);
323 return ret;
326 static void exynos_pre_enter_aftr(void)
328 unsigned long boot_addr = __pa_symbol(exynos_cpu_resume);
330 (void)exynos_set_boot_addr(1, boot_addr);
333 static void exynos_post_enter_aftr(void)
335 atomic_set(&cpu1_wakeup, 0);
338 struct cpuidle_exynos_data cpuidle_coupled_exynos_data = {
339 .cpu0_enter_aftr = exynos_cpu0_enter_aftr,
340 .cpu1_powerdown = exynos_cpu1_powerdown,
341 .pre_enter_aftr = exynos_pre_enter_aftr,
342 .post_enter_aftr = exynos_post_enter_aftr,
344 #endif /* CONFIG_SMP && CONFIG_ARM_EXYNOS_CPUIDLE */