Merge branch 'for-3.17/drivers' of git://git.kernel.dk/linux-block
[deliverable/linux.git] / arch / arm / mach-exynos / pm.c
CommitLineData
c9347101
JL
1/*
2 * Copyright (c) 2011-2012 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>
bb072c3c 18#include <linux/syscore_ops.h>
85f9f908 19#include <linux/cpu_pm.h>
1663895c 20#include <linux/io.h>
dd8ac696 21#include <linux/irqchip/arm-gic.h>
56c03d91
JL
22#include <linux/err.h>
23#include <linux/clk.h>
1663895c
JL
24
25#include <asm/cacheflush.h>
26#include <asm/hardware/cache-l2x0.h>
63b870f1 27#include <asm/smp_scu.h>
d710aa31 28#include <asm/suspend.h>
1663895c 29
d710aa31 30#include <plat/pm-common.h>
b93cb91b 31#include <plat/regs-srom.h>
1663895c 32
9c9239af 33#include <mach/map.h>
ccd458c1
KK
34
35#include "common.h"
65c9a853 36#include "regs-pmu.h"
318fd20b 37#include "regs-sys.h"
1663895c 38
dd8ac696
TF
39/**
40 * struct exynos_wkup_irq - Exynos GIC to PMU IRQ mapping
41 * @hwirq: Hardware IRQ signal of the GIC
42 * @mask: Mask in PMU wake-up mask register
43 */
44struct exynos_wkup_irq {
45 unsigned int hwirq;
46 u32 mask;
47};
48
86ffb0e8
AK
49static struct sleep_save exynos5_sys_save[] = {
50 SAVE_ITEM(EXYNOS5_SYS_I2C_CFG),
51};
52
c9347101 53static struct sleep_save exynos_core_save[] = {
b93cb91b
MH
54 /* SROM side */
55 SAVE_ITEM(S5P_SROM_BW),
56 SAVE_ITEM(S5P_SROM_BC0),
57 SAVE_ITEM(S5P_SROM_BC1),
58 SAVE_ITEM(S5P_SROM_BC2),
59 SAVE_ITEM(S5P_SROM_BC3),
1663895c
JL
60};
61
dd8ac696
TF
62/*
63 * GIC wake-up support
64 */
65
d710aa31 66static u32 exynos_irqwake_intmask = 0xffffffff;
1663895c 67
dd8ac696
TF
68static const struct exynos_wkup_irq exynos4_wkup_irq[] = {
69 { 76, BIT(1) }, /* RTC alarm */
70 { 77, BIT(2) }, /* RTC tick */
71 { /* sentinel */ },
72};
73
74static const struct exynos_wkup_irq exynos5250_wkup_irq[] = {
75 { 75, BIT(1) }, /* RTC alarm */
76 { 76, BIT(2) }, /* RTC tick */
77 { /* sentinel */ },
78};
79
80static int exynos_irq_set_wake(struct irq_data *data, unsigned int state)
81{
82 const struct exynos_wkup_irq *wkup_irq;
83
84 if (soc_is_exynos5250())
85 wkup_irq = exynos5250_wkup_irq;
86 else
87 wkup_irq = exynos4_wkup_irq;
88
89 while (wkup_irq->mask) {
90 if (wkup_irq->hwirq == data->hwirq) {
91 if (!state)
92 exynos_irqwake_intmask |= wkup_irq->mask;
93 else
94 exynos_irqwake_intmask &= ~wkup_irq->mask;
95 return 0;
96 }
97 ++wkup_irq;
98 }
99
100 return -ENOENT;
101}
102
3681bafe 103#define EXYNOS_BOOT_VECTOR_ADDR (samsung_rev() == EXYNOS4210_REV_1_1 ? \
2e94ac42
PD
104 pmu_base_addr + S5P_INFORM7 : \
105 (samsung_rev() == EXYNOS4210_REV_1_0 ? \
106 (sysram_base_addr + 0x24) : \
107 pmu_base_addr + S5P_INFORM0))
3681bafe 108#define EXYNOS_BOOT_VECTOR_FLAG (samsung_rev() == EXYNOS4210_REV_1_1 ? \
2e94ac42
PD
109 pmu_base_addr + S5P_INFORM6 : \
110 (samsung_rev() == EXYNOS4210_REV_1_0 ? \
111 (sysram_base_addr + 0x20) : \
112 pmu_base_addr + S5P_INFORM1))
3681bafe 113
e30b154b
DL
114#define S5P_CHECK_AFTR 0xFCBA0D10
115#define S5P_CHECK_SLEEP 0x00000BAD
3681bafe 116
f4ba4b01
JL
117/* For Cortex-A9 Diagnostic and Power control register */
118static unsigned int save_arm_register[2];
119
309e08c4
DL
120static void exynos_cpu_save_register(void)
121{
122 unsigned long tmp;
123
124 /* Save Power control register */
125 asm ("mrc p15, 0, %0, c15, c0, 0"
126 : "=r" (tmp) : : "cc");
127
128 save_arm_register[0] = tmp;
129
130 /* Save Diagnostic register */
131 asm ("mrc p15, 0, %0, c15, c0, 1"
132 : "=r" (tmp) : : "cc");
133
134 save_arm_register[1] = tmp;
135}
136
137static void exynos_cpu_restore_register(void)
138{
139 unsigned long tmp;
140
141 /* Restore Power control register */
142 tmp = save_arm_register[0];
143
144 asm volatile ("mcr p15, 0, %0, c15, c0, 0"
145 : : "r" (tmp)
146 : "cc");
147
148 /* Restore Diagnostic register */
149 tmp = save_arm_register[1];
150
151 asm volatile ("mcr p15, 0, %0, c15, c0, 1"
152 : : "r" (tmp)
153 : "cc");
154}
155
01601b34
TF
156static void exynos_pm_central_suspend(void)
157{
158 unsigned long tmp;
159
160 /* Setting Central Sequence Register for power down mode */
161 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
162 tmp &= ~S5P_CENTRAL_LOWPWR_CFG;
163 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
164}
165
166static int exynos_pm_central_resume(void)
167{
168 unsigned long tmp;
169
170 /*
171 * If PMU failed while entering sleep mode, WFI will be
172 * ignored by PMU and then exiting cpu_do_idle().
173 * S5P_CENTRAL_LOWPWR_CFG bit will not be set automatically
174 * in this situation.
175 */
176 tmp = pmu_raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
177 if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
178 tmp |= S5P_CENTRAL_LOWPWR_CFG;
179 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
180 /* clear the wakeup state register */
181 pmu_raw_writel(0x0, S5P_WAKEUP_STAT);
182 /* No need to perform below restore code */
183 return -1;
184 }
185
186 return 0;
187}
188
189/* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
190static void exynos_set_wakeupmask(long mask)
191{
192 pmu_raw_writel(mask, S5P_WAKEUP_MASK);
193}
194
195static void exynos_cpu_set_boot_vector(long flags)
196{
197 __raw_writel(virt_to_phys(exynos_cpu_resume), EXYNOS_BOOT_VECTOR_ADDR);
198 __raw_writel(flags, EXYNOS_BOOT_VECTOR_FLAG);
199}
200
201static int exynos_aftr_finisher(unsigned long flags)
202{
203 exynos_set_wakeupmask(0x0000ff3e);
204 exynos_cpu_set_boot_vector(S5P_CHECK_AFTR);
205 /* Set value of power down register for aftr mode */
206 exynos_sys_powerdown_conf(SYS_AFTR);
207 cpu_do_idle();
208
209 return 1;
210}
211
212void exynos_enter_aftr(void)
213{
214 cpu_pm_enter();
215
216 exynos_pm_central_suspend();
217 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
218 exynos_cpu_save_register();
219
220 cpu_suspend(0, exynos_aftr_finisher);
221
222 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) {
223 scu_enable(S5P_VA_SCU);
224 exynos_cpu_restore_register();
225 }
226
227 exynos_pm_central_resume();
228
229 cpu_pm_exit();
230}
231
c9347101 232static int exynos_cpu_suspend(unsigned long arg)
1663895c 233{
60e49ca6 234#ifdef CONFIG_CACHE_L2X0
1663895c 235 outer_flush_all();
60e49ca6 236#endif
1663895c 237
573e5bbe
AK
238 if (soc_is_exynos5250())
239 flush_cache_all();
240
1663895c
JL
241 /* issue the standby signal into the pm unit. */
242 cpu_do_idle();
243
d3fcacf5
AK
244 pr_info("Failed to suspend the system\n");
245 return 1; /* Aborting suspend */
1663895c
JL
246}
247
c9347101 248static void exynos_pm_prepare(void)
1663895c 249{
60e49ca6 250 unsigned int tmp;
1663895c 251
d710aa31 252 /* Set wake-up mask registers */
2e94ac42
PD
253 pmu_raw_writel(exynos_get_eint_wake_mask(), S5P_EINT_WAKEUP_MASK);
254 pmu_raw_writel(exynos_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK);
d710aa31 255
c9347101 256 s3c_pm_do_save(exynos_core_save, ARRAY_SIZE(exynos_core_save));
1663895c 257
e11d919e 258 if (soc_is_exynos5250()) {
86ffb0e8 259 s3c_pm_do_save(exynos5_sys_save, ARRAY_SIZE(exynos5_sys_save));
60e49ca6 260 /* Disable USE_RETENTION of JPEG_MEM_OPTION */
2e94ac42 261 tmp = pmu_raw_readl(EXYNOS5_JPEG_MEM_OPTION);
60e49ca6 262 tmp &= ~EXYNOS5_OPTION_USE_RETENTION;
2e94ac42 263 pmu_raw_writel(tmp, EXYNOS5_JPEG_MEM_OPTION);
60e49ca6 264 }
1663895c
JL
265
266 /* Set value of power down register for sleep mode */
267
7d44d2ba 268 exynos_sys_powerdown_conf(SYS_SLEEP);
2e94ac42 269 pmu_raw_writel(S5P_CHECK_SLEEP, S5P_INFORM1);
1663895c
JL
270
271 /* ensure at least INFORM0 has the resume address */
272
2e94ac42 273 pmu_raw_writel(virt_to_phys(exynos_cpu_resume), S5P_INFORM0);
1663895c
JL
274}
275
0ebc13e2
DL
276static int exynos_pm_suspend(void)
277{
278 unsigned long tmp;
279
280 exynos_pm_central_suspend();
12974e9f 281
60e49ca6 282 /* Setting SEQ_OPTION register */
00a351f2 283
60e49ca6 284 tmp = (S5P_USE_STANDBY_WFI0 | S5P_USE_STANDBY_WFE0);
2e94ac42 285 pmu_raw_writel(tmp, S5P_CENTRAL_SEQ_OPTION);
f4ba4b01 286
af040ffc 287 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
309e08c4 288 exynos_cpu_save_register();
f4ba4b01 289
12974e9f
JL
290 return 0;
291}
292
0ebc13e2
DL
293static void exynos_pm_resume(void)
294{
295 if (exynos_pm_central_resume())
296 goto early_wakeup;
297
af040ffc 298 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
309e08c4 299 exynos_cpu_restore_register();
e240ab1c 300
1663895c
JL
301 /* For release retention */
302
2e94ac42
PD
303 pmu_raw_writel((1 << 28), S5P_PAD_RET_MAUDIO_OPTION);
304 pmu_raw_writel((1 << 28), S5P_PAD_RET_GPIO_OPTION);
305 pmu_raw_writel((1 << 28), S5P_PAD_RET_UART_OPTION);
306 pmu_raw_writel((1 << 28), S5P_PAD_RET_MMCA_OPTION);
307 pmu_raw_writel((1 << 28), S5P_PAD_RET_MMCB_OPTION);
308 pmu_raw_writel((1 << 28), S5P_PAD_RET_EBIA_OPTION);
309 pmu_raw_writel((1 << 28), S5P_PAD_RET_EBIB_OPTION);
1663895c 310
86ffb0e8
AK
311 if (soc_is_exynos5250())
312 s3c_pm_do_restore(exynos5_sys_save,
313 ARRAY_SIZE(exynos5_sys_save));
314
c9347101 315 s3c_pm_do_restore_core(exynos_core_save, ARRAY_SIZE(exynos_core_save));
1663895c 316
af040ffc 317 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
60e49ca6 318 scu_enable(S5P_VA_SCU);
1663895c 319
e240ab1c 320early_wakeup:
ebee8541
IS
321
322 /* Clear SLEEP mode set in INFORM1 */
2e94ac42 323 pmu_raw_writel(0x0, S5P_INFORM1);
ebee8541 324
e240ab1c 325 return;
1663895c
JL
326}
327
c9347101
JL
328static struct syscore_ops exynos_pm_syscore_ops = {
329 .suspend = exynos_pm_suspend,
330 .resume = exynos_pm_resume,
1663895c
JL
331};
332
d710aa31
TF
333/*
334 * Suspend Ops
335 */
336
337static int exynos_suspend_enter(suspend_state_t state)
1663895c 338{
d710aa31
TF
339 int ret;
340
341 s3c_pm_debug_init();
342
343 S3C_PMDBG("%s: suspending the system...\n", __func__);
344
345 S3C_PMDBG("%s: wakeup masks: %08x,%08x\n", __func__,
346 exynos_irqwake_intmask, exynos_get_eint_wake_mask());
559ba237 347
d710aa31
TF
348 if (exynos_irqwake_intmask == -1U
349 && exynos_get_eint_wake_mask() == -1U) {
350 pr_err("%s: No wake-up sources!\n", __func__);
351 pr_err("%s: Aborting sleep\n", __func__);
352 return -EINVAL;
353 }
354
355 s3c_pm_save_uarts();
356 exynos_pm_prepare();
357 flush_cache_all();
358 s3c_pm_check_store();
359
360 ret = cpu_suspend(0, exynos_cpu_suspend);
361 if (ret)
362 return ret;
363
364 s3c_pm_restore_uarts();
559ba237 365
d710aa31 366 S3C_PMDBG("%s: wakeup stat: %08x\n", __func__,
2e94ac42 367 pmu_raw_readl(S5P_WAKEUP_STAT));
d710aa31
TF
368
369 s3c_pm_check_restore();
370
371 S3C_PMDBG("%s: resuming the system...\n", __func__);
372
373 return 0;
374}
375
376static int exynos_suspend_prepare(void)
377{
378 s3c_pm_check_prepare();
379
380 return 0;
381}
382
383static void exynos_suspend_finish(void)
384{
385 s3c_pm_check_cleanup();
386}
387
388static const struct platform_suspend_ops exynos_suspend_ops = {
389 .enter = exynos_suspend_enter,
390 .prepare = exynos_suspend_prepare,
391 .finish = exynos_suspend_finish,
392 .valid = suspend_valid_only_mem,
393};
394
395void __init exynos_pm_init(void)
396{
397 u32 tmp;
559ba237 398
dd8ac696
TF
399 /* Platform-specific GIC callback */
400 gic_arch_extn.irq_set_wake = exynos_irq_set_wake;
401
559ba237 402 /* All wakeup disable */
2e94ac42 403 tmp = pmu_raw_readl(S5P_WAKEUP_MASK);
559ba237 404 tmp |= ((0xFF << 8) | (0x1F << 1));
2e94ac42 405 pmu_raw_writel(tmp, S5P_WAKEUP_MASK);
e085cad6 406
c9347101 407 register_syscore_ops(&exynos_pm_syscore_ops);
d710aa31 408 suspend_set_ops(&exynos_suspend_ops);
1663895c 409}
This page took 0.221459 seconds and 5 git commands to generate.