]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - arch/x86/include/asm/mshyperv.h
Merge tag 'hyperv-next-signed-20240320' of git://git.kernel.org/pub/scm/linux/kernel...
[thirdparty/kernel/linux.git] / arch / x86 / include / asm / mshyperv.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
e08cae41
PA
2#ifndef _ASM_X86_MSHYPER_H
3#define _ASM_X86_MSHYPER_H
a2a47c6c 4
e08cae41 5#include <linux/types.h>
806c8927 6#include <linux/nmi.h>
1cf106d9 7#include <linux/msi.h>
060f2b97 8#include <linux/io.h>
5a485803 9#include <asm/hyperv-tlfs.h>
e70e5892 10#include <asm/nospec-branch.h>
b9d8cf2e 11#include <asm/paravirt.h>
753ed9c9 12#include <asm/mshyperv.h>
e08cae41 13
812b0597
MK
14/*
15 * Hyper-V always provides a single IO-APIC at this MMIO address.
16 * Ideally, the value should be looked up in ACPI tables, but it
17 * is needed for mapping the IO-APIC early in boot on Confidential
18 * VMs, before ACPI functions can be used.
19 */
20#define HV_IOAPIC_BASE_ADDRESS 0xfec00000
21
3be1bc2f
SS
22#define HV_VTL_NORMAL 0x0
23#define HV_VTL_SECURE 0x1
24#define HV_VTL_MGMT 0x2
25
faff4406
TL
26union hv_ghcb;
27
0cc4f6d9 28DECLARE_STATIC_KEY_FALSE(isolation_type_snp);
08e9d120 29DECLARE_STATIC_KEY_FALSE(isolation_type_tdx);
0cc4f6d9 30
cc4edae4
LT
31typedef int (*hyperv_fill_flush_list_func)(
32 struct hv_guest_mapping_flush_list *flush,
33 void *data);
34
bc2b0331 35void hyperv_vector_handler(struct pt_regs *regs);
8730046c 36
0a7a0058
SS
37static inline unsigned char hv_get_nmi_reason(void)
38{
39 return 0;
40}
41
8730046c 42#if IS_ENABLED(CONFIG_HYPERV)
dfe94d40 43extern int hyperv_init_cpuhp;
d3a9d7e4 44extern bool hyperv_paravisor_present;
dfe94d40 45
fc53662f
VK
46extern void *hv_hypercall_pg;
47
99a0f46a
WL
48extern u64 hv_current_partition_id;
49
e1878402 50extern union hv_ghcb * __percpu *hv_ghcb_pg;
0cc4f6d9 51
e3131f1c 52bool hv_isolation_type_snp(void);
08e9d120 53bool hv_isolation_type_tdx(void);
d6e0228d 54u64 hv_tdx_hypercall(u64 control, u64 param1, u64 param2);
08e9d120 55
44676bb9
TL
56/*
57 * DEFAULT INIT GPAT and SEGMENT LIMIT value in struct VMSA
58 * to start AP in enlightened SEV guest.
59 */
60#define HV_AP_INIT_GPAT_DEFAULT 0x0007040600070406ULL
61#define HV_AP_SEGMENT_LIMIT 0xffffffff
48b1f683 62
86b5ec35
WL
63int hv_call_deposit_pages(int node, u64 partition_id, u32 num_pages);
64int hv_call_add_logical_proc(int node, u32 lp_index, u32 acpi_id);
65int hv_call_create_vp(int node, u64 partition_id, u32 vp_index, u32 flags);
66
d6e0228d
DC
67/*
68 * If the hypercall involves no input or output parameters, the hypervisor
69 * ignores the corresponding GPA pointer.
70 */
fc53662f
VK
71static inline u64 hv_do_hypercall(u64 control, void *input, void *output)
72{
73 u64 input_address = input ? virt_to_phys(input) : 0;
74 u64 output_address = output ? virt_to_phys(output) : 0;
75 u64 hv_status;
fc53662f
VK
76
77#ifdef CONFIG_X86_64
d3a9d7e4 78 if (hv_isolation_type_tdx() && !hyperv_paravisor_present)
d6e0228d
DC
79 return hv_tdx_hypercall(control, input_address, output_address);
80
e3131f1c 81 if (hv_isolation_type_snp() && !hyperv_paravisor_present) {
48b1f683
TL
82 __asm__ __volatile__("mov %4, %%r8\n"
83 "vmmcall"
84 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
85 "+c" (control), "+d" (input_address)
86 : "r" (output_address)
87 : "cc", "memory", "r8", "r9", "r10", "r11");
88 return hv_status;
89 }
90
fc53662f
VK
91 if (!hv_hypercall_pg)
92 return U64_MAX;
93
94 __asm__ __volatile__("mov %4, %%r8\n"
e70e5892 95 CALL_NOSPEC
f5caf621 96 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
fc53662f 97 "+c" (control), "+d" (input_address)
e70e5892
DW
98 : "r" (output_address),
99 THUNK_TARGET(hv_hypercall_pg)
fc53662f
VK
100 : "cc", "memory", "r8", "r9", "r10", "r11");
101#else
102 u32 input_address_hi = upper_32_bits(input_address);
103 u32 input_address_lo = lower_32_bits(input_address);
104 u32 output_address_hi = upper_32_bits(output_address);
105 u32 output_address_lo = lower_32_bits(output_address);
106
107 if (!hv_hypercall_pg)
108 return U64_MAX;
109
e70e5892 110 __asm__ __volatile__(CALL_NOSPEC
fc53662f 111 : "=A" (hv_status),
f5caf621 112 "+c" (input_address_lo), ASM_CALL_CONSTRAINT
fc53662f
VK
113 : "A" (control),
114 "b" (input_address_hi),
115 "D"(output_address_hi), "S"(output_address_lo),
e70e5892 116 THUNK_TARGET(hv_hypercall_pg)
fc53662f
VK
117 : "cc", "memory");
118#endif /* !x86_64 */
119 return hv_status;
120}
dee863b5 121
f0d2f5c2
JJ
122/* Hypercall to the L0 hypervisor */
123static inline u64 hv_do_nested_hypercall(u64 control, void *input, void *output)
124{
125 return hv_do_hypercall(control | HV_HYPERCALL_NESTED, input, output);
126}
127
6a8edbd0 128/* Fast hypercall with 8 bytes of input and no output */
f0d2f5c2 129static inline u64 _hv_do_fast_hypercall8(u64 control, u64 input1)
6a8edbd0 130{
f0d2f5c2 131 u64 hv_status;
6a8edbd0
VK
132
133#ifdef CONFIG_X86_64
d3a9d7e4 134 if (hv_isolation_type_tdx() && !hyperv_paravisor_present)
d6e0228d
DC
135 return hv_tdx_hypercall(control, input1, 0);
136
e3131f1c 137 if (hv_isolation_type_snp() && !hyperv_paravisor_present) {
48b1f683
TL
138 __asm__ __volatile__(
139 "vmmcall"
140 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
141 "+c" (control), "+d" (input1)
142 :: "cc", "r8", "r9", "r10", "r11");
143 } else {
e70e5892 144 __asm__ __volatile__(CALL_NOSPEC
f5caf621 145 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
6a8edbd0 146 "+c" (control), "+d" (input1)
e70e5892 147 : THUNK_TARGET(hv_hypercall_pg)
6a8edbd0
VK
148 : "cc", "r8", "r9", "r10", "r11");
149 }
150#else
151 {
152 u32 input1_hi = upper_32_bits(input1);
153 u32 input1_lo = lower_32_bits(input1);
154
e70e5892 155 __asm__ __volatile__ (CALL_NOSPEC
6a8edbd0
VK
156 : "=A"(hv_status),
157 "+c"(input1_lo),
f5caf621 158 ASM_CALL_CONSTRAINT
6a8edbd0
VK
159 : "A" (control),
160 "b" (input1_hi),
e70e5892 161 THUNK_TARGET(hv_hypercall_pg)
6a8edbd0
VK
162 : "cc", "edi", "esi");
163 }
164#endif
165 return hv_status;
166}
167
f0d2f5c2
JJ
168static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1)
169{
170 u64 control = (u64)code | HV_HYPERCALL_FAST_BIT;
171
172 return _hv_do_fast_hypercall8(control, input1);
173}
174
175static inline u64 hv_do_fast_nested_hypercall8(u16 code, u64 input1)
176{
177 u64 control = (u64)code | HV_HYPERCALL_FAST_BIT | HV_HYPERCALL_NESTED;
178
179 return _hv_do_fast_hypercall8(control, input1);
180}
181
53e52966 182/* Fast hypercall with 16 bytes of input */
f0d2f5c2 183static inline u64 _hv_do_fast_hypercall16(u64 control, u64 input1, u64 input2)
53e52966 184{
f0d2f5c2 185 u64 hv_status;
53e52966
VK
186
187#ifdef CONFIG_X86_64
d3a9d7e4 188 if (hv_isolation_type_tdx() && !hyperv_paravisor_present)
d6e0228d
DC
189 return hv_tdx_hypercall(control, input1, input2);
190
e3131f1c 191 if (hv_isolation_type_snp() && !hyperv_paravisor_present) {
48b1f683
TL
192 __asm__ __volatile__("mov %4, %%r8\n"
193 "vmmcall"
194 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
195 "+c" (control), "+d" (input1)
196 : "r" (input2)
197 : "cc", "r8", "r9", "r10", "r11");
198 } else {
53e52966
VK
199 __asm__ __volatile__("mov %4, %%r8\n"
200 CALL_NOSPEC
201 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
202 "+c" (control), "+d" (input1)
203 : "r" (input2),
204 THUNK_TARGET(hv_hypercall_pg)
205 : "cc", "r8", "r9", "r10", "r11");
206 }
207#else
208 {
209 u32 input1_hi = upper_32_bits(input1);
210 u32 input1_lo = lower_32_bits(input1);
211 u32 input2_hi = upper_32_bits(input2);
212 u32 input2_lo = lower_32_bits(input2);
213
214 __asm__ __volatile__ (CALL_NOSPEC
215 : "=A"(hv_status),
216 "+c"(input1_lo), ASM_CALL_CONSTRAINT
217 : "A" (control), "b" (input1_hi),
218 "D"(input2_hi), "S"(input2_lo),
219 THUNK_TARGET(hv_hypercall_pg)
220 : "cc");
221 }
222#endif
b42967dc 223 return hv_status;
53e52966
VK
224}
225
f0d2f5c2
JJ
226static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2)
227{
228 u64 control = (u64)code | HV_HYPERCALL_FAST_BIT;
229
230 return _hv_do_fast_hypercall16(control, input1, input2);
231}
232
233static inline u64 hv_do_fast_nested_hypercall16(u16 code, u64 input1, u64 input2)
234{
235 u64 control = (u64)code | HV_HYPERCALL_FAST_BIT | HV_HYPERCALL_NESTED;
236
237 return _hv_do_fast_hypercall16(control, input1, input2);
238}
239
a46d15cc
VK
240extern struct hv_vp_assist_page **hv_vp_assist_page;
241
242static inline struct hv_vp_assist_page *hv_get_vp_assist_page(unsigned int cpu)
243{
244 if (!hv_vp_assist_page)
245 return NULL;
246
247 return hv_vp_assist_page[cpu];
248}
7415aea6 249
6b48cb5f 250void __init hyperv_init(void);
2ffd9e33 251void hyperv_setup_mmu_ops(void);
93286261
VK
252void set_hv_tscchange_cb(void (*cb)(void));
253void clear_hv_tscchange_cb(void);
254void hyperv_stop_tsc_emulation(void);
eb914cfe 255int hyperv_flush_guest_mapping(u64 as);
cc4edae4
LT
256int hyperv_flush_guest_mapping_range(u64 as,
257 hyperv_fill_flush_list_func fill_func, void *data);
258int hyperv_fill_flush_guest_mapping_list(
259 struct hv_guest_mapping_flush_list *flush,
260 u64 start_gfn, u64 end_gfn);
2d2ccf24
TG
261
262#ifdef CONFIG_X86_64
6b48cb5f 263void hv_apic_init(void);
3a025de6
YS
264void __init hv_init_spinlocks(void);
265bool hv_vcpu_is_preempted(int vcpu);
2d2ccf24
TG
266#else
267static inline void hv_apic_init(void) {}
268#endif
269
e39397d1
WL
270struct irq_domain *hv_create_pci_msi_domain(void);
271
fb5ef351
WL
272int hv_map_ioapic_interrupt(int ioapic_id, bool level, int vcpu, int vector,
273 struct hv_interrupt_entry *entry);
274int hv_unmap_ioapic_interrupt(int ioapic_id, struct hv_interrupt_entry *entry);
faff4406
TL
275
276#ifdef CONFIG_AMD_MEM_ENCRYPT
49d6a3c0 277bool hv_ghcb_negotiate_protocol(void);
611d4c71 278void __noreturn hv_ghcb_terminate(unsigned int set, unsigned int reason);
92fe9bb7 279int hv_snp_boot_ap(u32 cpu, unsigned long start_ip);
faff4406 280#else
49d6a3c0
TL
281static inline bool hv_ghcb_negotiate_protocol(void) { return false; }
282static inline void hv_ghcb_terminate(unsigned int set, unsigned int reason) {}
92fe9bb7 283static inline int hv_snp_boot_ap(u32 cpu, unsigned long start_ip) { return 0; }
faff4406
TL
284#endif
285
d3a9d7e4
DC
286#if defined(CONFIG_AMD_MEM_ENCRYPT) || defined(CONFIG_INTEL_TDX_GUEST)
287void hv_vtom_init(void);
b9b4fe3a
DC
288void hv_ivm_msr_write(u64 msr, u64 value);
289void hv_ivm_msr_read(u64 msr, u64 *value);
d3a9d7e4
DC
290#else
291static inline void hv_vtom_init(void) {}
b9b4fe3a
DC
292static inline void hv_ivm_msr_write(u64 msr, u64 value) {}
293static inline void hv_ivm_msr_read(u64 msr, u64 *value) {}
d3a9d7e4 294#endif
faff4406 295
0e3f7d12 296static inline bool hv_is_synic_msr(unsigned int reg)
faff4406 297{
0e3f7d12
NDN
298 return (reg >= HV_X64_MSR_SCONTROL) &&
299 (reg <= HV_X64_MSR_SINT15);
b14033a3
NDN
300}
301
0e3f7d12 302static inline bool hv_is_sint_msr(unsigned int reg)
b14033a3 303{
0e3f7d12
NDN
304 return (reg >= HV_X64_MSR_SINT0) &&
305 (reg <= HV_X64_MSR_SINT15);
faff4406
TL
306}
307
0e3f7d12
NDN
308u64 hv_get_msr(unsigned int reg);
309void hv_set_msr(unsigned int reg, u64 value);
310u64 hv_get_non_nested_msr(unsigned int reg);
311void hv_set_non_nested_msr(unsigned int reg, u64 value);
faff4406 312
0e3f7d12 313static __always_inline u64 hv_raw_get_msr(unsigned int reg)
e39acc37
PZ
314{
315 return __rdmsr(reg);
316}
317
79cadff2
VK
318#else /* CONFIG_HYPERV */
319static inline void hyperv_init(void) {}
2ffd9e33 320static inline void hyperv_setup_mmu_ops(void) {}
93286261
VK
321static inline void set_hv_tscchange_cb(void (*cb)(void)) {}
322static inline void clear_hv_tscchange_cb(void) {}
323static inline void hyperv_stop_tsc_emulation(void) {};
a46d15cc
VK
324static inline struct hv_vp_assist_page *hv_get_vp_assist_page(unsigned int cpu)
325{
326 return NULL;
327}
eb914cfe 328static inline int hyperv_flush_guest_mapping(u64 as) { return -1; }
cc4edae4
LT
329static inline int hyperv_flush_guest_mapping_range(u64 as,
330 hyperv_fill_flush_list_func fill_func, void *data)
331{
332 return -1;
333}
0e3f7d12
NDN
334static inline void hv_set_msr(unsigned int reg, u64 value) { }
335static inline u64 hv_get_msr(unsigned int reg) { return 0; }
336static inline void hv_set_non_nested_msr(unsigned int reg, u64 value) { }
337static inline u64 hv_get_non_nested_msr(unsigned int reg) { return 0; }
79cadff2
VK
338#endif /* CONFIG_HYPERV */
339
765e33f5 340
3be1bc2f
SS
341#ifdef CONFIG_HYPERV_VTL_MODE
342void __init hv_vtl_init_platform(void);
14058f72 343int __init hv_vtl_early_init(void);
3be1bc2f
SS
344#else
345static inline void __init hv_vtl_init_platform(void) {}
14058f72 346static inline int __init hv_vtl_early_init(void) { return 0; }
3be1bc2f
SS
347#endif
348
765e33f5
MK
349#include <asm-generic/mshyperv.h>
350
a2a47c6c 351#endif