2 * KVM paravirt_ops implementation
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.
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.
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.
19 * Copyright IBM Corporation, 2007
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/kvm_para.h>
26 #include <linux/cpu.h>
28 #include <linux/highmem.h>
29 #include <linux/hardirq.h>
30 #include <linux/notifier.h>
31 #include <linux/reboot.h>
32 #include <linux/hash.h>
33 #include <linux/sched.h>
34 #include <linux/slab.h>
35 #include <linux/kprobes.h>
36 #include <asm/timer.h>
38 #include <asm/traps.h>
40 #include <asm/tlbflush.h>
42 static int kvmapf = 1;
44 static int parse_no_kvmapf(char *arg)
50 early_param("no-kvmapf", parse_no_kvmapf);
52 static int steal_acc = 1;
53 static int parse_no_stealacc(char *arg)
59 early_param("no-steal-acc", parse_no_stealacc);
61 static DEFINE_PER_CPU(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64);
62 static DEFINE_PER_CPU(struct kvm_steal_time, steal_time) __aligned(64);
63 static int has_steal_clock = 0;
66 * No need for any "IO delay" on KVM
68 static void kvm_io_delay(void)
72 #define KVM_TASK_SLEEP_HASHBITS 8
73 #define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
75 struct kvm_task_sleep_node {
76 struct hlist_node link;
84 static struct kvm_task_sleep_head {
86 struct hlist_head list;
87 } async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE];
89 static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b,
94 hlist_for_each(p, &b->list) {
95 struct kvm_task_sleep_node *n =
96 hlist_entry(p, typeof(*n), link);
97 if (n->token == token)
104 void kvm_async_pf_task_wait(u32 token)
106 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
107 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
108 struct kvm_task_sleep_node n, *e;
113 idle = idle_cpu(cpu);
117 e = _find_apf_task(b, token);
119 /* dummy entry exist -> wake up was delivered ahead of PF */
122 spin_unlock(&b->lock);
127 n.cpu = smp_processor_id();
128 n.mm = current->active_mm;
129 n.halted = idle || preempt_count() > 1;
130 atomic_inc(&n.mm->mm_count);
131 init_waitqueue_head(&n.wq);
132 hlist_add_head(&n.link, &b->list);
133 spin_unlock(&b->lock);
137 prepare_to_wait(&n.wq, &wait, TASK_UNINTERRUPTIBLE);
138 if (hlist_unhashed(&n.link))
147 * We cannot reschedule. So halt.
154 finish_wait(&n.wq, &wait);
158 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait);
160 static void apf_task_wake_one(struct kvm_task_sleep_node *n)
162 hlist_del_init(&n->link);
167 smp_send_reschedule(n->cpu);
168 else if (waitqueue_active(&n->wq))
172 static void apf_task_wake_all(void)
176 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) {
177 struct hlist_node *p, *next;
178 struct kvm_task_sleep_head *b = &async_pf_sleepers[i];
180 hlist_for_each_safe(p, next, &b->list) {
181 struct kvm_task_sleep_node *n =
182 hlist_entry(p, typeof(*n), link);
183 if (n->cpu == smp_processor_id())
184 apf_task_wake_one(n);
186 spin_unlock(&b->lock);
190 void kvm_async_pf_task_wake(u32 token)
192 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
193 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
194 struct kvm_task_sleep_node *n;
203 n = _find_apf_task(b, token);
206 * async PF was not yet handled.
207 * Add dummy entry for the token.
209 n = kmalloc(sizeof(*n), GFP_ATOMIC);
212 * Allocation failed! Busy wait while other cpu
215 spin_unlock(&b->lock);
220 n->cpu = smp_processor_id();
222 init_waitqueue_head(&n->wq);
223 hlist_add_head(&n->link, &b->list);
225 apf_task_wake_one(n);
226 spin_unlock(&b->lock);
229 EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
231 u32 kvm_read_and_reset_pf_reason(void)
235 if (__get_cpu_var(apf_reason).enabled) {
236 reason = __get_cpu_var(apf_reason).reason;
237 __get_cpu_var(apf_reason).reason = 0;
242 EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason);
244 dotraplinkage void __kprobes
245 do_async_page_fault(struct pt_regs *regs, unsigned long error_code)
247 switch (kvm_read_and_reset_pf_reason()) {
249 do_page_fault(regs, error_code);
251 case KVM_PV_REASON_PAGE_NOT_PRESENT:
252 /* page is swapped out by the host. */
253 kvm_async_pf_task_wait((u32)read_cr2());
255 case KVM_PV_REASON_PAGE_READY:
256 kvm_async_pf_task_wake((u32)read_cr2());
261 static void __init paravirt_ops_setup(void)
263 pv_info.name = "KVM";
264 pv_info.paravirt_enabled = 1;
266 if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY))
267 pv_cpu_ops.io_delay = kvm_io_delay;
269 #ifdef CONFIG_X86_IO_APIC
274 static void kvm_register_steal_time(void)
276 int cpu = smp_processor_id();
277 struct kvm_steal_time *st = &per_cpu(steal_time, cpu);
279 if (!has_steal_clock)
282 memset(st, 0, sizeof(*st));
284 wrmsrl(MSR_KVM_STEAL_TIME, (__pa(st) | KVM_MSR_ENABLED));
285 printk(KERN_INFO "kvm-stealtime: cpu %d, msr %lx\n",
289 void __cpuinit kvm_guest_cpu_init(void)
291 if (!kvm_para_available())
294 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) {
295 u64 pa = __pa(&__get_cpu_var(apf_reason));
297 #ifdef CONFIG_PREEMPT
298 pa |= KVM_ASYNC_PF_SEND_ALWAYS;
300 wrmsrl(MSR_KVM_ASYNC_PF_EN, pa | KVM_ASYNC_PF_ENABLED);
301 __get_cpu_var(apf_reason).enabled = 1;
302 printk(KERN_INFO"KVM setup async PF for cpu %d\n",
307 kvm_register_steal_time();
310 static void kvm_pv_disable_apf(void *unused)
312 if (!__get_cpu_var(apf_reason).enabled)
315 wrmsrl(MSR_KVM_ASYNC_PF_EN, 0);
316 __get_cpu_var(apf_reason).enabled = 0;
318 printk(KERN_INFO"Unregister pv shared memory for cpu %d\n",
322 static int kvm_pv_reboot_notify(struct notifier_block *nb,
323 unsigned long code, void *unused)
325 if (code == SYS_RESTART)
326 on_each_cpu(kvm_pv_disable_apf, NULL, 1);
330 static struct notifier_block kvm_pv_reboot_nb = {
331 .notifier_call = kvm_pv_reboot_notify,
334 static u64 kvm_steal_clock(int cpu)
337 struct kvm_steal_time *src;
340 src = &per_cpu(steal_time, cpu);
342 version = src->version;
346 } while ((version & 1) || (version != src->version));
351 void kvm_disable_steal_time(void)
353 if (!has_steal_clock)
356 wrmsr(MSR_KVM_STEAL_TIME, 0, 0);
360 static void __init kvm_smp_prepare_boot_cpu(void)
362 #ifdef CONFIG_KVM_CLOCK
363 WARN_ON(kvm_register_clock("primary cpu clock"));
365 kvm_guest_cpu_init();
366 native_smp_prepare_boot_cpu();
369 static void __cpuinit kvm_guest_cpu_online(void *dummy)
371 kvm_guest_cpu_init();
374 static void kvm_guest_cpu_offline(void *dummy)
376 kvm_disable_steal_time();
377 kvm_pv_disable_apf(NULL);
381 static int __cpuinit kvm_cpu_notify(struct notifier_block *self,
382 unsigned long action, void *hcpu)
384 int cpu = (unsigned long)hcpu;
387 case CPU_DOWN_FAILED:
388 case CPU_ONLINE_FROZEN:
389 smp_call_function_single(cpu, kvm_guest_cpu_online, NULL, 0);
391 case CPU_DOWN_PREPARE:
392 case CPU_DOWN_PREPARE_FROZEN:
393 smp_call_function_single(cpu, kvm_guest_cpu_offline, NULL, 1);
401 static struct notifier_block __cpuinitdata kvm_cpu_notifier = {
402 .notifier_call = kvm_cpu_notify,
406 static void __init kvm_apf_trap_init(void)
408 set_intr_gate(14, &async_page_fault);
411 void __init kvm_guest_init(void)
415 if (!kvm_para_available())
418 paravirt_ops_setup();
419 register_reboot_notifier(&kvm_pv_reboot_nb);
420 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++)
421 spin_lock_init(&async_pf_sleepers[i].lock);
422 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF))
423 x86_init.irqs.trap_init = kvm_apf_trap_init;
425 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
427 pv_time_ops.steal_clock = kvm_steal_clock;
431 smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
432 register_cpu_notifier(&kvm_cpu_notifier);
434 kvm_guest_cpu_init();
438 static __init int activate_jump_labels(void)
440 if (has_steal_clock) {
441 jump_label_inc(¶virt_steal_enabled);
443 jump_label_inc(¶virt_steal_rq_enabled);
448 arch_initcall(activate_jump_labels);