Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 1 | /* |
| 2 | * KVM paravirt_ops implementation |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 | * |
| 18 | * Copyright (C) 2007, Red Hat, Inc., Ingo Molnar <mingo@redhat.com> |
| 19 | * Copyright IBM Corporation, 2007 |
| 20 | * Authors: Anthony Liguori <aliguori@us.ibm.com> |
| 21 | */ |
| 22 | |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 23 | #include <linux/context_tracking.h> |
Paul Gortmaker | 186f436 | 2016-07-13 20:18:56 -0400 | [diff] [blame] | 24 | #include <linux/init.h> |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/kvm_para.h> |
| 27 | #include <linux/cpu.h> |
| 28 | #include <linux/mm.h> |
Marcelo Tosatti | 1da8a77 | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 29 | #include <linux/highmem.h> |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 30 | #include <linux/hardirq.h> |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 31 | #include <linux/notifier.h> |
| 32 | #include <linux/reboot.h> |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 33 | #include <linux/hash.h> |
| 34 | #include <linux/sched.h> |
| 35 | #include <linux/slab.h> |
| 36 | #include <linux/kprobes.h> |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 37 | #include <linux/debugfs.h> |
Ulrich Obergfell | 9919e39 | 2014-10-13 15:55:37 -0700 | [diff] [blame] | 38 | #include <linux/nmi.h> |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 39 | #include <linux/swait.h> |
Marcelo Tosatti | a90ede7 | 2009-02-11 22:45:42 -0200 | [diff] [blame] | 40 | #include <asm/timer.h> |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 41 | #include <asm/cpu.h> |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 42 | #include <asm/traps.h> |
| 43 | #include <asm/desc.h> |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 44 | #include <asm/tlbflush.h> |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 45 | #include <asm/apic.h> |
| 46 | #include <asm/apicdef.h> |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 47 | #include <asm/hypervisor.h> |
Marcelo Tosatti | 3dc4f7c | 2012-11-27 23:28:56 -0200 | [diff] [blame] | 48 | #include <asm/kvm_guest.h> |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 49 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 50 | static int kvmapf = 1; |
| 51 | |
| 52 | static int parse_no_kvmapf(char *arg) |
| 53 | { |
| 54 | kvmapf = 0; |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | early_param("no-kvmapf", parse_no_kvmapf); |
| 59 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 60 | static int steal_acc = 1; |
| 61 | static int parse_no_stealacc(char *arg) |
| 62 | { |
| 63 | steal_acc = 0; |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | early_param("no-steal-acc", parse_no_stealacc); |
| 68 | |
Marcelo Tosatti | 3dc4f7c | 2012-11-27 23:28:56 -0200 | [diff] [blame] | 69 | static int kvmclock_vsyscall = 1; |
| 70 | static int parse_no_kvmclock_vsyscall(char *arg) |
| 71 | { |
| 72 | kvmclock_vsyscall = 0; |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | early_param("no-kvmclock-vsyscall", parse_no_kvmclock_vsyscall); |
| 77 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 78 | static DEFINE_PER_CPU(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 79 | static DEFINE_PER_CPU(struct kvm_steal_time, steal_time) __aligned(64); |
| 80 | static int has_steal_clock = 0; |
Marcelo Tosatti | 096d14a | 2008-02-22 12:21:38 -0500 | [diff] [blame] | 81 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 82 | /* |
| 83 | * No need for any "IO delay" on KVM |
| 84 | */ |
| 85 | static void kvm_io_delay(void) |
| 86 | { |
| 87 | } |
| 88 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 89 | #define KVM_TASK_SLEEP_HASHBITS 8 |
| 90 | #define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS) |
| 91 | |
| 92 | struct kvm_task_sleep_node { |
| 93 | struct hlist_node link; |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 94 | struct swait_queue_head wq; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 95 | u32 token; |
| 96 | int cpu; |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 97 | bool halted; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | static struct kvm_task_sleep_head { |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 101 | raw_spinlock_t lock; |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 102 | struct hlist_head list; |
| 103 | } async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE]; |
| 104 | |
| 105 | static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b, |
| 106 | u32 token) |
| 107 | { |
| 108 | struct hlist_node *p; |
| 109 | |
| 110 | hlist_for_each(p, &b->list) { |
| 111 | struct kvm_task_sleep_node *n = |
| 112 | hlist_entry(p, typeof(*n), link); |
| 113 | if (n->token == token) |
| 114 | return n; |
| 115 | } |
| 116 | |
| 117 | return NULL; |
| 118 | } |
| 119 | |
| 120 | void kvm_async_pf_task_wait(u32 token) |
| 121 | { |
| 122 | u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS); |
| 123 | struct kvm_task_sleep_head *b = &async_pf_sleepers[key]; |
| 124 | struct kvm_task_sleep_node n, *e; |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 125 | DECLARE_SWAITQUEUE(wait); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 126 | |
Li Zhong | 9b132fb | 2012-12-04 10:35:13 +0800 | [diff] [blame] | 127 | rcu_irq_enter(); |
| 128 | |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 129 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 130 | e = _find_apf_task(b, token); |
| 131 | if (e) { |
| 132 | /* dummy entry exist -> wake up was delivered ahead of PF */ |
| 133 | hlist_del(&e->link); |
| 134 | kfree(e); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 135 | raw_spin_unlock(&b->lock); |
Li Zhong | 9b132fb | 2012-12-04 10:35:13 +0800 | [diff] [blame] | 136 | |
| 137 | rcu_irq_exit(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 138 | return; |
| 139 | } |
| 140 | |
| 141 | n.token = token; |
| 142 | n.cpu = smp_processor_id(); |
Gleb Natapov | 859f845 | 2012-11-28 15:19:08 +0200 | [diff] [blame] | 143 | n.halted = is_idle_task(current) || preempt_count() > 1; |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 144 | init_swait_queue_head(&n.wq); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 145 | hlist_add_head(&n.link, &b->list); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 146 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 147 | |
| 148 | for (;;) { |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 149 | if (!n.halted) |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 150 | prepare_to_swait(&n.wq, &wait, TASK_UNINTERRUPTIBLE); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 151 | if (hlist_unhashed(&n.link)) |
| 152 | break; |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 153 | |
Wanpeng Li | 337c017 | 2017-08-01 05:20:03 -0700 | [diff] [blame] | 154 | rcu_irq_exit(); |
| 155 | |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 156 | if (!n.halted) { |
| 157 | local_irq_enable(); |
| 158 | schedule(); |
| 159 | local_irq_disable(); |
| 160 | } else { |
| 161 | /* |
| 162 | * We cannot reschedule. So halt. |
| 163 | */ |
| 164 | native_safe_halt(); |
| 165 | local_irq_disable(); |
| 166 | } |
Wanpeng Li | 337c017 | 2017-08-01 05:20:03 -0700 | [diff] [blame] | 167 | |
| 168 | rcu_irq_enter(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 169 | } |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 170 | if (!n.halted) |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 171 | finish_swait(&n.wq, &wait); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 172 | |
Li Zhong | 9b132fb | 2012-12-04 10:35:13 +0800 | [diff] [blame] | 173 | rcu_irq_exit(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 174 | return; |
| 175 | } |
| 176 | EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait); |
| 177 | |
| 178 | static void apf_task_wake_one(struct kvm_task_sleep_node *n) |
| 179 | { |
| 180 | hlist_del_init(&n->link); |
Gleb Natapov | 6c047cd | 2010-10-14 11:22:54 +0200 | [diff] [blame] | 181 | if (n->halted) |
| 182 | smp_send_reschedule(n->cpu); |
Davidlohr Bueso | a0cff57 | 2017-09-13 13:08:21 -0700 | [diff] [blame^] | 183 | else if (swq_has_sleeper(&n->wq)) |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 184 | swake_up(&n->wq); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | static void apf_task_wake_all(void) |
| 188 | { |
| 189 | int i; |
| 190 | |
| 191 | for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) { |
| 192 | struct hlist_node *p, *next; |
| 193 | struct kvm_task_sleep_head *b = &async_pf_sleepers[i]; |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 194 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 195 | hlist_for_each_safe(p, next, &b->list) { |
| 196 | struct kvm_task_sleep_node *n = |
| 197 | hlist_entry(p, typeof(*n), link); |
| 198 | if (n->cpu == smp_processor_id()) |
| 199 | apf_task_wake_one(n); |
| 200 | } |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 201 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
| 205 | void kvm_async_pf_task_wake(u32 token) |
| 206 | { |
| 207 | u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS); |
| 208 | struct kvm_task_sleep_head *b = &async_pf_sleepers[key]; |
| 209 | struct kvm_task_sleep_node *n; |
| 210 | |
| 211 | if (token == ~0) { |
| 212 | apf_task_wake_all(); |
| 213 | return; |
| 214 | } |
| 215 | |
| 216 | again: |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 217 | raw_spin_lock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 218 | n = _find_apf_task(b, token); |
| 219 | if (!n) { |
| 220 | /* |
| 221 | * async PF was not yet handled. |
| 222 | * Add dummy entry for the token. |
| 223 | */ |
Gleb Natapov | 62c49cc | 2012-05-02 15:04:02 +0300 | [diff] [blame] | 224 | n = kzalloc(sizeof(*n), GFP_ATOMIC); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 225 | if (!n) { |
| 226 | /* |
| 227 | * Allocation failed! Busy wait while other cpu |
| 228 | * handles async PF. |
| 229 | */ |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 230 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 231 | cpu_relax(); |
| 232 | goto again; |
| 233 | } |
| 234 | n->token = token; |
| 235 | n->cpu = smp_processor_id(); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 236 | init_swait_queue_head(&n->wq); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 237 | hlist_add_head(&n->link, &b->list); |
| 238 | } else |
| 239 | apf_task_wake_one(n); |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 240 | raw_spin_unlock(&b->lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 241 | return; |
| 242 | } |
| 243 | EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake); |
| 244 | |
| 245 | u32 kvm_read_and_reset_pf_reason(void) |
| 246 | { |
| 247 | u32 reason = 0; |
| 248 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 249 | if (__this_cpu_read(apf_reason.enabled)) { |
| 250 | reason = __this_cpu_read(apf_reason.reason); |
| 251 | __this_cpu_write(apf_reason.reason, 0); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | return reason; |
| 255 | } |
| 256 | EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason); |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 257 | NOKPROBE_SYMBOL(kvm_read_and_reset_pf_reason); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 258 | |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 259 | dotraplinkage void |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 260 | do_async_page_fault(struct pt_regs *regs, unsigned long error_code) |
| 261 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 262 | enum ctx_state prev_state; |
| 263 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 264 | switch (kvm_read_and_reset_pf_reason()) { |
| 265 | default: |
Thomas Gleixner | 11a7ffb | 2017-08-28 08:47:22 +0200 | [diff] [blame] | 266 | do_page_fault(regs, error_code); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 267 | break; |
| 268 | case KVM_PV_REASON_PAGE_NOT_PRESENT: |
| 269 | /* page is swapped out by the host. */ |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 270 | prev_state = exception_enter(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 271 | kvm_async_pf_task_wait((u32)read_cr2()); |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 272 | exception_exit(prev_state); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 273 | break; |
| 274 | case KVM_PV_REASON_PAGE_READY: |
Gleb Natapov | e087592 | 2012-04-04 15:30:33 +0300 | [diff] [blame] | 275 | rcu_irq_enter(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 276 | kvm_async_pf_task_wake((u32)read_cr2()); |
Gleb Natapov | e087592 | 2012-04-04 15:30:33 +0300 | [diff] [blame] | 277 | rcu_irq_exit(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 278 | break; |
| 279 | } |
| 280 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 281 | NOKPROBE_SYMBOL(do_async_page_fault); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 282 | |
Rakib Mullick | d3ac881 | 2009-07-02 11:40:36 +0600 | [diff] [blame] | 283 | static void __init paravirt_ops_setup(void) |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 284 | { |
| 285 | pv_info.name = "KVM"; |
Andy Lutomirski | 29fa682 | 2014-12-05 19:03:28 -0800 | [diff] [blame] | 286 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 287 | if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY)) |
| 288 | pv_cpu_ops.io_delay = kvm_io_delay; |
| 289 | |
Marcelo Tosatti | a90ede7 | 2009-02-11 22:45:42 -0200 | [diff] [blame] | 290 | #ifdef CONFIG_X86_IO_APIC |
| 291 | no_timer_check = 1; |
| 292 | #endif |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 293 | } |
| 294 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 295 | static void kvm_register_steal_time(void) |
| 296 | { |
| 297 | int cpu = smp_processor_id(); |
| 298 | struct kvm_steal_time *st = &per_cpu(steal_time, cpu); |
| 299 | |
| 300 | if (!has_steal_clock) |
| 301 | return; |
| 302 | |
Dave Hansen | 5dfd486 | 2013-01-22 13:24:35 -0800 | [diff] [blame] | 303 | 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] | 304 | pr_info("kvm-stealtime: cpu %d, msr %llx\n", |
| 305 | cpu, (unsigned long long) slow_virt_to_phys(st)); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 306 | } |
| 307 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 308 | static DEFINE_PER_CPU(unsigned long, kvm_apic_eoi) = KVM_PV_EOI_DISABLED; |
| 309 | |
Wanpeng Li | 8ca2255 | 2016-11-07 11:13:40 +0800 | [diff] [blame] | 310 | 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] | 311 | { |
| 312 | /** |
| 313 | * This relies on __test_and_clear_bit to modify the memory |
| 314 | * in a way that is atomic with respect to the local CPU. |
| 315 | * The hypervisor only accesses this memory from the local CPU so |
| 316 | * there's no need for lock or memory barriers. |
| 317 | * An optimization barrier is implied in apic write. |
| 318 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 319 | 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] | 320 | return; |
Wanpeng Li | 8ca2255 | 2016-11-07 11:13:40 +0800 | [diff] [blame] | 321 | apic->native_eoi_write(APIC_EOI, APIC_EOI_ACK); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 322 | } |
| 323 | |
Nicholas Krause | ed3cf15 | 2015-05-20 00:24:10 -0400 | [diff] [blame] | 324 | static void kvm_guest_cpu_init(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 325 | { |
| 326 | if (!kvm_para_available()) |
| 327 | return; |
| 328 | |
| 329 | if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 330 | u64 pa = slow_virt_to_phys(this_cpu_ptr(&apf_reason)); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 331 | |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 332 | #ifdef CONFIG_PREEMPT |
| 333 | pa |= KVM_ASYNC_PF_SEND_ALWAYS; |
| 334 | #endif |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 335 | pa |= KVM_ASYNC_PF_ENABLED; |
| 336 | |
| 337 | /* Async page fault support for L1 hypervisor is optional */ |
| 338 | if (wrmsr_safe(MSR_KVM_ASYNC_PF_EN, |
| 339 | (pa | KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT) & 0xffffffff, pa >> 32) < 0) |
| 340 | wrmsrl(MSR_KVM_ASYNC_PF_EN, pa); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 341 | __this_cpu_write(apf_reason.enabled, 1); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 342 | printk(KERN_INFO"KVM setup async PF for cpu %d\n", |
| 343 | smp_processor_id()); |
| 344 | } |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 345 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 346 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) { |
| 347 | unsigned long pa; |
| 348 | /* Size alignment is implied but just to make it explicit. */ |
| 349 | BUILD_BUG_ON(__alignof__(kvm_apic_eoi) < 4); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 350 | __this_cpu_write(kvm_apic_eoi, 0); |
| 351 | pa = slow_virt_to_phys(this_cpu_ptr(&kvm_apic_eoi)) |
Dave Hansen | 5dfd486 | 2013-01-22 13:24:35 -0800 | [diff] [blame] | 352 | | KVM_MSR_ENABLED; |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 353 | wrmsrl(MSR_KVM_PV_EOI_EN, pa); |
| 354 | } |
| 355 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 356 | if (has_steal_clock) |
| 357 | kvm_register_steal_time(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 358 | } |
| 359 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 360 | static void kvm_pv_disable_apf(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 361 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 362 | if (!__this_cpu_read(apf_reason.enabled)) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 363 | return; |
| 364 | |
| 365 | wrmsrl(MSR_KVM_ASYNC_PF_EN, 0); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 366 | __this_cpu_write(apf_reason.enabled, 0); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 367 | |
| 368 | printk(KERN_INFO"Unregister pv shared memory for cpu %d\n", |
| 369 | smp_processor_id()); |
| 370 | } |
| 371 | |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 372 | static void kvm_pv_guest_cpu_reboot(void *unused) |
| 373 | { |
| 374 | /* |
| 375 | * We disable PV EOI before we load a new kernel by kexec, |
| 376 | * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory. |
| 377 | * New kernel can re-enable when it boots. |
| 378 | */ |
| 379 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 380 | wrmsrl(MSR_KVM_PV_EOI_EN, 0); |
| 381 | kvm_pv_disable_apf(); |
Florian Westphal | 8fbe6a5 | 2012-08-15 16:00:40 +0200 | [diff] [blame] | 382 | kvm_disable_steal_time(); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 383 | } |
| 384 | |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 385 | static int kvm_pv_reboot_notify(struct notifier_block *nb, |
| 386 | unsigned long code, void *unused) |
| 387 | { |
| 388 | if (code == SYS_RESTART) |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 389 | on_each_cpu(kvm_pv_guest_cpu_reboot, NULL, 1); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 390 | return NOTIFY_DONE; |
| 391 | } |
| 392 | |
| 393 | static struct notifier_block kvm_pv_reboot_nb = { |
| 394 | .notifier_call = kvm_pv_reboot_notify, |
| 395 | }; |
| 396 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 397 | static u64 kvm_steal_clock(int cpu) |
| 398 | { |
| 399 | u64 steal; |
| 400 | struct kvm_steal_time *src; |
| 401 | int version; |
| 402 | |
| 403 | src = &per_cpu(steal_time, cpu); |
| 404 | do { |
| 405 | version = src->version; |
Wanpeng Li | 5a48a62 | 2017-04-11 02:49:21 -0700 | [diff] [blame] | 406 | virt_rmb(); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 407 | steal = src->steal; |
Wanpeng Li | 5a48a62 | 2017-04-11 02:49:21 -0700 | [diff] [blame] | 408 | virt_rmb(); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 409 | } while ((version & 1) || (version != src->version)); |
| 410 | |
| 411 | return steal; |
| 412 | } |
| 413 | |
| 414 | void kvm_disable_steal_time(void) |
| 415 | { |
| 416 | if (!has_steal_clock) |
| 417 | return; |
| 418 | |
| 419 | wrmsr(MSR_KVM_STEAL_TIME, 0, 0); |
| 420 | } |
| 421 | |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 422 | #ifdef CONFIG_SMP |
| 423 | static void __init kvm_smp_prepare_boot_cpu(void) |
| 424 | { |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 425 | kvm_guest_cpu_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 426 | native_smp_prepare_boot_cpu(); |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 427 | kvm_spinlock_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 428 | } |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 429 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 430 | static void kvm_guest_cpu_offline(void) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 431 | { |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 432 | kvm_disable_steal_time(); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 433 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 434 | wrmsrl(MSR_KVM_PV_EOI_EN, 0); |
| 435 | kvm_pv_disable_apf(); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 436 | apf_task_wake_all(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 437 | } |
| 438 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 439 | static int kvm_cpu_online(unsigned int cpu) |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 440 | { |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 441 | local_irq_disable(); |
| 442 | kvm_guest_cpu_init(); |
| 443 | local_irq_enable(); |
| 444 | return 0; |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 445 | } |
| 446 | |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 447 | static int kvm_cpu_down_prepare(unsigned int cpu) |
| 448 | { |
| 449 | local_irq_disable(); |
| 450 | kvm_guest_cpu_offline(); |
| 451 | local_irq_enable(); |
| 452 | return 0; |
| 453 | } |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 454 | #endif |
| 455 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 456 | static void __init kvm_apf_trap_init(void) |
| 457 | { |
Thomas Gleixner | facaa3e | 2017-08-28 08:47:59 +0200 | [diff] [blame] | 458 | update_intr_gate(X86_TRAP_PF, async_page_fault); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 459 | } |
| 460 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 461 | void __init kvm_guest_init(void) |
| 462 | { |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 463 | int i; |
| 464 | |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 465 | if (!kvm_para_available()) |
| 466 | return; |
| 467 | |
| 468 | paravirt_ops_setup(); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 469 | register_reboot_notifier(&kvm_pv_reboot_nb); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 470 | for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) |
Rik van Riel | 9db284f | 2016-03-21 15:13:27 +0100 | [diff] [blame] | 471 | raw_spin_lock_init(&async_pf_sleepers[i].lock); |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 472 | if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF)) |
| 473 | x86_init.irqs.trap_init = kvm_apf_trap_init; |
| 474 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 475 | if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) { |
| 476 | has_steal_clock = 1; |
| 477 | pv_time_ops.steal_clock = kvm_steal_clock; |
| 478 | } |
| 479 | |
Michael S. Tsirkin | 9053666 | 2012-07-15 15:56:52 +0300 | [diff] [blame] | 480 | if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) |
| 481 | apic_set_eoi_write(kvm_guest_apic_eoi_write); |
Michael S. Tsirkin | ab9cf49 | 2012-06-24 19:24:34 +0300 | [diff] [blame] | 482 | |
Marcelo Tosatti | 3dc4f7c | 2012-11-27 23:28:56 -0200 | [diff] [blame] | 483 | if (kvmclock_vsyscall) |
| 484 | kvm_setup_vsyscall_timeinfo(); |
| 485 | |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 486 | #ifdef CONFIG_SMP |
| 487 | smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu; |
Sebastian Andrzej Siewior | 9a20ea4 | 2016-08-18 14:57:29 +0200 | [diff] [blame] | 488 | if (cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/kvm:online", |
| 489 | kvm_cpu_online, kvm_cpu_down_prepare) < 0) |
| 490 | pr_err("kvm_guest: Failed to install cpu hotplug callbacks\n"); |
Gleb Natapov | fd10cde | 2010-10-14 11:22:51 +0200 | [diff] [blame] | 491 | #else |
| 492 | kvm_guest_cpu_init(); |
Gleb Natapov | ca3f101 | 2010-10-14 11:22:49 +0200 | [diff] [blame] | 493 | #endif |
Ulrich Obergfell | 9919e39 | 2014-10-13 15:55:37 -0700 | [diff] [blame] | 494 | |
| 495 | /* |
| 496 | * Hard lockup detection is enabled by default. Disable it, as guests |
| 497 | * can get false positives too easily, for example if the host is |
| 498 | * overcommitted. |
| 499 | */ |
Ulrich Obergfell | 692297d | 2015-04-14 15:44:19 -0700 | [diff] [blame] | 500 | hardlockup_detector_disable(); |
Marcelo Tosatti | 0cf1bfd | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 501 | } |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 502 | |
Paolo Bonzini | 1c300a4 | 2014-01-27 14:49:40 +0100 | [diff] [blame] | 503 | static noinline uint32_t __kvm_cpuid_base(void) |
| 504 | { |
| 505 | if (boot_cpu_data.cpuid_level < 0) |
| 506 | return 0; /* So we don't blow up on old processors */ |
| 507 | |
Borislav Petkov | 0c9f3536 | 2016-03-29 17:41:55 +0200 | [diff] [blame] | 508 | if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) |
Paolo Bonzini | 1c300a4 | 2014-01-27 14:49:40 +0100 | [diff] [blame] | 509 | return hypervisor_cpuid_base("KVMKVMKVM\0\0\0", 0); |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | static inline uint32_t kvm_cpuid_base(void) |
| 515 | { |
| 516 | static int kvm_cpuid_base = -1; |
| 517 | |
| 518 | if (kvm_cpuid_base == -1) |
| 519 | kvm_cpuid_base = __kvm_cpuid_base(); |
| 520 | |
| 521 | return kvm_cpuid_base; |
| 522 | } |
| 523 | |
| 524 | bool kvm_para_available(void) |
| 525 | { |
| 526 | return kvm_cpuid_base() != 0; |
| 527 | } |
| 528 | EXPORT_SYMBOL_GPL(kvm_para_available); |
| 529 | |
Paolo Bonzini | 77f01bd | 2014-01-27 14:51:44 +0100 | [diff] [blame] | 530 | unsigned int kvm_arch_para_features(void) |
| 531 | { |
| 532 | return cpuid_eax(kvm_cpuid_base() | KVM_CPUID_FEATURES); |
| 533 | } |
| 534 | |
Jason Wang | 9df56f1 | 2013-07-25 16:54:35 +0800 | [diff] [blame] | 535 | static uint32_t __init kvm_detect(void) |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 536 | { |
Jason Wang | 9df56f1 | 2013-07-25 16:54:35 +0800 | [diff] [blame] | 537 | return kvm_cpuid_base(); |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | const struct hypervisor_x86 x86_hyper_kvm __refconst = { |
| 541 | .name = "KVM", |
| 542 | .detect = kvm_detect, |
Alok N Kataria | 4cca6ea | 2013-01-17 15:44:42 -0800 | [diff] [blame] | 543 | .x2apic_available = kvm_para_available, |
Prarit Bhargava | fc73373 | 2012-07-06 13:47:39 -0400 | [diff] [blame] | 544 | }; |
| 545 | EXPORT_SYMBOL_GPL(x86_hyper_kvm); |
| 546 | |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 547 | static __init int activate_jump_labels(void) |
| 548 | { |
| 549 | if (has_steal_clock) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 550 | static_key_slow_inc(¶virt_steal_enabled); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 551 | if (steal_acc) |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 552 | static_key_slow_inc(¶virt_steal_rq_enabled); |
Glauber Costa | d910f5c | 2011-07-11 15:28:19 -0400 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | return 0; |
| 556 | } |
| 557 | arch_initcall(activate_jump_labels); |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 558 | |
| 559 | #ifdef CONFIG_PARAVIRT_SPINLOCKS |
| 560 | |
| 561 | /* 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] | 562 | static void kvm_kick_cpu(int cpu) |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 563 | { |
| 564 | int apicid; |
| 565 | unsigned long flags = 0; |
| 566 | |
| 567 | apicid = per_cpu(x86_cpu_to_apicid, cpu); |
| 568 | kvm_hypercall2(KVM_HC_KICK_CPU, flags, apicid); |
| 569 | } |
| 570 | |
Waiman Long | bf0c7c3 | 2015-04-24 14:56:39 -0400 | [diff] [blame] | 571 | #include <asm/qspinlock.h> |
| 572 | |
| 573 | static void kvm_wait(u8 *ptr, u8 val) |
| 574 | { |
| 575 | unsigned long flags; |
| 576 | |
| 577 | if (in_nmi()) |
| 578 | return; |
| 579 | |
| 580 | local_irq_save(flags); |
| 581 | |
| 582 | if (READ_ONCE(*ptr) != val) |
| 583 | goto out; |
| 584 | |
| 585 | /* |
| 586 | * halt until it's our turn and kicked. Note that we do safe halt |
| 587 | * for irq enabled case to avoid hang when lock info is overwritten |
| 588 | * in irq spinlock slowpath and no spurious interrupt occur to save us. |
| 589 | */ |
| 590 | if (arch_irqs_disabled_flags(flags)) |
| 591 | halt(); |
| 592 | else |
| 593 | safe_halt(); |
| 594 | |
| 595 | out: |
| 596 | local_irq_restore(flags); |
| 597 | } |
| 598 | |
Waiman Long | dd0fd8b | 2017-02-20 13:36:04 -0500 | [diff] [blame] | 599 | #ifdef CONFIG_X86_32 |
Waiman Long | 6c62985 | 2017-02-20 13:36:03 -0500 | [diff] [blame] | 600 | __visible bool __kvm_vcpu_is_preempted(long cpu) |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 601 | { |
| 602 | struct kvm_steal_time *src = &per_cpu(steal_time, cpu); |
| 603 | |
| 604 | return !!src->preempted; |
| 605 | } |
| 606 | PV_CALLEE_SAVE_REGS_THUNK(__kvm_vcpu_is_preempted); |
| 607 | |
Waiman Long | dd0fd8b | 2017-02-20 13:36:04 -0500 | [diff] [blame] | 608 | #else |
| 609 | |
| 610 | #include <asm/asm-offsets.h> |
| 611 | |
| 612 | extern bool __raw_callee_save___kvm_vcpu_is_preempted(long); |
| 613 | |
| 614 | /* |
| 615 | * Hand-optimize version for x86-64 to avoid 8 64-bit register saving and |
| 616 | * restoring to/from the stack. |
| 617 | */ |
| 618 | asm( |
| 619 | ".pushsection .text;" |
| 620 | ".global __raw_callee_save___kvm_vcpu_is_preempted;" |
| 621 | ".type __raw_callee_save___kvm_vcpu_is_preempted, @function;" |
| 622 | "__raw_callee_save___kvm_vcpu_is_preempted:" |
| 623 | "movq __per_cpu_offset(,%rdi,8), %rax;" |
| 624 | "cmpb $0, " __stringify(KVM_STEAL_TIME_preempted) "+steal_time(%rax);" |
| 625 | "setne %al;" |
| 626 | "ret;" |
| 627 | ".popsection"); |
| 628 | |
| 629 | #endif |
| 630 | |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 631 | /* |
| 632 | * Setup pv_lock_ops to exploit KVM_FEATURE_PV_UNHALT if present. |
| 633 | */ |
| 634 | void __init kvm_spinlock_init(void) |
| 635 | { |
| 636 | if (!kvm_para_available()) |
| 637 | return; |
| 638 | /* Does host kernel support KVM_FEATURE_PV_UNHALT? */ |
| 639 | if (!kvm_para_has_feature(KVM_FEATURE_PV_UNHALT)) |
| 640 | return; |
| 641 | |
Waiman Long | bf0c7c3 | 2015-04-24 14:56:39 -0400 | [diff] [blame] | 642 | __pv_init_lock_hash(); |
| 643 | pv_lock_ops.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath; |
| 644 | pv_lock_ops.queued_spin_unlock = PV_CALLEE_SAVE(__pv_queued_spin_unlock); |
| 645 | pv_lock_ops.wait = kvm_wait; |
| 646 | pv_lock_ops.kick = kvm_kick_cpu; |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 647 | |
| 648 | if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) { |
| 649 | pv_lock_ops.vcpu_is_preempted = |
| 650 | PV_CALLEE_SAVE(__kvm_vcpu_is_preempted); |
| 651 | } |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 652 | } |
Raghavendra K T | 3dbef3e | 2013-10-09 14:33:21 +0530 | [diff] [blame] | 653 | |
Srivatsa Vaddagiri | 92b7520 | 2013-08-06 14:55:41 +0530 | [diff] [blame] | 654 | #endif /* CONFIG_PARAVIRT_SPINLOCKS */ |