1 // SPDX-License-Identifier: GPL-2.0
4 #include <linux/slab.h>
5 #include <linux/cpumask.h>
6 #include <linux/percpu.h>
8 #include <xen/events.h>
10 #include <xen/hvc-console.h>
14 static DEFINE_PER_CPU(struct xen_common_irq, xen_resched_irq) = { .irq = -1 };
15 static DEFINE_PER_CPU(struct xen_common_irq, xen_callfunc_irq) = { .irq = -1 };
16 static DEFINE_PER_CPU(struct xen_common_irq, xen_callfuncsingle_irq) = { .irq = -1 };
17 static DEFINE_PER_CPU(struct xen_common_irq, xen_debug_irq) = { .irq = -1 };
19 static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
20 static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
23 * Reschedule call back.
25 static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
27 inc_irq_stat(irq_resched_count);
33 void xen_smp_intr_free(unsigned int cpu)
35 if (per_cpu(xen_resched_irq, cpu).irq >= 0) {
36 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu).irq, NULL);
37 per_cpu(xen_resched_irq, cpu).irq = -1;
38 kfree(per_cpu(xen_resched_irq, cpu).name);
39 per_cpu(xen_resched_irq, cpu).name = NULL;
41 if (per_cpu(xen_callfunc_irq, cpu).irq >= 0) {
42 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu).irq, NULL);
43 per_cpu(xen_callfunc_irq, cpu).irq = -1;
44 kfree(per_cpu(xen_callfunc_irq, cpu).name);
45 per_cpu(xen_callfunc_irq, cpu).name = NULL;
47 if (per_cpu(xen_debug_irq, cpu).irq >= 0) {
48 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu).irq, NULL);
49 per_cpu(xen_debug_irq, cpu).irq = -1;
50 kfree(per_cpu(xen_debug_irq, cpu).name);
51 per_cpu(xen_debug_irq, cpu).name = NULL;
53 if (per_cpu(xen_callfuncsingle_irq, cpu).irq >= 0) {
54 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu).irq,
56 per_cpu(xen_callfuncsingle_irq, cpu).irq = -1;
57 kfree(per_cpu(xen_callfuncsingle_irq, cpu).name);
58 per_cpu(xen_callfuncsingle_irq, cpu).name = NULL;
62 int xen_smp_intr_init(unsigned int cpu)
65 char *resched_name, *callfunc_name, *debug_name;
67 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
68 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
70 xen_reschedule_interrupt,
71 IRQF_PERCPU|IRQF_NOBALANCING,
76 per_cpu(xen_resched_irq, cpu).irq = rc;
77 per_cpu(xen_resched_irq, cpu).name = resched_name;
79 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
80 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
82 xen_call_function_interrupt,
83 IRQF_PERCPU|IRQF_NOBALANCING,
88 per_cpu(xen_callfunc_irq, cpu).irq = rc;
89 per_cpu(xen_callfunc_irq, cpu).name = callfunc_name;
91 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
92 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
93 IRQF_PERCPU | IRQF_NOBALANCING,
97 per_cpu(xen_debug_irq, cpu).irq = rc;
98 per_cpu(xen_debug_irq, cpu).name = debug_name;
100 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
101 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
103 xen_call_function_single_interrupt,
104 IRQF_PERCPU|IRQF_NOBALANCING,
109 per_cpu(xen_callfuncsingle_irq, cpu).irq = rc;
110 per_cpu(xen_callfuncsingle_irq, cpu).name = callfunc_name;
115 xen_smp_intr_free(cpu);
119 void __init xen_smp_cpus_done(unsigned int max_cpus)
121 int cpu, rc, count = 0;
123 if (xen_hvm_domain())
124 native_smp_cpus_done(max_cpus);
126 calculate_max_logical_packages();
128 if (xen_have_vcpu_info_placement)
131 for_each_online_cpu(cpu) {
132 if (xen_vcpu_nr(cpu) < MAX_VIRT_CPUS)
139 * Reset vcpu_info so this cpu cannot be onlined again.
141 xen_vcpu_info_reset(cpu);
144 pr_warn("%s: failed to bring CPU %d down, error %d\n",
148 WARN(count, "%s: brought %d CPUs offline\n", __func__, count);
151 void xen_smp_send_reschedule(int cpu)
153 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
156 static void __xen_send_IPI_mask(const struct cpumask *mask,
161 for_each_cpu_and(cpu, mask, cpu_online_mask)
162 xen_send_IPI_one(cpu, vector);
165 void xen_smp_send_call_function_ipi(const struct cpumask *mask)
169 __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
171 /* Make sure other vcpus get a chance to run if they need to. */
172 for_each_cpu(cpu, mask) {
173 if (xen_vcpu_stolen(cpu)) {
174 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
180 void xen_smp_send_call_function_single_ipi(int cpu)
182 __xen_send_IPI_mask(cpumask_of(cpu),
183 XEN_CALL_FUNCTION_SINGLE_VECTOR);
186 static inline int xen_map_vector(int vector)
191 case RESCHEDULE_VECTOR:
192 xen_vector = XEN_RESCHEDULE_VECTOR;
194 case CALL_FUNCTION_VECTOR:
195 xen_vector = XEN_CALL_FUNCTION_VECTOR;
197 case CALL_FUNCTION_SINGLE_VECTOR:
198 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR;
200 case IRQ_WORK_VECTOR:
201 xen_vector = XEN_IRQ_WORK_VECTOR;
205 case APIC_DM_NMI: /* Some use that instead of NMI_VECTOR */
206 xen_vector = XEN_NMI_VECTOR;
211 printk(KERN_ERR "xen: vector 0x%x is not implemented\n",
218 void xen_send_IPI_mask(const struct cpumask *mask,
221 int xen_vector = xen_map_vector(vector);
224 __xen_send_IPI_mask(mask, xen_vector);
227 void xen_send_IPI_all(int vector)
229 int xen_vector = xen_map_vector(vector);
232 __xen_send_IPI_mask(cpu_online_mask, xen_vector);
235 void xen_send_IPI_self(int vector)
237 int xen_vector = xen_map_vector(vector);
240 xen_send_IPI_one(smp_processor_id(), xen_vector);
243 void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
247 unsigned int this_cpu = smp_processor_id();
248 int xen_vector = xen_map_vector(vector);
250 if (!(num_online_cpus() > 1) || (xen_vector < 0))
253 for_each_cpu_and(cpu, mask, cpu_online_mask) {
257 xen_send_IPI_one(cpu, xen_vector);
261 void xen_send_IPI_allbutself(int vector)
263 xen_send_IPI_mask_allbutself(cpu_online_mask, vector);
266 static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
269 generic_smp_call_function_interrupt();
270 inc_irq_stat(irq_call_count);
276 static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
279 generic_smp_call_function_single_interrupt();
280 inc_irq_stat(irq_call_count);