1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/module.h>
4 #include <linux/init.h>
5 #include <linux/kernel.h>
7 #include <linux/sched.h>
8 #include <linux/kernel_stat.h>
9 #include <linux/notifier.h>
10 #include <linux/cpu.h>
11 #include <linux/percpu.h>
12 #include <linux/delay.h>
13 #include <linux/err.h>
14 #include <linux/irq.h>
15 #include <linux/irqdomain.h>
17 #include <linux/sched/task_stack.h>
18 #include <linux/sched/mm.h>
19 #include <linux/sched/hotplug.h>
21 #include <asm/traps.h>
22 #include <asm/sections.h>
23 #include <asm/mmu_context.h>
24 #include <asm/pgalloc.h>
26 struct ipi_data_struct
{
27 unsigned long bits ____cacheline_aligned
;
29 static DEFINE_PER_CPU(struct ipi_data_struct
, ipi_data
);
31 enum ipi_message_type
{
38 static irqreturn_t
handle_ipi(int irq
, void *dev
)
43 ops
= xchg(&this_cpu_ptr(&ipi_data
)->bits
, 0);
47 if (ops
& (1 << IPI_RESCHEDULE
))
50 if (ops
& (1 << IPI_CALL_FUNC
))
51 generic_smp_call_function_interrupt();
53 BUG_ON((ops
>> IPI_MAX
) != 0);
59 static void (*send_arch_ipi
)(const struct cpumask
*mask
);
62 void __init
set_send_ipi(void (*func
)(const struct cpumask
*mask
), int irq
)
72 send_ipi_message(const struct cpumask
*to_whom
, enum ipi_message_type operation
)
76 for_each_cpu(i
, to_whom
)
77 set_bit(operation
, &per_cpu_ptr(&ipi_data
, i
)->bits
);
80 send_arch_ipi(to_whom
);
83 void arch_send_call_function_ipi_mask(struct cpumask
*mask
)
85 send_ipi_message(mask
, IPI_CALL_FUNC
);
88 void arch_send_call_function_single_ipi(int cpu
)
90 send_ipi_message(cpumask_of(cpu
), IPI_CALL_FUNC
);
93 static void ipi_stop(void *unused
)
98 void smp_send_stop(void)
100 on_each_cpu(ipi_stop
, NULL
, 1);
103 void smp_send_reschedule(int cpu
)
105 send_ipi_message(cpumask_of(cpu
), IPI_RESCHEDULE
);
108 void __init
smp_prepare_boot_cpu(void)
112 void __init
smp_prepare_cpus(unsigned int max_cpus
)
116 static int ipi_dummy_dev
;
118 void __init
setup_smp_ipi(void)
125 rc
= request_percpu_irq(ipi_irq
, handle_ipi
, "IPI Interrupt",
128 panic("%s IRQ request failed\n", __func__
);
130 enable_percpu_irq(ipi_irq
, 0);
133 void __init
setup_smp(void)
135 struct device_node
*node
= NULL
;
138 for_each_of_cpu_node(node
) {
139 if (!of_device_is_available(node
))
142 if (of_property_read_u32(node
, "reg", &cpu
))
148 set_cpu_possible(cpu
, true);
149 set_cpu_present(cpu
, true);
153 extern void _start_smp_secondary(void);
155 volatile unsigned int secondary_hint
;
156 volatile unsigned int secondary_ccr
;
157 volatile unsigned int secondary_stack
;
159 int __cpu_up(unsigned int cpu
, struct task_struct
*tidle
)
161 unsigned long mask
= 1 << cpu
;
164 (unsigned int) task_stack_page(tidle
) + THREAD_SIZE
- 8;
165 secondary_hint
= mfcr("cr31");
166 secondary_ccr
= mfcr("cr18");
169 * Because other CPUs are in reset status, we must flush data
170 * from cache to out and secondary CPUs use them in
171 * csky_start_secondary(void)
175 if (mask
& mfcr("cr<29, 0>")) {
176 send_arch_ipi(cpumask_of(cpu
));
178 /* Enable cpu in SMP reset ctrl reg */
179 mask
|= mfcr("cr<29, 0>");
180 mtcr("cr<29, 0>", mask
);
183 /* Wait for the cpu online */
184 while (!cpu_online(cpu
));
191 void __init
smp_cpus_done(unsigned int max_cpus
)
195 int setup_profiling_timer(unsigned int multiplier
)
200 void csky_start_secondary(void)
202 struct mm_struct
*mm
= &init_mm
;
203 unsigned int cpu
= smp_processor_id();
205 mtcr("cr31", secondary_hint
);
206 mtcr("cr18", secondary_ccr
);
208 mtcr("vbr", vec_base
);
211 write_mmu_pagemask(0);
212 TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir
);
213 TLBMISS_HANDLER_SETUP_PGD_KERNEL(swapper_pg_dir
);
215 #ifdef CONFIG_CPU_HAS_FPU
219 enable_percpu_irq(ipi_irq
, 0);
223 current
->active_mm
= mm
;
224 cpumask_set_cpu(cpu
, mm_cpumask(mm
));
226 notify_cpu_starting(cpu
);
227 set_cpu_online(cpu
, true);
229 pr_info("CPU%u Online: %s...\n", cpu
, __func__
);
233 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
236 #ifdef CONFIG_HOTPLUG_CPU
237 int __cpu_disable(void)
239 unsigned int cpu
= smp_processor_id();
241 set_cpu_online(cpu
, false);
243 irq_migrate_all_off_this_cpu();
245 clear_tasks_mm_cpumask(cpu
);
250 void __cpu_die(unsigned int cpu
)
252 if (!cpu_wait_death(cpu
, 5)) {
253 pr_crit("CPU%u: shutdown failed\n", cpu
);
256 pr_notice("CPU%u: shutdown\n", cpu
);
259 void arch_cpu_idle_dead(void)
265 while (!secondary_stack
)
273 "jmpi csky_start_secondary"
275 : "r" (secondary_stack
));