1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/thread_info.h>
5 #include <xen/events.h>
9 static void __init
xen_hvm_smp_prepare_boot_cpu(void)
11 BUG_ON(smp_processor_id() != 0);
12 native_smp_prepare_boot_cpu();
15 * Setup vcpu_info for boot CPU. Secondary CPUs get their vcpu_info
16 * in xen_cpu_up_prepare_hvm().
21 * Called again in case the kernel boots on vcpu >= MAX_VIRT_CPUS.
22 * Refer to comments in xen_hvm_init_time_ops().
24 xen_hvm_init_time_ops();
27 * The alternative logic (which patches the unlock/lock) runs before
28 * the smp bootup up code is activated. Hence we need to set this up
29 * the core kernel is being patched. Otherwise we will have only
30 * modules patched but not core code.
35 static void __init
xen_hvm_smp_prepare_cpus(unsigned int max_cpus
)
39 native_smp_prepare_cpus(max_cpus
);
41 if (xen_have_vector_callback
) {
42 WARN_ON(xen_smp_intr_init(0));
46 for_each_possible_cpu(cpu
) {
50 /* Set default vcpu_id to make sure that we don't use cpu-0's */
51 per_cpu(xen_vcpu_id
, cpu
) = XEN_VCPU_ID_INVALID
;
55 #ifdef CONFIG_HOTPLUG_CPU
56 static void xen_hvm_cleanup_dead_cpu(unsigned int cpu
)
58 if (xen_have_vector_callback
) {
59 xen_smp_intr_free(cpu
);
60 xen_uninit_lock_cpu(cpu
);
61 xen_teardown_timer(cpu
);
65 static void xen_hvm_cleanup_dead_cpu(unsigned int cpu
)
71 void __init
xen_hvm_smp_init(void)
73 smp_ops
.smp_prepare_boot_cpu
= xen_hvm_smp_prepare_boot_cpu
;
74 smp_ops
.smp_prepare_cpus
= xen_hvm_smp_prepare_cpus
;
75 smp_ops
.smp_cpus_done
= xen_smp_cpus_done
;
76 smp_ops
.cleanup_dead_cpu
= xen_hvm_cleanup_dead_cpu
;
78 if (!xen_have_vector_callback
) {
79 #ifdef CONFIG_PARAVIRT_SPINLOCKS
85 smp_ops
.smp_send_reschedule
= xen_smp_send_reschedule
;
86 smp_ops
.send_call_func_ipi
= xen_smp_send_call_function_ipi
;
87 smp_ops
.send_call_func_single_ipi
= xen_smp_send_call_function_single_ipi
;