Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / arm / mach-hisi / platsmp.c
blobda7a09c1dae56f34c79720819fed22a9de3fe9d6
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2013 Linaro Ltd.
4 * Copyright (c) 2013 Hisilicon Limited.
5 * Based on arch/arm/mach-vexpress/platsmp.c, Copyright (C) 2002 ARM Ltd.
6 */
7 #include <linux/smp.h>
8 #include <linux/io.h>
9 #include <linux/of_address.h>
10 #include <linux/delay.h>
12 #include <asm/cacheflush.h>
13 #include <asm/smp_plat.h>
14 #include <asm/smp_scu.h>
15 #include <asm/mach/map.h>
17 #include "core.h"
19 #define HIX5HD2_BOOT_ADDRESS 0xffff0000
21 static void __iomem *ctrl_base;
23 void hi3xxx_set_cpu_jump(int cpu, void *jump_addr)
25 cpu = cpu_logical_map(cpu);
26 if (!cpu || !ctrl_base)
27 return;
28 writel_relaxed(__pa_symbol(jump_addr), ctrl_base + ((cpu - 1) << 2));
31 int hi3xxx_get_cpu_jump(int cpu)
33 cpu = cpu_logical_map(cpu);
34 if (!cpu || !ctrl_base)
35 return 0;
36 return readl_relaxed(ctrl_base + ((cpu - 1) << 2));
39 static void __init hisi_enable_scu_a9(void)
41 unsigned long base = 0;
42 void __iomem *scu_base = NULL;
44 if (scu_a9_has_base()) {
45 base = scu_a9_get_base();
46 scu_base = ioremap(base, SZ_4K);
47 if (!scu_base) {
48 pr_err("ioremap(scu_base) failed\n");
49 return;
51 scu_enable(scu_base);
52 iounmap(scu_base);
56 static void __init hi3xxx_smp_prepare_cpus(unsigned int max_cpus)
58 struct device_node *np = NULL;
59 u32 offset = 0;
61 hisi_enable_scu_a9();
62 if (!ctrl_base) {
63 np = of_find_compatible_node(NULL, NULL, "hisilicon,sysctrl");
64 if (!np) {
65 pr_err("failed to find hisilicon,sysctrl node\n");
66 return;
68 ctrl_base = of_iomap(np, 0);
69 if (!ctrl_base) {
70 pr_err("failed to map address\n");
71 return;
73 if (of_property_read_u32(np, "smp-offset", &offset) < 0) {
74 pr_err("failed to find smp-offset property\n");
75 return;
77 ctrl_base += offset;
81 static int hi3xxx_boot_secondary(unsigned int cpu, struct task_struct *idle)
83 hi3xxx_set_cpu(cpu, true);
84 hi3xxx_set_cpu_jump(cpu, secondary_startup);
85 arch_send_wakeup_ipi_mask(cpumask_of(cpu));
86 return 0;
89 static const struct smp_operations hi3xxx_smp_ops __initconst = {
90 .smp_prepare_cpus = hi3xxx_smp_prepare_cpus,
91 .smp_boot_secondary = hi3xxx_boot_secondary,
92 #ifdef CONFIG_HOTPLUG_CPU
93 .cpu_die = hi3xxx_cpu_die,
94 .cpu_kill = hi3xxx_cpu_kill,
95 #endif
98 static void __init hisi_common_smp_prepare_cpus(unsigned int max_cpus)
100 hisi_enable_scu_a9();
103 static void hix5hd2_set_scu_boot_addr(phys_addr_t start_addr, phys_addr_t jump_addr)
105 void __iomem *virt;
107 virt = ioremap(start_addr, PAGE_SIZE);
109 writel_relaxed(0xe51ff004, virt); /* ldr pc, [pc, #-4] */
110 writel_relaxed(jump_addr, virt + 4); /* pc jump phy address */
111 iounmap(virt);
114 static int hix5hd2_boot_secondary(unsigned int cpu, struct task_struct *idle)
116 phys_addr_t jumpaddr;
118 jumpaddr = __pa_symbol(secondary_startup);
119 hix5hd2_set_scu_boot_addr(HIX5HD2_BOOT_ADDRESS, jumpaddr);
120 hix5hd2_set_cpu(cpu, true);
121 arch_send_wakeup_ipi_mask(cpumask_of(cpu));
122 return 0;
126 static const struct smp_operations hix5hd2_smp_ops __initconst = {
127 .smp_prepare_cpus = hisi_common_smp_prepare_cpus,
128 .smp_boot_secondary = hix5hd2_boot_secondary,
129 #ifdef CONFIG_HOTPLUG_CPU
130 .cpu_die = hix5hd2_cpu_die,
131 #endif
135 #define SC_SCTL_REMAP_CLR 0x00000100
136 #define HIP01_BOOT_ADDRESS 0x80000000
137 #define REG_SC_CTRL 0x000
139 static void hip01_set_boot_addr(phys_addr_t start_addr, phys_addr_t jump_addr)
141 void __iomem *virt;
143 virt = phys_to_virt(start_addr);
145 writel_relaxed(0xe51ff004, virt);
146 writel_relaxed(jump_addr, virt + 4);
149 static int hip01_boot_secondary(unsigned int cpu, struct task_struct *idle)
151 phys_addr_t jumpaddr;
152 unsigned int remap_reg_value = 0;
153 struct device_node *node;
156 jumpaddr = __pa_symbol(secondary_startup);
157 hip01_set_boot_addr(HIP01_BOOT_ADDRESS, jumpaddr);
159 node = of_find_compatible_node(NULL, NULL, "hisilicon,hip01-sysctrl");
160 if (WARN_ON(!node))
161 return -1;
162 ctrl_base = of_iomap(node, 0);
164 /* set the secondary core boot from DDR */
165 remap_reg_value = readl_relaxed(ctrl_base + REG_SC_CTRL);
166 barrier();
167 remap_reg_value |= SC_SCTL_REMAP_CLR;
168 barrier();
169 writel_relaxed(remap_reg_value, ctrl_base + REG_SC_CTRL);
171 hip01_set_cpu(cpu, true);
173 return 0;
176 static const struct smp_operations hip01_smp_ops __initconst = {
177 .smp_prepare_cpus = hisi_common_smp_prepare_cpus,
178 .smp_boot_secondary = hip01_boot_secondary,
181 CPU_METHOD_OF_DECLARE(hi3xxx_smp, "hisilicon,hi3620-smp", &hi3xxx_smp_ops);
182 CPU_METHOD_OF_DECLARE(hix5hd2_smp, "hisilicon,hix5hd2-smp", &hix5hd2_smp_ops);
183 CPU_METHOD_OF_DECLARE(hip01_smp, "hisilicon,hip01-smp", &hip01_smp_ops);