blob: 08b973f64032ba31f5e91a0558e2dc003904531a [file] [log] [blame]
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -05001/*
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
23#include <linux/module.h>
24#include <linux/kernel.h>
25#include <linux/kvm_para.h>
26#include <linux/cpu.h>
27#include <linux/mm.h>
Marcelo Tosatti1da8a772008-02-22 12:21:37 -050028#include <linux/highmem.h>
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050029#include <linux/hardirq.h>
Gleb Natapovfd10cde2010-10-14 11:22:51 +020030#include <linux/notifier.h>
31#include <linux/reboot.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020032#include <linux/hash.h>
33#include <linux/sched.h>
34#include <linux/slab.h>
35#include <linux/kprobes.h>
Marcelo Tosattia90ede72009-02-11 22:45:42 -020036#include <asm/timer.h>
Gleb Natapovfd10cde2010-10-14 11:22:51 +020037#include <asm/cpu.h>
Gleb Natapov631bc482010-10-14 11:22:52 +020038#include <asm/traps.h>
39#include <asm/desc.h>
Gleb Natapov6c047cd2010-10-14 11:22:54 +020040#include <asm/tlbflush.h>
Gleb Natapove0875922012-04-04 15:30:33 +030041#include <asm/idle.h>
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +030042#include <asm/apic.h>
43#include <asm/apicdef.h>
Prarit Bhargavafc733732012-07-06 13:47:39 -040044#include <asm/hypervisor.h>
Marcelo Tosatti3dc4f7c2012-11-27 23:28:56 -020045#include <asm/kvm_guest.h>
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050046
Gleb Natapovfd10cde2010-10-14 11:22:51 +020047static int kvmapf = 1;
48
49static int parse_no_kvmapf(char *arg)
50{
51 kvmapf = 0;
52 return 0;
53}
54
55early_param("no-kvmapf", parse_no_kvmapf);
56
Glauber Costad910f5c2011-07-11 15:28:19 -040057static int steal_acc = 1;
58static int parse_no_stealacc(char *arg)
59{
60 steal_acc = 0;
61 return 0;
62}
63
64early_param("no-steal-acc", parse_no_stealacc);
65
Marcelo Tosatti3dc4f7c2012-11-27 23:28:56 -020066static int kvmclock_vsyscall = 1;
67static int parse_no_kvmclock_vsyscall(char *arg)
68{
69 kvmclock_vsyscall = 0;
70 return 0;
71}
72
73early_param("no-kvmclock-vsyscall", parse_no_kvmclock_vsyscall);
74
Gleb Natapovfd10cde2010-10-14 11:22:51 +020075static DEFINE_PER_CPU(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64);
Glauber Costad910f5c2011-07-11 15:28:19 -040076static DEFINE_PER_CPU(struct kvm_steal_time, steal_time) __aligned(64);
77static int has_steal_clock = 0;
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050078
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -050079/*
80 * No need for any "IO delay" on KVM
81 */
82static void kvm_io_delay(void)
83{
84}
85
Gleb Natapov631bc482010-10-14 11:22:52 +020086#define KVM_TASK_SLEEP_HASHBITS 8
87#define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
88
89struct kvm_task_sleep_node {
90 struct hlist_node link;
91 wait_queue_head_t wq;
92 u32 token;
93 int cpu;
Gleb Natapov6c047cd2010-10-14 11:22:54 +020094 bool halted;
Gleb Natapov631bc482010-10-14 11:22:52 +020095};
96
97static struct kvm_task_sleep_head {
98 spinlock_t lock;
99 struct hlist_head list;
100} async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE];
101
102static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b,
103 u32 token)
104{
105 struct hlist_node *p;
106
107 hlist_for_each(p, &b->list) {
108 struct kvm_task_sleep_node *n =
109 hlist_entry(p, typeof(*n), link);
110 if (n->token == token)
111 return n;
112 }
113
114 return NULL;
115}
116
117void kvm_async_pf_task_wait(u32 token)
118{
119 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
120 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
121 struct kvm_task_sleep_node n, *e;
122 DEFINE_WAIT(wait);
123
124 spin_lock(&b->lock);
125 e = _find_apf_task(b, token);
126 if (e) {
127 /* dummy entry exist -> wake up was delivered ahead of PF */
128 hlist_del(&e->link);
129 kfree(e);
130 spin_unlock(&b->lock);
131 return;
132 }
133
134 n.token = token;
135 n.cpu = smp_processor_id();
Gleb Natapov859f8452012-11-28 15:19:08 +0200136 n.halted = is_idle_task(current) || preempt_count() > 1;
Gleb Natapov631bc482010-10-14 11:22:52 +0200137 init_waitqueue_head(&n.wq);
138 hlist_add_head(&n.link, &b->list);
139 spin_unlock(&b->lock);
140
141 for (;;) {
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200142 if (!n.halted)
143 prepare_to_wait(&n.wq, &wait, TASK_UNINTERRUPTIBLE);
Gleb Natapov631bc482010-10-14 11:22:52 +0200144 if (hlist_unhashed(&n.link))
145 break;
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200146
147 if (!n.halted) {
148 local_irq_enable();
149 schedule();
150 local_irq_disable();
151 } else {
152 /*
153 * We cannot reschedule. So halt.
154 */
155 native_safe_halt();
156 local_irq_disable();
157 }
Gleb Natapov631bc482010-10-14 11:22:52 +0200158 }
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200159 if (!n.halted)
160 finish_wait(&n.wq, &wait);
Gleb Natapov631bc482010-10-14 11:22:52 +0200161
162 return;
163}
164EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait);
165
166static void apf_task_wake_one(struct kvm_task_sleep_node *n)
167{
168 hlist_del_init(&n->link);
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200169 if (n->halted)
170 smp_send_reschedule(n->cpu);
171 else if (waitqueue_active(&n->wq))
Gleb Natapov631bc482010-10-14 11:22:52 +0200172 wake_up(&n->wq);
173}
174
175static void apf_task_wake_all(void)
176{
177 int i;
178
179 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) {
180 struct hlist_node *p, *next;
181 struct kvm_task_sleep_head *b = &async_pf_sleepers[i];
182 spin_lock(&b->lock);
183 hlist_for_each_safe(p, next, &b->list) {
184 struct kvm_task_sleep_node *n =
185 hlist_entry(p, typeof(*n), link);
186 if (n->cpu == smp_processor_id())
187 apf_task_wake_one(n);
188 }
189 spin_unlock(&b->lock);
190 }
191}
192
193void kvm_async_pf_task_wake(u32 token)
194{
195 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
196 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
197 struct kvm_task_sleep_node *n;
198
199 if (token == ~0) {
200 apf_task_wake_all();
201 return;
202 }
203
204again:
205 spin_lock(&b->lock);
206 n = _find_apf_task(b, token);
207 if (!n) {
208 /*
209 * async PF was not yet handled.
210 * Add dummy entry for the token.
211 */
Gleb Natapov62c49cc2012-05-02 15:04:02 +0300212 n = kzalloc(sizeof(*n), GFP_ATOMIC);
Gleb Natapov631bc482010-10-14 11:22:52 +0200213 if (!n) {
214 /*
215 * Allocation failed! Busy wait while other cpu
216 * handles async PF.
217 */
218 spin_unlock(&b->lock);
219 cpu_relax();
220 goto again;
221 }
222 n->token = token;
223 n->cpu = smp_processor_id();
224 init_waitqueue_head(&n->wq);
225 hlist_add_head(&n->link, &b->list);
226 } else
227 apf_task_wake_one(n);
228 spin_unlock(&b->lock);
229 return;
230}
231EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
232
233u32 kvm_read_and_reset_pf_reason(void)
234{
235 u32 reason = 0;
236
237 if (__get_cpu_var(apf_reason).enabled) {
238 reason = __get_cpu_var(apf_reason).reason;
239 __get_cpu_var(apf_reason).reason = 0;
240 }
241
242 return reason;
243}
244EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason);
245
246dotraplinkage void __kprobes
247do_async_page_fault(struct pt_regs *regs, unsigned long error_code)
248{
249 switch (kvm_read_and_reset_pf_reason()) {
250 default:
251 do_page_fault(regs, error_code);
252 break;
253 case KVM_PV_REASON_PAGE_NOT_PRESENT:
254 /* page is swapped out by the host. */
Sasha Levinc5e015d2012-10-19 12:11:55 -0400255 rcu_irq_enter();
256 exit_idle();
Gleb Natapov631bc482010-10-14 11:22:52 +0200257 kvm_async_pf_task_wait((u32)read_cr2());
Sasha Levinc5e015d2012-10-19 12:11:55 -0400258 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200259 break;
260 case KVM_PV_REASON_PAGE_READY:
Gleb Natapove0875922012-04-04 15:30:33 +0300261 rcu_irq_enter();
262 exit_idle();
Gleb Natapov631bc482010-10-14 11:22:52 +0200263 kvm_async_pf_task_wake((u32)read_cr2());
Gleb Natapove0875922012-04-04 15:30:33 +0300264 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200265 break;
266 }
267}
268
Rakib Mullickd3ac8812009-07-02 11:40:36 +0600269static void __init paravirt_ops_setup(void)
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500270{
271 pv_info.name = "KVM";
272 pv_info.paravirt_enabled = 1;
273
274 if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY))
275 pv_cpu_ops.io_delay = kvm_io_delay;
276
Marcelo Tosattia90ede72009-02-11 22:45:42 -0200277#ifdef CONFIG_X86_IO_APIC
278 no_timer_check = 1;
279#endif
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500280}
281
Glauber Costad910f5c2011-07-11 15:28:19 -0400282static void kvm_register_steal_time(void)
283{
284 int cpu = smp_processor_id();
285 struct kvm_steal_time *st = &per_cpu(steal_time, cpu);
286
287 if (!has_steal_clock)
288 return;
289
290 memset(st, 0, sizeof(*st));
291
292 wrmsrl(MSR_KVM_STEAL_TIME, (__pa(st) | KVM_MSR_ENABLED));
293 printk(KERN_INFO "kvm-stealtime: cpu %d, msr %lx\n",
294 cpu, __pa(st));
295}
296
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300297static DEFINE_PER_CPU(unsigned long, kvm_apic_eoi) = KVM_PV_EOI_DISABLED;
298
299static void kvm_guest_apic_eoi_write(u32 reg, u32 val)
300{
301 /**
302 * This relies on __test_and_clear_bit to modify the memory
303 * in a way that is atomic with respect to the local CPU.
304 * The hypervisor only accesses this memory from the local CPU so
305 * there's no need for lock or memory barriers.
306 * An optimization barrier is implied in apic write.
307 */
308 if (__test_and_clear_bit(KVM_PV_EOI_BIT, &__get_cpu_var(kvm_apic_eoi)))
309 return;
Michael S. Tsirkin90536662012-07-15 15:56:52 +0300310 apic_write(APIC_EOI, APIC_EOI_ACK);
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300311}
312
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200313void __cpuinit kvm_guest_cpu_init(void)
314{
315 if (!kvm_para_available())
316 return;
317
318 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) {
319 u64 pa = __pa(&__get_cpu_var(apf_reason));
320
Gleb Natapov6adba522010-10-14 11:22:55 +0200321#ifdef CONFIG_PREEMPT
322 pa |= KVM_ASYNC_PF_SEND_ALWAYS;
323#endif
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200324 wrmsrl(MSR_KVM_ASYNC_PF_EN, pa | KVM_ASYNC_PF_ENABLED);
325 __get_cpu_var(apf_reason).enabled = 1;
326 printk(KERN_INFO"KVM setup async PF for cpu %d\n",
327 smp_processor_id());
328 }
Glauber Costad910f5c2011-07-11 15:28:19 -0400329
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300330 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI)) {
331 unsigned long pa;
332 /* Size alignment is implied but just to make it explicit. */
333 BUILD_BUG_ON(__alignof__(kvm_apic_eoi) < 4);
334 __get_cpu_var(kvm_apic_eoi) = 0;
335 pa = __pa(&__get_cpu_var(kvm_apic_eoi)) | KVM_MSR_ENABLED;
336 wrmsrl(MSR_KVM_PV_EOI_EN, pa);
337 }
338
Glauber Costad910f5c2011-07-11 15:28:19 -0400339 if (has_steal_clock)
340 kvm_register_steal_time();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200341}
342
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300343static void kvm_pv_disable_apf(void)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200344{
345 if (!__get_cpu_var(apf_reason).enabled)
346 return;
347
348 wrmsrl(MSR_KVM_ASYNC_PF_EN, 0);
349 __get_cpu_var(apf_reason).enabled = 0;
350
351 printk(KERN_INFO"Unregister pv shared memory for cpu %d\n",
352 smp_processor_id());
353}
354
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300355static void kvm_pv_guest_cpu_reboot(void *unused)
356{
357 /*
358 * We disable PV EOI before we load a new kernel by kexec,
359 * since MSR_KVM_PV_EOI_EN stores a pointer into old kernel's memory.
360 * New kernel can re-enable when it boots.
361 */
362 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
363 wrmsrl(MSR_KVM_PV_EOI_EN, 0);
364 kvm_pv_disable_apf();
Florian Westphal8fbe6a52012-08-15 16:00:40 +0200365 kvm_disable_steal_time();
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300366}
367
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200368static int kvm_pv_reboot_notify(struct notifier_block *nb,
369 unsigned long code, void *unused)
370{
371 if (code == SYS_RESTART)
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300372 on_each_cpu(kvm_pv_guest_cpu_reboot, NULL, 1);
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200373 return NOTIFY_DONE;
374}
375
376static struct notifier_block kvm_pv_reboot_nb = {
377 .notifier_call = kvm_pv_reboot_notify,
378};
379
Glauber Costad910f5c2011-07-11 15:28:19 -0400380static u64 kvm_steal_clock(int cpu)
381{
382 u64 steal;
383 struct kvm_steal_time *src;
384 int version;
385
386 src = &per_cpu(steal_time, cpu);
387 do {
388 version = src->version;
389 rmb();
390 steal = src->steal;
391 rmb();
392 } while ((version & 1) || (version != src->version));
393
394 return steal;
395}
396
397void kvm_disable_steal_time(void)
398{
399 if (!has_steal_clock)
400 return;
401
402 wrmsr(MSR_KVM_STEAL_TIME, 0, 0);
403}
404
Gleb Natapovca3f1012010-10-14 11:22:49 +0200405#ifdef CONFIG_SMP
406static void __init kvm_smp_prepare_boot_cpu(void)
407{
408 WARN_ON(kvm_register_clock("primary cpu clock"));
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200409 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200410 native_smp_prepare_boot_cpu();
411}
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200412
Sedat Dilek775077a2011-01-03 00:01:29 +0100413static void __cpuinit kvm_guest_cpu_online(void *dummy)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200414{
415 kvm_guest_cpu_init();
416}
417
418static void kvm_guest_cpu_offline(void *dummy)
419{
Glauber Costad910f5c2011-07-11 15:28:19 -0400420 kvm_disable_steal_time();
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300421 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
422 wrmsrl(MSR_KVM_PV_EOI_EN, 0);
423 kvm_pv_disable_apf();
Gleb Natapov631bc482010-10-14 11:22:52 +0200424 apf_task_wake_all();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200425}
426
427static int __cpuinit kvm_cpu_notify(struct notifier_block *self,
428 unsigned long action, void *hcpu)
429{
430 int cpu = (unsigned long)hcpu;
431 switch (action) {
432 case CPU_ONLINE:
433 case CPU_DOWN_FAILED:
434 case CPU_ONLINE_FROZEN:
435 smp_call_function_single(cpu, kvm_guest_cpu_online, NULL, 0);
436 break;
437 case CPU_DOWN_PREPARE:
438 case CPU_DOWN_PREPARE_FROZEN:
439 smp_call_function_single(cpu, kvm_guest_cpu_offline, NULL, 1);
440 break;
441 default:
442 break;
443 }
444 return NOTIFY_OK;
445}
446
447static struct notifier_block __cpuinitdata kvm_cpu_notifier = {
448 .notifier_call = kvm_cpu_notify,
449};
Gleb Natapovca3f1012010-10-14 11:22:49 +0200450#endif
451
Gleb Natapov631bc482010-10-14 11:22:52 +0200452static void __init kvm_apf_trap_init(void)
453{
454 set_intr_gate(14, &async_page_fault);
455}
456
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500457void __init kvm_guest_init(void)
458{
Gleb Natapov631bc482010-10-14 11:22:52 +0200459 int i;
460
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500461 if (!kvm_para_available())
462 return;
463
464 paravirt_ops_setup();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200465 register_reboot_notifier(&kvm_pv_reboot_nb);
Gleb Natapov631bc482010-10-14 11:22:52 +0200466 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++)
467 spin_lock_init(&async_pf_sleepers[i].lock);
468 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF))
469 x86_init.irqs.trap_init = kvm_apf_trap_init;
470
Glauber Costad910f5c2011-07-11 15:28:19 -0400471 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
472 has_steal_clock = 1;
473 pv_time_ops.steal_clock = kvm_steal_clock;
474 }
475
Michael S. Tsirkin90536662012-07-15 15:56:52 +0300476 if (kvm_para_has_feature(KVM_FEATURE_PV_EOI))
477 apic_set_eoi_write(kvm_guest_apic_eoi_write);
Michael S. Tsirkinab9cf492012-06-24 19:24:34 +0300478
Marcelo Tosatti3dc4f7c2012-11-27 23:28:56 -0200479 if (kvmclock_vsyscall)
480 kvm_setup_vsyscall_timeinfo();
481
Gleb Natapovca3f1012010-10-14 11:22:49 +0200482#ifdef CONFIG_SMP
483 smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200484 register_cpu_notifier(&kvm_cpu_notifier);
485#else
486 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200487#endif
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500488}
Glauber Costad910f5c2011-07-11 15:28:19 -0400489
Prarit Bhargavafc733732012-07-06 13:47:39 -0400490static bool __init kvm_detect(void)
491{
492 if (!kvm_para_available())
493 return false;
494 return true;
495}
496
497const struct hypervisor_x86 x86_hyper_kvm __refconst = {
498 .name = "KVM",
499 .detect = kvm_detect,
500};
501EXPORT_SYMBOL_GPL(x86_hyper_kvm);
502
Glauber Costad910f5c2011-07-11 15:28:19 -0400503static __init int activate_jump_labels(void)
504{
505 if (has_steal_clock) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100506 static_key_slow_inc(&paravirt_steal_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400507 if (steal_acc)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100508 static_key_slow_inc(&paravirt_steal_rq_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400509 }
510
511 return 0;
512}
513arch_initcall(activate_jump_labels);