Thomas Gleixner | f6ce7f2 | 2019-05-19 15:51:49 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 2 | /* |
| 3 | * KVM paravirt_ops implementation |
| 4 | * |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 5 | * 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 Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 10 | #include <linux/context_tracking.h> |
Paul Gortmaker | 186f436 | 2016-07-13 20:18:56 -0400 | [diff] [blame] | 11 | #include <linux/init.h> |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/kvm_para.h> |
| 14 | #include <linux/cpu.h> |
| 15 | #include <linux/mm.h> |
Marcelo Tosatti | 1da8a77 | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 16 | #include <linux/highmem.h> |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 17 | #include <linux/hardirq.h> |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 18 | #include <linux/notifier.h> |
| 19 | #include <linux/reboot.h> |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 20 | #include <linux/hash.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/kprobes.h> |
Ulrich Obergfell | 9919e39 | 2014-10-13 15:55:37 -0700 | [diff] [blame] | 24 | #include <linux/nmi.h> |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 25 | #include <linux/swait.h> |
Marcelo Tosatti | a90ede7 | 2009-02-11 22:45:42 -0200 | [diff] [blame] | 26 | #include <asm/timer.h> |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 27 | #include <asm/cpu.h> |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 28 | #include <asm/traps.h> |
| 29 | #include <asm/desc.h> |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 30 | #include <asm/tlbflush.h> |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 31 | #include <asm/apic.h> |
| 32 | #include <asm/apicdef.h> |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 33 | #include <asm/hypervisor.h> |
Peter Zijlstra | 48a8b97 | 2018-08-22 17:30:16 +0200 | [diff] [blame] | 34 | #include <asm/tlb.h> |
Yi Wang | 19308a4 | 2019-10-10 14:37:25 +0800 | [diff] [blame] | 35 | #include <asm/cpuidle_haltpoll.h> |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 36 | |
Andy Lutomirski | ef68017 | 2020-02-28 10:42:48 -0800 | [diff] [blame] | 37 | DEFINE_STATIC_KEY_FALSE(kvm_async_pf_enabled); |
| 38 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 39 | static int kvmapf = 1; |
| 40 | |
Dou Liyang | afdc3f58 | 2018-01-17 11:46:54 +0800 | [diff] [blame] | 41 | static int __init parse_no_kvmapf(char *arg) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 42 | { |
| 43 | kvmapf = 0; |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | early_param("no-kvmapf", parse_no_kvmapf); |
| 48 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 49 | static int steal_acc = 1; |
Dou Liyang | afdc3f58 | 2018-01-17 11:46:54 +0800 | [diff] [blame] | 50 | static int __init parse_no_stealacc(char *arg) |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 51 | { |
| 52 | steal_acc = 0; |
| 53 | return 0; |
| 54 | } |
| 55 | |
| 56 | early_param("no-steal-acc", parse_no_stealacc); |
| 57 | |
Brijesh Singh | 4716276 | 2017-10-20 09:30:58 -0500 | [diff] [blame] | 58 | static DEFINE_PER_CPU_DECRYPTED(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64); |
Andi Kleen | 14e581c | 2019-03-29 17:47:42 -0700 | [diff] [blame] | 59 | DEFINE_PER_CPU_DECRYPTED(struct kvm_steal_time, steal_time) __aligned(64) __visible; |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 60 | static int has_steal_clock = 0; |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 61 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 62 | /* |
| 63 | * No need for any "IO delay" on KVM |
| 64 | */ |
| 65 | static void kvm_io_delay(void) |
| 66 | { |
| 67 | } |
| 68 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 69 | #define KVM_TASK_SLEEP_HASHBITS 8 |
| 70 | #define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS) |
| 71 | |
| 72 | struct kvm_task_sleep_node { |
| 73 | struct hlist_node link; |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 74 | struct swait_queue_head wq; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 75 | u32 token; |
| 76 | int cpu; |
| 77 | }; |
| 78 | |
| 79 | static struct kvm_task_sleep_head { |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 80 | raw_spinlock_t lock; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 81 | struct hlist_head list; |
| 82 | } async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE]; |
| 83 | |
| 84 | static 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 | |
Thomas Gleixner | 3a7c8fa | 2020-04-24 09:57:56 +0200 | [diff] [blame] | 99 | static bool kvm_async_pf_queue_task(u32 token, struct kvm_task_sleep_node *n) |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 100 | { |
| 101 | u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS); |
| 102 | struct kvm_task_sleep_head *b = &async_pf_sleepers[key]; |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 103 | struct kvm_task_sleep_node *e; |
Li Zhong | 9b132fb | 2012-12-04 10:35:13 +0800 | [diff] [blame] | 104 | |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 105 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 106 | e = _find_apf_task(b, token); |
| 107 | if (e) { |
| 108 | /* dummy entry exist -> wake up was delivered ahead of PF */ |
| 109 | hlist_del(&e->link); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 110 | raw_spin_unlock(&b->lock); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 111 | kfree(e); |
| 112 | return false; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 115 | n->token = token; |
| 116 | n->cpu = smp_processor_id(); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 117 | init_swait_queue_head(&n->wq); |
| 118 | hlist_add_head(&n->link, &b->list); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 119 | raw_spin_unlock(&b->lock); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 120 | return true; |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * kvm_async_pf_task_wait_schedule - Wait for pagefault to be handled |
| 125 | * @token: Token to identify the sleep node entry |
| 126 | * |
| 127 | * Invoked from the async pagefault handling code or from the VM exit page |
| 128 | * fault handler. In both cases RCU is watching. |
| 129 | */ |
| 130 | void kvm_async_pf_task_wait_schedule(u32 token) |
| 131 | { |
| 132 | struct kvm_task_sleep_node n; |
| 133 | DECLARE_SWAITQUEUE(wait); |
| 134 | |
| 135 | lockdep_assert_irqs_disabled(); |
| 136 | |
Thomas Gleixner | 3a7c8fa | 2020-04-24 09:57:56 +0200 | [diff] [blame] | 137 | if (!kvm_async_pf_queue_task(token, &n)) |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 138 | return; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 139 | |
| 140 | for (;;) { |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 141 | prepare_to_swait_exclusive(&n.wq, &wait, TASK_UNINTERRUPTIBLE); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 142 | if (hlist_unhashed(&n.link)) |
| 143 | break; |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 144 | |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 145 | local_irq_enable(); |
| 146 | schedule(); |
| 147 | local_irq_disable(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 148 | } |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 149 | finish_swait(&n.wq, &wait); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 150 | } |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 151 | EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait_schedule); |
| 152 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 153 | static void apf_task_wake_one(struct kvm_task_sleep_node *n) |
| 154 | { |
| 155 | hlist_del_init(&n->link); |
Thomas Gleixner | 3a7c8fa | 2020-04-24 09:57:56 +0200 | [diff] [blame] | 156 | if (swq_has_sleeper(&n->wq)) |
Peter Zijlstra | b3dae10 | 2018-06-12 10:34:52 +0200 | [diff] [blame] | 157 | swake_up_one(&n->wq); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | static void apf_task_wake_all(void) |
| 161 | { |
| 162 | int i; |
| 163 | |
| 164 | for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) { |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 165 | struct kvm_task_sleep_head *b = &async_pf_sleepers[i]; |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 166 | struct kvm_task_sleep_node *n; |
| 167 | struct hlist_node *p, *next; |
| 168 | |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 169 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 170 | hlist_for_each_safe(p, next, &b->list) { |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 171 | n = hlist_entry(p, typeof(*n), link); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 172 | if (n->cpu == smp_processor_id()) |
| 173 | apf_task_wake_one(n); |
| 174 | } |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 175 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 176 | } |
| 177 | } |
| 178 | |
| 179 | void kvm_async_pf_task_wake(u32 token) |
| 180 | { |
| 181 | u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS); |
| 182 | struct kvm_task_sleep_head *b = &async_pf_sleepers[key]; |
| 183 | struct kvm_task_sleep_node *n; |
| 184 | |
| 185 | if (token == ~0) { |
| 186 | apf_task_wake_all(); |
| 187 | return; |
| 188 | } |
| 189 | |
| 190 | again: |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 191 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 192 | n = _find_apf_task(b, token); |
| 193 | if (!n) { |
| 194 | /* |
| 195 | * async PF was not yet handled. |
| 196 | * Add dummy entry for the token. |
| 197 | */ |
Gleb Natapov | 62c49cc | 2012-05-02 15:04:02 +0300 | [diff] [blame] | 198 | n = kzalloc(sizeof(*n), GFP_ATOMIC); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 199 | if (!n) { |
| 200 | /* |
| 201 | * Allocation failed! Busy wait while other cpu |
| 202 | * handles async PF. |
| 203 | */ |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 204 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 205 | cpu_relax(); |
| 206 | goto again; |
| 207 | } |
| 208 | n->token = token; |
| 209 | n->cpu = smp_processor_id(); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 210 | init_swait_queue_head(&n->wq); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 211 | hlist_add_head(&n->link, &b->list); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 212 | } else { |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 213 | apf_task_wake_one(n); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 214 | } |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 215 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 216 | return; |
| 217 | } |
| 218 | EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake); |
| 219 | |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 220 | noinstr u32 kvm_read_and_reset_apf_flags(void) |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 221 | { |
Vitaly Kuznetsov | 68fd66f | 2020-05-25 16:41:17 +0200 | [diff] [blame] | 222 | u32 flags = 0; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 223 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 224 | if (__this_cpu_read(apf_reason.enabled)) { |
Vitaly Kuznetsov | 68fd66f | 2020-05-25 16:41:17 +0200 | [diff] [blame] | 225 | flags = __this_cpu_read(apf_reason.flags); |
| 226 | __this_cpu_write(apf_reason.flags, 0); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 227 | } |
| 228 | |
Vitaly Kuznetsov | 68fd66f | 2020-05-25 16:41:17 +0200 | [diff] [blame] | 229 | return flags; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 230 | } |
Vitaly Kuznetsov | 68fd66f | 2020-05-25 16:41:17 +0200 | [diff] [blame] | 231 | EXPORT_SYMBOL_GPL(kvm_read_and_reset_apf_flags); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 232 | |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 233 | noinstr bool __kvm_handle_async_pf(struct pt_regs *regs, u32 token) |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 234 | { |
Vitaly Kuznetsov | 68fd66f | 2020-05-25 16:41:17 +0200 | [diff] [blame] | 235 | u32 reason = kvm_read_and_reset_apf_flags(); |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 236 | bool rcu_exit; |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 237 | |
| 238 | switch (reason) { |
| 239 | case KVM_PV_REASON_PAGE_NOT_PRESENT: |
| 240 | case KVM_PV_REASON_PAGE_READY: |
| 241 | break; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 242 | default: |
Andy Lutomirski | ef68017 | 2020-02-28 10:42:48 -0800 | [diff] [blame] | 243 | return false; |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 246 | rcu_exit = idtentry_enter_cond_rcu(regs); |
| 247 | instrumentation_begin(); |
| 248 | |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 249 | /* |
| 250 | * If the host managed to inject an async #PF into an interrupt |
| 251 | * disabled region, then die hard as this is not going to end well |
| 252 | * and the host side is seriously broken. |
| 253 | */ |
| 254 | if (unlikely(!(regs->flags & X86_EFLAGS_IF))) |
| 255 | panic("Host injected async #PF in interrupt disabled region\n"); |
| 256 | |
| 257 | if (reason == KVM_PV_REASON_PAGE_NOT_PRESENT) { |
Thomas Gleixner | 3a7c8fa | 2020-04-24 09:57:56 +0200 | [diff] [blame] | 258 | if (unlikely(!(user_mode(regs)))) |
| 259 | panic("Host injected async #PF in kernel mode\n"); |
| 260 | /* Page is swapped out by the host. */ |
| 261 | kvm_async_pf_task_wait_schedule(token); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 262 | } else { |
Andy Lutomirski | ef68017 | 2020-02-28 10:42:48 -0800 | [diff] [blame] | 263 | kvm_async_pf_task_wake(token); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 264 | } |
Thomas Gleixner | 91eeafe | 2020-05-21 22:05:28 +0200 | [diff] [blame] | 265 | |
| 266 | instrumentation_end(); |
| 267 | idtentry_exit_cond_rcu(regs, rcu_exit); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 268 | return true; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 269 | } |
| 270 | |
Rakib Mullick | d3ac881 | 2009-07-02 11:40:36 +0600 | [diff] [blame] | 271 | static void __init paravirt_ops_setup(void) |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 272 | { |
| 273 | pv_info.name = "KVM"; |
Andy Lutomirski | 29fa682 | 2014-12-05 19:03:28 -0800 | [diff] [blame] | 274 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 275 | if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY)) |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 276 | pv_ops.cpu.io_delay = kvm_io_delay; |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 277 | |
Marcelo Tosatti | a90ede7 | 2009-02-11 22:45:42 -0200 | [diff] [blame] | 278 | #ifdef CONFIG_X86_IO_APIC |
| 279 | no_timer_check = 1; |
| 280 | #endif |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 281 | } |
| 282 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 283 | static void kvm_register_steal_time(void) |
| 284 | { |
| 285 | int cpu = smp_processor_id(); |
| 286 | struct kvm_steal_time *st = &per_cpu(steal_time, cpu); |
| 287 | |
| 288 | if (!has_steal_clock) |
| 289 | return; |
| 290 | |
Dave Hansen | 5dfd486 | 2013-01-22 13:24:35 -0800 | [diff] [blame] | 291 | wrmsrl(MSR_KVM_STEAL_TIME, (slow_virt_to_phys(st) | KVM_MSR_ENABLED)); |
Shuah Khan | 136867f | 2013-02-05 19:57:22 -0700 | [diff] [blame] | 292 | pr_info("kvm-stealtime: cpu %d, msr %llx\n", |
| 293 | cpu, (unsigned long long) slow_virt_to_phys(st)); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 294 | } |
| 295 | |
Brijesh Singh | 4716276 | 2017-10-20 09:30:58 -0500 | [diff] [blame] | 296 | static DEFINE_PER_CPU_DECRYPTED(unsigned long, kvm_apic_eoi) = KVM_PV_EOI_DISABLED; |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 297 | |
Wanpeng Li | 8ca2255 | 2016-11-07 11:13:40 +0800 | [diff] [blame] | 298 | static notrace void kvm_guest_apic_eoi_write(u32 reg, u32 val) |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 299 | { |
| 300 | /** |
| 301 | * This relies on __test_and_clear_bit to modify the memory |
| 302 | * in a way that is atomic with respect to the local CPU. |
| 303 | * The hypervisor only accesses this memory from the local CPU so |
| 304 | * there's no need for lock or memory barriers. |
| 305 | * An optimization barrier is implied in apic write. |
| 306 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 307 | if (__test_and_clear_bit(KVM_PV_EOI_BIT, this_cpu_ptr(&kvm_apic_eoi))) |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 308 | return; |
Wanpeng Li | 8ca2255 | 2016-11-07 11:13:40 +0800 | [diff] [blame] | 309 | apic->native_eoi_write(APIC_EOI, APIC_EOI_ACK); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 310 | } |
| 311 | |
Nicholas Krause | ed3cf15 | 2015-05-20 00:24:10 -0400 | [diff] [blame] | 312 | static void kvm_guest_cpu_init(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 313 | { |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 314 | if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) { |
Andy Lutomirski | ef68017 | 2020-02-28 10:42:48 -0800 | [diff] [blame] | 315 | u64 pa; |
| 316 | |
| 317 | WARN_ON_ONCE(!static_branch_likely(&kvm_async_pf_enabled)); |
| 318 | |
| 319 | pa = slow_virt_to_phys(this_cpu_ptr(&apf_reason)); |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 320 | pa |= KVM_ASYNC_PF_ENABLED; |
| 321 | |
Radim Krčmář | fe2a302 | 2018-02-01 22:16:21 +0100 | [diff] [blame] | 322 | if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF_VMEXIT)) |
| 323 | pa |= KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT; |
| 324 | |
| 325 | wrmsrl(MSR_KVM_ASYNC_PF_EN, pa); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 326 | __this_cpu_write(apf_reason.enabled, 1); |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 327 | pr_info("KVM setup async PF for cpu %d\n", smp_processor_id()); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 328 | } |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 329 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 330 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) { |
| 331 | unsigned long pa; |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 332 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 333 | /* Size alignment is implied but just to make it explicit. */ |
| 334 | BUILD_BUG_ON(__alignof__(kvm_apic_eoi) < 4); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 335 | __this_cpu_write(kvm_apic_eoi, 0); |
| 336 | pa = slow_virt_to_phys(this_cpu_ptr(&kvm_apic_eoi)) |
Dave Hansen | 5dfd486 | 2013-01-22 13:24:35 -0800 | [diff] [blame] | 337 | | KVM_MSR_ENABLED; |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 338 | wrmsrl(MSR_KVM_PV_EOI_EN, pa); |
| 339 | } |
| 340 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 341 | if (has_steal_clock) |
| 342 | kvm_register_steal_time(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 343 | } |
| 344 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 345 | static void kvm_pv_disable_apf(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 346 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 347 | if (!__this_cpu_read(apf_reason.enabled)) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 348 | return; |
| 349 | |
| 350 | wrmsrl(MSR_KVM_ASYNC_PF_EN, 0); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 351 | __this_cpu_write(apf_reason.enabled, 0); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 352 | |
Thomas Gleixner | 6bca69a | 2020-03-07 00:42:06 +0100 | [diff] [blame] | 353 | pr_info("Unregister pv shared memory for cpu %d\n", smp_processor_id()); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 354 | } |
| 355 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 356 | static void kvm_pv_guest_cpu_reboot(void *unused) |
| 357 | { |
| 358 | /* |
| 359 | * We disable PV EOI before we load a new kernel by kexec, |
| 360 | * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory. |
| 361 | * New kernel can re-enable when it boots. |
| 362 | */ |
| 363 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 364 | wrmsrl(MSR_KVM_PV_EOI_EN, 0); |
| 365 | kvm_pv_disable_apf(); |
Florian Westphal | 8fbe6a5 | 2012-08-15 16:00:40 +0200 | [diff] [blame] | 366 | kvm_disable_steal_time(); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 367 | } |
| 368 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 369 | static int kvm_pv_reboot_notify(struct notifier_block *nb, |
| 370 | unsigned long code, void *unused) |
| 371 | { |
| 372 | if (code == SYS_RESTART) |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 373 | on_each_cpu(kvm_pv_guest_cpu_reboot, NULL, 1); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 374 | return NOTIFY_DONE; |
| 375 | } |
| 376 | |
| 377 | static struct notifier_block kvm_pv_reboot_nb = { |
| 378 | .notifier_call = kvm_pv_reboot_notify, |
| 379 | }; |
| 380 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 381 | static u64 kvm_steal_clock(int cpu) |
| 382 | { |
| 383 | u64 steal; |
| 384 | struct kvm_steal_time *src; |
| 385 | int version; |
| 386 | |
| 387 | src = &per_cpu(steal_time, cpu); |
| 388 | do { |
| 389 | version = src->version; |
Wanpeng Li | 5a48a62 | 2017-04-11 02:49:21 -0700 | [diff] [blame] | 390 | virt_rmb(); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 391 | steal = src->steal; |
Wanpeng Li | 5a48a62 | 2017-04-11 02:49:21 -0700 | [diff] [blame] | 392 | virt_rmb(); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 393 | } while ((version & 1) || (version != src->version)); |
| 394 | |
| 395 | return steal; |
| 396 | } |
| 397 | |
| 398 | void kvm_disable_steal_time(void) |
| 399 | { |
| 400 | if (!has_steal_clock) |
| 401 | return; |
| 402 | |
| 403 | wrmsr(MSR_KVM_STEAL_TIME, 0, 0); |
| 404 | } |
| 405 | |
Brijesh Singh | 4716276 | 2017-10-20 09:30:58 -0500 | [diff] [blame] | 406 | static inline void __set_percpu_decrypted(void *ptr, unsigned long size) |
| 407 | { |
| 408 | early_set_memory_decrypted((unsigned long) ptr, size); |
| 409 | } |
| 410 | |
| 411 | /* |
| 412 | * Iterate through all possible CPUs and map the memory region pointed |
| 413 | * by apf_reason, steal_time and kvm_apic_eoi as decrypted at once. |
| 414 | * |
| 415 | * Note: we iterate through all possible CPUs to ensure that CPUs |
| 416 | * hotplugged will have their per-cpu variable already mapped as |
| 417 | * decrypted. |
| 418 | */ |
| 419 | static void __init sev_map_percpu_data(void) |
| 420 | { |
| 421 | int cpu; |
| 422 | |
| 423 | if (!sev_active()) |
| 424 | return; |
| 425 | |
| 426 | for_each_possible_cpu(cpu) { |
| 427 | __set_percpu_decrypted(&per_cpu(apf_reason, cpu), sizeof(apf_reason)); |
| 428 | __set_percpu_decrypted(&per_cpu(steal_time, cpu), sizeof(steal_time)); |
| 429 | __set_percpu_decrypted(&per_cpu(kvm_apic_eoi, cpu), sizeof(kvm_apic_eoi)); |
| 430 | } |
| 431 | } |
| 432 | |
Wanpeng Li | a262bca | 2020-02-18 09:08:23 +0800 | [diff] [blame] | 433 | static bool pv_tlb_flush_supported(void) |
| 434 | { |
| 435 | return (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) && |
| 436 | !kvm_para_has_hint(KVM_HINTS_REALTIME) && |
| 437 | kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)); |
| 438 | } |
| 439 | |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 440 | static DEFINE_PER_CPU(cpumask_var_t, __pv_cpu_mask); |
| 441 | |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 442 | #ifdef CONFIG_SMP |
Wanpeng Li | a262bca | 2020-02-18 09:08:23 +0800 | [diff] [blame] | 443 | |
| 444 | static bool pv_ipi_supported(void) |
| 445 | { |
| 446 | return kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI); |
| 447 | } |
| 448 | |
| 449 | static bool pv_sched_yield_supported(void) |
| 450 | { |
| 451 | return (kvm_para_has_feature(KVM_FEATURE_PV_SCHED_YIELD) && |
| 452 | !kvm_para_has_hint(KVM_HINTS_REALTIME) && |
| 453 | kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)); |
| 454 | } |
| 455 | |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 456 | #define KVM_IPI_CLUSTER_SIZE (2 * BITS_PER_LONG) |
| 457 | |
| 458 | static void __send_ipi_mask(const struct cpumask *mask, int vector) |
| 459 | { |
| 460 | unsigned long flags; |
| 461 | int cpu, apic_id, icr; |
| 462 | int min = 0, max = 0; |
| 463 | #ifdef CONFIG_X86_64 |
| 464 | __uint128_t ipi_bitmap = 0; |
| 465 | #else |
| 466 | u64 ipi_bitmap = 0; |
| 467 | #endif |
Sean Christopherson | de81c2f | 2019-01-23 09:22:40 -0800 | [diff] [blame] | 468 | long ret; |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 469 | |
| 470 | if (cpumask_empty(mask)) |
| 471 | return; |
| 472 | |
| 473 | local_irq_save(flags); |
| 474 | |
| 475 | switch (vector) { |
| 476 | default: |
| 477 | icr = APIC_DM_FIXED | vector; |
| 478 | break; |
| 479 | case NMI_VECTOR: |
| 480 | icr = APIC_DM_NMI; |
| 481 | break; |
| 482 | } |
| 483 | |
| 484 | for_each_cpu(cpu, mask) { |
| 485 | apic_id = per_cpu(x86_cpu_to_apicid, cpu); |
| 486 | if (!ipi_bitmap) { |
| 487 | min = max = apic_id; |
| 488 | } else if (apic_id < min && max - apic_id < KVM_IPI_CLUSTER_SIZE) { |
| 489 | ipi_bitmap <<= min - apic_id; |
| 490 | min = apic_id; |
| 491 | } else if (apic_id < min + KVM_IPI_CLUSTER_SIZE) { |
| 492 | max = apic_id < max ? max : apic_id; |
| 493 | } else { |
Sean Christopherson | de81c2f | 2019-01-23 09:22:40 -0800 | [diff] [blame] | 494 | ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap, |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 495 | (unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr); |
Sean Christopherson | de81c2f | 2019-01-23 09:22:40 -0800 | [diff] [blame] | 496 | WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret); |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 497 | min = max = apic_id; |
| 498 | ipi_bitmap = 0; |
| 499 | } |
| 500 | __set_bit(apic_id - min, (unsigned long *)&ipi_bitmap); |
| 501 | } |
| 502 | |
| 503 | if (ipi_bitmap) { |
Sean Christopherson | de81c2f | 2019-01-23 09:22:40 -0800 | [diff] [blame] | 504 | ret = kvm_hypercall4(KVM_HC_SEND_IPI, (unsigned long)ipi_bitmap, |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 505 | (unsigned long)(ipi_bitmap >> BITS_PER_LONG), min, icr); |
Sean Christopherson | de81c2f | 2019-01-23 09:22:40 -0800 | [diff] [blame] | 506 | WARN_ONCE(ret < 0, "KVM: failed to send PV IPI: %ld", ret); |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | local_irq_restore(flags); |
| 510 | } |
| 511 | |
| 512 | static void kvm_send_ipi_mask(const struct cpumask *mask, int vector) |
| 513 | { |
| 514 | __send_ipi_mask(mask, vector); |
| 515 | } |
| 516 | |
| 517 | static void kvm_send_ipi_mask_allbutself(const struct cpumask *mask, int vector) |
| 518 | { |
| 519 | unsigned int this_cpu = smp_processor_id(); |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 520 | struct cpumask *new_mask = this_cpu_cpumask_var_ptr(__pv_cpu_mask); |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 521 | const struct cpumask *local_mask; |
| 522 | |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 523 | cpumask_copy(new_mask, mask); |
| 524 | cpumask_clear_cpu(this_cpu, new_mask); |
| 525 | local_mask = new_mask; |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 526 | __send_ipi_mask(local_mask, vector); |
| 527 | } |
| 528 | |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 529 | /* |
| 530 | * Set the IPI entry points |
| 531 | */ |
| 532 | static void kvm_setup_pv_ipi(void) |
| 533 | { |
| 534 | apic->send_IPI_mask = kvm_send_ipi_mask; |
| 535 | apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself; |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 536 | pr_info("KVM setup pv IPIs\n"); |
| 537 | } |
| 538 | |
Wanpeng Li | f85f6e7 | 2019-06-11 20:23:48 +0800 | [diff] [blame] | 539 | static void kvm_smp_send_call_func_ipi(const struct cpumask *mask) |
| 540 | { |
| 541 | int cpu; |
| 542 | |
| 543 | native_send_call_func_ipi(mask); |
| 544 | |
| 545 | /* Make sure other vCPUs get a chance to run if they need to. */ |
| 546 | for_each_cpu(cpu, mask) { |
| 547 | if (vcpu_is_preempted(cpu)) { |
| 548 | kvm_hypercall1(KVM_HC_SCHED_YIELD, per_cpu(x86_cpu_to_apicid, cpu)); |
| 549 | break; |
| 550 | } |
| 551 | } |
| 552 | } |
| 553 | |
Wanpeng Li | 34226b6 | 2018-03-24 21:17:24 -0700 | [diff] [blame] | 554 | static void __init kvm_smp_prepare_cpus(unsigned int max_cpus) |
| 555 | { |
| 556 | native_smp_prepare_cpus(max_cpus); |
Michael S. Tsirkin | 633711e | 2018-05-17 17:54:24 +0300 | [diff] [blame] | 557 | if (kvm_para_has_hint(KVM_HINTS_REALTIME)) |
Wanpeng Li | 34226b6 | 2018-03-24 21:17:24 -0700 | [diff] [blame] | 558 | static_branch_disable(&virt_spin_lock_key); |
| 559 | } |
| 560 | |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 561 | static void __init kvm_smp_prepare_boot_cpu(void) |
| 562 | { |
Brijesh Singh | 4716276 | 2017-10-20 09:30:58 -0500 | [diff] [blame] | 563 | /* |
| 564 | * Map the per-cpu variables as decrypted before kvm_guest_cpu_init() |
| 565 | * shares the guest physical address with the hypervisor. |
| 566 | */ |
| 567 | sev_map_percpu_data(); |
| 568 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 569 | kvm_guest_cpu_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 570 | native_smp_prepare_boot_cpu(); |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 571 | kvm_spinlock_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 572 | } |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 573 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 574 | static void kvm_guest_cpu_offline(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 575 | { |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 576 | kvm_disable_steal_time(); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 577 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 578 | wrmsrl(MSR_KVM_PV_EOI_EN, 0); |
| 579 | kvm_pv_disable_apf(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 580 | apf_task_wake_all(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 581 | } |
| 582 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 583 | static int kvm_cpu_online(unsigned int cpu) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 584 | { |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 585 | local_irq_disable(); |
| 586 | kvm_guest_cpu_init(); |
| 587 | local_irq_enable(); |
| 588 | return 0; |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 589 | } |
| 590 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 591 | static int kvm_cpu_down_prepare(unsigned int cpu) |
| 592 | { |
| 593 | local_irq_disable(); |
| 594 | kvm_guest_cpu_offline(); |
| 595 | local_irq_enable(); |
| 596 | return 0; |
| 597 | } |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 598 | #endif |
| 599 | |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 600 | static void kvm_flush_tlb_others(const struct cpumask *cpumask, |
| 601 | const struct flush_tlb_info *info) |
| 602 | { |
| 603 | u8 state; |
| 604 | int cpu; |
| 605 | struct kvm_steal_time *src; |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 606 | struct cpumask *flushmask = this_cpu_cpumask_var_ptr(__pv_cpu_mask); |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 607 | |
| 608 | cpumask_copy(flushmask, cpumask); |
| 609 | /* |
| 610 | * We have to call flush only on online vCPUs. And |
| 611 | * queue flush_on_enter for pre-empted vCPUs |
| 612 | */ |
| 613 | for_each_cpu(cpu, flushmask) { |
| 614 | src = &per_cpu(steal_time, cpu); |
| 615 | state = READ_ONCE(src->preempted); |
| 616 | if ((state & KVM_VCPU_PREEMPTED)) { |
| 617 | if (try_cmpxchg(&src->preempted, &state, |
| 618 | state | KVM_VCPU_FLUSH_TLB)) |
| 619 | __cpumask_clear_cpu(cpu, flushmask); |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | native_flush_tlb_others(flushmask, info); |
| 624 | } |
| 625 | |
Juergen Gross | f361464 | 2017-11-09 14:27:38 +0100 | [diff] [blame] | 626 | static void __init kvm_guest_init(void) |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 627 | { |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 628 | int i; |
| 629 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 630 | paravirt_ops_setup(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 631 | register_reboot_notifier(&kvm_pv_reboot_nb); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 632 | for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 633 | raw_spin_lock_init(&async_pf_sleepers[i].lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 634 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 635 | if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) { |
| 636 | has_steal_clock = 1; |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 637 | pv_ops.time.steal_clock = kvm_steal_clock; |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 638 | } |
| 639 | |
Wanpeng Li | a262bca | 2020-02-18 09:08:23 +0800 | [diff] [blame] | 640 | if (pv_tlb_flush_supported()) { |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 641 | pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others; |
| 642 | pv_ops.mmu.tlb_remove_table = tlb_remove_table; |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 643 | pr_info("KVM setup pv remote TLB flush\n"); |
Peter Zijlstra | 48a8b97 | 2018-08-22 17:30:16 +0200 | [diff] [blame] | 644 | } |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 645 | |
Michael S. Tsirkin | 9053666 | 2012-07-15 15:56:52 +0300 | [diff] [blame] | 646 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 647 | apic_set_eoi_write(kvm_guest_apic_eoi_write); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 648 | |
Andy Lutomirski | ef68017 | 2020-02-28 10:42:48 -0800 | [diff] [blame] | 649 | if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) |
| 650 | static_branch_enable(&kvm_async_pf_enabled); |
| 651 | |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 652 | #ifdef CONFIG_SMP |
Wanpeng Li | 34226b6 | 2018-03-24 21:17:24 -0700 | [diff] [blame] | 653 | smp_ops.smp_prepare_cpus = kvm_smp_prepare_cpus; |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 654 | smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu; |
Wanpeng Li | a262bca | 2020-02-18 09:08:23 +0800 | [diff] [blame] | 655 | if (pv_sched_yield_supported()) { |
Wanpeng Li | f85f6e7 | 2019-06-11 20:23:48 +0800 | [diff] [blame] | 656 | smp_ops.send_call_func_ipi = kvm_smp_send_call_func_ipi; |
| 657 | pr_info("KVM setup pv sched yield\n"); |
| 658 | } |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 659 | 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 Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 662 | #else |
Brijesh Singh | 4716276 | 2017-10-20 09:30:58 -0500 | [diff] [blame] | 663 | sev_map_percpu_data(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 664 | kvm_guest_cpu_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 665 | #endif |
Ulrich Obergfell | 9919e39 | 2014-10-13 15:55:37 -0700 | [diff] [blame] | 666 | |
| 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 Obergfell | 692297d | 2015-04-14 15:44:19 -0700 | [diff] [blame] | 672 | hardlockup_detector_disable(); |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 673 | } |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 674 | |
Paolo Bonzini | 1c300a4 | 2014-01-27 14:49:40 +0100 | [diff] [blame] | 675 | static 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 Petkov | 0c9f3536 | 2016-03-29 17:41:55 +0200 | [diff] [blame] | 680 | if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) |
Paolo Bonzini | 1c300a4 | 2014-01-27 14:49:40 +0100 | [diff] [blame] | 681 | return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0); |
| 682 | |
| 683 | return 0; |
| 684 | } |
| 685 | |
| 686 | static 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 | |
| 696 | bool kvm_para_available(void) |
| 697 | { |
| 698 | return kvm_cpuid_base() != 0; |
| 699 | } |
| 700 | EXPORT_SYMBOL_GPL(kvm_para_available); |
| 701 | |
Paolo Bonzini | 77f01bd | 2014-01-27 14:51:44 +0100 | [diff] [blame] | 702 | unsigned int kvm_arch_para_features(void) |
| 703 | { |
| 704 | return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES); |
| 705 | } |
| 706 | |
Wanpeng Li | a4429e5 | 2018-02-13 09:05:40 +0800 | [diff] [blame] | 707 | unsigned int kvm_arch_para_hints(void) |
| 708 | { |
| 709 | return cpuid_edx(kvm_cpuid_base() | KVM_CPUID_FEATURES); |
| 710 | } |
Wanpeng Li | 1328edc | 2019-08-29 16:49:57 +0800 | [diff] [blame] | 711 | EXPORT_SYMBOL_GPL(kvm_arch_para_hints); |
Wanpeng Li | a4429e5 | 2018-02-13 09:05:40 +0800 | [diff] [blame] | 712 | |
Jason Wang | 9df56f1 | 2013-07-25 16:54:35 +0800 | [diff] [blame] | 713 | static uint32_t __init kvm_detect(void) |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 714 | { |
Jason Wang | 9df56f1 | 2013-07-25 16:54:35 +0800 | [diff] [blame] | 715 | return kvm_cpuid_base(); |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 716 | } |
| 717 | |
Wanpeng Li | d63bae0 | 2018-07-23 14:39:51 +0800 | [diff] [blame] | 718 | static void __init kvm_apic_init(void) |
| 719 | { |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 720 | #if defined(CONFIG_SMP) |
Wanpeng Li | a262bca | 2020-02-18 09:08:23 +0800 | [diff] [blame] | 721 | if (pv_ipi_supported()) |
Wanpeng Li | aaffcfd | 2018-07-23 14:39:52 +0800 | [diff] [blame] | 722 | kvm_setup_pv_ipi(); |
| 723 | #endif |
Wanpeng Li | d63bae0 | 2018-07-23 14:39:51 +0800 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | static void __init kvm_init_platform(void) |
| 727 | { |
Linus Torvalds | e61cf2e | 2018-08-19 10:38:36 -0700 | [diff] [blame] | 728 | kvmclock_init(); |
Wanpeng Li | d63bae0 | 2018-07-23 14:39:51 +0800 | [diff] [blame] | 729 | x86_platform.apic_post_init = kvm_apic_init; |
| 730 | } |
| 731 | |
Juergen Gross | 03b2a32 | 2017-11-09 14:27:36 +0100 | [diff] [blame] | 732 | const __initconst struct hypervisor_x86 x86_hyper_kvm = { |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 733 | .name = "KVM", |
| 734 | .detect = kvm_detect, |
Juergen Gross | 03b2a32 | 2017-11-09 14:27:36 +0100 | [diff] [blame] | 735 | .type = X86_HYPER_KVM, |
Juergen Gross | f361464 | 2017-11-09 14:27:38 +0100 | [diff] [blame] | 736 | .init.guest_late_init = kvm_guest_init, |
Juergen Gross | f72e38e | 2017-11-09 14:27:35 +0100 | [diff] [blame] | 737 | .init.x2apic_available = kvm_para_available, |
Wanpeng Li | d63bae0 | 2018-07-23 14:39:51 +0800 | [diff] [blame] | 738 | .init.init_platform = kvm_init_platform, |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 739 | }; |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 740 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 741 | static __init int activate_jump_labels(void) |
| 742 | { |
| 743 | if (has_steal_clock) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 744 | static_key_slow_inc(¶virt_steal_enabled); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 745 | if (steal_acc) |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 746 | static_key_slow_inc(¶virt_steal_rq_enabled); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 747 | } |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | arch_initcall(activate_jump_labels); |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 752 | |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 753 | static __init int kvm_alloc_cpumask(void) |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 754 | { |
| 755 | int cpu; |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 756 | bool alloc = false; |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 757 | |
Thadeu Lima de Souza Cascardo | 64b38bd | 2020-01-31 12:56:55 -0300 | [diff] [blame] | 758 | if (!kvm_para_available() || nopv) |
| 759 | return 0; |
| 760 | |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 761 | 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 Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 770 | for_each_possible_cpu(cpu) { |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 771 | zalloc_cpumask_var_node(per_cpu_ptr(&__pv_cpu_mask, cpu), |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 772 | GFP_KERNEL, cpu_to_node(cpu)); |
| 773 | } |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 774 | |
| 775 | return 0; |
| 776 | } |
Wanpeng Li | 8a9442f | 2020-02-18 09:08:24 +0800 | [diff] [blame] | 777 | arch_initcall(kvm_alloc_cpumask); |
Wanpeng Li | 858a43a | 2017-12-12 17:33:02 -0800 | [diff] [blame] | 778 | |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 779 | #ifdef CONFIG_PARAVIRT_SPINLOCKS |
| 780 | |
| 781 | /* Kick a cpu by its apicid. Used to wake up a halted vcpu */ |
Raghavendra K T | 36bd621 | 2013-08-16 15:08:41 +0530 | [diff] [blame] | 782 | static void kvm_kick_cpu(int cpu) |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 783 | { |
| 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 Long | bf0c7c3 | 2015-04-24 14:56:39 -0400 | [diff] [blame] | 791 | #include <asm/qspinlock.h> |
| 792 | |
| 793 | static 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 | |
| 815 | out: |
| 816 | local_irq_restore(flags); |
| 817 | } |
| 818 | |
Waiman Long | dd0fd8b | 2017-02-20 13:36:04 -0500 | [diff] [blame] | 819 | #ifdef CONFIG_X86_32 |
Waiman Long | 6c62985 | 2017-02-20 13:36:03 -0500 | [diff] [blame] | 820 | __visible bool __kvm_vcpu_is_preempted(long cpu) |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 821 | { |
| 822 | struct kvm_steal_time *src = &per_cpu(steal_time, cpu); |
| 823 | |
Wanpeng Li | fa55eed | 2017-12-12 17:33:01 -0800 | [diff] [blame] | 824 | return !!(src->preempted & KVM_VCPU_PREEMPTED); |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 825 | } |
| 826 | PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted); |
| 827 | |
Waiman Long | dd0fd8b | 2017-02-20 13:36:04 -0500 | [diff] [blame] | 828 | #else |
| 829 | |
| 830 | #include <asm/asm-offsets.h> |
| 831 | |
| 832 | extern 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 | */ |
| 838 | asm( |
| 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 Poimboeuf | 083db67 | 2019-07-17 20:36:36 -0500 | [diff] [blame] | 847 | ".size __raw_callee_save___kvm_vcpu_is_preempted, .-__raw_callee_save___kvm_vcpu_is_preempted;" |
Waiman Long | dd0fd8b | 2017-02-20 13:36:04 -0500 | [diff] [blame] | 848 | ".popsection"); |
| 849 | |
| 850 | #endif |
| 851 | |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 852 | /* |
| 853 | * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present. |
| 854 | */ |
| 855 | void __init kvm_spinlock_init(void) |
| 856 | { |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 857 | /* Does host kernel support KVM_FEATURE_PV_UNHALT? */ |
| 858 | if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT)) |
| 859 | return; |
| 860 | |
Michael S. Tsirkin | 633711e | 2018-05-17 17:54:24 +0300 | [diff] [blame] | 861 | if (kvm_para_has_hint(KVM_HINTS_REALTIME)) |
Wanpeng Li | b2798ba | 2018-02-13 09:05:41 +0800 | [diff] [blame] | 862 | return; |
Wanpeng Li | b2798ba | 2018-02-13 09:05:41 +0800 | [diff] [blame] | 863 | |
Waiman Long | 3553ae5 | 2018-07-17 17:59:27 -0400 | [diff] [blame] | 864 | /* Don't use the pvqspinlock code if there is only 1 vCPU. */ |
| 865 | if (num_possible_cpus() == 1) |
| 866 | return; |
| 867 | |
Waiman Long | bf0c7c3 | 2015-04-24 14:56:39 -0400 | [diff] [blame] | 868 | __pv_init_lock_hash(); |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 869 | 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 Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 874 | |
| 875 | if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) { |
Juergen Gross | 5c83511 | 2018-08-28 09:40:19 +0200 | [diff] [blame] | 876 | pv_ops.lock.vcpu_is_preempted = |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 877 | PV_CALLEE_SAVE(__kvm_vcpu_is_preempted); |
| 878 | } |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 879 | } |
Raghavendra K T | 3dbef3e | 2013-10-09 14:33:21 +0530 | [diff] [blame] | 880 | |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 881 | #endif /* CONFIG_PARAVIRT_SPINLOCKS */ |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 882 | |
| 883 | #ifdef CONFIG_ARCH_CPUIDLE_HALTPOLL |
| 884 | |
| 885 | static void kvm_disable_host_haltpoll(void *i) |
| 886 | { |
| 887 | wrmsrl(MSR_KVM_POLL_CONTROL, 0); |
| 888 | } |
| 889 | |
| 890 | static void kvm_enable_host_haltpoll(void *i) |
| 891 | { |
| 892 | wrmsrl(MSR_KVM_POLL_CONTROL, 1); |
| 893 | } |
| 894 | |
Joao Martins | 97d3eb9 | 2019-09-02 11:40:31 +0100 | [diff] [blame] | 895 | void arch_haltpoll_enable(unsigned int cpu) |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 896 | { |
| 897 | if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) { |
Joao Martins | 97d3eb9 | 2019-09-02 11:40:31 +0100 | [diff] [blame] | 898 | pr_err_once("kvm: host does not support poll control\n"); |
| 899 | pr_err_once("kvm: host upgrade recommended\n"); |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 900 | return; |
| 901 | } |
| 902 | |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 903 | /* Enable guest halt poll disables host halt poll */ |
Joao Martins | 97d3eb9 | 2019-09-02 11:40:31 +0100 | [diff] [blame] | 904 | smp_call_function_single(cpu, kvm_disable_host_haltpoll, NULL, 1); |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 905 | } |
| 906 | EXPORT_SYMBOL_GPL(arch_haltpoll_enable); |
| 907 | |
Joao Martins | 97d3eb9 | 2019-09-02 11:40:31 +0100 | [diff] [blame] | 908 | void arch_haltpoll_disable(unsigned int cpu) |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 909 | { |
| 910 | if (!kvm_para_has_feature(KVM_FEATURE_POLL_CONTROL)) |
| 911 | return; |
| 912 | |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 913 | /* Enable guest halt poll disables host halt poll */ |
Joao Martins | 97d3eb9 | 2019-09-02 11:40:31 +0100 | [diff] [blame] | 914 | smp_call_function_single(cpu, kvm_enable_host_haltpoll, NULL, 1); |
Marcelo Tosatti | a1c4423 | 2019-07-03 20:51:29 -0300 | [diff] [blame] | 915 | } |
| 916 | EXPORT_SYMBOL_GPL(arch_haltpoll_disable); |
| 917 | #endif |