blob: b8ba6e4a27e4102bd36a6445ec4b503be990d62d [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>
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050042
Gleb Natapovfd10cde2010-10-14 11:22:51 +020043static int kvmapf = 1;
44
45static int parse_no_kvmapf(char *arg)
46{
47 kvmapf = 0;
48 return 0;
49}
50
51early_param("no-kvmapf", parse_no_kvmapf);
52
Glauber Costad910f5c2011-07-11 15:28:19 -040053static int steal_acc = 1;
54static int parse_no_stealacc(char *arg)
55{
56 steal_acc = 0;
57 return 0;
58}
59
60early_param("no-steal-acc", parse_no_stealacc);
61
Gleb Natapovfd10cde2010-10-14 11:22:51 +020062static DEFINE_PER_CPU(struct kvm_vcpu_pv_apf_data, apf_reason) __aligned(64);
Glauber Costad910f5c2011-07-11 15:28:19 -040063static DEFINE_PER_CPU(struct kvm_steal_time, steal_time) __aligned(64);
64static int has_steal_clock = 0;
Marcelo Tosatti096d14a2008-02-22 12:21:38 -050065
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -050066/*
67 * No need for any "IO delay" on KVM
68 */
69static void kvm_io_delay(void)
70{
71}
72
Gleb Natapov631bc482010-10-14 11:22:52 +020073#define KVM_TASK_SLEEP_HASHBITS 8
74#define KVM_TASK_SLEEP_HASHSIZE (1<<KVM_TASK_SLEEP_HASHBITS)
75
76struct kvm_task_sleep_node {
77 struct hlist_node link;
78 wait_queue_head_t wq;
79 u32 token;
80 int cpu;
Gleb Natapov6c047cd2010-10-14 11:22:54 +020081 bool halted;
82 struct mm_struct *mm;
Gleb Natapov631bc482010-10-14 11:22:52 +020083};
84
85static struct kvm_task_sleep_head {
86 spinlock_t lock;
87 struct hlist_head list;
88} async_pf_sleepers[KVM_TASK_SLEEP_HASHSIZE];
89
90static struct kvm_task_sleep_node *_find_apf_task(struct kvm_task_sleep_head *b,
91 u32 token)
92{
93 struct hlist_node *p;
94
95 hlist_for_each(p, &b->list) {
96 struct kvm_task_sleep_node *n =
97 hlist_entry(p, typeof(*n), link);
98 if (n->token == token)
99 return n;
100 }
101
102 return NULL;
103}
104
105void kvm_async_pf_task_wait(u32 token)
106{
107 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
108 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
109 struct kvm_task_sleep_node n, *e;
110 DEFINE_WAIT(wait);
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200111 int cpu, idle;
112
113 cpu = get_cpu();
114 idle = idle_cpu(cpu);
115 put_cpu();
Gleb Natapov631bc482010-10-14 11:22:52 +0200116
117 spin_lock(&b->lock);
118 e = _find_apf_task(b, token);
119 if (e) {
120 /* dummy entry exist -> wake up was delivered ahead of PF */
121 hlist_del(&e->link);
122 kfree(e);
123 spin_unlock(&b->lock);
124 return;
125 }
126
127 n.token = token;
128 n.cpu = smp_processor_id();
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200129 n.mm = current->active_mm;
130 n.halted = idle || preempt_count() > 1;
131 atomic_inc(&n.mm->mm_count);
Gleb Natapov631bc482010-10-14 11:22:52 +0200132 init_waitqueue_head(&n.wq);
133 hlist_add_head(&n.link, &b->list);
134 spin_unlock(&b->lock);
135
136 for (;;) {
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200137 if (!n.halted)
138 prepare_to_wait(&n.wq, &wait, TASK_UNINTERRUPTIBLE);
Gleb Natapov631bc482010-10-14 11:22:52 +0200139 if (hlist_unhashed(&n.link))
140 break;
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200141
142 if (!n.halted) {
143 local_irq_enable();
144 schedule();
145 local_irq_disable();
146 } else {
147 /*
148 * We cannot reschedule. So halt.
149 */
150 native_safe_halt();
151 local_irq_disable();
152 }
Gleb Natapov631bc482010-10-14 11:22:52 +0200153 }
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200154 if (!n.halted)
155 finish_wait(&n.wq, &wait);
Gleb Natapov631bc482010-10-14 11:22:52 +0200156
157 return;
158}
159EXPORT_SYMBOL_GPL(kvm_async_pf_task_wait);
160
161static void apf_task_wake_one(struct kvm_task_sleep_node *n)
162{
163 hlist_del_init(&n->link);
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200164 if (!n->mm)
165 return;
166 mmdrop(n->mm);
167 if (n->halted)
168 smp_send_reschedule(n->cpu);
169 else if (waitqueue_active(&n->wq))
Gleb Natapov631bc482010-10-14 11:22:52 +0200170 wake_up(&n->wq);
171}
172
173static void apf_task_wake_all(void)
174{
175 int i;
176
177 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++) {
178 struct hlist_node *p, *next;
179 struct kvm_task_sleep_head *b = &async_pf_sleepers[i];
180 spin_lock(&b->lock);
181 hlist_for_each_safe(p, next, &b->list) {
182 struct kvm_task_sleep_node *n =
183 hlist_entry(p, typeof(*n), link);
184 if (n->cpu == smp_processor_id())
185 apf_task_wake_one(n);
186 }
187 spin_unlock(&b->lock);
188 }
189}
190
191void kvm_async_pf_task_wake(u32 token)
192{
193 u32 key = hash_32(token, KVM_TASK_SLEEP_HASHBITS);
194 struct kvm_task_sleep_head *b = &async_pf_sleepers[key];
195 struct kvm_task_sleep_node *n;
196
197 if (token == ~0) {
198 apf_task_wake_all();
199 return;
200 }
201
202again:
203 spin_lock(&b->lock);
204 n = _find_apf_task(b, token);
205 if (!n) {
206 /*
207 * async PF was not yet handled.
208 * Add dummy entry for the token.
209 */
210 n = kmalloc(sizeof(*n), GFP_ATOMIC);
211 if (!n) {
212 /*
213 * Allocation failed! Busy wait while other cpu
214 * handles async PF.
215 */
216 spin_unlock(&b->lock);
217 cpu_relax();
218 goto again;
219 }
220 n->token = token;
221 n->cpu = smp_processor_id();
Gleb Natapov6c047cd2010-10-14 11:22:54 +0200222 n->mm = NULL;
Gleb Natapov631bc482010-10-14 11:22:52 +0200223 init_waitqueue_head(&n->wq);
224 hlist_add_head(&n->link, &b->list);
225 } else
226 apf_task_wake_one(n);
227 spin_unlock(&b->lock);
228 return;
229}
230EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
231
232u32 kvm_read_and_reset_pf_reason(void)
233{
234 u32 reason = 0;
235
236 if (__get_cpu_var(apf_reason).enabled) {
237 reason = __get_cpu_var(apf_reason).reason;
238 __get_cpu_var(apf_reason).reason = 0;
239 }
240
241 return reason;
242}
243EXPORT_SYMBOL_GPL(kvm_read_and_reset_pf_reason);
244
245dotraplinkage void __kprobes
246do_async_page_fault(struct pt_regs *regs, unsigned long error_code)
247{
248 switch (kvm_read_and_reset_pf_reason()) {
249 default:
250 do_page_fault(regs, error_code);
251 break;
252 case KVM_PV_REASON_PAGE_NOT_PRESENT:
253 /* page is swapped out by the host. */
254 kvm_async_pf_task_wait((u32)read_cr2());
255 break;
256 case KVM_PV_REASON_PAGE_READY:
Gleb Natapove0875922012-04-04 15:30:33 +0300257 rcu_irq_enter();
258 exit_idle();
Gleb Natapov631bc482010-10-14 11:22:52 +0200259 kvm_async_pf_task_wake((u32)read_cr2());
Gleb Natapove0875922012-04-04 15:30:33 +0300260 rcu_irq_exit();
Gleb Natapov631bc482010-10-14 11:22:52 +0200261 break;
262 }
263}
264
Rakib Mullickd3ac8812009-07-02 11:40:36 +0600265static void __init paravirt_ops_setup(void)
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500266{
267 pv_info.name = "KVM";
268 pv_info.paravirt_enabled = 1;
269
270 if (kvm_para_has_feature(KVM_FEATURE_NOP_IO_DELAY))
271 pv_cpu_ops.io_delay = kvm_io_delay;
272
Marcelo Tosattia90ede72009-02-11 22:45:42 -0200273#ifdef CONFIG_X86_IO_APIC
274 no_timer_check = 1;
275#endif
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500276}
277
Glauber Costad910f5c2011-07-11 15:28:19 -0400278static void kvm_register_steal_time(void)
279{
280 int cpu = smp_processor_id();
281 struct kvm_steal_time *st = &per_cpu(steal_time, cpu);
282
283 if (!has_steal_clock)
284 return;
285
286 memset(st, 0, sizeof(*st));
287
288 wrmsrl(MSR_KVM_STEAL_TIME, (__pa(st) | KVM_MSR_ENABLED));
289 printk(KERN_INFO "kvm-stealtime: cpu %d, msr %lx\n",
290 cpu, __pa(st));
291}
292
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200293void __cpuinit kvm_guest_cpu_init(void)
294{
295 if (!kvm_para_available())
296 return;
297
298 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF) && kvmapf) {
299 u64 pa = __pa(&__get_cpu_var(apf_reason));
300
Gleb Natapov6adba522010-10-14 11:22:55 +0200301#ifdef CONFIG_PREEMPT
302 pa |= KVM_ASYNC_PF_SEND_ALWAYS;
303#endif
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200304 wrmsrl(MSR_KVM_ASYNC_PF_EN, pa | KVM_ASYNC_PF_ENABLED);
305 __get_cpu_var(apf_reason).enabled = 1;
306 printk(KERN_INFO"KVM setup async PF for cpu %d\n",
307 smp_processor_id());
308 }
Glauber Costad910f5c2011-07-11 15:28:19 -0400309
310 if (has_steal_clock)
311 kvm_register_steal_time();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200312}
313
314static void kvm_pv_disable_apf(void *unused)
315{
316 if (!__get_cpu_var(apf_reason).enabled)
317 return;
318
319 wrmsrl(MSR_KVM_ASYNC_PF_EN, 0);
320 __get_cpu_var(apf_reason).enabled = 0;
321
322 printk(KERN_INFO"Unregister pv shared memory for cpu %d\n",
323 smp_processor_id());
324}
325
326static int kvm_pv_reboot_notify(struct notifier_block *nb,
327 unsigned long code, void *unused)
328{
329 if (code == SYS_RESTART)
330 on_each_cpu(kvm_pv_disable_apf, NULL, 1);
331 return NOTIFY_DONE;
332}
333
334static struct notifier_block kvm_pv_reboot_nb = {
335 .notifier_call = kvm_pv_reboot_notify,
336};
337
Glauber Costad910f5c2011-07-11 15:28:19 -0400338static u64 kvm_steal_clock(int cpu)
339{
340 u64 steal;
341 struct kvm_steal_time *src;
342 int version;
343
344 src = &per_cpu(steal_time, cpu);
345 do {
346 version = src->version;
347 rmb();
348 steal = src->steal;
349 rmb();
350 } while ((version & 1) || (version != src->version));
351
352 return steal;
353}
354
355void kvm_disable_steal_time(void)
356{
357 if (!has_steal_clock)
358 return;
359
360 wrmsr(MSR_KVM_STEAL_TIME, 0, 0);
361}
362
Gleb Natapovca3f1012010-10-14 11:22:49 +0200363#ifdef CONFIG_SMP
364static void __init kvm_smp_prepare_boot_cpu(void)
365{
Avi Kivitya63512a2010-12-16 11:27:23 +0200366#ifdef CONFIG_KVM_CLOCK
Gleb Natapovca3f1012010-10-14 11:22:49 +0200367 WARN_ON(kvm_register_clock("primary cpu clock"));
Avi Kivitya63512a2010-12-16 11:27:23 +0200368#endif
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200369 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200370 native_smp_prepare_boot_cpu();
371}
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200372
Sedat Dilek775077a2011-01-03 00:01:29 +0100373static void __cpuinit kvm_guest_cpu_online(void *dummy)
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200374{
375 kvm_guest_cpu_init();
376}
377
378static void kvm_guest_cpu_offline(void *dummy)
379{
Glauber Costad910f5c2011-07-11 15:28:19 -0400380 kvm_disable_steal_time();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200381 kvm_pv_disable_apf(NULL);
Gleb Natapov631bc482010-10-14 11:22:52 +0200382 apf_task_wake_all();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200383}
384
385static int __cpuinit kvm_cpu_notify(struct notifier_block *self,
386 unsigned long action, void *hcpu)
387{
388 int cpu = (unsigned long)hcpu;
389 switch (action) {
390 case CPU_ONLINE:
391 case CPU_DOWN_FAILED:
392 case CPU_ONLINE_FROZEN:
393 smp_call_function_single(cpu, kvm_guest_cpu_online, NULL, 0);
394 break;
395 case CPU_DOWN_PREPARE:
396 case CPU_DOWN_PREPARE_FROZEN:
397 smp_call_function_single(cpu, kvm_guest_cpu_offline, NULL, 1);
398 break;
399 default:
400 break;
401 }
402 return NOTIFY_OK;
403}
404
405static struct notifier_block __cpuinitdata kvm_cpu_notifier = {
406 .notifier_call = kvm_cpu_notify,
407};
Gleb Natapovca3f1012010-10-14 11:22:49 +0200408#endif
409
Gleb Natapov631bc482010-10-14 11:22:52 +0200410static void __init kvm_apf_trap_init(void)
411{
412 set_intr_gate(14, &async_page_fault);
413}
414
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500415void __init kvm_guest_init(void)
416{
Gleb Natapov631bc482010-10-14 11:22:52 +0200417 int i;
418
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500419 if (!kvm_para_available())
420 return;
421
422 paravirt_ops_setup();
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200423 register_reboot_notifier(&kvm_pv_reboot_nb);
Gleb Natapov631bc482010-10-14 11:22:52 +0200424 for (i = 0; i < KVM_TASK_SLEEP_HASHSIZE; i++)
425 spin_lock_init(&async_pf_sleepers[i].lock);
426 if (kvm_para_has_feature(KVM_FEATURE_ASYNC_PF))
427 x86_init.irqs.trap_init = kvm_apf_trap_init;
428
Glauber Costad910f5c2011-07-11 15:28:19 -0400429 if (kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
430 has_steal_clock = 1;
431 pv_time_ops.steal_clock = kvm_steal_clock;
432 }
433
Gleb Natapovca3f1012010-10-14 11:22:49 +0200434#ifdef CONFIG_SMP
435 smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
Gleb Natapovfd10cde2010-10-14 11:22:51 +0200436 register_cpu_notifier(&kvm_cpu_notifier);
437#else
438 kvm_guest_cpu_init();
Gleb Natapovca3f1012010-10-14 11:22:49 +0200439#endif
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500440}
Glauber Costad910f5c2011-07-11 15:28:19 -0400441
442static __init int activate_jump_labels(void)
443{
444 if (has_steal_clock) {
Ingo Molnarc5905af2012-02-24 08:31:31 +0100445 static_key_slow_inc(&paravirt_steal_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400446 if (steal_acc)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100447 static_key_slow_inc(&paravirt_steal_rq_enabled);
Glauber Costad910f5c2011-07-11 15:28:19 -0400448 }
449
450 return 0;
451}
452arch_initcall(activate_jump_labels);