blob: ffc289992d1b0f5bd81eeeed98feae67d71dfb22 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvine08cae42010-05-07 16:57:28 -07002#ifndef _ASM_X86_MSHYPER_H
3#define _ASM_X86_MSHYPER_H
Ky Srinivasana2a47c62010-05-06 12:08:41 -07004
H. Peter Anvine08cae42010-05-07 16:57:28 -07005#include <linux/types.h>
Vitaly Kuznetsov806c8922017-08-02 18:09:17 +02006#include <linux/nmi.h>
Boqun Feng1cf106d2020-02-10 11:39:53 +08007#include <linux/msi.h>
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +02008#include <asm/io.h>
Vitaly Kuznetsov5a485802018-03-20 15:02:05 +01009#include <asm/hyperv-tlfs.h>
David Woodhousee70e5892018-01-11 21:46:30 +000010#include <asm/nospec-branch.h>
Michael Kelleyb9d8cf22020-08-09 18:29:51 -070011#include <asm/paravirt.h>
H. Peter Anvine08cae42010-05-07 16:57:28 -070012
Lan Tianyucc4edae42018-12-06 21:21:05 +080013typedef int (*hyperv_fill_flush_list_func)(
14 struct hv_guest_mapping_flush_list *flush,
15 void *data);
16
Michael Kelley619a4c82018-06-05 13:37:53 -070017#define hv_init_timer(timer, tick) \
18 wrmsrl(HV_X64_MSR_STIMER0_COUNT + (2*timer), tick)
19#define hv_init_timer_config(timer, val) \
20 wrmsrl(HV_X64_MSR_STIMER0_CONFIG + (2*timer), val)
K. Y. Srinivasand5116b42017-01-19 11:51:51 -070021
K. Y. Srinivasan155e4a22017-01-19 11:51:54 -070022#define hv_get_simp(val) rdmsrl(HV_X64_MSR_SIMP, val)
23#define hv_set_simp(val) wrmsrl(HV_X64_MSR_SIMP, val)
24
K. Y. Srinivasan8e307bf2017-01-19 11:51:55 -070025#define hv_get_siefp(val) rdmsrl(HV_X64_MSR_SIEFP, val)
26#define hv_set_siefp(val) wrmsrl(HV_X64_MSR_SIEFP, val)
27
K. Y. Srinivasan06d1d982017-01-19 11:51:56 -070028#define hv_get_synic_state(val) rdmsrl(HV_X64_MSR_SCONTROL, val)
29#define hv_set_synic_state(val) wrmsrl(HV_X64_MSR_SCONTROL, val)
30
K. Y. Srinivasan7297ff02017-01-19 11:51:57 -070031#define hv_get_vp_index(index) rdmsrl(HV_X64_MSR_VP_INDEX, index)
32
Michael Kelley765e33f2019-05-30 00:14:00 +000033#define hv_signal_eom() wrmsrl(HV_X64_MSR_EOM, 0)
34
Michael Kelley619a4c82018-06-05 13:37:53 -070035#define hv_get_synint_state(int_num, val) \
36 rdmsrl(HV_X64_MSR_SINT0 + int_num, val)
37#define hv_set_synint_state(int_num, val) \
38 wrmsrl(HV_X64_MSR_SINT0 + int_num, val)
Michael Kelley2ddddd02020-04-20 09:49:26 -070039#define hv_recommend_using_aeoi() \
40 (!(ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED))
K. Y. Srinivasan37e11d52017-01-19 11:51:58 -070041
Sunil Muthuswamy9d9c9652018-07-28 21:58:47 +000042#define hv_get_crash_ctl(val) \
43 rdmsrl(HV_X64_MSR_CRASH_CTL, val)
Seiji Aguchicf910e82013-06-20 11:46:53 -040044
Michael Kelleydd2cb342019-07-01 04:26:06 +000045#define hv_get_time_ref_count(val) \
46 rdmsrl(HV_X64_MSR_TIME_REF_COUNT, val)
47
48#define hv_get_reference_tsc(val) \
49 rdmsrl(HV_X64_MSR_REFERENCE_TSC, val)
50#define hv_set_reference_tsc(val) \
51 wrmsrl(HV_X64_MSR_REFERENCE_TSC, val)
52#define hv_set_clocksource_vdso(val) \
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +010053 ((val).vdso_clock_mode = VDSO_CLOCKMODE_HVCLOCK)
Thomas Gleixnereec399d2020-02-07 13:38:54 +010054#define hv_enable_vdso_clocksource() \
Thomas Gleixnerb95a8a22020-02-07 13:38:56 +010055 vclocks_set_used(VDSO_CLOCKMODE_HVCLOCK);
Michael Kelleydd2cb342019-07-01 04:26:06 +000056#define hv_get_raw_timer() rdtsc_ordered()
Michael Kelley626b9012020-08-14 12:45:04 -070057#define hv_get_vector() HYPERVISOR_CALLBACK_VECTOR
Michael Kelleydd2cb342019-07-01 04:26:06 +000058
Michael Kelleyb9d8cf22020-08-09 18:29:51 -070059/*
60 * Reference to pv_ops must be inline so objtool
61 * detection of noinstr violations can work correctly.
62 */
63static __always_inline void hv_setup_sched_clock(void *sched_clock)
64{
65#ifdef CONFIG_PARAVIRT
66 pv_ops.time.sched_clock = sched_clock;
67#endif
68}
69
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -080070void hyperv_vector_handler(struct pt_regs *regs);
K. Y. Srinivasan87300462017-01-18 16:45:02 -070071
Michael Kelley248e7422018-03-04 22:17:18 -070072static inline void hv_enable_stimer0_percpu_irq(int irq) {}
73static inline void hv_disable_stimer0_percpu_irq(int irq) {}
74
75
K. Y. Srinivasan87300462017-01-18 16:45:02 -070076#if IS_ENABLED(CONFIG_HYPERV)
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +020077extern void *hv_hypercall_pg;
K. Y. Srinivasan68bb7bf2018-05-16 14:53:31 -070078extern void __percpu **hyperv_pcpu_input_arg;
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +020079
80static inline u64 hv_do_hypercall(u64 control, void *input, void *output)
81{
82 u64 input_address = input ? virt_to_phys(input) : 0;
83 u64 output_address = output ? virt_to_phys(output) : 0;
84 u64 hv_status;
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +020085
86#ifdef CONFIG_X86_64
87 if (!hv_hypercall_pg)
88 return U64_MAX;
89
90 __asm__ __volatile__("mov %4, %%r8\n"
David Woodhousee70e5892018-01-11 21:46:30 +000091 CALL_NOSPEC
Josh Poimboeuff5caf622017-09-20 16:24:33 -050092 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +020093 "+c" (control), "+d" (input_address)
David Woodhousee70e5892018-01-11 21:46:30 +000094 : "r" (output_address),
95 THUNK_TARGET(hv_hypercall_pg)
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +020096 : "cc", "memory", "r8", "r9", "r10", "r11");
97#else
98 u32 input_address_hi = upper_32_bits(input_address);
99 u32 input_address_lo = lower_32_bits(input_address);
100 u32 output_address_hi = upper_32_bits(output_address);
101 u32 output_address_lo = lower_32_bits(output_address);
102
103 if (!hv_hypercall_pg)
104 return U64_MAX;
105
David Woodhousee70e5892018-01-11 21:46:30 +0000106 __asm__ __volatile__(CALL_NOSPEC
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +0200107 : "=A" (hv_status),
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500108 "+c" (input_address_lo), ASM_CALL_CONSTRAINT
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +0200109 : "A" (control),
110 "b" (input_address_hi),
111 "D"(output_address_hi), "S"(output_address_lo),
David Woodhousee70e5892018-01-11 21:46:30 +0000112 THUNK_TARGET(hv_hypercall_pg)
Vitaly Kuznetsovfc536622017-08-02 18:09:14 +0200113 : "cc", "memory");
114#endif /* !x86_64 */
115 return hv_status;
116}
Vitaly Kuznetsovdee863b2017-02-04 09:57:13 -0700117
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200118/* Fast hypercall with 8 bytes of input and no output */
119static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1)
120{
121 u64 hv_status, control = (u64)code | HV_HYPERCALL_FAST_BIT;
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200122
123#ifdef CONFIG_X86_64
124 {
David Woodhousee70e5892018-01-11 21:46:30 +0000125 __asm__ __volatile__(CALL_NOSPEC
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500126 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200127 "+c" (control), "+d" (input1)
David Woodhousee70e5892018-01-11 21:46:30 +0000128 : THUNK_TARGET(hv_hypercall_pg)
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200129 : "cc", "r8", "r9", "r10", "r11");
130 }
131#else
132 {
133 u32 input1_hi = upper_32_bits(input1);
134 u32 input1_lo = lower_32_bits(input1);
135
David Woodhousee70e5892018-01-11 21:46:30 +0000136 __asm__ __volatile__ (CALL_NOSPEC
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200137 : "=A"(hv_status),
138 "+c"(input1_lo),
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500139 ASM_CALL_CONSTRAINT
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200140 : "A" (control),
141 "b" (input1_hi),
David Woodhousee70e5892018-01-11 21:46:30 +0000142 THUNK_TARGET(hv_hypercall_pg)
Vitaly Kuznetsov6a8edbd2017-08-02 18:09:15 +0200143 : "cc", "edi", "esi");
144 }
145#endif
146 return hv_status;
147}
148
Vitaly Kuznetsov53e52962018-06-22 19:06:22 +0200149/* Fast hypercall with 16 bytes of input */
150static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2)
151{
152 u64 hv_status, control = (u64)code | HV_HYPERCALL_FAST_BIT;
153
154#ifdef CONFIG_X86_64
155 {
156 __asm__ __volatile__("mov %4, %%r8\n"
157 CALL_NOSPEC
158 : "=a" (hv_status), ASM_CALL_CONSTRAINT,
159 "+c" (control), "+d" (input1)
160 : "r" (input2),
161 THUNK_TARGET(hv_hypercall_pg)
162 : "cc", "r8", "r9", "r10", "r11");
163 }
164#else
165 {
166 u32 input1_hi = upper_32_bits(input1);
167 u32 input1_lo = lower_32_bits(input1);
168 u32 input2_hi = upper_32_bits(input2);
169 u32 input2_lo = lower_32_bits(input2);
170
171 __asm__ __volatile__ (CALL_NOSPEC
172 : "=A"(hv_status),
173 "+c"(input1_lo), ASM_CALL_CONSTRAINT
174 : "A" (control), "b" (input1_hi),
175 "D"(input2_hi), "S"(input2_lo),
176 THUNK_TARGET(hv_hypercall_pg)
177 : "cc");
178 }
179#endif
Yi Wangb42967d2018-10-29 15:17:31 +0800180 return hv_status;
Vitaly Kuznetsov53e52962018-06-22 19:06:22 +0200181}
182
Vitaly Kuznetsov806c8922017-08-02 18:09:17 +0200183/*
184 * Rep hypercalls. Callers of this functions are supposed to ensure that
185 * rep_count and varhead_size comply with Hyper-V hypercall definition.
186 */
187static inline u64 hv_do_rep_hypercall(u16 code, u16 rep_count, u16 varhead_size,
188 void *input, void *output)
189{
190 u64 control = code;
191 u64 status;
192 u16 rep_comp;
193
194 control |= (u64)varhead_size << HV_HYPERCALL_VARHEAD_OFFSET;
195 control |= (u64)rep_count << HV_HYPERCALL_REP_COMP_OFFSET;
196
197 do {
198 status = hv_do_hypercall(control, input, output);
199 if ((status & HV_HYPERCALL_RESULT_MASK) != HV_STATUS_SUCCESS)
200 return status;
201
202 /* Bits 32-43 of status have 'Reps completed' data. */
203 rep_comp = (status & HV_HYPERCALL_REP_COMP_MASK) >>
204 HV_HYPERCALL_REP_COMP_OFFSET;
205
206 control &= ~HV_HYPERCALL_REP_START_MASK;
207 control |= (u64)rep_comp << HV_HYPERCALL_REP_START_OFFSET;
208
209 touch_nmi_watchdog();
210 } while (rep_comp < rep_count);
211
212 return status;
213}
214
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100215extern struct hv_vp_assist_page **hv_vp_assist_page;
216
217static inline struct hv_vp_assist_page *hv_get_vp_assist_page(unsigned int cpu)
218{
219 if (!hv_vp_assist_page)
220 return NULL;
221
222 return hv_vp_assist_page[cpu];
223}
Vitaly Kuznetsov7415aea2017-08-02 18:09:18 +0200224
K. Y. Srinivasan6b48cb52018-05-16 14:53:30 -0700225void __init hyperv_init(void);
Vitaly Kuznetsov2ffd9e32017-08-02 18:09:19 +0200226void hyperv_setup_mmu_ops(void);
Maya Nakamura8c3e44b2019-07-12 08:21:25 +0000227void *hv_alloc_hyperv_page(void);
Himadri Pandyafa36dcd2019-07-30 09:49:43 +0000228void *hv_alloc_hyperv_zeroed_page(void);
Maya Nakamura8c3e44b2019-07-12 08:21:25 +0000229void hv_free_hyperv_page(unsigned long addr);
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100230void set_hv_tscchange_cb(void (*cb)(void));
231void clear_hv_tscchange_cb(void);
232void hyperv_stop_tsc_emulation(void);
Tianyu Laneb914cf2018-07-19 08:40:06 +0000233int hyperv_flush_guest_mapping(u64 as);
Lan Tianyucc4edae42018-12-06 21:21:05 +0800234int hyperv_flush_guest_mapping_range(u64 as,
235 hyperv_fill_flush_list_func fill_func, void *data);
236int hyperv_fill_flush_guest_mapping_list(
237 struct hv_guest_mapping_flush_list *flush,
238 u64 start_gfn, u64 end_gfn);
Thomas Gleixner2d2ccf242018-05-19 21:22:48 +0200239
240#ifdef CONFIG_X86_64
K. Y. Srinivasan6b48cb52018-05-16 14:53:30 -0700241void hv_apic_init(void);
Yi Sun3a025de2018-10-08 16:29:34 +0800242void __init hv_init_spinlocks(void);
243bool hv_vcpu_is_preempted(int vcpu);
Thomas Gleixner2d2ccf242018-05-19 21:22:48 +0200244#else
245static inline void hv_apic_init(void) {}
246#endif
247
Boqun Feng1cf106d2020-02-10 11:39:53 +0800248static inline void hv_set_msi_entry_from_desc(union hv_msi_entry *msi_entry,
249 struct msi_desc *msi_desc)
250{
251 msi_entry->address = msi_desc->msg.address_lo;
252 msi_entry->data = msi_desc->msg.data;
253}
254
Vitaly Kuznetsov79cadff2017-08-02 18:09:13 +0200255#else /* CONFIG_HYPERV */
256static inline void hyperv_init(void) {}
Vitaly Kuznetsov2ffd9e32017-08-02 18:09:19 +0200257static inline void hyperv_setup_mmu_ops(void) {}
Maya Nakamura8c3e44b2019-07-12 08:21:25 +0000258static inline void *hv_alloc_hyperv_page(void) { return NULL; }
259static inline void hv_free_hyperv_page(unsigned long addr) {}
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100260static inline void set_hv_tscchange_cb(void (*cb)(void)) {}
261static inline void clear_hv_tscchange_cb(void) {}
262static inline void hyperv_stop_tsc_emulation(void) {};
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100263static inline struct hv_vp_assist_page *hv_get_vp_assist_page(unsigned int cpu)
264{
265 return NULL;
266}
Tianyu Laneb914cf2018-07-19 08:40:06 +0000267static inline int hyperv_flush_guest_mapping(u64 as) { return -1; }
Lan Tianyucc4edae42018-12-06 21:21:05 +0800268static inline int hyperv_flush_guest_mapping_range(u64 as,
269 hyperv_fill_flush_list_func fill_func, void *data)
270{
271 return -1;
272}
Vitaly Kuznetsov79cadff2017-08-02 18:09:13 +0200273#endif /* CONFIG_HYPERV */
274
Michael Kelley765e33f2019-05-30 00:14:00 +0000275
276#include <asm-generic/mshyperv.h>
277
Ky Srinivasana2a47c62010-05-06 12:08:41 -0700278#endif