1 // SPDX-License-Identifier: GPL-2.0
4 * Hyper-V specific APIC code.
6 * Copyright (C) 2018, Microsoft, Inc.
8 * Author : K. Y. Srinivasan <kys@microsoft.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
17 * NON INFRINGEMENT. See the GNU General Public License for more
22 #include <linux/types.h>
23 #include <linux/version.h>
24 #include <linux/vmalloc.h>
26 #include <linux/clockchips.h>
27 #include <linux/hyperv.h>
28 #include <linux/slab.h>
29 #include <linux/cpuhotplug.h>
30 #include <asm/hypervisor.h>
31 #include <asm/mshyperv.h>
34 static struct apic orig_apic
;
36 static u64
hv_apic_icr_read(void)
40 rdmsrl(HV_X64_MSR_ICR
, reg_val
);
44 static void hv_apic_icr_write(u32 low
, u32 id
)
48 reg_val
= SET_APIC_DEST_FIELD(id
);
49 reg_val
= reg_val
<< 32;
52 wrmsrl(HV_X64_MSR_ICR
, reg_val
);
55 static u32
hv_apic_read(u32 reg
)
61 rdmsr(HV_X64_MSR_EOI
, reg_val
, hi
);
64 rdmsr(HV_X64_MSR_TPR
, reg_val
, hi
);
68 return native_apic_mem_read(reg
);
72 static void hv_apic_write(u32 reg
, u32 val
)
76 wrmsr(HV_X64_MSR_EOI
, val
, 0);
79 wrmsr(HV_X64_MSR_TPR
, val
, 0);
82 native_apic_mem_write(reg
, val
);
86 static void hv_apic_eoi_write(u32 reg
, u32 val
)
88 wrmsr(HV_X64_MSR_EOI
, val
, 0);
92 * IPI implementation on Hyper-V.
94 static bool __send_ipi_mask_ex(const struct cpumask
*mask
, int vector
)
96 struct ipi_arg_ex
**arg
;
97 struct ipi_arg_ex
*ipi_arg
;
102 local_irq_save(flags
);
103 arg
= (struct ipi_arg_ex
**)this_cpu_ptr(hyperv_pcpu_input_arg
);
106 if (unlikely(!ipi_arg
))
107 goto ipi_mask_ex_done
;
109 ipi_arg
->vector
= vector
;
110 ipi_arg
->reserved
= 0;
111 ipi_arg
->vp_set
.valid_bank_mask
= 0;
113 if (!cpumask_equal(mask
, cpu_present_mask
)) {
114 ipi_arg
->vp_set
.format
= HV_GENERIC_SET_SPARSE_4K
;
115 nr_bank
= cpumask_to_vpset(&(ipi_arg
->vp_set
), mask
);
118 goto ipi_mask_ex_done
;
120 ipi_arg
->vp_set
.format
= HV_GENERIC_SET_ALL
;
122 ret
= hv_do_rep_hypercall(HVCALL_SEND_IPI_EX
, 0, nr_bank
,
126 local_irq_restore(flags
);
127 return ((ret
== 0) ? true : false);
130 static bool __send_ipi_mask(const struct cpumask
*mask
, int vector
)
133 struct ipi_arg_non_ex
**arg
;
134 struct ipi_arg_non_ex
*ipi_arg
;
138 if (cpumask_empty(mask
))
141 if (!hv_hypercall_pg
)
144 if ((vector
< HV_IPI_LOW_VECTOR
) || (vector
> HV_IPI_HIGH_VECTOR
))
147 if ((ms_hyperv
.hints
& HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED
))
148 return __send_ipi_mask_ex(mask
, vector
);
150 local_irq_save(flags
);
151 arg
= (struct ipi_arg_non_ex
**)this_cpu_ptr(hyperv_pcpu_input_arg
);
154 if (unlikely(!ipi_arg
))
157 ipi_arg
->vector
= vector
;
158 ipi_arg
->reserved
= 0;
159 ipi_arg
->cpu_mask
= 0;
161 for_each_cpu(cur_cpu
, mask
) {
162 vcpu
= hv_cpu_number_to_vp_number(cur_cpu
);
163 if (vcpu
== VP_INVAL
)
167 * This particular version of the IPI hypercall can
168 * only target upto 64 CPUs.
173 __set_bit(vcpu
, (unsigned long *)&ipi_arg
->cpu_mask
);
176 ret
= hv_do_hypercall(HVCALL_SEND_IPI
, ipi_arg
, NULL
);
179 local_irq_restore(flags
);
180 return ((ret
== 0) ? true : false);
183 static bool __send_ipi_one(int cpu
, int vector
)
185 struct cpumask mask
= CPU_MASK_NONE
;
187 cpumask_set_cpu(cpu
, &mask
);
188 return __send_ipi_mask(&mask
, vector
);
191 static void hv_send_ipi(int cpu
, int vector
)
193 if (!__send_ipi_one(cpu
, vector
))
194 orig_apic
.send_IPI(cpu
, vector
);
197 static void hv_send_ipi_mask(const struct cpumask
*mask
, int vector
)
199 if (!__send_ipi_mask(mask
, vector
))
200 orig_apic
.send_IPI_mask(mask
, vector
);
203 static void hv_send_ipi_mask_allbutself(const struct cpumask
*mask
, int vector
)
205 unsigned int this_cpu
= smp_processor_id();
206 struct cpumask new_mask
;
207 const struct cpumask
*local_mask
;
209 cpumask_copy(&new_mask
, mask
);
210 cpumask_clear_cpu(this_cpu
, &new_mask
);
211 local_mask
= &new_mask
;
212 if (!__send_ipi_mask(local_mask
, vector
))
213 orig_apic
.send_IPI_mask_allbutself(mask
, vector
);
216 static void hv_send_ipi_allbutself(int vector
)
218 hv_send_ipi_mask_allbutself(cpu_online_mask
, vector
);
221 static void hv_send_ipi_all(int vector
)
223 if (!__send_ipi_mask(cpu_online_mask
, vector
))
224 orig_apic
.send_IPI_all(vector
);
227 static void hv_send_ipi_self(int vector
)
229 if (!__send_ipi_one(smp_processor_id(), vector
))
230 orig_apic
.send_IPI_self(vector
);
233 void __init
hv_apic_init(void)
235 if (ms_hyperv
.hints
& HV_X64_CLUSTER_IPI_RECOMMENDED
) {
236 if ((ms_hyperv
.hints
& HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED
))
237 pr_info("Hyper-V: Using ext hypercalls for IPI\n");
239 pr_info("Hyper-V: Using IPI hypercalls\n");
241 * Set the IPI entry points.
245 apic
->send_IPI
= hv_send_ipi
;
246 apic
->send_IPI_mask
= hv_send_ipi_mask
;
247 apic
->send_IPI_mask_allbutself
= hv_send_ipi_mask_allbutself
;
248 apic
->send_IPI_allbutself
= hv_send_ipi_allbutself
;
249 apic
->send_IPI_all
= hv_send_ipi_all
;
250 apic
->send_IPI_self
= hv_send_ipi_self
;
253 if (ms_hyperv
.hints
& HV_X64_APIC_ACCESS_RECOMMENDED
) {
254 pr_info("Hyper-V: Using MSR based APIC access\n");
255 apic_set_eoi_write(hv_apic_eoi_write
);
256 apic
->read
= hv_apic_read
;
257 apic
->write
= hv_apic_write
;
258 apic
->icr_write
= hv_apic_icr_write
;
259 apic
->icr_read
= hv_apic_icr_read
;