202ca73e49c4f257e65bd201e9bf511cf979ee6f
[cascardo/linux.git] / arch / arm / mach-exynos / pm.c
1 /*
2  * Copyright (c) 2011-2012 Samsung Electronics Co., Ltd.
3  *              http://www.samsung.com
4  *
5  * EXYNOS - Power Management support
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>
18 #include <linux/syscore_ops.h>
19 #include <linux/cpu_pm.h>
20 #include <linux/io.h>
21 #include <linux/irqchip/arm-gic.h>
22 #include <linux/err.h>
23 #include <linux/clk.h>
24
25 #include <asm/cacheflush.h>
26 #include <asm/hardware/cache-l2x0.h>
27 #include <asm/smp_scu.h>
28 #include <asm/suspend.h>
29
30 #include <plat/pm-common.h>
31 #include <plat/pll.h>
32 #include <plat/regs-srom.h>
33
34 #include <mach/map.h>
35
36 #include "common.h"
37 #include "regs-pmu.h"
38
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  */
44 struct exynos_wkup_irq {
45         unsigned int hwirq;
46         u32 mask;
47 };
48
49 static struct sleep_save exynos5_sys_save[] = {
50         SAVE_ITEM(EXYNOS5_SYS_I2C_CFG),
51 };
52
53 static struct sleep_save exynos_core_save[] = {
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),
60 };
61
62 /*
63  * GIC wake-up support
64  */
65
66 static u32 exynos_irqwake_intmask = 0xffffffff;
67
68 static const struct exynos_wkup_irq exynos4_wkup_irq[] = {
69         { 76, BIT(1) }, /* RTC alarm */
70         { 77, BIT(2) }, /* RTC tick */
71         { /* sentinel */ },
72 };
73
74 static const struct exynos_wkup_irq exynos5250_wkup_irq[] = {
75         { 75, BIT(1) }, /* RTC alarm */
76         { 76, BIT(2) }, /* RTC tick */
77         { /* sentinel */ },
78 };
79
80 static 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
103 /**
104  * exynos_core_power_down : power down the specified cpu
105  * @cpu : the cpu to power down
106  *
107  * Power down the specified cpu. The sequence must be finished by a
108  * call to cpu_do_idle()
109  *
110  */
111 void exynos_cpu_power_down(int cpu)
112 {
113         __raw_writel(0, EXYNOS_ARM_CORE_CONFIGURATION(cpu));
114 }
115
116 /**
117  * exynos_cpu_power_up : power up the specified cpu
118  * @cpu : the cpu to power up
119  *
120  * Power up the specified cpu
121  */
122 void exynos_cpu_power_up(int cpu)
123 {
124         __raw_writel(S5P_CORE_LOCAL_PWR_EN,
125                      EXYNOS_ARM_CORE_CONFIGURATION(cpu));
126 }
127
128 /**
129  * exynos_cpu_power_state : returns the power state of the cpu
130  * @cpu : the cpu to retrieve the power state from
131  *
132  */
133 int exynos_cpu_power_state(int cpu)
134 {
135         return (__raw_readl(EXYNOS_ARM_CORE_STATUS(cpu)) &
136                         S5P_CORE_LOCAL_PWR_EN);
137 }
138
139 /**
140  * exynos_cluster_power_down : power down the specified cluster
141  * @cluster : the cluster to power down
142  */
143 void exynos_cluster_power_down(int cluster)
144 {
145         __raw_writel(0, EXYNOS_COMMON_CONFIGURATION(cluster));
146 }
147
148 /**
149  * exynos_cluster_power_up : power up the specified cluster
150  * @cluster : the cluster to power up
151  */
152 void exynos_cluster_power_up(int cluster)
153 {
154         __raw_writel(S5P_CORE_LOCAL_PWR_EN,
155                      EXYNOS_COMMON_CONFIGURATION(cluster));
156 }
157
158 /**
159  * exynos_cluster_power_state : returns the power state of the cluster
160  * @cluster : the cluster to retrieve the power state from
161  *
162  */
163 int exynos_cluster_power_state(int cluster)
164 {
165         return (__raw_readl(EXYNOS_COMMON_STATUS(cluster)) &
166                         S5P_CORE_LOCAL_PWR_EN);
167 }
168
169 #define EXYNOS_BOOT_VECTOR_ADDR (samsung_rev() == EXYNOS4210_REV_1_1 ? \
170                         S5P_INFORM7 : (samsung_rev() == EXYNOS4210_REV_1_0 ? \
171                         (sysram_base_addr + 0x24) : S5P_INFORM0))
172 #define EXYNOS_BOOT_VECTOR_FLAG (samsung_rev() == EXYNOS4210_REV_1_1 ? \
173                         S5P_INFORM6 : (samsung_rev() == EXYNOS4210_REV_1_0 ? \
174                         (sysram_base_addr + 0x20) : S5P_INFORM1))
175
176 #define S5P_CHECK_AFTR  0xFCBA0D10
177 #define S5P_CHECK_SLEEP 0x00000BAD
178
179 /* Ext-GIC nIRQ/nFIQ is the only wakeup source in AFTR */
180 static void exynos_set_wakeupmask(long mask)
181 {
182         __raw_writel(mask, S5P_WAKEUP_MASK);
183 }
184
185 static void exynos_cpu_set_boot_vector(long flags)
186 {
187         __raw_writel(virt_to_phys(exynos_cpu_resume), EXYNOS_BOOT_VECTOR_ADDR);
188         __raw_writel(flags, EXYNOS_BOOT_VECTOR_FLAG);
189 }
190
191 void exynos_enter_aftr(void)
192 {
193         exynos_set_wakeupmask(0x0000ff3e);
194         exynos_cpu_set_boot_vector(S5P_CHECK_AFTR);
195         /* Set value of power down register for aftr mode */
196         exynos_sys_powerdown_conf(SYS_AFTR);
197 }
198
199 /* For Cortex-A9 Diagnostic and Power control register */
200 static unsigned int save_arm_register[2];
201
202 static void exynos_cpu_save_register(void)
203 {
204         unsigned long tmp;
205
206         /* Save Power control register */
207         asm ("mrc p15, 0, %0, c15, c0, 0"
208              : "=r" (tmp) : : "cc");
209
210         save_arm_register[0] = tmp;
211
212         /* Save Diagnostic register */
213         asm ("mrc p15, 0, %0, c15, c0, 1"
214              : "=r" (tmp) : : "cc");
215
216         save_arm_register[1] = tmp;
217 }
218
219 static void exynos_cpu_restore_register(void)
220 {
221         unsigned long tmp;
222
223         /* Restore Power control register */
224         tmp = save_arm_register[0];
225
226         asm volatile ("mcr p15, 0, %0, c15, c0, 0"
227                       : : "r" (tmp)
228                       : "cc");
229
230         /* Restore Diagnostic register */
231         tmp = save_arm_register[1];
232
233         asm volatile ("mcr p15, 0, %0, c15, c0, 1"
234                       : : "r" (tmp)
235                       : "cc");
236 }
237
238 static int exynos_cpu_suspend(unsigned long arg)
239 {
240 #ifdef CONFIG_CACHE_L2X0
241         outer_flush_all();
242 #endif
243
244         if (soc_is_exynos5250())
245                 flush_cache_all();
246
247         /* issue the standby signal into the pm unit. */
248         cpu_do_idle();
249
250         pr_info("Failed to suspend the system\n");
251         return 1; /* Aborting suspend */
252 }
253
254 static void exynos_pm_prepare(void)
255 {
256         unsigned int tmp;
257
258         /* Set wake-up mask registers */
259         __raw_writel(exynos_get_eint_wake_mask(), S5P_EINT_WAKEUP_MASK);
260         __raw_writel(exynos_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK);
261
262         s3c_pm_do_save(exynos_core_save, ARRAY_SIZE(exynos_core_save));
263
264         if (soc_is_exynos5250()) {
265                 s3c_pm_do_save(exynos5_sys_save, ARRAY_SIZE(exynos5_sys_save));
266                 /* Disable USE_RETENTION of JPEG_MEM_OPTION */
267                 tmp = __raw_readl(EXYNOS5_JPEG_MEM_OPTION);
268                 tmp &= ~EXYNOS5_OPTION_USE_RETENTION;
269                 __raw_writel(tmp, EXYNOS5_JPEG_MEM_OPTION);
270         }
271
272         /* Set value of power down register for sleep mode */
273
274         exynos_sys_powerdown_conf(SYS_SLEEP);
275         __raw_writel(S5P_CHECK_SLEEP, S5P_INFORM1);
276
277         /* ensure at least INFORM0 has the resume address */
278
279         __raw_writel(virt_to_phys(exynos_cpu_resume), S5P_INFORM0);
280 }
281
282 static void exynos_pm_central_suspend(void)
283 {
284         unsigned long tmp;
285
286         /* Setting Central Sequence Register for power down mode */
287         tmp = __raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
288         tmp &= ~S5P_CENTRAL_LOWPWR_CFG;
289         __raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
290 }
291
292 static int exynos_pm_suspend(void)
293 {
294         unsigned long tmp;
295
296         exynos_pm_central_suspend();
297
298         /* Setting SEQ_OPTION register */
299
300         tmp = (S5P_USE_STANDBY_WFI0 | S5P_USE_STANDBY_WFE0);
301         __raw_writel(tmp, S5P_CENTRAL_SEQ_OPTION);
302
303         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
304                 exynos_cpu_save_register();
305
306         return 0;
307 }
308
309 static int exynos_pm_central_resume(void)
310 {
311         unsigned long tmp;
312
313         /*
314          * If PMU failed while entering sleep mode, WFI will be
315          * ignored by PMU and then exiting cpu_do_idle().
316          * S5P_CENTRAL_LOWPWR_CFG bit will not be set automatically
317          * in this situation.
318          */
319         tmp = __raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
320         if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
321                 tmp |= S5P_CENTRAL_LOWPWR_CFG;
322                 __raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
323                 /* clear the wakeup state register */
324                 __raw_writel(0x0, S5P_WAKEUP_STAT);
325                 /* No need to perform below restore code */
326                 return -1;
327         }
328
329         return 0;
330 }
331
332 static void exynos_pm_resume(void)
333 {
334         if (exynos_pm_central_resume())
335                 goto early_wakeup;
336
337         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
338                 exynos_cpu_restore_register();
339
340         /* For release retention */
341
342         __raw_writel((1 << 28), S5P_PAD_RET_MAUDIO_OPTION);
343         __raw_writel((1 << 28), S5P_PAD_RET_GPIO_OPTION);
344         __raw_writel((1 << 28), S5P_PAD_RET_UART_OPTION);
345         __raw_writel((1 << 28), S5P_PAD_RET_MMCA_OPTION);
346         __raw_writel((1 << 28), S5P_PAD_RET_MMCB_OPTION);
347         __raw_writel((1 << 28), S5P_PAD_RET_EBIA_OPTION);
348         __raw_writel((1 << 28), S5P_PAD_RET_EBIB_OPTION);
349
350         if (soc_is_exynos5250())
351                 s3c_pm_do_restore(exynos5_sys_save,
352                         ARRAY_SIZE(exynos5_sys_save));
353
354         s3c_pm_do_restore_core(exynos_core_save, ARRAY_SIZE(exynos_core_save));
355
356         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
357                 scu_enable(S5P_VA_SCU);
358
359 early_wakeup:
360
361         /* Clear SLEEP mode set in INFORM1 */
362         __raw_writel(0x0, S5P_INFORM1);
363
364         return;
365 }
366
367 static struct syscore_ops exynos_pm_syscore_ops = {
368         .suspend        = exynos_pm_suspend,
369         .resume         = exynos_pm_resume,
370 };
371
372 /*
373  * Suspend Ops
374  */
375
376 static int exynos_suspend_enter(suspend_state_t state)
377 {
378         int ret;
379
380         s3c_pm_debug_init();
381
382         S3C_PMDBG("%s: suspending the system...\n", __func__);
383
384         S3C_PMDBG("%s: wakeup masks: %08x,%08x\n", __func__,
385                         exynos_irqwake_intmask, exynos_get_eint_wake_mask());
386
387         if (exynos_irqwake_intmask == -1U
388             && exynos_get_eint_wake_mask() == -1U) {
389                 pr_err("%s: No wake-up sources!\n", __func__);
390                 pr_err("%s: Aborting sleep\n", __func__);
391                 return -EINVAL;
392         }
393
394         s3c_pm_save_uarts();
395         exynos_pm_prepare();
396         flush_cache_all();
397         s3c_pm_check_store();
398
399         ret = cpu_suspend(0, exynos_cpu_suspend);
400         if (ret)
401                 return ret;
402
403         s3c_pm_restore_uarts();
404
405         S3C_PMDBG("%s: wakeup stat: %08x\n", __func__,
406                         __raw_readl(S5P_WAKEUP_STAT));
407
408         s3c_pm_check_restore();
409
410         S3C_PMDBG("%s: resuming the system...\n", __func__);
411
412         return 0;
413 }
414
415 static int exynos_suspend_prepare(void)
416 {
417         s3c_pm_check_prepare();
418
419         return 0;
420 }
421
422 static void exynos_suspend_finish(void)
423 {
424         s3c_pm_check_cleanup();
425 }
426
427 static const struct platform_suspend_ops exynos_suspend_ops = {
428         .enter          = exynos_suspend_enter,
429         .prepare        = exynos_suspend_prepare,
430         .finish         = exynos_suspend_finish,
431         .valid          = suspend_valid_only_mem,
432 };
433
434 static int exynos_cpu_pm_notifier(struct notifier_block *self,
435                                   unsigned long cmd, void *v)
436 {
437         int cpu = smp_processor_id();
438
439         switch (cmd) {
440         case CPU_PM_ENTER:
441                 if (cpu == 0) {
442                         exynos_pm_central_suspend();
443                         if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A9)
444                                 exynos_cpu_save_register();
445                 }
446                 break;
447
448         case CPU_PM_EXIT:
449                 if (cpu == 0) {
450                         if (read_cpuid_part_number() ==
451                                         ARM_CPU_PART_CORTEX_A9) {
452                                 scu_enable(S5P_VA_SCU);
453                                 exynos_cpu_restore_register();
454                         }
455                         exynos_pm_central_resume();
456                 }
457                 break;
458         }
459
460         return NOTIFY_OK;
461 }
462
463 static struct notifier_block exynos_cpu_pm_notifier_block = {
464         .notifier_call = exynos_cpu_pm_notifier,
465 };
466
467 void __init exynos_pm_init(void)
468 {
469         u32 tmp;
470
471         cpu_pm_register_notifier(&exynos_cpu_pm_notifier_block);
472
473         /* Platform-specific GIC callback */
474         gic_arch_extn.irq_set_wake = exynos_irq_set_wake;
475
476         /* All wakeup disable */
477         tmp = __raw_readl(S5P_WAKEUP_MASK);
478         tmp |= ((0xFF << 8) | (0x1F << 1));
479         __raw_writel(tmp, S5P_WAKEUP_MASK);
480
481         register_syscore_ops(&exynos_pm_syscore_ops);
482         suspend_set_ops(&exynos_suspend_ops);
483 }