blob: 6efe0410fb728995ea8944ecd984840b6f30778e [file] [log] [blame]
Thomas Gleixnerf6ce7f22019-05-19 15:51:49 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -05002/*
3 * KVM paravirt_ops implementation
4 *
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -05005 * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
6 * Copyright IBM Corporation, 2007
7 * Authors: Anthony Liguori <aliguori@us.ibm.com>
8 */
9
Frederic Weisbecker56dd9472013-02-24 00:23:25 +010010#include <linux/context_tracking.h>
Paul Gortmaker186f4362016-07-13 20:18:56 -040011#include <linux/init.h>
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -050012#include <linux/kernel.h>
13#include <linux/kvm_para.h>
14#include <linux/cpu.h>
15#include <linux/mm.h>
Marcelo Tosatti1da8a772008-02-22 12:21:37 -050016#include <linux/highmem.h>
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050017#include <linux/hardirq.h>
Gleb Natapovfd10cde2010-10-14 11:22:51 +020018#include <linux/notifier.h>
19#include <linux/reboot.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020020#include <linux/hash.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23#include <linux/kprobes.h>
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +053024#include <linux/debugfs.h>
Ulrich Obergfell9919e392014-10-13 15:55:37 -070025#include <linux/nmi.h>
Rik van Riel9db284f2016-03-21 15:13:27 +010026#include <linux/swait.h>
Marcelo Tosattia90ede72009-02-11 22:45:42 -020027#include <asm/timer.h>
Gleb Natapovfd10cde2010-10-14 11:22:51 +020028#include <asm/cpu.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020029#include <asm/traps.h>
30#include <asm/desc.h>
Gleb Natapov6c047cd2010-10-14 11:22:54 +020031#include <asm/tlbflush.h>
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +030032#include <asm/apic.h>
33#include <asm/apicdef.h>
Prarit Bhargavafc733732012-07-06 13:47:39 -040034#include <asm/hypervisor.h>
Peter Zijlstra48a8b972018-08-22 17:30:16 +020035#include <asm/tlb.h>
Yi Wang19308a42019-10-10 14:37:25 +080036#include <asm/cpuidle_haltpoll.h>
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050037
Gleb Natapovfd10cde2010-10-14 11:22:51 +020038static int kvmapf = 1;
39
Dou Liyangafdc3f582018-01-17 11:46:54 +080040static int __init parse_no_kvmapf(char *arg)
Gleb Natapovfd10cde2010-10-14 11:22:51 +020041{
42 kvmapf = 0;
43 return 0;
44}
45
46early_param("no-kvmapf", parse_no_kvmapf);
47
Glauber Costad910f5c2011-07-11 15:28:19 -040048static int steal_acc = 1;
Dou Liyangafdc3f582018-01-17 11:46:54 +080049static int __init parse_no_stealacc(char *arg)
Glauber Costad910f5c2011-07-11 15:28:19 -040050{
51 steal_acc = 0;
52 return 0;
53}
54
55early_param("no-steal-acc", parse_no_stealacc);
56
Brijesh Singh47162762017-10-20 09:30:58 -050057static DEFINE_PER_CPU_DECRYPTED(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64);
Andi Kleen14e581c2019-03-29 17:47:42 -070058DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time, steal_time) __aligned(64) __visible;
Glauber Costad910f5c2011-07-11 15:28:19 -040059static int has_steal_clock = 0;
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050060
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -050061/*
62 * No need for any "IO delay" on KVM
63 */
64static void kvm_io_delay(void)
65{
66}
67
Gleb Natapov631bc482010-10-14 11:22:52 +020068#define KVM_TASK_SLEEP_HASHBITS 8
69#define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
70
71struct kvm_task_sleep_node {
72 struct hlist_node link;
Rik van Riel9db284f2016-03-21 15:13:27 +010073 struct swait_queue_head wq;
Gleb Natapov631bc482010-10-14 11:22:52 +020074 u32 token;
75 int cpu;
Gleb Natapov6c047cd2010-10-14 11:22:54 +020076 bool halted;
Gleb Natapov631bc482010-10-14 11:22:52 +020077};
78
79static struct kvm_task_sleep_head {
Rik van Riel9db284f2016-03-21 15:13:27 +010080 raw_spinlock_t lock;
Gleb Natapov631bc482010-10-14 11:22:52 +020081 struct hlist_head list;
82} async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE];
83
84static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b,
85 u32 token)
86{
87 struct hlist_node *p;
88
89 hlist_for_each(p, &b->list) {
90 struct kvm_task_sleep_node *n =
91 hlist_entry(p, typeof(*n), link);
92 if (n->token == token)
93 return n;
94 }
95
96 return NULL;
97}
98
Boqun Fenga2b78612017-10-03 21:36:51 +080099/*
100 * @interrupt_kernel: Is this called from a routine which interrupts the kernel
101 * (other than user space)?
102 */
103void kvm_async_pf_task_wait(u32 token, int interrupt_kernel)
Gleb Natapov631bc482010-10-14 11:22:52 +0200104{
105 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
106 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
107 struct kvm_task_sleep_node n, *e;
Rik van Riel9db284f2016-03-21 15:13:27 +0100108 DECLARE_SWAITQUEUE(wait);
Gleb Natapov631bc482010-10-14 11:22:52 +0200109
Li Zhong9b132fb2012-12-04 10:35:13 +0800110 rcu_irq_enter();
111
Rik van Riel9db284f2016-03-21 15:13:27 +0100112 raw_spin_lock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200113 e = _find_apf_task(b, token);
114 if (e) {
115 /* dummy entry exist -> wake up was delivered ahead of PF */
116 hlist_del(&e->link);
117 kfree(e);
Rik van Riel9db284f2016-03-21 15:13:27 +0100118 raw_spin_unlock(&b->lock);
Li Zhong9b132fb2012-12-04 10:35:13 +0800119
120 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200121 return;
122 }
123
124 n.token = token;
125 n.cpu = smp_processor_id();
Boqun Fenga2b78612017-10-03 21:36:51 +0800126 n.halted = is_idle_task(current) ||
127 (IS_ENABLED(CONFIG_PREEMPT_COUNT)
128 ? preempt_count() > 1 || rcu_preempt_depth()
129 : interrupt_kernel);
Rik van Riel9db284f2016-03-21 15:13:27 +0100130 init_swait_queue_head(&n.wq);
Gleb Natapov631bc482010-10-14 11:22:52 +0200131 hlist_add_head(&n.link, &b->list);
Rik van Riel9db284f2016-03-21 15:13:27 +0100132 raw_spin_unlock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200133
134 for (;;) {
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200135 if (!n.halted)
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200136 prepare_to_swait_exclusive(&n.wq, &wait, TASK_UNINTERRUPTIBLE);
Gleb Natapov631bc482010-10-14 11:22:52 +0200137 if (hlist_unhashed(&n.link))
138 break;
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200139
Wanpeng Li337c0172017-08-01 05:20:03 -0700140 rcu_irq_exit();
141
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200142 if (!n.halted) {
143 local_irq_enable();
144 schedule();
145 local_irq_disable();
146 } else {
147 /*
148 * We cannot reschedule. So halt.
149 */
150 native_safe_halt();
151 local_irq_disable();
152 }
Wanpeng Li337c0172017-08-01 05:20:03 -0700153
154 rcu_irq_enter();
Gleb Natapov631bc482010-10-14 11:22:52 +0200155 }
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200156 if (!n.halted)
Rik van Riel9db284f2016-03-21 15:13:27 +0100157 finish_swait(&n.wq, &wait);
Gleb Natapov631bc482010-10-14 11:22:52 +0200158
Li Zhong9b132fb2012-12-04 10:35:13 +0800159 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200160 return;
161}
162EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait);
163
164static void apf_task_wake_one(struct kvm_task_sleep_node *n)
165{
166 hlist_del_init(&n->link);
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200167 if (n->halted)
168 smp_send_reschedule(n->cpu);
Davidlohr Buesoa0cff572017-09-13 13:08:21 -0700169 else if (swq_has_sleeper(&n->wq))
Peter Zijlstrab3dae102018-06-12 10:34:52 +0200170 swake_up_one(&n->wq);
Gleb Natapov631bc482010-10-14 11:22:52 +0200171}
172
173static void apf_task_wake_all(void)
174{
175 int i;
176
177 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) {
178 struct hlist_node *p, *next;
179 struct kvm_task_sleep_head *b = &async_pf_sleepers[i];
Rik van Riel9db284f2016-03-21 15:13:27 +0100180 raw_spin_lock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200181 hlist_for_each_safe(p, next, &b->list) {
182 struct kvm_task_sleep_node *n =
183 hlist_entry(p, typeof(*n), link);
184 if (n->cpu == smp_processor_id())
185 apf_task_wake_one(n);
186 }
Rik van Riel9db284f2016-03-21 15:13:27 +0100187 raw_spin_unlock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200188 }
189}
190
191void kvm_async_pf_task_wake(u32 token)
192{
193 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
194 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
195 struct kvm_task_sleep_node *n;
196
197 if (token == ~0) {
198 apf_task_wake_all();
199 return;
200 }
201
202again:
Rik van Riel9db284f2016-03-21 15:13:27 +0100203 raw_spin_lock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200204 n = _find_apf_task(b, token);
205 if (!n) {
206 /*
207 * async PF was not yet handled.
208 * Add dummy entry for the token.
209 */
Gleb Natapov62c49cc2012-05-02 15:04:02 +0300210 n = kzalloc(sizeof(*n), GFP_ATOMIC);
Gleb Natapov631bc482010-10-14 11:22:52 +0200211 if (!n) {
212 /*
213 * Allocation failed! Busy wait while other cpu
214 * handles async PF.
215 */
Rik van Riel9db284f2016-03-21 15:13:27 +0100216 raw_spin_unlock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200217 cpu_relax();
218 goto again;
219 }
220 n->token = token;
221 n->cpu = smp_processor_id();
Rik van Riel9db284f2016-03-21 15:13:27 +0100222 init_swait_queue_head(&n->wq);
Gleb Natapov631bc482010-10-14 11:22:52 +0200223 hlist_add_head(&n->link, &b->list);
224 } else
225 apf_task_wake_one(n);
Rik van Riel9db284f2016-03-21 15:13:27 +0100226 raw_spin_unlock(&b->lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200227 return;
228}
229EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
230
231u32 kvm_read_and_reset_pf_reason(void)
232{
233 u32 reason = 0;
234
Christoph Lameter89cbc762014-08-17 12:30:40 -0500235 if (__this_cpu_read(apf_reason.enabled)) {
236 reason = __this_cpu_read(apf_reason.reason);
237 __this_cpu_write(apf_reason.reason, 0);
Gleb Natapov631bc482010-10-14 11:22:52 +0200238 }
239
240 return reason;
241}
242EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason);
Masami Hiramatsu93266382014-04-17 17:18:14 +0900243NOKPROBE_SYMBOL(kvm_read_and_reset_pf_reason);
Gleb Natapov631bc482010-10-14 11:22:52 +0200244
Masami Hiramatsu93266382014-04-17 17:18:14 +0900245dotraplinkage void
Peter Zijlstraa0d14b82019-07-11 13:40:59 +0200246do_async_page_fault(struct pt_regs *regs, unsigned long error_code, unsigned long address)
Gleb Natapov631bc482010-10-14 11:22:52 +0200247{
248 switch (kvm_read_and_reset_pf_reason()) {
249 default:
Peter Zijlstraa0d14b82019-07-11 13:40:59 +0200250 do_page_fault(regs, error_code, address);
Gleb Natapov631bc482010-10-14 11:22:52 +0200251 break;
252 case KVM_PV_REASON_PAGE_NOT_PRESENT:
253 /* page is swapped out by the host. */
Peter Zijlstraa0d14b82019-07-11 13:40:59 +0200254 kvm_async_pf_task_wait((u32)address, !user_mode(regs));
Gleb Natapov631bc482010-10-14 11:22:52 +0200255 break;
256 case KVM_PV_REASON_PAGE_READY:
Gleb Natapove0875922012-04-04 15:30:33 +0300257 rcu_irq_enter();
Peter Zijlstraa0d14b82019-07-11 13:40:59 +0200258 kvm_async_pf_task_wake((u32)address);
Gleb Natapove0875922012-04-04 15:30:33 +0300259 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200260 break;
261 }
262}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900263NOKPROBE_SYMBOL(do_async_page_fault);
Gleb Natapov631bc482010-10-14 11:22:52 +0200264
Rakib Mullickd3ac8812009-07-02 11:40:36 +0600265static void __init paravirt_ops_setup(void)
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500266{
267 pv_info.name = "KVM";
Andy Lutomirski29fa6822014-12-05 19:03:28 -0800268
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500269 if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY))
Juergen Gross5c835112018-08-28 09:40:19 +0200270 pv_ops.cpu.io_delay = kvm_io_delay;
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500271
Marcelo Tosattia90ede72009-02-11 22:45:42 -0200272#ifdef CONFIG_X86_IO_APIC
273 no_timer_check = 1;
274#endif
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500275}
276
Glauber Costad910f5c2011-07-11 15:28:19 -0400277static void kvm_register_steal_time(void)
278{
279 int cpu = smp_processor_id();
280 struct kvm_steal_time *st = &per_cpu(steal_time, cpu);
281
282 if (!has_steal_clock)
283 return;
284
Dave Hansen5dfd4862013-01-22 13:24:35 -0800285 wrmsrl(MSR_KVM_STEAL_TIME, (slow_virt_to_phys(st) | KVM_MSR_ENABLED));
Shuah Khan136867f2013-02-05 19:57:22 -0700286 pr_info("kvm-stealtime: cpu %d, msr %llx\n",
287 cpu, (unsigned long long) slow_virt_to_phys(st));
Glauber Costad910f5c2011-07-11 15:28:19 -0400288}
289
Brijesh Singh47162762017-10-20 09:30:58 -0500290static DEFINE_PER_CPU_DECRYPTED(unsigned long, kvm_apic_eoi) = KVM_PV_EOI_DISABLED;
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300291
Wanpeng Li8ca22552016-11-07 11:13:40 +0800292static notrace void kvm_guest_apic_eoi_write(u32 reg, u32 val)
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300293{
294 /**
295 * This relies on __test_and_clear_bit to modify the memory
296 * in a way that is atomic with respect to the local CPU.
297 * The hypervisor only accesses this memory from the local CPU so
298 * there's no need for lock or memory barriers.
299 * An optimization barrier is implied in apic write.
300 */
Christoph Lameter89cbc762014-08-17 12:30:40 -0500301 if (__test_and_clear_bit(KVM_PV_EOI_BIT, this_cpu_ptr(&kvm_apic_eoi)))
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300302 return;
Wanpeng Li8ca22552016-11-07 11:13:40 +0800303 apic->native_eoi_write(APIC_EOI, APIC_EOI_ACK);
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300304}
305
Nicholas Krauseed3cf152015-05-20 00:24:10 -0400306static void kvm_guest_cpu_init(void)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200307{
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200308 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) {
Christoph Lameter89cbc762014-08-17 12:30:40 -0500309 u64 pa = slow_virt_to_phys(this_cpu_ptr(&apf_reason));
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200310
Thomas Gleixner09c7e8b2019-07-26 23:19:44 +0200311#ifdef CONFIG_PREEMPTION
Gleb Natapov6adba522010-10-14 11:22:55 +0200312 pa |= KVM_ASYNC_PF_SEND_ALWAYS;
313#endif
Wanpeng Li52a5c152017-07-13 18:30:42 -0700314 pa |= KVM_ASYNC_PF_ENABLED;
315
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100316 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF_VMEXIT))
317 pa |= KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT;
318
319 wrmsrl(MSR_KVM_ASYNC_PF_EN, pa);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500320 __this_cpu_write(apf_reason.enabled, 1);
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200321 printk(KERN_INFO"KVM setup async PF for cpu %d\n",
322 smp_processor_id());
323 }
Glauber Costad910f5c2011-07-11 15:28:19 -0400324
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300325 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) {
326 unsigned long pa;
327 /* Size alignment is implied but just to make it explicit. */
328 BUILD_BUG_ON(__alignof__(kvm_apic_eoi) < 4);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500329 __this_cpu_write(kvm_apic_eoi, 0);
330 pa = slow_virt_to_phys(this_cpu_ptr(&kvm_apic_eoi))
Dave Hansen5dfd4862013-01-22 13:24:35 -0800331 | KVM_MSR_ENABLED;
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300332 wrmsrl(MSR_KVM_PV_EOI_EN, pa);
333 }
334
Glauber Costad910f5c2011-07-11 15:28:19 -0400335 if (has_steal_clock)
336 kvm_register_steal_time();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200337}
338
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300339static void kvm_pv_disable_apf(void)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200340{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500341 if (!__this_cpu_read(apf_reason.enabled))
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200342 return;
343
344 wrmsrl(MSR_KVM_ASYNC_PF_EN, 0);
Christoph Lameter89cbc762014-08-17 12:30:40 -0500345 __this_cpu_write(apf_reason.enabled, 0);
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200346
347 printk(KERN_INFO"Unregister pv shared memory for cpu %d\n",
348 smp_processor_id());
349}
350
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300351static void kvm_pv_guest_cpu_reboot(void *unused)
352{
353 /*
354 * We disable PV EOI before we load a new kernel by kexec,
355 * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory.
356 * New kernel can re-enable when it boots.
357 */
358 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
359 wrmsrl(MSR_KVM_PV_EOI_EN, 0);
360 kvm_pv_disable_apf();
Florian Westphal8fbe6a52012-08-15 16:00:40 +0200361 kvm_disable_steal_time();
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300362}
363
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200364static int kvm_pv_reboot_notify(struct notifier_block *nb,
365 unsigned long code, void *unused)
366{
367 if (code == SYS_RESTART)
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300368 on_each_cpu(kvm_pv_guest_cpu_reboot, NULL, 1);
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200369 return NOTIFY_DONE;
370}
371
372static struct notifier_block kvm_pv_reboot_nb = {
373 .notifier_call = kvm_pv_reboot_notify,
374};
375
Glauber Costad910f5c2011-07-11 15:28:19 -0400376static u64 kvm_steal_clock(int cpu)
377{
378 u64 steal;
379 struct kvm_steal_time *src;
380 int version;
381
382 src = &per_cpu(steal_time, cpu);
383 do {
384 version = src->version;
Wanpeng Li5a48a622017-04-11 02:49:21 -0700385 virt_rmb();
Glauber Costad910f5c2011-07-11 15:28:19 -0400386 steal = src->steal;
Wanpeng Li5a48a622017-04-11 02:49:21 -0700387 virt_rmb();
Glauber Costad910f5c2011-07-11 15:28:19 -0400388 } while ((version & 1) || (version != src->version));
389
390 return steal;
391}
392
393void kvm_disable_steal_time(void)
394{
395 if (!has_steal_clock)
396 return;
397
398 wrmsr(MSR_KVM_STEAL_TIME, 0, 0);
399}
400
Brijesh Singh47162762017-10-20 09:30:58 -0500401static inline void __set_percpu_decrypted(void *ptr, unsigned long size)
402{
403 early_set_memory_decrypted((unsigned long) ptr, size);
404}
405
406/*
407 * Iterate through all possible CPUs and map the memory region pointed
408 * by apf_reason, steal_time and kvm_apic_eoi as decrypted at once.
409 *
410 * Note: we iterate through all possible CPUs to ensure that CPUs
411 * hotplugged will have their per-cpu variable already mapped as
412 * decrypted.
413 */
414static void __init sev_map_percpu_data(void)
415{
416 int cpu;
417
418 if (!sev_active())
419 return;
420
421 for_each_possible_cpu(cpu) {
422 __set_percpu_decrypted(&per_cpu(apf_reason, cpu), sizeof(apf_reason));
423 __set_percpu_decrypted(&per_cpu(steal_time, cpu), sizeof(steal_time));
424 __set_percpu_decrypted(&per_cpu(kvm_apic_eoi, cpu), sizeof(kvm_apic_eoi));
425 }
426}
427
Wanpeng Lia262bca2020-02-18 09:08:23 +0800428static bool pv_tlb_flush_supported(void)
429{
430 return (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) &&
431 !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
432 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
433}
434
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800435static DEFINE_PER_CPU(cpumask_var_t, __pv_cpu_mask);
436
Gleb Natapovca3f1012010-10-14 11:22:49 +0200437#ifdef CONFIG_SMP
Wanpeng Lia262bca2020-02-18 09:08:23 +0800438
439static bool pv_ipi_supported(void)
440{
441 return kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI);
442}
443
444static bool pv_sched_yield_supported(void)
445{
446 return (kvm_para_has_feature(KVM_FEATURE_PV_SCHED_YIELD) &&
447 !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
448 kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
449}
450
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800451#define KVM_IPI_CLUSTER_SIZE (2 * BITS_PER_LONG)
452
453static void __send_ipi_mask(const struct cpumask *mask, int vector)
454{
455 unsigned long flags;
456 int cpu, apic_id, icr;
457 int min = 0, max = 0;
458#ifdef CONFIG_X86_64
459 __uint128_t ipi_bitmap = 0;
460#else
461 u64 ipi_bitmap = 0;
462#endif
Sean Christophersonde81c2f2019-01-23 09:22:40 -0800463 long ret;
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800464
465 if (cpumask_empty(mask))
466 return;
467
468 local_irq_save(flags);
469
470 switch (vector) {
471 default:
472 icr = APIC_DM_FIXED | vector;
473 break;
474 case NMI_VECTOR:
475 icr = APIC_DM_NMI;
476 break;
477 }
478
479 for_each_cpu(cpu, mask) {
480 apic_id = per_cpu(x86_cpu_to_apicid, cpu);
481 if (!ipi_bitmap) {
482 min = max = apic_id;
483 } else if (apic_id < min && max - apic_id < KVM_IPI_CLUSTER_SIZE) {
484 ipi_bitmap <<= min - apic_id;
485 min = apic_id;
486 } else if (apic_id < min + KVM_IPI_CLUSTER_SIZE) {
487 max = apic_id < max ? max : apic_id;
488 } else {
Sean Christophersonde81c2f2019-01-23 09:22:40 -0800489 ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap,
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800490 (unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr);
Sean Christophersonde81c2f2019-01-23 09:22:40 -0800491 WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret);
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800492 min = max = apic_id;
493 ipi_bitmap = 0;
494 }
495 __set_bit(apic_id - min, (unsigned long *)&ipi_bitmap);
496 }
497
498 if (ipi_bitmap) {
Sean Christophersonde81c2f2019-01-23 09:22:40 -0800499 ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap,
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800500 (unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr);
Sean Christophersonde81c2f2019-01-23 09:22:40 -0800501 WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret);
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800502 }
503
504 local_irq_restore(flags);
505}
506
507static void kvm_send_ipi_mask(const struct cpumask *mask, int vector)
508{
509 __send_ipi_mask(mask, vector);
510}
511
512static void kvm_send_ipi_mask_allbutself(const struct cpumask *mask, int vector)
513{
514 unsigned int this_cpu = smp_processor_id();
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800515 struct cpumask *new_mask = this_cpu_cpumask_var_ptr(__pv_cpu_mask);
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800516 const struct cpumask *local_mask;
517
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800518 cpumask_copy(new_mask, mask);
519 cpumask_clear_cpu(this_cpu, new_mask);
520 local_mask = new_mask;
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800521 __send_ipi_mask(local_mask, vector);
522}
523
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800524/*
525 * Set the IPI entry points
526 */
527static void kvm_setup_pv_ipi(void)
528{
529 apic->send_IPI_mask = kvm_send_ipi_mask;
530 apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800531 pr_info("KVM setup pv IPIs\n");
532}
533
Wanpeng Lif85f6e72019-06-11 20:23:48 +0800534static void kvm_smp_send_call_func_ipi(const struct cpumask *mask)
535{
536 int cpu;
537
538 native_send_call_func_ipi(mask);
539
540 /* Make sure other vCPUs get a chance to run if they need to. */
541 for_each_cpu(cpu, mask) {
542 if (vcpu_is_preempted(cpu)) {
543 kvm_hypercall1(KVM_HC_SCHED_YIELD, per_cpu(x86_cpu_to_apicid, cpu));
544 break;
545 }
546 }
547}
548
Wanpeng Li34226b62018-03-24 21:17:24 -0700549static void __init kvm_smp_prepare_cpus(unsigned int max_cpus)
550{
551 native_smp_prepare_cpus(max_cpus);
Michael S. Tsirkin633711e2018-05-17 17:54:24 +0300552 if (kvm_para_has_hint(KVM_HINTS_REALTIME))
Wanpeng Li34226b62018-03-24 21:17:24 -0700553 static_branch_disable(&virt_spin_lock_key);
554}
555
Gleb Natapovca3f1012010-10-14 11:22:49 +0200556static void __init kvm_smp_prepare_boot_cpu(void)
557{
Brijesh Singh47162762017-10-20 09:30:58 -0500558 /*
559 * Map the per-cpu variables as decrypted before kvm_guest_cpu_init()
560 * shares the guest physical address with the hypervisor.
561 */
562 sev_map_percpu_data();
563
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200564 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200565 native_smp_prepare_boot_cpu();
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530566 kvm_spinlock_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200567}
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200568
Sebastian Andrzej Siewior9a20ea42016-08-18 14:57:29 +0200569static void kvm_guest_cpu_offline(void)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200570{
Glauber Costad910f5c2011-07-11 15:28:19 -0400571 kvm_disable_steal_time();
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300572 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
573 wrmsrl(MSR_KVM_PV_EOI_EN, 0);
574 kvm_pv_disable_apf();
Gleb Natapov631bc482010-10-14 11:22:52 +0200575 apf_task_wake_all();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200576}
577
Sebastian Andrzej Siewior9a20ea42016-08-18 14:57:29 +0200578static int kvm_cpu_online(unsigned int cpu)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200579{
Sebastian Andrzej Siewior9a20ea42016-08-18 14:57:29 +0200580 local_irq_disable();
581 kvm_guest_cpu_init();
582 local_irq_enable();
583 return 0;
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200584}
585
Sebastian Andrzej Siewior9a20ea42016-08-18 14:57:29 +0200586static int kvm_cpu_down_prepare(unsigned int cpu)
587{
588 local_irq_disable();
589 kvm_guest_cpu_offline();
590 local_irq_enable();
591 return 0;
592}
Gleb Natapovca3f1012010-10-14 11:22:49 +0200593#endif
594
Gleb Natapov631bc482010-10-14 11:22:52 +0200595static void __init kvm_apf_trap_init(void)
596{
Thomas Gleixnerfacaa3e2017-08-28 08:47:59 +0200597 update_intr_gate(X86_TRAP_PF, async_page_fault);
Gleb Natapov631bc482010-10-14 11:22:52 +0200598}
599
Wanpeng Li858a43a2017-12-12 17:33:02 -0800600
601static void kvm_flush_tlb_others(const struct cpumask *cpumask,
602 const struct flush_tlb_info *info)
603{
604 u8 state;
605 int cpu;
606 struct kvm_steal_time *src;
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800607 struct cpumask *flushmask = this_cpu_cpumask_var_ptr(__pv_cpu_mask);
Wanpeng Li858a43a2017-12-12 17:33:02 -0800608
609 cpumask_copy(flushmask, cpumask);
610 /*
611 * We have to call flush only on online vCPUs. And
612 * queue flush_on_enter for pre-empted vCPUs
613 */
614 for_each_cpu(cpu, flushmask) {
615 src = &per_cpu(steal_time, cpu);
616 state = READ_ONCE(src->preempted);
617 if ((state & KVM_VCPU_PREEMPTED)) {
618 if (try_cmpxchg(&src->preempted, &state,
619 state | KVM_VCPU_FLUSH_TLB))
620 __cpumask_clear_cpu(cpu, flushmask);
621 }
622 }
623
624 native_flush_tlb_others(flushmask, info);
625}
626
Juergen Grossf3614642017-11-09 14:27:38 +0100627static void __init kvm_guest_init(void)
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500628{
Gleb Natapov631bc482010-10-14 11:22:52 +0200629 int i;
630
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500631 paravirt_ops_setup();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200632 register_reboot_notifier(&kvm_pv_reboot_nb);
Gleb Natapov631bc482010-10-14 11:22:52 +0200633 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++)
Rik van Riel9db284f2016-03-21 15:13:27 +0100634 raw_spin_lock_init(&async_pf_sleepers[i].lock);
Gleb Natapov631bc482010-10-14 11:22:52 +0200635 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF))
636 x86_init.irqs.trap_init = kvm_apf_trap_init;
637
Glauber Costad910f5c2011-07-11 15:28:19 -0400638 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
639 has_steal_clock = 1;
Juergen Gross5c835112018-08-28 09:40:19 +0200640 pv_ops.time.steal_clock = kvm_steal_clock;
Glauber Costad910f5c2011-07-11 15:28:19 -0400641 }
642
Wanpeng Lia262bca2020-02-18 09:08:23 +0800643 if (pv_tlb_flush_supported()) {
Juergen Gross5c835112018-08-28 09:40:19 +0200644 pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others;
645 pv_ops.mmu.tlb_remove_table = tlb_remove_table;
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800646 pr_info("KVM setup pv remote TLB flush\n");
Peter Zijlstra48a8b972018-08-22 17:30:16 +0200647 }
Wanpeng Li858a43a2017-12-12 17:33:02 -0800648
Michael S. Tsirkin90536662012-07-15 15:56:52 +0300649 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
650 apic_set_eoi_write(kvm_guest_apic_eoi_write);
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300651
Gleb Natapovca3f1012010-10-14 11:22:49 +0200652#ifdef CONFIG_SMP
Wanpeng Li34226b62018-03-24 21:17:24 -0700653 smp_ops.smp_prepare_cpus = kvm_smp_prepare_cpus;
Gleb Natapovca3f1012010-10-14 11:22:49 +0200654 smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
Wanpeng Lia262bca2020-02-18 09:08:23 +0800655 if (pv_sched_yield_supported()) {
Wanpeng Lif85f6e72019-06-11 20:23:48 +0800656 smp_ops.send_call_func_ipi = kvm_smp_send_call_func_ipi;
657 pr_info("KVM setup pv sched yield\n");
658 }
Sebastian Andrzej Siewior9a20ea42016-08-18 14:57:29 +0200659 if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/kvm:online",
660 kvm_cpu_online, kvm_cpu_down_prepare) < 0)
661 pr_err("kvm_guest: Failed to install cpu hotplug callbacks\n");
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200662#else
Brijesh Singh47162762017-10-20 09:30:58 -0500663 sev_map_percpu_data();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200664 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200665#endif
Ulrich Obergfell9919e392014-10-13 15:55:37 -0700666
667 /*
668 * Hard lockup detection is enabled by default. Disable it, as guests
669 * can get false positives too easily, for example if the host is
670 * overcommitted.
671 */
Ulrich Obergfell692297d2015-04-14 15:44:19 -0700672 hardlockup_detector_disable();
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500673}
Glauber Costad910f5c2011-07-11 15:28:19 -0400674
Paolo Bonzini1c300a42014-01-27 14:49:40 +0100675static noinline uint32_t __kvm_cpuid_base(void)
676{
677 if (boot_cpu_data.cpuid_level < 0)
678 return 0; /* So we don't blow up on old processors */
679
Borislav Petkov0c9f35362016-03-29 17:41:55 +0200680 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
Paolo Bonzini1c300a42014-01-27 14:49:40 +0100681 return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0);
682
683 return 0;
684}
685
686static inline uint32_t kvm_cpuid_base(void)
687{
688 static int kvm_cpuid_base = -1;
689
690 if (kvm_cpuid_base == -1)
691 kvm_cpuid_base = __kvm_cpuid_base();
692
693 return kvm_cpuid_base;
694}
695
696bool kvm_para_available(void)
697{
698 return kvm_cpuid_base() != 0;
699}
700EXPORT_SYMBOL_GPL(kvm_para_available);
701
Paolo Bonzini77f01bd2014-01-27 14:51:44 +0100702unsigned int kvm_arch_para_features(void)
703{
704 return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES);
705}
706
Wanpeng Lia4429e52018-02-13 09:05:40 +0800707unsigned int kvm_arch_para_hints(void)
708{
709 return cpuid_edx(kvm_cpuid_base() | KVM_CPUID_FEATURES);
710}
Wanpeng Li1328edc2019-08-29 16:49:57 +0800711EXPORT_SYMBOL_GPL(kvm_arch_para_hints);
Wanpeng Lia4429e52018-02-13 09:05:40 +0800712
Jason Wang9df56f12013-07-25 16:54:35 +0800713static uint32_t __init kvm_detect(void)
Prarit Bhargavafc733732012-07-06 13:47:39 -0400714{
Jason Wang9df56f12013-07-25 16:54:35 +0800715 return kvm_cpuid_base();
Prarit Bhargavafc733732012-07-06 13:47:39 -0400716}
717
Wanpeng Lid63bae02018-07-23 14:39:51 +0800718static void __init kvm_apic_init(void)
719{
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800720#if defined(CONFIG_SMP)
Wanpeng Lia262bca2020-02-18 09:08:23 +0800721 if (pv_ipi_supported())
Wanpeng Liaaffcfd2018-07-23 14:39:52 +0800722 kvm_setup_pv_ipi();
723#endif
Wanpeng Lid63bae02018-07-23 14:39:51 +0800724}
725
726static void __init kvm_init_platform(void)
727{
Linus Torvaldse61cf2e2018-08-19 10:38:36 -0700728 kvmclock_init();
Wanpeng Lid63bae02018-07-23 14:39:51 +0800729 x86_platform.apic_post_init = kvm_apic_init;
730}
731
Juergen Gross03b2a322017-11-09 14:27:36 +0100732const __initconst struct hypervisor_x86 x86_hyper_kvm = {
Prarit Bhargavafc733732012-07-06 13:47:39 -0400733 .name = "KVM",
734 .detect = kvm_detect,
Juergen Gross03b2a322017-11-09 14:27:36 +0100735 .type = X86_HYPER_KVM,
Juergen Grossf3614642017-11-09 14:27:38 +0100736 .init.guest_late_init = kvm_guest_init,
Juergen Grossf72e38e2017-11-09 14:27:35 +0100737 .init.x2apic_available = kvm_para_available,
Wanpeng Lid63bae02018-07-23 14:39:51 +0800738 .init.init_platform = kvm_init_platform,
Prarit Bhargavafc733732012-07-06 13:47:39 -0400739};
Prarit Bhargavafc733732012-07-06 13:47:39 -0400740
Glauber Costad910f5c2011-07-11 15:28:19 -0400741static __init int activate_jump_labels(void)
742{
743 if (has_steal_clock) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100744 static_key_slow_inc(&paravirt_steal_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400745 if (steal_acc)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100746 static_key_slow_inc(&paravirt_steal_rq_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400747 }
748
749 return 0;
750}
751arch_initcall(activate_jump_labels);
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530752
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800753static __init int kvm_alloc_cpumask(void)
Wanpeng Li858a43a2017-12-12 17:33:02 -0800754{
755 int cpu;
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800756 bool alloc = false;
Wanpeng Li858a43a2017-12-12 17:33:02 -0800757
Thadeu Lima de Souza Cascardo64b38bd2020-01-31 12:56:55 -0300758 if (!kvm_para_available() || nopv)
759 return 0;
760
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800761 if (pv_tlb_flush_supported())
762 alloc = true;
763
764#if defined(CONFIG_SMP)
765 if (pv_ipi_supported())
766 alloc = true;
767#endif
768
769 if (alloc)
Wanpeng Li858a43a2017-12-12 17:33:02 -0800770 for_each_possible_cpu(cpu) {
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800771 zalloc_cpumask_var_node(per_cpu_ptr(&__pv_cpu_mask, cpu),
Wanpeng Li858a43a2017-12-12 17:33:02 -0800772 GFP_KERNEL, cpu_to_node(cpu));
773 }
Wanpeng Li858a43a2017-12-12 17:33:02 -0800774
775 return 0;
776}
Wanpeng Li8a9442f2020-02-18 09:08:24 +0800777arch_initcall(kvm_alloc_cpumask);
Wanpeng Li858a43a2017-12-12 17:33:02 -0800778
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530779#ifdef CONFIG_PARAVIRT_SPINLOCKS
780
781/* Kick a cpu by its apicid. Used to wake up a halted vcpu */
Raghavendra K T36bd6212013-08-16 15:08:41 +0530782static void kvm_kick_cpu(int cpu)
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530783{
784 int apicid;
785 unsigned long flags = 0;
786
787 apicid = per_cpu(x86_cpu_to_apicid, cpu);
788 kvm_hypercall2(KVM_HC_KICK_CPU, flags, apicid);
789}
790
Waiman Longbf0c7c32015-04-24 14:56:39 -0400791#include <asm/qspinlock.h>
792
793static void kvm_wait(u8 *ptr, u8 val)
794{
795 unsigned long flags;
796
797 if (in_nmi())
798 return;
799
800 local_irq_save(flags);
801
802 if (READ_ONCE(*ptr) != val)
803 goto out;
804
805 /*
806 * halt until it's our turn and kicked. Note that we do safe halt
807 * for irq enabled case to avoid hang when lock info is overwritten
808 * in irq spinlock slowpath and no spurious interrupt occur to save us.
809 */
810 if (arch_irqs_disabled_flags(flags))
811 halt();
812 else
813 safe_halt();
814
815out:
816 local_irq_restore(flags);
817}
818
Waiman Longdd0fd8b2017-02-20 13:36:04 -0500819#ifdef CONFIG_X86_32
Waiman Long6c629852017-02-20 13:36:03 -0500820__visible bool __kvm_vcpu_is_preempted(long cpu)
Peter Zijlstra3cded412016-11-15 16:47:06 +0100821{
822 struct kvm_steal_time *src = &per_cpu(steal_time, cpu);
823
Wanpeng Lifa55eed2017-12-12 17:33:01 -0800824 return !!(src->preempted & KVM_VCPU_PREEMPTED);
Peter Zijlstra3cded412016-11-15 16:47:06 +0100825}
826PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted);
827
Waiman Longdd0fd8b2017-02-20 13:36:04 -0500828#else
829
830#include <asm/asm-offsets.h>
831
832extern bool __raw_callee_save___kvm_vcpu_is_preempted(long);
833
834/*
835 * Hand-optimize version for x86-64 to avoid 8 64-bit register saving and
836 * restoring to/from the stack.
837 */
838asm(
839".pushsection .text;"
840".global __raw_callee_save___kvm_vcpu_is_preempted;"
841".type __raw_callee_save___kvm_vcpu_is_preempted, @function;"
842"__raw_callee_save___kvm_vcpu_is_preempted:"
843"movq __per_cpu_offset(,%rdi,8), %rax;"
844"cmpb $0, " __stringify(KVM_STEAL_TIME_preempted) "+steal_time(%rax);"
845"setne %al;"
846"ret;"
Josh Poimboeuf083db672019-07-17 20:36:36 -0500847".size __raw_callee_save___kvm_vcpu_is_preempted, .-__raw_callee_save___kvm_vcpu_is_preempted;"
Waiman Longdd0fd8b2017-02-20 13:36:04 -0500848".popsection");
849
850#endif
851
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530852/*
853 * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present.
854 */
855void __init kvm_spinlock_init(void)
856{
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530857 /* Does host kernel support KVM_FEATURE_PV_UNHALT? */
858 if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT))
859 return;
860
Michael S. Tsirkin633711e2018-05-17 17:54:24 +0300861 if (kvm_para_has_hint(KVM_HINTS_REALTIME))
Wanpeng Lib2798ba2018-02-13 09:05:41 +0800862 return;
Wanpeng Lib2798ba2018-02-13 09:05:41 +0800863
Waiman Long3553ae52018-07-17 17:59:27 -0400864 /* Don't use the pvqspinlock code if there is only 1 vCPU. */
865 if (num_possible_cpus() == 1)
866 return;
867
Waiman Longbf0c7c32015-04-24 14:56:39 -0400868 __pv_init_lock_hash();
Juergen Gross5c835112018-08-28 09:40:19 +0200869 pv_ops.lock.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath;
870 pv_ops.lock.queued_spin_unlock =
871 PV_CALLEE_SAVE(__pv_queued_spin_unlock);
872 pv_ops.lock.wait = kvm_wait;
873 pv_ops.lock.kick = kvm_kick_cpu;
Peter Zijlstra3cded412016-11-15 16:47:06 +0100874
875 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
Juergen Gross5c835112018-08-28 09:40:19 +0200876 pv_ops.lock.vcpu_is_preempted =
Peter Zijlstra3cded412016-11-15 16:47:06 +0100877 PV_CALLEE_SAVE(__kvm_vcpu_is_preempted);
878 }
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530879}
Raghavendra K T3dbef3e2013-10-09 14:33:21 +0530880
Srivatsa Vaddagiri92b75202013-08-06 14:55:41 +0530881#endif /* CONFIG_PARAVIRT_SPINLOCKS */
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300882
883#ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL
884
885static void kvm_disable_host_haltpoll(void *i)
886{
887 wrmsrl(MSR_KVM_POLL_CONTROL, 0);
888}
889
890static void kvm_enable_host_haltpoll(void *i)
891{
892 wrmsrl(MSR_KVM_POLL_CONTROL, 1);
893}
894
Joao Martins97d3eb92019-09-02 11:40:31 +0100895void arch_haltpoll_enable(unsigned int cpu)
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300896{
897 if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) {
Joao Martins97d3eb92019-09-02 11:40:31 +0100898 pr_err_once("kvm: host does not support poll control\n");
899 pr_err_once("kvm: host upgrade recommended\n");
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300900 return;
901 }
902
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300903 /* Enable guest halt poll disables host halt poll */
Joao Martins97d3eb92019-09-02 11:40:31 +0100904 smp_call_function_single(cpu, kvm_disable_host_haltpoll, NULL, 1);
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300905}
906EXPORT_SYMBOL_GPL(arch_haltpoll_enable);
907
Joao Martins97d3eb92019-09-02 11:40:31 +0100908void arch_haltpoll_disable(unsigned int cpu)
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300909{
910 if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL))
911 return;
912
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300913 /* Enable guest halt poll disables host halt poll */
Joao Martins97d3eb92019-09-02 11:40:31 +0100914 smp_call_function_single(cpu, kvm_enable_host_haltpoll, NULL, 1);
Marcelo Tosattia1c44232019-07-03 20:51:29 -0300915}
916EXPORT_SYMBOL_GPL(arch_haltpoll_disable);
917#endif