2 * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * EXYNOS - Suspend support
7 * Based on arch/arm/mach-s3c2410/pm.c
8 * Copyright (c) 2006 Simtec Electronics
9 * Ben Dooks <ben@simtec.co.uk>
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.
16 #include <linux/init.h>
17 #include <linux/suspend.h>
18 #include <linux/syscore_ops.h>
19 #include <linux/cpu_pm.h>
21 #include <linux/irq.h>
22 #include <linux/irqdomain.h>
23 #include <linux/of_address.h>
24 #include <linux/err.h>
25 #include <linux/regulator/machine.h>
27 #include <asm/cacheflush.h>
28 #include <asm/hardware/cache-l2x0.h>
29 #include <asm/firmware.h>
31 #include <asm/smp_scu.h>
32 #include <asm/suspend.h>
34 #include <plat/pm-common.h>
35 #include <plat/regs-srom.h>
39 #include "exynos-pmu.h"
41 #define S5P_CHECK_SLEEP 0x00000BAD
43 #define REG_TABLE_END (-1U)
45 #define EXYNOS5420_CPU_STATE 0x28
48 * struct exynos_wkup_irq - PMU IRQ to mask mapping
49 * @hwirq: Hardware IRQ signal of the PMU
50 * @mask: Mask in PMU wake-up mask register
52 struct exynos_wkup_irq
{
57 static struct sleep_save exynos_core_save
[] = {
59 SAVE_ITEM(S5P_SROM_BW
),
60 SAVE_ITEM(S5P_SROM_BC0
),
61 SAVE_ITEM(S5P_SROM_BC1
),
62 SAVE_ITEM(S5P_SROM_BC2
),
63 SAVE_ITEM(S5P_SROM_BC3
),
66 struct exynos_pm_data
{
67 const struct exynos_wkup_irq
*wkup_irq
;
68 unsigned int wake_disable_mask
;
69 unsigned int *release_ret_regs
;
71 void (*pm_prepare
)(void);
72 void (*pm_resume_prepare
)(void);
73 void (*pm_resume
)(void);
74 int (*pm_suspend
)(void);
75 int (*cpu_suspend
)(unsigned long);
78 static const struct exynos_pm_data
*pm_data
;
80 static int exynos5420_cpu_state
;
81 static unsigned int exynos_pmu_spare3
;
87 static u32 exynos_irqwake_intmask
= 0xffffffff;
89 static const struct exynos_wkup_irq exynos3250_wkup_irq
[] = {
90 { 73, BIT(1) }, /* RTC alarm */
91 { 74, BIT(2) }, /* RTC tick */
95 static const struct exynos_wkup_irq exynos4_wkup_irq
[] = {
96 { 44, BIT(1) }, /* RTC alarm */
97 { 45, BIT(2) }, /* RTC tick */
101 static const struct exynos_wkup_irq exynos5250_wkup_irq
[] = {
102 { 43, BIT(1) }, /* RTC alarm */
103 { 44, BIT(2) }, /* RTC tick */
107 static unsigned int exynos_release_ret_regs
[] = {
108 S5P_PAD_RET_MAUDIO_OPTION
,
109 S5P_PAD_RET_GPIO_OPTION
,
110 S5P_PAD_RET_UART_OPTION
,
111 S5P_PAD_RET_MMCA_OPTION
,
112 S5P_PAD_RET_MMCB_OPTION
,
113 S5P_PAD_RET_EBIA_OPTION
,
114 S5P_PAD_RET_EBIB_OPTION
,
118 static unsigned int exynos3250_release_ret_regs
[] = {
119 S5P_PAD_RET_MAUDIO_OPTION
,
120 S5P_PAD_RET_GPIO_OPTION
,
121 S5P_PAD_RET_UART_OPTION
,
122 S5P_PAD_RET_MMCA_OPTION
,
123 S5P_PAD_RET_MMCB_OPTION
,
124 S5P_PAD_RET_EBIA_OPTION
,
125 S5P_PAD_RET_EBIB_OPTION
,
126 S5P_PAD_RET_MMC2_OPTION
,
127 S5P_PAD_RET_SPI_OPTION
,
131 static unsigned int exynos5420_release_ret_regs
[] = {
132 EXYNOS_PAD_RET_DRAM_OPTION
,
133 EXYNOS_PAD_RET_MAUDIO_OPTION
,
134 EXYNOS_PAD_RET_JTAG_OPTION
,
135 EXYNOS5420_PAD_RET_GPIO_OPTION
,
136 EXYNOS5420_PAD_RET_UART_OPTION
,
137 EXYNOS5420_PAD_RET_MMCA_OPTION
,
138 EXYNOS5420_PAD_RET_MMCB_OPTION
,
139 EXYNOS5420_PAD_RET_MMCC_OPTION
,
140 EXYNOS5420_PAD_RET_HSI_OPTION
,
141 EXYNOS_PAD_RET_EBIA_OPTION
,
142 EXYNOS_PAD_RET_EBIB_OPTION
,
143 EXYNOS5420_PAD_RET_SPI_OPTION
,
144 EXYNOS5420_PAD_RET_DRAM_COREBLK_OPTION
,
148 static int exynos_irq_set_wake(struct irq_data
*data
, unsigned int state
)
150 const struct exynos_wkup_irq
*wkup_irq
;
152 if (!pm_data
->wkup_irq
)
154 wkup_irq
= pm_data
->wkup_irq
;
156 while (wkup_irq
->mask
) {
157 if (wkup_irq
->hwirq
== data
->hwirq
) {
159 exynos_irqwake_intmask
|= wkup_irq
->mask
;
161 exynos_irqwake_intmask
&= ~wkup_irq
->mask
;
170 static struct irq_chip exynos_pmu_chip
= {
172 .irq_eoi
= irq_chip_eoi_parent
,
173 .irq_mask
= irq_chip_mask_parent
,
174 .irq_unmask
= irq_chip_unmask_parent
,
175 .irq_retrigger
= irq_chip_retrigger_hierarchy
,
176 .irq_set_wake
= exynos_irq_set_wake
,
178 .irq_set_affinity
= irq_chip_set_affinity_parent
,
182 static int exynos_pmu_domain_xlate(struct irq_domain
*domain
,
183 struct device_node
*controller
,
185 unsigned int intsize
,
186 unsigned long *out_hwirq
,
187 unsigned int *out_type
)
189 if (domain
->of_node
!= controller
)
190 return -EINVAL
; /* Shouldn't happen, really... */
192 return -EINVAL
; /* Not GIC compliant */
194 return -EINVAL
; /* No PPI should point to this domain */
196 *out_hwirq
= intspec
[1];
197 *out_type
= intspec
[2];
201 static int exynos_pmu_domain_alloc(struct irq_domain
*domain
,
203 unsigned int nr_irqs
, void *data
)
205 struct of_phandle_args
*args
= data
;
206 struct of_phandle_args parent_args
;
207 irq_hw_number_t hwirq
;
210 if (args
->args_count
!= 3)
211 return -EINVAL
; /* Not GIC compliant */
212 if (args
->args
[0] != 0)
213 return -EINVAL
; /* No PPI should point to this domain */
215 hwirq
= args
->args
[1];
217 for (i
= 0; i
< nr_irqs
; i
++)
218 irq_domain_set_hwirq_and_chip(domain
, virq
+ i
, hwirq
+ i
,
219 &exynos_pmu_chip
, NULL
);
222 parent_args
.np
= domain
->parent
->of_node
;
223 return irq_domain_alloc_irqs_parent(domain
, virq
, nr_irqs
, &parent_args
);
226 static const struct irq_domain_ops exynos_pmu_domain_ops
= {
227 .xlate
= exynos_pmu_domain_xlate
,
228 .alloc
= exynos_pmu_domain_alloc
,
229 .free
= irq_domain_free_irqs_common
,
232 static int __init
exynos_pmu_irq_init(struct device_node
*node
,
233 struct device_node
*parent
)
235 struct irq_domain
*parent_domain
, *domain
;
238 pr_err("%s: no parent, giving up\n", node
->full_name
);
242 parent_domain
= irq_find_host(parent
);
243 if (!parent_domain
) {
244 pr_err("%s: unable to obtain parent domain\n", node
->full_name
);
248 pmu_base_addr
= of_iomap(node
, 0);
250 if (!pmu_base_addr
) {
251 pr_err("%s: failed to find exynos pmu register\n",
256 domain
= irq_domain_add_hierarchy(parent_domain
, 0, 0,
257 node
, &exynos_pmu_domain_ops
,
260 iounmap(pmu_base_addr
);
267 #define EXYNOS_PMU_IRQ(symbol, name) OF_DECLARE_2(irqchip, symbol, name, exynos_pmu_irq_init)
269 EXYNOS_PMU_IRQ(exynos3250_pmu_irq
, "samsung,exynos3250-pmu");
270 EXYNOS_PMU_IRQ(exynos4210_pmu_irq
, "samsung,exynos4210-pmu");
271 EXYNOS_PMU_IRQ(exynos4212_pmu_irq
, "samsung,exynos4212-pmu");
272 EXYNOS_PMU_IRQ(exynos4412_pmu_irq
, "samsung,exynos4412-pmu");
273 EXYNOS_PMU_IRQ(exynos4415_pmu_irq
, "samsung,exynos4415-pmu");
274 EXYNOS_PMU_IRQ(exynos5250_pmu_irq
, "samsung,exynos5250-pmu");
275 EXYNOS_PMU_IRQ(exynos5420_pmu_irq
, "samsung,exynos5420-pmu");
277 static int exynos_cpu_do_idle(void)
279 /* issue the standby signal into the pm unit. */
282 pr_info("Failed to suspend the system\n");
283 return 1; /* Aborting suspend */
285 static void exynos_flush_cache_all(void)
291 static int exynos_cpu_suspend(unsigned long arg
)
293 exynos_flush_cache_all();
294 return exynos_cpu_do_idle();
297 static int exynos3250_cpu_suspend(unsigned long arg
)
300 return exynos_cpu_do_idle();
303 static int exynos5420_cpu_suspend(unsigned long arg
)
305 /* MCPM works with HW CPU identifiers */
306 unsigned int mpidr
= read_cpuid_mpidr();
307 unsigned int cluster
= MPIDR_AFFINITY_LEVEL(mpidr
, 1);
308 unsigned int cpu
= MPIDR_AFFINITY_LEVEL(mpidr
, 0);
310 __raw_writel(0x0, sysram_base_addr
+ EXYNOS5420_CPU_STATE
);
312 if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM
)) {
313 mcpm_set_entry_vector(cpu
, cluster
, exynos_cpu_resume
);
317 pr_info("Failed to suspend the system\n");
319 /* return value != 0 means failure */
323 static void exynos_pm_set_wakeup_mask(void)
325 /* Set wake-up mask registers */
326 pmu_raw_writel(exynos_get_eint_wake_mask(), S5P_EINT_WAKEUP_MASK
);
327 pmu_raw_writel(exynos_irqwake_intmask
& ~(1 << 31), S5P_WAKEUP_MASK
);
330 static void exynos_pm_enter_sleep_mode(void)
332 /* Set value of power down register for sleep mode */
333 exynos_sys_powerdown_conf(SYS_SLEEP
);
334 pmu_raw_writel(S5P_CHECK_SLEEP
, S5P_INFORM1
);
337 static void exynos_pm_prepare(void)
339 exynos_set_delayed_reset_assertion(false);
341 /* Set wake-up mask registers */
342 exynos_pm_set_wakeup_mask();
344 s3c_pm_do_save(exynos_core_save
, ARRAY_SIZE(exynos_core_save
));
346 exynos_pm_enter_sleep_mode();
348 /* ensure at least INFORM0 has the resume address */
349 pmu_raw_writel(virt_to_phys(exynos_cpu_resume
), S5P_INFORM0
);
352 static void exynos3250_pm_prepare(void)
356 /* Set wake-up mask registers */
357 exynos_pm_set_wakeup_mask();
359 tmp
= pmu_raw_readl(EXYNOS3_ARM_L2_OPTION
);
360 tmp
&= ~EXYNOS5_OPTION_USE_RETENTION
;
361 pmu_raw_writel(tmp
, EXYNOS3_ARM_L2_OPTION
);
363 exynos_pm_enter_sleep_mode();
365 /* ensure at least INFORM0 has the resume address */
366 pmu_raw_writel(virt_to_phys(exynos_cpu_resume
), S5P_INFORM0
);
369 static void exynos5420_pm_prepare(void)
373 /* Set wake-up mask registers */
374 exynos_pm_set_wakeup_mask();
376 s3c_pm_do_save(exynos_core_save
, ARRAY_SIZE(exynos_core_save
));
378 exynos_pmu_spare3
= pmu_raw_readl(S5P_PMU_SPARE3
);
380 * The cpu state needs to be saved and restored so that the
381 * secondary CPUs will enter low power start. Though the U-Boot
382 * is setting the cpu state with low power flag, the kernel
383 * needs to restore it back in case, the primary cpu fails to
384 * suspend for any reason.
386 exynos5420_cpu_state
= __raw_readl(sysram_base_addr
+
387 EXYNOS5420_CPU_STATE
);
389 exynos_pm_enter_sleep_mode();
391 /* ensure at least INFORM0 has the resume address */
392 if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM
))
393 pmu_raw_writel(virt_to_phys(mcpm_entry_point
), S5P_INFORM0
);
395 tmp
= pmu_raw_readl(EXYNOS5_ARM_L2_OPTION
);
396 tmp
&= ~EXYNOS5_USE_RETENTION
;
397 pmu_raw_writel(tmp
, EXYNOS5_ARM_L2_OPTION
);
399 tmp
= pmu_raw_readl(EXYNOS5420_SFR_AXI_CGDIS1
);
400 tmp
|= EXYNOS5420_UFS
;
401 pmu_raw_writel(tmp
, EXYNOS5420_SFR_AXI_CGDIS1
);
403 tmp
= pmu_raw_readl(EXYNOS5420_ARM_COMMON_OPTION
);
404 tmp
&= ~EXYNOS5420_L2RSTDISABLE_VALUE
;
405 pmu_raw_writel(tmp
, EXYNOS5420_ARM_COMMON_OPTION
);
407 tmp
= pmu_raw_readl(EXYNOS5420_FSYS2_OPTION
);
408 tmp
|= EXYNOS5420_EMULATION
;
409 pmu_raw_writel(tmp
, EXYNOS5420_FSYS2_OPTION
);
411 tmp
= pmu_raw_readl(EXYNOS5420_PSGEN_OPTION
);
412 tmp
|= EXYNOS5420_EMULATION
;
413 pmu_raw_writel(tmp
, EXYNOS5420_PSGEN_OPTION
);
417 static int exynos_pm_suspend(void)
419 exynos_pm_central_suspend();
421 /* Setting SEQ_OPTION register */
422 pmu_raw_writel(S5P_USE_STANDBY_WFI0
| S5P_USE_STANDBY_WFE0
,
423 S5P_CENTRAL_SEQ_OPTION
);
425 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9
)
426 exynos_cpu_save_register();
431 static int exynos5420_pm_suspend(void)
435 exynos_pm_central_suspend();
437 /* Setting SEQ_OPTION register */
439 this_cluster
= MPIDR_AFFINITY_LEVEL(read_cpuid_mpidr(), 1);
441 pmu_raw_writel(EXYNOS5420_ARM_USE_STANDBY_WFI0
,
442 S5P_CENTRAL_SEQ_OPTION
);
444 pmu_raw_writel(EXYNOS5420_KFC_USE_STANDBY_WFI0
,
445 S5P_CENTRAL_SEQ_OPTION
);
449 static void exynos_pm_release_retention(void)
453 for (i
= 0; (pm_data
->release_ret_regs
[i
] != REG_TABLE_END
); i
++)
454 pmu_raw_writel(EXYNOS_WAKEUP_FROM_LOWPWR
,
455 pm_data
->release_ret_regs
[i
]);
458 static void exynos_pm_resume(void)
460 u32 cpuid
= read_cpuid_part();
462 if (exynos_pm_central_resume())
465 /* For release retention */
466 exynos_pm_release_retention();
468 s3c_pm_do_restore_core(exynos_core_save
, ARRAY_SIZE(exynos_core_save
));
470 if (cpuid
== ARM_CPU_PART_CORTEX_A9
)
471 scu_enable(S5P_VA_SCU
);
473 if (call_firmware_op(resume
) == -ENOSYS
474 && cpuid
== ARM_CPU_PART_CORTEX_A9
)
475 exynos_cpu_restore_register();
479 /* Clear SLEEP mode set in INFORM1 */
480 pmu_raw_writel(0x0, S5P_INFORM1
);
481 exynos_set_delayed_reset_assertion(true);
484 static void exynos3250_pm_resume(void)
486 u32 cpuid
= read_cpuid_part();
488 if (exynos_pm_central_resume())
491 /* For release retention */
492 exynos_pm_release_retention();
494 pmu_raw_writel(S5P_USE_STANDBY_WFI_ALL
, S5P_CENTRAL_SEQ_OPTION
);
496 if (call_firmware_op(resume
) == -ENOSYS
497 && cpuid
== ARM_CPU_PART_CORTEX_A9
)
498 exynos_cpu_restore_register();
502 /* Clear SLEEP mode set in INFORM1 */
503 pmu_raw_writel(0x0, S5P_INFORM1
);
506 static void exynos5420_prepare_pm_resume(void)
508 if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM
))
509 WARN_ON(mcpm_cpu_powered_up());
512 static void exynos5420_pm_resume(void)
516 /* Restore the CPU0 low power state register */
517 tmp
= pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG
);
518 pmu_raw_writel(tmp
| S5P_CORE_LOCAL_PWR_EN
,
519 EXYNOS5_ARM_CORE0_SYS_PWR_REG
);
521 /* Restore the sysram cpu state register */
522 __raw_writel(exynos5420_cpu_state
,
523 sysram_base_addr
+ EXYNOS5420_CPU_STATE
);
525 pmu_raw_writel(EXYNOS5420_USE_STANDBY_WFI_ALL
,
526 S5P_CENTRAL_SEQ_OPTION
);
528 if (exynos_pm_central_resume())
531 /* For release retention */
532 exynos_pm_release_retention();
534 pmu_raw_writel(exynos_pmu_spare3
, S5P_PMU_SPARE3
);
536 s3c_pm_do_restore_core(exynos_core_save
, ARRAY_SIZE(exynos_core_save
));
540 tmp
= pmu_raw_readl(EXYNOS5420_SFR_AXI_CGDIS1
);
541 tmp
&= ~EXYNOS5420_UFS
;
542 pmu_raw_writel(tmp
, EXYNOS5420_SFR_AXI_CGDIS1
);
544 tmp
= pmu_raw_readl(EXYNOS5420_FSYS2_OPTION
);
545 tmp
&= ~EXYNOS5420_EMULATION
;
546 pmu_raw_writel(tmp
, EXYNOS5420_FSYS2_OPTION
);
548 tmp
= pmu_raw_readl(EXYNOS5420_PSGEN_OPTION
);
549 tmp
&= ~EXYNOS5420_EMULATION
;
550 pmu_raw_writel(tmp
, EXYNOS5420_PSGEN_OPTION
);
552 /* Clear SLEEP mode set in INFORM1 */
553 pmu_raw_writel(0x0, S5P_INFORM1
);
560 static int exynos_suspend_enter(suspend_state_t state
)
566 S3C_PMDBG("%s: suspending the system...\n", __func__
);
568 S3C_PMDBG("%s: wakeup masks: %08x,%08x\n", __func__
,
569 exynos_irqwake_intmask
, exynos_get_eint_wake_mask());
571 if (exynos_irqwake_intmask
== -1U
572 && exynos_get_eint_wake_mask() == -1U) {
573 pr_err("%s: No wake-up sources!\n", __func__
);
574 pr_err("%s: Aborting sleep\n", __func__
);
579 if (pm_data
->pm_prepare
)
580 pm_data
->pm_prepare();
582 s3c_pm_check_store();
584 ret
= call_firmware_op(suspend
);
586 ret
= cpu_suspend(0, pm_data
->cpu_suspend
);
590 if (pm_data
->pm_resume_prepare
)
591 pm_data
->pm_resume_prepare();
592 s3c_pm_restore_uarts();
594 S3C_PMDBG("%s: wakeup stat: %08x\n", __func__
,
595 pmu_raw_readl(S5P_WAKEUP_STAT
));
597 s3c_pm_check_restore();
599 S3C_PMDBG("%s: resuming the system...\n", __func__
);
604 static int exynos_suspend_prepare(void)
609 * REVISIT: It would be better if struct platform_suspend_ops
610 * .prepare handler get the suspend_state_t as a parameter to
611 * avoid hard-coding the suspend to mem state. It's safe to do
612 * it now only because the suspend_valid_only_mem function is
613 * used as the .valid callback used to check if a given state
614 * is supported by the platform anyways.
616 ret
= regulator_suspend_prepare(PM_SUSPEND_MEM
);
618 pr_err("Failed to prepare regulators for suspend (%d)\n", ret
);
622 s3c_pm_check_prepare();
627 static void exynos_suspend_finish(void)
631 s3c_pm_check_cleanup();
633 ret
= regulator_suspend_finish();
635 pr_warn("Failed to resume regulators from suspend (%d)\n", ret
);
638 static const struct platform_suspend_ops exynos_suspend_ops
= {
639 .enter
= exynos_suspend_enter
,
640 .prepare
= exynos_suspend_prepare
,
641 .finish
= exynos_suspend_finish
,
642 .valid
= suspend_valid_only_mem
,
645 static const struct exynos_pm_data exynos3250_pm_data
= {
646 .wkup_irq
= exynos3250_wkup_irq
,
647 .wake_disable_mask
= ((0xFF << 8) | (0x1F << 1)),
648 .release_ret_regs
= exynos3250_release_ret_regs
,
649 .pm_suspend
= exynos_pm_suspend
,
650 .pm_resume
= exynos3250_pm_resume
,
651 .pm_prepare
= exynos3250_pm_prepare
,
652 .cpu_suspend
= exynos3250_cpu_suspend
,
655 static const struct exynos_pm_data exynos4_pm_data
= {
656 .wkup_irq
= exynos4_wkup_irq
,
657 .wake_disable_mask
= ((0xFF << 8) | (0x1F << 1)),
658 .release_ret_regs
= exynos_release_ret_regs
,
659 .pm_suspend
= exynos_pm_suspend
,
660 .pm_resume
= exynos_pm_resume
,
661 .pm_prepare
= exynos_pm_prepare
,
662 .cpu_suspend
= exynos_cpu_suspend
,
665 static const struct exynos_pm_data exynos5250_pm_data
= {
666 .wkup_irq
= exynos5250_wkup_irq
,
667 .wake_disable_mask
= ((0xFF << 8) | (0x1F << 1)),
668 .release_ret_regs
= exynos_release_ret_regs
,
669 .pm_suspend
= exynos_pm_suspend
,
670 .pm_resume
= exynos_pm_resume
,
671 .pm_prepare
= exynos_pm_prepare
,
672 .cpu_suspend
= exynos_cpu_suspend
,
675 static const struct exynos_pm_data exynos5420_pm_data
= {
676 .wkup_irq
= exynos5250_wkup_irq
,
677 .wake_disable_mask
= (0x7F << 7) | (0x1F << 1),
678 .release_ret_regs
= exynos5420_release_ret_regs
,
679 .pm_resume_prepare
= exynos5420_prepare_pm_resume
,
680 .pm_resume
= exynos5420_pm_resume
,
681 .pm_suspend
= exynos5420_pm_suspend
,
682 .pm_prepare
= exynos5420_pm_prepare
,
683 .cpu_suspend
= exynos5420_cpu_suspend
,
686 static const struct of_device_id exynos_pmu_of_device_ids
[] __initconst
= {
688 .compatible
= "samsung,exynos3250-pmu",
689 .data
= &exynos3250_pm_data
,
691 .compatible
= "samsung,exynos4210-pmu",
692 .data
= &exynos4_pm_data
,
694 .compatible
= "samsung,exynos4212-pmu",
695 .data
= &exynos4_pm_data
,
697 .compatible
= "samsung,exynos4412-pmu",
698 .data
= &exynos4_pm_data
,
700 .compatible
= "samsung,exynos5250-pmu",
701 .data
= &exynos5250_pm_data
,
703 .compatible
= "samsung,exynos5420-pmu",
704 .data
= &exynos5420_pm_data
,
709 static struct syscore_ops exynos_pm_syscore_ops
;
711 void __init
exynos_pm_init(void)
713 const struct of_device_id
*match
;
714 struct device_node
*np
;
717 np
= of_find_matching_node_and_match(NULL
, exynos_pmu_of_device_ids
, &match
);
719 pr_err("Failed to find PMU node\n");
723 if (WARN_ON(!of_find_property(np
, "interrupt-controller", NULL
))) {
724 pr_warn("Outdated DT detected, suspend/resume will NOT work\n");
728 pm_data
= (const struct exynos_pm_data
*) match
->data
;
730 /* All wakeup disable */
731 tmp
= pmu_raw_readl(S5P_WAKEUP_MASK
);
732 tmp
|= pm_data
->wake_disable_mask
;
733 pmu_raw_writel(tmp
, S5P_WAKEUP_MASK
);
735 exynos_pm_syscore_ops
.suspend
= pm_data
->pm_suspend
;
736 exynos_pm_syscore_ops
.resume
= pm_data
->pm_resume
;
738 register_syscore_ops(&exynos_pm_syscore_ops
);
739 suspend_set_ops(&exynos_suspend_ops
);