1 // SPDX-License-Identifier: GPL-2.0-only
3 * SMP initialisation and IPI support
4 * Based on arch/arm64/kernel/smp.c
6 * Copyright (C) 2012 ARM Ltd.
7 * Copyright (C) 2015 Regents of the University of California
8 * Copyright (C) 2017 SiFive
11 #include <linux/arch_topology.h>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
16 #include <linux/sched.h>
17 #include <linux/kernel_stat.h>
18 #include <linux/notifier.h>
19 #include <linux/cpu.h>
20 #include <linux/percpu.h>
21 #include <linux/delay.h>
22 #include <linux/err.h>
23 #include <linux/irq.h>
25 #include <linux/sched/task_stack.h>
26 #include <linux/sched/mm.h>
27 #include <asm/clint.h>
28 #include <asm/cpu_ops.h>
30 #include <asm/mmu_context.h>
31 #include <asm/tlbflush.h>
32 #include <asm/sections.h>
38 static DECLARE_COMPLETION(cpu_running
);
40 void __init
smp_prepare_boot_cpu(void)
45 void __init
smp_prepare_cpus(unsigned int max_cpus
)
50 /* This covers non-smp usecase mandated by "nosmp" option */
54 for_each_possible_cpu(cpuid
) {
55 if (cpuid
== smp_processor_id())
57 if (cpu_ops
[cpuid
]->cpu_prepare
) {
58 ret
= cpu_ops
[cpuid
]->cpu_prepare(cpuid
);
62 set_cpu_present(cpuid
, true);
66 void __init
setup_smp(void)
68 struct device_node
*dn
;
70 bool found_boot_cpu
= false;
75 for_each_of_cpu_node(dn
) {
76 hart
= riscv_of_processor_hartid(dn
);
80 if (hart
== cpuid_to_hartid_map(0)) {
81 BUG_ON(found_boot_cpu
);
85 if (cpuid
>= NR_CPUS
) {
86 pr_warn("Invalid cpuid [%d] for hartid [%d]\n",
91 cpuid_to_hartid_map(cpuid
) = hart
;
95 BUG_ON(!found_boot_cpu
);
97 if (cpuid
> nr_cpu_ids
)
98 pr_warn("Total number of cpus [%d] is greater than nr_cpus option value [%d]\n",
101 for (cpuid
= 1; cpuid
< nr_cpu_ids
; cpuid
++) {
102 if (cpuid_to_hartid_map(cpuid
) != INVALID_HARTID
) {
104 set_cpu_possible(cpuid
, true);
109 int start_secondary_cpu(int cpu
, struct task_struct
*tidle
)
111 if (cpu_ops
[cpu
]->cpu_start
)
112 return cpu_ops
[cpu
]->cpu_start(cpu
, tidle
);
117 int __cpu_up(unsigned int cpu
, struct task_struct
*tidle
)
120 tidle
->thread_info
.cpu
= cpu
;
122 ret
= start_secondary_cpu(cpu
, tidle
);
124 lockdep_assert_held(&cpu_running
);
125 wait_for_completion_timeout(&cpu_running
,
126 msecs_to_jiffies(1000));
128 if (!cpu_online(cpu
)) {
129 pr_crit("CPU%u: failed to come online\n", cpu
);
133 pr_crit("CPU%u: failed to start\n", cpu
);
139 void __init
smp_cpus_done(unsigned int max_cpus
)
144 * C entry point for a secondary processor.
146 asmlinkage __visible
void smp_callin(void)
148 struct mm_struct
*mm
= &init_mm
;
150 if (!IS_ENABLED(CONFIG_RISCV_SBI
))
151 clint_clear_ipi(cpuid_to_hartid_map(smp_processor_id()));
153 /* All kernel threads share the same mm context. */
155 current
->active_mm
= mm
;
158 notify_cpu_starting(smp_processor_id());
159 update_siblings_masks(smp_processor_id());
160 set_cpu_online(smp_processor_id(), 1);
162 * Remote TLB flushes are ignored while the CPU is offline, so emit
163 * a local TLB flush right now just in case.
165 local_flush_tlb_all();
166 complete(&cpu_running
);
168 * Disable preemption before enabling interrupts, so we don't try to
169 * schedule a CPU that hasn't actually started yet.
173 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);