2 * SMP initialisation and IPI support
3 * Based on arch/arm64/kernel/smp.c
5 * Copyright (C) 2012 ARM Ltd.
6 * Copyright (C) 2015 Regents of the University of California
7 * Copyright (C) 2017 SiFive
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/notifier.h>
26 #include <linux/cpu.h>
27 #include <linux/percpu.h>
28 #include <linux/delay.h>
29 #include <linux/err.h>
30 #include <linux/irq.h>
32 #include <linux/sched/task_stack.h>
33 #include <linux/sched/mm.h>
35 #include <asm/mmu_context.h>
36 #include <asm/tlbflush.h>
37 #include <asm/sections.h>
40 void *__cpu_up_stack_pointer
[NR_CPUS
];
41 void *__cpu_up_task_pointer
[NR_CPUS
];
43 void __init
smp_prepare_boot_cpu(void)
47 void __init
smp_prepare_cpus(unsigned int max_cpus
)
51 void __init
setup_smp(void)
53 struct device_node
*dn
= NULL
;
55 bool found_boot_cpu
= false;
58 while ((dn
= of_find_node_by_type(dn
, "cpu"))) {
59 hart
= riscv_of_processor_hartid(dn
);
63 if (hart
== cpuid_to_hartid_map(0)) {
64 BUG_ON(found_boot_cpu
);
69 cpuid_to_hartid_map(cpuid
) = hart
;
70 set_cpu_possible(cpuid
, true);
71 set_cpu_present(cpuid
, true);
75 BUG_ON(!found_boot_cpu
);
78 int __cpu_up(unsigned int cpu
, struct task_struct
*tidle
)
80 int hartid
= cpuid_to_hartid_map(cpu
);
81 tidle
->thread_info
.cpu
= cpu
;
84 * On RISC-V systems, all harts boot on their own accord. Our _start
85 * selects the first hart to boot the kernel and causes the remainder
86 * of the harts to spin in a loop waiting for their stack pointer to be
87 * setup by that main hart. Writing __cpu_up_stack_pointer signals to
88 * the spinning harts that they can continue the boot process.
91 WRITE_ONCE(__cpu_up_stack_pointer
[hartid
],
92 task_stack_page(tidle
) + THREAD_SIZE
);
93 WRITE_ONCE(__cpu_up_task_pointer
[hartid
], tidle
);
95 while (!cpu_online(cpu
))
101 void __init
smp_cpus_done(unsigned int max_cpus
)
106 * C entry point for a secondary processor.
108 asmlinkage
void __init
smp_callin(void)
110 struct mm_struct
*mm
= &init_mm
;
112 /* All kernel threads share the same mm context. */
114 current
->active_mm
= mm
;
117 notify_cpu_starting(smp_processor_id());
118 set_cpu_online(smp_processor_id(), 1);
120 * Remote TLB flushes are ignored while the CPU is offline, so emit
121 * a local TLB flush right now just in case.
123 local_flush_tlb_all();
125 * Disable preemption before enabling interrupts, so we don't try to
126 * schedule a CPU that hasn't actually started yet.
130 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);