treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / arm / mach-milbeaut / platsmp.c
blob3ea880f5fcb7338b8e419db9fd49c06cee263ca0
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright: (C) 2018 Socionext Inc.
4 * Copyright: (C) 2015 Linaro Ltd.
5 */
7 #include <linux/cpu_pm.h>
8 #include <linux/irqchip/arm-gic.h>
9 #include <linux/of_address.h>
10 #include <linux/suspend.h>
12 #include <asm/cacheflush.h>
13 #include <asm/cp15.h>
14 #include <asm/idmap.h>
15 #include <asm/smp_plat.h>
16 #include <asm/suspend.h>
18 #define M10V_MAX_CPU 4
19 #define KERNEL_UNBOOT_FLAG 0x12345678
21 static void __iomem *m10v_smp_base;
23 static int m10v_boot_secondary(unsigned int l_cpu, struct task_struct *idle)
25 unsigned int mpidr, cpu, cluster;
27 if (!m10v_smp_base)
28 return -ENXIO;
30 mpidr = cpu_logical_map(l_cpu);
31 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
32 cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
34 if (cpu >= M10V_MAX_CPU)
35 return -EINVAL;
37 pr_info("%s: cpu %u l_cpu %u cluster %u\n",
38 __func__, cpu, l_cpu, cluster);
40 writel(__pa_symbol(secondary_startup), m10v_smp_base + cpu * 4);
41 arch_send_wakeup_ipi_mask(cpumask_of(l_cpu));
43 return 0;
46 static void m10v_smp_init(unsigned int max_cpus)
48 unsigned int mpidr, cpu, cluster;
49 struct device_node *np;
51 np = of_find_compatible_node(NULL, NULL, "socionext,milbeaut-smp-sram");
52 if (!np)
53 return;
55 m10v_smp_base = of_iomap(np, 0);
56 if (!m10v_smp_base)
57 return;
59 mpidr = read_cpuid_mpidr();
60 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
61 cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
62 pr_info("MCPM boot on cpu_%u cluster_%u\n", cpu, cluster);
64 for (cpu = 0; cpu < M10V_MAX_CPU; cpu++)
65 writel(KERNEL_UNBOOT_FLAG, m10v_smp_base + cpu * 4);
68 #ifdef CONFIG_HOTPLUG_CPU
69 static void m10v_cpu_die(unsigned int l_cpu)
71 gic_cpu_if_down(0);
72 v7_exit_coherency_flush(louis);
73 wfi();
76 static int m10v_cpu_kill(unsigned int l_cpu)
78 unsigned int mpidr, cpu;
80 mpidr = cpu_logical_map(l_cpu);
81 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
83 writel(KERNEL_UNBOOT_FLAG, m10v_smp_base + cpu * 4);
85 return 1;
87 #endif
89 static struct smp_operations m10v_smp_ops __initdata = {
90 .smp_prepare_cpus = m10v_smp_init,
91 .smp_boot_secondary = m10v_boot_secondary,
92 #ifdef CONFIG_HOTPLUG_CPU
93 .cpu_die = m10v_cpu_die,
94 .cpu_kill = m10v_cpu_kill,
95 #endif
97 CPU_METHOD_OF_DECLARE(m10v_smp, "socionext,milbeaut-m10v-smp", &m10v_smp_ops);
99 static int m10v_pm_valid(suspend_state_t state)
101 return (state == PM_SUSPEND_STANDBY) || (state == PM_SUSPEND_MEM);
104 typedef void (*phys_reset_t)(unsigned long);
105 static phys_reset_t phys_reset;
107 static int m10v_die(unsigned long arg)
109 setup_mm_for_reboot();
110 asm("wfi");
111 /* Boot just like a secondary */
112 phys_reset = (phys_reset_t)(unsigned long)virt_to_phys(cpu_reset);
113 phys_reset(virt_to_phys(cpu_resume));
115 return 0;
118 static int m10v_pm_enter(suspend_state_t state)
120 switch (state) {
121 case PM_SUSPEND_STANDBY:
122 asm("wfi");
123 break;
124 case PM_SUSPEND_MEM:
125 cpu_pm_enter();
126 cpu_suspend(0, m10v_die);
127 cpu_pm_exit();
128 break;
130 return 0;
133 static const struct platform_suspend_ops m10v_pm_ops = {
134 .valid = m10v_pm_valid,
135 .enter = m10v_pm_enter,
138 struct clk *m10v_clclk_register(struct device *cpu_dev);
140 static int __init m10v_pm_init(void)
142 if (of_machine_is_compatible("socionext,milbeaut-evb"))
143 suspend_set_ops(&m10v_pm_ops);
145 return 0;
147 late_initcall(m10v_pm_init);