Krzysztof Kozlowski | 347863d | 2017-12-25 20:54:31 +0100 | [diff] [blame] | 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 - Suspend support |
| 7 | // |
| 8 | // Based on arch/arm/mach-s3c2410/pm.c |
| 9 | // Copyright (c) 2006 Simtec Electronics |
| 10 | // Ben Dooks <ben@simtec.co.uk> |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 11 | |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/suspend.h> |
| 14 | #include <linux/syscore_ops.h> |
| 15 | #include <linux/cpu_pm.h> |
| 16 | #include <linux/io.h> |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 17 | #include <linux/irq.h> |
Marc Zyngier | 0cc09e8 | 2015-10-16 15:21:10 +0100 | [diff] [blame] | 18 | #include <linux/irqchip.h> |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 19 | #include <linux/irqdomain.h> |
| 20 | #include <linux/of_address.h> |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 21 | #include <linux/err.h> |
Javier Martinez Canillas | c645a59 | 2014-11-13 11:14:40 +0900 | [diff] [blame] | 22 | #include <linux/regulator/machine.h> |
Pankaj Dubey | 2262d6e | 2015-12-18 09:02:11 +0530 | [diff] [blame] | 23 | #include <linux/soc/samsung/exynos-pmu.h> |
| 24 | #include <linux/soc/samsung/exynos-regs-pmu.h> |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 25 | |
| 26 | #include <asm/cacheflush.h> |
| 27 | #include <asm/hardware/cache-l2x0.h> |
| 28 | #include <asm/firmware.h> |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 29 | #include <asm/mcpm.h> |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 30 | #include <asm/smp_scu.h> |
| 31 | #include <asm/suspend.h> |
| 32 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 33 | #include "common.h" |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 34 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 35 | #define REG_TABLE_END (-1U) |
| 36 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 37 | #define EXYNOS5420_CPU_STATE 0x28 |
| 38 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 39 | /** |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 40 | * struct exynos_wkup_irq - PMU IRQ to mask mapping |
| 41 | * @hwirq: Hardware IRQ signal of the PMU |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 42 | * @mask: Mask in PMU wake-up mask register |
| 43 | */ |
| 44 | struct exynos_wkup_irq { |
| 45 | unsigned int hwirq; |
| 46 | u32 mask; |
| 47 | }; |
| 48 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 49 | struct exynos_pm_data { |
| 50 | const struct exynos_wkup_irq *wkup_irq; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 51 | unsigned int wake_disable_mask; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 52 | |
| 53 | void (*pm_prepare)(void); |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 54 | void (*pm_resume_prepare)(void); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 55 | void (*pm_resume)(void); |
| 56 | int (*pm_suspend)(void); |
| 57 | int (*cpu_suspend)(unsigned long); |
| 58 | }; |
| 59 | |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 60 | /* Used only on Exynos542x/5800 */ |
| 61 | struct exynos_pm_state { |
| 62 | int cpu_state; |
| 63 | unsigned int pmu_spare3; |
Krzysztof Kozlowski | e0b35c1 | 2018-07-24 18:49:46 +0200 | [diff] [blame] | 64 | void __iomem *sysram_base; |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 65 | }; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 66 | |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 67 | static const struct exynos_pm_data *pm_data __ro_after_init; |
| 68 | static struct exynos_pm_state pm_state; |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 69 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 70 | /* |
| 71 | * GIC wake-up support |
| 72 | */ |
| 73 | |
| 74 | static u32 exynos_irqwake_intmask = 0xffffffff; |
| 75 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 76 | static const struct exynos_wkup_irq exynos3250_wkup_irq[] = { |
Marc Zyngier | fe93122 | 2015-04-22 18:40:52 +0100 | [diff] [blame] | 77 | { 73, BIT(1) }, /* RTC alarm */ |
| 78 | { 74, BIT(2) }, /* RTC tick */ |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 79 | { /* sentinel */ }, |
| 80 | }; |
| 81 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 82 | static const struct exynos_wkup_irq exynos4_wkup_irq[] = { |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 83 | { 44, BIT(1) }, /* RTC alarm */ |
| 84 | { 45, BIT(2) }, /* RTC tick */ |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 85 | { /* sentinel */ }, |
| 86 | }; |
| 87 | |
| 88 | static const struct exynos_wkup_irq exynos5250_wkup_irq[] = { |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 89 | { 43, BIT(1) }, /* RTC alarm */ |
| 90 | { 44, BIT(2) }, /* RTC tick */ |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 91 | { /* sentinel */ }, |
| 92 | }; |
| 93 | |
Krzysztof Kozlowski | 2c80920 | 2018-07-23 19:53:01 +0200 | [diff] [blame] | 94 | static u32 exynos_read_eint_wakeup_mask(void) |
| 95 | { |
| 96 | return pmu_raw_readl(EXYNOS_EINT_WAKEUP_MASK); |
| 97 | } |
| 98 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 99 | static int exynos_irq_set_wake(struct irq_data *data, unsigned int state) |
| 100 | { |
| 101 | const struct exynos_wkup_irq *wkup_irq; |
| 102 | |
| 103 | if (!pm_data->wkup_irq) |
| 104 | return -ENOENT; |
| 105 | wkup_irq = pm_data->wkup_irq; |
| 106 | |
| 107 | while (wkup_irq->mask) { |
| 108 | if (wkup_irq->hwirq == data->hwirq) { |
| 109 | if (!state) |
| 110 | exynos_irqwake_intmask |= wkup_irq->mask; |
| 111 | else |
| 112 | exynos_irqwake_intmask &= ~wkup_irq->mask; |
| 113 | return 0; |
| 114 | } |
| 115 | ++wkup_irq; |
| 116 | } |
| 117 | |
| 118 | return -ENOENT; |
| 119 | } |
| 120 | |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 121 | static struct irq_chip exynos_pmu_chip = { |
| 122 | .name = "PMU", |
| 123 | .irq_eoi = irq_chip_eoi_parent, |
| 124 | .irq_mask = irq_chip_mask_parent, |
| 125 | .irq_unmask = irq_chip_unmask_parent, |
| 126 | .irq_retrigger = irq_chip_retrigger_hierarchy, |
| 127 | .irq_set_wake = exynos_irq_set_wake, |
| 128 | #ifdef CONFIG_SMP |
| 129 | .irq_set_affinity = irq_chip_set_affinity_parent, |
| 130 | #endif |
| 131 | }; |
| 132 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 133 | static int exynos_pmu_domain_translate(struct irq_domain *d, |
| 134 | struct irq_fwspec *fwspec, |
| 135 | unsigned long *hwirq, |
| 136 | unsigned int *type) |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 137 | { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 138 | if (is_of_node(fwspec->fwnode)) { |
| 139 | if (fwspec->param_count != 3) |
| 140 | return -EINVAL; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 141 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 142 | /* No PPI should point to this domain */ |
| 143 | if (fwspec->param[0] != 0) |
| 144 | return -EINVAL; |
| 145 | |
| 146 | *hwirq = fwspec->param[1]; |
| 147 | *type = fwspec->param[2]; |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | return -EINVAL; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static int exynos_pmu_domain_alloc(struct irq_domain *domain, |
| 155 | unsigned int virq, |
| 156 | unsigned int nr_irqs, void *data) |
| 157 | { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 158 | struct irq_fwspec *fwspec = data; |
| 159 | struct irq_fwspec parent_fwspec; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 160 | irq_hw_number_t hwirq; |
| 161 | int i; |
| 162 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 163 | if (fwspec->param_count != 3) |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 164 | return -EINVAL; /* Not GIC compliant */ |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 165 | if (fwspec->param[0] != 0) |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 166 | return -EINVAL; /* No PPI should point to this domain */ |
| 167 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 168 | hwirq = fwspec->param[1]; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 169 | |
| 170 | for (i = 0; i < nr_irqs; i++) |
| 171 | irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i, |
| 172 | &exynos_pmu_chip, NULL); |
| 173 | |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 174 | parent_fwspec = *fwspec; |
| 175 | parent_fwspec.fwnode = domain->parent->fwnode; |
| 176 | return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, |
| 177 | &parent_fwspec); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Krzysztof Kozlowski | fc4a2cc | 2015-04-27 19:48:59 +0900 | [diff] [blame] | 180 | static const struct irq_domain_ops exynos_pmu_domain_ops = { |
Marc Zyngier | f833f57 | 2015-10-13 12:51:33 +0100 | [diff] [blame] | 181 | .translate = exynos_pmu_domain_translate, |
| 182 | .alloc = exynos_pmu_domain_alloc, |
| 183 | .free = irq_domain_free_irqs_common, |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | static int __init exynos_pmu_irq_init(struct device_node *node, |
| 187 | struct device_node *parent) |
| 188 | { |
| 189 | struct irq_domain *parent_domain, *domain; |
| 190 | |
| 191 | if (!parent) { |
Rob Herring | a8e65e0 | 2017-07-21 14:28:32 -0500 | [diff] [blame] | 192 | pr_err("%pOF: no parent, giving up\n", node); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 193 | return -ENODEV; |
| 194 | } |
| 195 | |
| 196 | parent_domain = irq_find_host(parent); |
| 197 | if (!parent_domain) { |
Rob Herring | a8e65e0 | 2017-07-21 14:28:32 -0500 | [diff] [blame] | 198 | pr_err("%pOF: unable to obtain parent domain\n", node); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 199 | return -ENXIO; |
| 200 | } |
| 201 | |
| 202 | pmu_base_addr = of_iomap(node, 0); |
| 203 | |
| 204 | if (!pmu_base_addr) { |
Rob Herring | a8e65e0 | 2017-07-21 14:28:32 -0500 | [diff] [blame] | 205 | pr_err("%pOF: failed to find exynos pmu register\n", node); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 206 | return -ENOMEM; |
| 207 | } |
| 208 | |
| 209 | domain = irq_domain_add_hierarchy(parent_domain, 0, 0, |
| 210 | node, &exynos_pmu_domain_ops, |
| 211 | NULL); |
| 212 | if (!domain) { |
| 213 | iounmap(pmu_base_addr); |
Krzysztof Kozlowski | cd48069 | 2018-07-24 18:48:14 +0200 | [diff] [blame] | 214 | pmu_base_addr = NULL; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 215 | return -ENOMEM; |
| 216 | } |
| 217 | |
Javier Martinez Canillas | b030485 | 2016-08-21 03:27:45 -0400 | [diff] [blame] | 218 | /* |
| 219 | * Clear the OF_POPULATED flag set in of_irq_init so that |
| 220 | * later the Exynos PMU platform device won't be skipped. |
| 221 | */ |
| 222 | of_node_clear_flag(node, OF_POPULATED); |
| 223 | |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 224 | return 0; |
| 225 | } |
| 226 | |
Marc Zyngier | 0cc09e8 | 2015-10-16 15:21:10 +0100 | [diff] [blame] | 227 | #define EXYNOS_PMU_IRQ(symbol, name) IRQCHIP_DECLARE(symbol, name, exynos_pmu_irq_init) |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 228 | |
| 229 | EXYNOS_PMU_IRQ(exynos3250_pmu_irq, "samsung,exynos3250-pmu"); |
| 230 | EXYNOS_PMU_IRQ(exynos4210_pmu_irq, "samsung,exynos4210-pmu"); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 231 | EXYNOS_PMU_IRQ(exynos4412_pmu_irq, "samsung,exynos4412-pmu"); |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 232 | EXYNOS_PMU_IRQ(exynos5250_pmu_irq, "samsung,exynos5250-pmu"); |
| 233 | EXYNOS_PMU_IRQ(exynos5420_pmu_irq, "samsung,exynos5420-pmu"); |
| 234 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 235 | static int exynos_cpu_do_idle(void) |
| 236 | { |
| 237 | /* issue the standby signal into the pm unit. */ |
| 238 | cpu_do_idle(); |
| 239 | |
| 240 | pr_info("Failed to suspend the system\n"); |
| 241 | return 1; /* Aborting suspend */ |
| 242 | } |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 243 | static void exynos_flush_cache_all(void) |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 244 | { |
| 245 | flush_cache_all(); |
| 246 | outer_flush_all(); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | static int exynos_cpu_suspend(unsigned long arg) |
| 250 | { |
| 251 | exynos_flush_cache_all(); |
| 252 | return exynos_cpu_do_idle(); |
| 253 | } |
| 254 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 255 | static int exynos3250_cpu_suspend(unsigned long arg) |
| 256 | { |
| 257 | flush_cache_all(); |
| 258 | return exynos_cpu_do_idle(); |
| 259 | } |
| 260 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 261 | static int exynos5420_cpu_suspend(unsigned long arg) |
| 262 | { |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 263 | /* MCPM works with HW CPU identifiers */ |
| 264 | unsigned int mpidr = read_cpuid_mpidr(); |
| 265 | unsigned int cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1); |
| 266 | unsigned int cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0); |
| 267 | |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 268 | if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM)) { |
| 269 | mcpm_set_entry_vector(cpu, cluster, exynos_cpu_resume); |
Nicolas Pitre | 7895f73 | 2015-04-28 15:51:19 -0400 | [diff] [blame] | 270 | mcpm_cpu_suspend(); |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | pr_info("Failed to suspend the system\n"); |
| 274 | |
| 275 | /* return value != 0 means failure */ |
| 276 | return 1; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | static void exynos_pm_set_wakeup_mask(void) |
| 280 | { |
Krzysztof Kozlowski | 2c80920 | 2018-07-23 19:53:01 +0200 | [diff] [blame] | 281 | /* |
| 282 | * Set wake-up mask registers |
| 283 | * EXYNOS_EINT_WAKEUP_MASK is set by pinctrl driver in late suspend. |
| 284 | */ |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 285 | pmu_raw_writel(exynos_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK); |
| 286 | } |
| 287 | |
| 288 | static void exynos_pm_enter_sleep_mode(void) |
| 289 | { |
| 290 | /* Set value of power down register for sleep mode */ |
| 291 | exynos_sys_powerdown_conf(SYS_SLEEP); |
Krzysztof Kozlowski | 054e6aa | 2015-06-14 13:38:23 +0900 | [diff] [blame] | 292 | pmu_raw_writel(EXYNOS_SLEEP_MAGIC, S5P_INFORM1); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | static void exynos_pm_prepare(void) |
| 296 | { |
Krzysztof Kozlowski | 6f02497 | 2015-03-11 11:13:57 +0100 | [diff] [blame] | 297 | exynos_set_delayed_reset_assertion(false); |
| 298 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 299 | /* Set wake-up mask registers */ |
| 300 | exynos_pm_set_wakeup_mask(); |
| 301 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 302 | exynos_pm_enter_sleep_mode(); |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 303 | |
| 304 | /* ensure at least INFORM0 has the resume address */ |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 305 | pmu_raw_writel(__pa_symbol(exynos_cpu_resume), S5P_INFORM0); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 306 | } |
| 307 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 308 | static void exynos3250_pm_prepare(void) |
| 309 | { |
| 310 | unsigned int tmp; |
| 311 | |
| 312 | /* Set wake-up mask registers */ |
| 313 | exynos_pm_set_wakeup_mask(); |
| 314 | |
| 315 | tmp = pmu_raw_readl(EXYNOS3_ARM_L2_OPTION); |
| 316 | tmp &= ~EXYNOS5_OPTION_USE_RETENTION; |
| 317 | pmu_raw_writel(tmp, EXYNOS3_ARM_L2_OPTION); |
| 318 | |
| 319 | exynos_pm_enter_sleep_mode(); |
| 320 | |
| 321 | /* ensure at least INFORM0 has the resume address */ |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 322 | pmu_raw_writel(__pa_symbol(exynos_cpu_resume), S5P_INFORM0); |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 323 | } |
| 324 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 325 | static void exynos5420_pm_prepare(void) |
| 326 | { |
| 327 | unsigned int tmp; |
| 328 | |
| 329 | /* Set wake-up mask registers */ |
| 330 | exynos_pm_set_wakeup_mask(); |
| 331 | |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 332 | pm_state.pmu_spare3 = pmu_raw_readl(S5P_PMU_SPARE3); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 333 | /* |
| 334 | * The cpu state needs to be saved and restored so that the |
| 335 | * secondary CPUs will enter low power start. Though the U-Boot |
| 336 | * is setting the cpu state with low power flag, the kernel |
| 337 | * needs to restore it back in case, the primary cpu fails to |
| 338 | * suspend for any reason. |
| 339 | */ |
Krzysztof Kozlowski | e0b35c1 | 2018-07-24 18:49:46 +0200 | [diff] [blame] | 340 | pm_state.cpu_state = readl_relaxed(pm_state.sysram_base + |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 341 | EXYNOS5420_CPU_STATE); |
Marek Szyprowski | e746731 | 2019-02-18 15:34:09 +0100 | [diff] [blame] | 342 | writel_relaxed(0x0, pm_state.sysram_base + EXYNOS5420_CPU_STATE); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 343 | |
| 344 | exynos_pm_enter_sleep_mode(); |
| 345 | |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 346 | /* ensure at least INFORM0 has the resume address */ |
| 347 | if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM)) |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 348 | pmu_raw_writel(__pa_symbol(mcpm_entry_point), S5P_INFORM0); |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 349 | |
Krzysztof Kozlowski | ee55ae6 | 2017-01-25 21:09:44 +0200 | [diff] [blame] | 350 | tmp = pmu_raw_readl(EXYNOS_L2_OPTION(0)); |
| 351 | tmp &= ~EXYNOS_L2_USE_RETENTION; |
| 352 | pmu_raw_writel(tmp, EXYNOS_L2_OPTION(0)); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 353 | |
| 354 | tmp = pmu_raw_readl(EXYNOS5420_SFR_AXI_CGDIS1); |
| 355 | tmp |= EXYNOS5420_UFS; |
| 356 | pmu_raw_writel(tmp, EXYNOS5420_SFR_AXI_CGDIS1); |
| 357 | |
| 358 | tmp = pmu_raw_readl(EXYNOS5420_ARM_COMMON_OPTION); |
| 359 | tmp &= ~EXYNOS5420_L2RSTDISABLE_VALUE; |
| 360 | pmu_raw_writel(tmp, EXYNOS5420_ARM_COMMON_OPTION); |
| 361 | |
| 362 | tmp = pmu_raw_readl(EXYNOS5420_FSYS2_OPTION); |
| 363 | tmp |= EXYNOS5420_EMULATION; |
| 364 | pmu_raw_writel(tmp, EXYNOS5420_FSYS2_OPTION); |
| 365 | |
| 366 | tmp = pmu_raw_readl(EXYNOS5420_PSGEN_OPTION); |
| 367 | tmp |= EXYNOS5420_EMULATION; |
| 368 | pmu_raw_writel(tmp, EXYNOS5420_PSGEN_OPTION); |
| 369 | } |
| 370 | |
| 371 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 372 | static int exynos_pm_suspend(void) |
| 373 | { |
| 374 | exynos_pm_central_suspend(); |
| 375 | |
Bartlomiej Zolnierkiewicz | 865e8b7 | 2015-01-24 14:05:50 +0900 | [diff] [blame] | 376 | /* Setting SEQ_OPTION register */ |
| 377 | pmu_raw_writel(S5P_USE_STANDBY_WFI0 | S5P_USE_STANDBY_WFE0, |
| 378 | S5P_CENTRAL_SEQ_OPTION); |
| 379 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 380 | if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) |
| 381 | exynos_cpu_save_register(); |
| 382 | |
| 383 | return 0; |
| 384 | } |
| 385 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 386 | static int exynos5420_pm_suspend(void) |
| 387 | { |
| 388 | u32 this_cluster; |
| 389 | |
| 390 | exynos_pm_central_suspend(); |
| 391 | |
| 392 | /* Setting SEQ_OPTION register */ |
| 393 | |
| 394 | this_cluster = MPIDR_AFFINITY_LEVEL(read_cpuid_mpidr(), 1); |
| 395 | if (!this_cluster) |
| 396 | pmu_raw_writel(EXYNOS5420_ARM_USE_STANDBY_WFI0, |
| 397 | S5P_CENTRAL_SEQ_OPTION); |
| 398 | else |
| 399 | pmu_raw_writel(EXYNOS5420_KFC_USE_STANDBY_WFI0, |
| 400 | S5P_CENTRAL_SEQ_OPTION); |
| 401 | return 0; |
| 402 | } |
| 403 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 404 | static void exynos_pm_resume(void) |
| 405 | { |
| 406 | u32 cpuid = read_cpuid_part(); |
| 407 | |
| 408 | if (exynos_pm_central_resume()) |
| 409 | goto early_wakeup; |
| 410 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 411 | if (cpuid == ARM_CPU_PART_CORTEX_A9) |
Pankaj Dubey | 3c33710 | 2018-05-10 13:02:54 +0200 | [diff] [blame] | 412 | exynos_scu_enable(); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 413 | |
| 414 | if (call_firmware_op(resume) == -ENOSYS |
| 415 | && cpuid == ARM_CPU_PART_CORTEX_A9) |
| 416 | exynos_cpu_restore_register(); |
| 417 | |
| 418 | early_wakeup: |
| 419 | |
| 420 | /* Clear SLEEP mode set in INFORM1 */ |
| 421 | pmu_raw_writel(0x0, S5P_INFORM1); |
Krzysztof Kozlowski | 6f02497 | 2015-03-11 11:13:57 +0100 | [diff] [blame] | 422 | exynos_set_delayed_reset_assertion(true); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 423 | } |
| 424 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 425 | static void exynos3250_pm_resume(void) |
| 426 | { |
| 427 | u32 cpuid = read_cpuid_part(); |
| 428 | |
| 429 | if (exynos_pm_central_resume()) |
| 430 | goto early_wakeup; |
| 431 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 432 | pmu_raw_writel(S5P_USE_STANDBY_WFI_ALL, S5P_CENTRAL_SEQ_OPTION); |
| 433 | |
| 434 | if (call_firmware_op(resume) == -ENOSYS |
| 435 | && cpuid == ARM_CPU_PART_CORTEX_A9) |
| 436 | exynos_cpu_restore_register(); |
| 437 | |
| 438 | early_wakeup: |
| 439 | |
| 440 | /* Clear SLEEP mode set in INFORM1 */ |
| 441 | pmu_raw_writel(0x0, S5P_INFORM1); |
| 442 | } |
| 443 | |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 444 | static void exynos5420_prepare_pm_resume(void) |
| 445 | { |
| 446 | if (IS_ENABLED(CONFIG_EXYNOS5420_MCPM)) |
| 447 | WARN_ON(mcpm_cpu_powered_up()); |
| 448 | } |
| 449 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 450 | static void exynos5420_pm_resume(void) |
| 451 | { |
| 452 | unsigned long tmp; |
| 453 | |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 454 | /* Restore the CPU0 low power state register */ |
| 455 | tmp = pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG); |
| 456 | pmu_raw_writel(tmp | S5P_CORE_LOCAL_PWR_EN, |
Ben Dooks | 17e0645 | 2016-06-21 11:20:28 +0100 | [diff] [blame] | 457 | EXYNOS5_ARM_CORE0_SYS_PWR_REG); |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 458 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 459 | /* Restore the sysram cpu state register */ |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 460 | writel_relaxed(pm_state.cpu_state, |
Krzysztof Kozlowski | e0b35c1 | 2018-07-24 18:49:46 +0200 | [diff] [blame] | 461 | pm_state.sysram_base + EXYNOS5420_CPU_STATE); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 462 | |
| 463 | pmu_raw_writel(EXYNOS5420_USE_STANDBY_WFI_ALL, |
| 464 | S5P_CENTRAL_SEQ_OPTION); |
| 465 | |
| 466 | if (exynos_pm_central_resume()) |
| 467 | goto early_wakeup; |
| 468 | |
Krzysztof Kozlowski | 687b5ae | 2018-07-24 18:49:44 +0200 | [diff] [blame] | 469 | pmu_raw_writel(pm_state.pmu_spare3, S5P_PMU_SPARE3); |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 470 | |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 471 | early_wakeup: |
| 472 | |
| 473 | tmp = pmu_raw_readl(EXYNOS5420_SFR_AXI_CGDIS1); |
| 474 | tmp &= ~EXYNOS5420_UFS; |
| 475 | pmu_raw_writel(tmp, EXYNOS5420_SFR_AXI_CGDIS1); |
| 476 | |
| 477 | tmp = pmu_raw_readl(EXYNOS5420_FSYS2_OPTION); |
| 478 | tmp &= ~EXYNOS5420_EMULATION; |
| 479 | pmu_raw_writel(tmp, EXYNOS5420_FSYS2_OPTION); |
| 480 | |
| 481 | tmp = pmu_raw_readl(EXYNOS5420_PSGEN_OPTION); |
| 482 | tmp &= ~EXYNOS5420_EMULATION; |
| 483 | pmu_raw_writel(tmp, EXYNOS5420_PSGEN_OPTION); |
| 484 | |
| 485 | /* Clear SLEEP mode set in INFORM1 */ |
| 486 | pmu_raw_writel(0x0, S5P_INFORM1); |
| 487 | } |
| 488 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 489 | /* |
| 490 | * Suspend Ops |
| 491 | */ |
| 492 | |
| 493 | static int exynos_suspend_enter(suspend_state_t state) |
| 494 | { |
Krzysztof Kozlowski | 2c80920 | 2018-07-23 19:53:01 +0200 | [diff] [blame] | 495 | u32 eint_wakeup_mask = exynos_read_eint_wakeup_mask(); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 496 | int ret; |
| 497 | |
Bartlomiej Zolnierkiewicz | b165885 | 2018-11-14 16:30:58 +0100 | [diff] [blame] | 498 | pr_debug("%s: suspending the system...\n", __func__); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 499 | |
Bartlomiej Zolnierkiewicz | b165885 | 2018-11-14 16:30:58 +0100 | [diff] [blame] | 500 | pr_debug("%s: wakeup masks: %08x,%08x\n", __func__, |
Krzysztof Kozlowski | 2c80920 | 2018-07-23 19:53:01 +0200 | [diff] [blame] | 501 | exynos_irqwake_intmask, eint_wakeup_mask); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 502 | |
| 503 | if (exynos_irqwake_intmask == -1U |
Krzysztof Kozlowski | 2c80920 | 2018-07-23 19:53:01 +0200 | [diff] [blame] | 504 | && eint_wakeup_mask == EXYNOS_EINT_WAKEUP_MASK_DISABLED) { |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 505 | pr_err("%s: No wake-up sources!\n", __func__); |
| 506 | pr_err("%s: Aborting sleep\n", __func__); |
| 507 | return -EINVAL; |
| 508 | } |
| 509 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 510 | if (pm_data->pm_prepare) |
| 511 | pm_data->pm_prepare(); |
| 512 | flush_cache_all(); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 513 | |
| 514 | ret = call_firmware_op(suspend); |
| 515 | if (ret == -ENOSYS) |
| 516 | ret = cpu_suspend(0, pm_data->cpu_suspend); |
| 517 | if (ret) |
| 518 | return ret; |
| 519 | |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 520 | if (pm_data->pm_resume_prepare) |
| 521 | pm_data->pm_resume_prepare(); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 522 | |
Bartlomiej Zolnierkiewicz | b165885 | 2018-11-14 16:30:58 +0100 | [diff] [blame] | 523 | pr_debug("%s: wakeup stat: %08x\n", __func__, |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 524 | pmu_raw_readl(S5P_WAKEUP_STAT)); |
| 525 | |
Bartlomiej Zolnierkiewicz | b165885 | 2018-11-14 16:30:58 +0100 | [diff] [blame] | 526 | pr_debug("%s: resuming the system...\n", __func__); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
| 531 | static int exynos_suspend_prepare(void) |
| 532 | { |
Javier Martinez Canillas | c645a59 | 2014-11-13 11:14:40 +0900 | [diff] [blame] | 533 | int ret; |
| 534 | |
| 535 | /* |
| 536 | * REVISIT: It would be better if struct platform_suspend_ops |
| 537 | * .prepare handler get the suspend_state_t as a parameter to |
| 538 | * avoid hard-coding the suspend to mem state. It's safe to do |
| 539 | * it now only because the suspend_valid_only_mem function is |
| 540 | * used as the .valid callback used to check if a given state |
| 541 | * is supported by the platform anyways. |
| 542 | */ |
| 543 | ret = regulator_suspend_prepare(PM_SUSPEND_MEM); |
| 544 | if (ret) { |
| 545 | pr_err("Failed to prepare regulators for suspend (%d)\n", ret); |
| 546 | return ret; |
| 547 | } |
| 548 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 549 | return 0; |
| 550 | } |
| 551 | |
| 552 | static void exynos_suspend_finish(void) |
| 553 | { |
Javier Martinez Canillas | c645a59 | 2014-11-13 11:14:40 +0900 | [diff] [blame] | 554 | int ret; |
| 555 | |
Javier Martinez Canillas | c645a59 | 2014-11-13 11:14:40 +0900 | [diff] [blame] | 556 | ret = regulator_suspend_finish(); |
| 557 | if (ret) |
| 558 | pr_warn("Failed to resume regulators from suspend (%d)\n", ret); |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | static const struct platform_suspend_ops exynos_suspend_ops = { |
| 562 | .enter = exynos_suspend_enter, |
| 563 | .prepare = exynos_suspend_prepare, |
| 564 | .finish = exynos_suspend_finish, |
| 565 | .valid = suspend_valid_only_mem, |
| 566 | }; |
| 567 | |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 568 | static const struct exynos_pm_data exynos3250_pm_data = { |
| 569 | .wkup_irq = exynos3250_wkup_irq, |
| 570 | .wake_disable_mask = ((0xFF << 8) | (0x1F << 1)), |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 571 | .pm_suspend = exynos_pm_suspend, |
| 572 | .pm_resume = exynos3250_pm_resume, |
| 573 | .pm_prepare = exynos3250_pm_prepare, |
| 574 | .cpu_suspend = exynos3250_cpu_suspend, |
| 575 | }; |
| 576 | |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 577 | static const struct exynos_pm_data exynos4_pm_data = { |
| 578 | .wkup_irq = exynos4_wkup_irq, |
| 579 | .wake_disable_mask = ((0xFF << 8) | (0x1F << 1)), |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 580 | .pm_suspend = exynos_pm_suspend, |
| 581 | .pm_resume = exynos_pm_resume, |
| 582 | .pm_prepare = exynos_pm_prepare, |
| 583 | .cpu_suspend = exynos_cpu_suspend, |
| 584 | }; |
| 585 | |
| 586 | static const struct exynos_pm_data exynos5250_pm_data = { |
| 587 | .wkup_irq = exynos5250_wkup_irq, |
| 588 | .wake_disable_mask = ((0xFF << 8) | (0x1F << 1)), |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 589 | .pm_suspend = exynos_pm_suspend, |
| 590 | .pm_resume = exynos_pm_resume, |
| 591 | .pm_prepare = exynos_pm_prepare, |
| 592 | .cpu_suspend = exynos_cpu_suspend, |
| 593 | }; |
| 594 | |
Krzysztof Kozlowski | 7383833 | 2015-03-18 02:34:37 +0900 | [diff] [blame] | 595 | static const struct exynos_pm_data exynos5420_pm_data = { |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 596 | .wkup_irq = exynos5250_wkup_irq, |
| 597 | .wake_disable_mask = (0x7F << 7) | (0x1F << 1), |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 598 | .pm_resume_prepare = exynos5420_prepare_pm_resume, |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 599 | .pm_resume = exynos5420_pm_resume, |
| 600 | .pm_suspend = exynos5420_pm_suspend, |
| 601 | .pm_prepare = exynos5420_pm_prepare, |
| 602 | .cpu_suspend = exynos5420_cpu_suspend, |
| 603 | }; |
| 604 | |
Uwe Kleine-König | 444d2d3 | 2015-02-18 21:19:56 +0100 | [diff] [blame] | 605 | static const struct of_device_id exynos_pmu_of_device_ids[] __initconst = { |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 606 | { |
Chanwoo Choi | a4f582f | 2015-01-12 17:41:34 +0900 | [diff] [blame] | 607 | .compatible = "samsung,exynos3250-pmu", |
| 608 | .data = &exynos3250_pm_data, |
| 609 | }, { |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 610 | .compatible = "samsung,exynos4210-pmu", |
| 611 | .data = &exynos4_pm_data, |
| 612 | }, { |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 613 | .compatible = "samsung,exynos4412-pmu", |
| 614 | .data = &exynos4_pm_data, |
| 615 | }, { |
| 616 | .compatible = "samsung,exynos5250-pmu", |
| 617 | .data = &exynos5250_pm_data, |
Vikas Sajjan | 0fdf088 | 2014-11-07 09:17:36 +0900 | [diff] [blame] | 618 | }, { |
| 619 | .compatible = "samsung,exynos5420-pmu", |
| 620 | .data = &exynos5420_pm_data, |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 621 | }, |
| 622 | { /*sentinel*/ }, |
| 623 | }; |
| 624 | |
| 625 | static struct syscore_ops exynos_pm_syscore_ops; |
| 626 | |
| 627 | void __init exynos_pm_init(void) |
| 628 | { |
| 629 | const struct of_device_id *match; |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 630 | struct device_node *np; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 631 | u32 tmp; |
| 632 | |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 633 | np = of_find_matching_node_and_match(NULL, exynos_pmu_of_device_ids, &match); |
| 634 | if (!np) { |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 635 | pr_err("Failed to find PMU node\n"); |
| 636 | return; |
| 637 | } |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 638 | |
Julien Grall | e5cbec6 | 2015-05-13 03:49:04 +0900 | [diff] [blame] | 639 | if (WARN_ON(!of_find_property(np, "interrupt-controller", NULL))) { |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 640 | pr_warn("Outdated DT detected, suspend/resume will NOT work\n"); |
Julien Grall | e5cbec6 | 2015-05-13 03:49:04 +0900 | [diff] [blame] | 641 | return; |
| 642 | } |
Marc Zyngier | 8b283c0 | 2015-03-11 15:44:52 +0000 | [diff] [blame] | 643 | |
Linus Torvalds | e6c81cc | 2015-04-22 09:08:39 -0700 | [diff] [blame] | 644 | pm_data = (const struct exynos_pm_data *) match->data; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 645 | |
| 646 | /* All wakeup disable */ |
| 647 | tmp = pmu_raw_readl(S5P_WAKEUP_MASK); |
| 648 | tmp |= pm_data->wake_disable_mask; |
| 649 | pmu_raw_writel(tmp, S5P_WAKEUP_MASK); |
| 650 | |
| 651 | exynos_pm_syscore_ops.suspend = pm_data->pm_suspend; |
| 652 | exynos_pm_syscore_ops.resume = pm_data->pm_resume; |
| 653 | |
| 654 | register_syscore_ops(&exynos_pm_syscore_ops); |
| 655 | suspend_set_ops(&exynos_suspend_ops); |
Krzysztof Kozlowski | e0b35c1 | 2018-07-24 18:49:46 +0200 | [diff] [blame] | 656 | |
| 657 | /* |
| 658 | * Applicable as of now only to Exynos542x. If booted under secure |
| 659 | * firmware, the non-secure region of sysram should be used. |
| 660 | */ |
| 661 | if (exynos_secure_firmware_available()) |
| 662 | pm_state.sysram_base = sysram_ns_base_addr; |
| 663 | else |
| 664 | pm_state.sysram_base = sysram_base_addr; |
Bartlomiej Zolnierkiewicz | 0d713cf | 2014-09-25 18:02:45 +0900 | [diff] [blame] | 665 | } |