]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/kvm/svm.c
OMAP: 2430sdp board support for 2K page nand
[linux-2.6-omap-h63xx.git] / drivers / kvm / svm.c
1 /*
2  * Kernel-based Virtual Machine driver for Linux
3  *
4  * AMD SVM support
5  *
6  * Copyright (C) 2006 Qumranet, Inc.
7  *
8  * Authors:
9  *   Yaniv Kamay  <yaniv@qumranet.com>
10  *   Avi Kivity   <avi@qumranet.com>
11  *
12  * This work is licensed under the terms of the GNU GPL, version 2.  See
13  * the COPYING file in the top-level directory.
14  *
15  */
16
17 #include "kvm_svm.h"
18 #include "x86_emulate.h"
19 #include "irq.h"
20
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/vmalloc.h>
24 #include <linux/highmem.h>
25 #include <linux/sched.h>
26
27 #include <asm/desc.h>
28
29 MODULE_AUTHOR("Qumranet");
30 MODULE_LICENSE("GPL");
31
32 #define IOPM_ALLOC_ORDER 2
33 #define MSRPM_ALLOC_ORDER 1
34
35 #define DB_VECTOR 1
36 #define UD_VECTOR 6
37 #define GP_VECTOR 13
38
39 #define DR7_GD_MASK (1 << 13)
40 #define DR6_BD_MASK (1 << 13)
41
42 #define SEG_TYPE_LDT 2
43 #define SEG_TYPE_BUSY_TSS16 3
44
45 #define KVM_EFER_LMA (1 << 10)
46 #define KVM_EFER_LME (1 << 8)
47
48 #define SVM_FEATURE_NPT  (1 << 0)
49 #define SVM_FEATURE_LBRV (1 << 1)
50 #define SVM_DEATURE_SVML (1 << 2)
51
52 static void kvm_reput_irq(struct vcpu_svm *svm);
53
54 static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
55 {
56         return container_of(vcpu, struct vcpu_svm, vcpu);
57 }
58
59 unsigned long iopm_base;
60 unsigned long msrpm_base;
61
62 struct kvm_ldttss_desc {
63         u16 limit0;
64         u16 base0;
65         unsigned base1 : 8, type : 5, dpl : 2, p : 1;
66         unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8;
67         u32 base3;
68         u32 zero1;
69 } __attribute__((packed));
70
71 struct svm_cpu_data {
72         int cpu;
73
74         u64 asid_generation;
75         u32 max_asid;
76         u32 next_asid;
77         struct kvm_ldttss_desc *tss_desc;
78
79         struct page *save_area;
80 };
81
82 static DEFINE_PER_CPU(struct svm_cpu_data *, svm_data);
83 static uint32_t svm_features;
84
85 struct svm_init_data {
86         int cpu;
87         int r;
88 };
89
90 static u32 msrpm_ranges[] = {0, 0xc0000000, 0xc0010000};
91
92 #define NUM_MSR_MAPS ARRAY_SIZE(msrpm_ranges)
93 #define MSRS_RANGE_SIZE 2048
94 #define MSRS_IN_RANGE (MSRS_RANGE_SIZE * 8 / 2)
95
96 #define MAX_INST_SIZE 15
97
98 static inline u32 svm_has(u32 feat)
99 {
100         return svm_features & feat;
101 }
102
103 static inline u8 pop_irq(struct kvm_vcpu *vcpu)
104 {
105         int word_index = __ffs(vcpu->irq_summary);
106         int bit_index = __ffs(vcpu->irq_pending[word_index]);
107         int irq = word_index * BITS_PER_LONG + bit_index;
108
109         clear_bit(bit_index, &vcpu->irq_pending[word_index]);
110         if (!vcpu->irq_pending[word_index])
111                 clear_bit(word_index, &vcpu->irq_summary);
112         return irq;
113 }
114
115 static inline void push_irq(struct kvm_vcpu *vcpu, u8 irq)
116 {
117         set_bit(irq, vcpu->irq_pending);
118         set_bit(irq / BITS_PER_LONG, &vcpu->irq_summary);
119 }
120
121 static inline void clgi(void)
122 {
123         asm volatile (SVM_CLGI);
124 }
125
126 static inline void stgi(void)
127 {
128         asm volatile (SVM_STGI);
129 }
130
131 static inline void invlpga(unsigned long addr, u32 asid)
132 {
133         asm volatile (SVM_INVLPGA :: "a"(addr), "c"(asid));
134 }
135
136 static inline unsigned long kvm_read_cr2(void)
137 {
138         unsigned long cr2;
139
140         asm volatile ("mov %%cr2, %0" : "=r" (cr2));
141         return cr2;
142 }
143
144 static inline void kvm_write_cr2(unsigned long val)
145 {
146         asm volatile ("mov %0, %%cr2" :: "r" (val));
147 }
148
149 static inline unsigned long read_dr6(void)
150 {
151         unsigned long dr6;
152
153         asm volatile ("mov %%dr6, %0" : "=r" (dr6));
154         return dr6;
155 }
156
157 static inline void write_dr6(unsigned long val)
158 {
159         asm volatile ("mov %0, %%dr6" :: "r" (val));
160 }
161
162 static inline unsigned long read_dr7(void)
163 {
164         unsigned long dr7;
165
166         asm volatile ("mov %%dr7, %0" : "=r" (dr7));
167         return dr7;
168 }
169
170 static inline void write_dr7(unsigned long val)
171 {
172         asm volatile ("mov %0, %%dr7" :: "r" (val));
173 }
174
175 static inline void force_new_asid(struct kvm_vcpu *vcpu)
176 {
177         to_svm(vcpu)->asid_generation--;
178 }
179
180 static inline void flush_guest_tlb(struct kvm_vcpu *vcpu)
181 {
182         force_new_asid(vcpu);
183 }
184
185 static void svm_set_efer(struct kvm_vcpu *vcpu, u64 efer)
186 {
187         if (!(efer & KVM_EFER_LMA))
188                 efer &= ~KVM_EFER_LME;
189
190         to_svm(vcpu)->vmcb->save.efer = efer | MSR_EFER_SVME_MASK;
191         vcpu->shadow_efer = efer;
192 }
193
194 static void svm_inject_gp(struct kvm_vcpu *vcpu, unsigned error_code)
195 {
196         struct vcpu_svm *svm = to_svm(vcpu);
197
198         svm->vmcb->control.event_inj =          SVM_EVTINJ_VALID |
199                                                 SVM_EVTINJ_VALID_ERR |
200                                                 SVM_EVTINJ_TYPE_EXEPT |
201                                                 GP_VECTOR;
202         svm->vmcb->control.event_inj_err = error_code;
203 }
204
205 static void inject_ud(struct kvm_vcpu *vcpu)
206 {
207         to_svm(vcpu)->vmcb->control.event_inj = SVM_EVTINJ_VALID |
208                                                 SVM_EVTINJ_TYPE_EXEPT |
209                                                 UD_VECTOR;
210 }
211
212 static int is_page_fault(uint32_t info)
213 {
214         info &= SVM_EVTINJ_VEC_MASK | SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
215         return info == (PF_VECTOR | SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_EXEPT);
216 }
217
218 static int is_external_interrupt(u32 info)
219 {
220         info &= SVM_EVTINJ_TYPE_MASK | SVM_EVTINJ_VALID;
221         return info == (SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_INTR);
222 }
223
224 static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
225 {
226         struct vcpu_svm *svm = to_svm(vcpu);
227
228         if (!svm->next_rip) {
229                 printk(KERN_DEBUG "%s: NOP\n", __FUNCTION__);
230                 return;
231         }
232         if (svm->next_rip - svm->vmcb->save.rip > MAX_INST_SIZE) {
233                 printk(KERN_ERR "%s: ip 0x%llx next 0x%llx\n",
234                        __FUNCTION__,
235                        svm->vmcb->save.rip,
236                        svm->next_rip);
237         }
238
239         vcpu->rip = svm->vmcb->save.rip = svm->next_rip;
240         svm->vmcb->control.int_state &= ~SVM_INTERRUPT_SHADOW_MASK;
241
242         vcpu->interrupt_window_open = 1;
243 }
244
245 static int has_svm(void)
246 {
247         uint32_t eax, ebx, ecx, edx;
248
249         if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
250                 printk(KERN_INFO "has_svm: not amd\n");
251                 return 0;
252         }
253
254         cpuid(0x80000000, &eax, &ebx, &ecx, &edx);
255         if (eax < SVM_CPUID_FUNC) {
256                 printk(KERN_INFO "has_svm: can't execute cpuid_8000000a\n");
257                 return 0;
258         }
259
260         cpuid(0x80000001, &eax, &ebx, &ecx, &edx);
261         if (!(ecx & (1 << SVM_CPUID_FEATURE_SHIFT))) {
262                 printk(KERN_DEBUG "has_svm: svm not available\n");
263                 return 0;
264         }
265         return 1;
266 }
267
268 static void svm_hardware_disable(void *garbage)
269 {
270         struct svm_cpu_data *svm_data
271                 = per_cpu(svm_data, raw_smp_processor_id());
272
273         if (svm_data) {
274                 uint64_t efer;
275
276                 wrmsrl(MSR_VM_HSAVE_PA, 0);
277                 rdmsrl(MSR_EFER, efer);
278                 wrmsrl(MSR_EFER, efer & ~MSR_EFER_SVME_MASK);
279                 per_cpu(svm_data, raw_smp_processor_id()) = NULL;
280                 __free_page(svm_data->save_area);
281                 kfree(svm_data);
282         }
283 }
284
285 static void svm_hardware_enable(void *garbage)
286 {
287
288         struct svm_cpu_data *svm_data;
289         uint64_t efer;
290 #ifdef CONFIG_X86_64
291         struct desc_ptr gdt_descr;
292 #else
293         struct Xgt_desc_struct gdt_descr;
294 #endif
295         struct desc_struct *gdt;
296         int me = raw_smp_processor_id();
297
298         if (!has_svm()) {
299                 printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me);
300                 return;
301         }
302         svm_data = per_cpu(svm_data, me);
303
304         if (!svm_data) {
305                 printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n",
306                        me);
307                 return;
308         }
309
310         svm_data->asid_generation = 1;
311         svm_data->max_asid = cpuid_ebx(SVM_CPUID_FUNC) - 1;
312         svm_data->next_asid = svm_data->max_asid + 1;
313         svm_features = cpuid_edx(SVM_CPUID_FUNC);
314
315         asm volatile ( "sgdt %0" : "=m"(gdt_descr) );
316         gdt = (struct desc_struct *)gdt_descr.address;
317         svm_data->tss_desc = (struct kvm_ldttss_desc *)(gdt + GDT_ENTRY_TSS);
318
319         rdmsrl(MSR_EFER, efer);
320         wrmsrl(MSR_EFER, efer | MSR_EFER_SVME_MASK);
321
322         wrmsrl(MSR_VM_HSAVE_PA,
323                page_to_pfn(svm_data->save_area) << PAGE_SHIFT);
324 }
325
326 static int svm_cpu_init(int cpu)
327 {
328         struct svm_cpu_data *svm_data;
329         int r;
330
331         svm_data = kzalloc(sizeof(struct svm_cpu_data), GFP_KERNEL);
332         if (!svm_data)
333                 return -ENOMEM;
334         svm_data->cpu = cpu;
335         svm_data->save_area = alloc_page(GFP_KERNEL);
336         r = -ENOMEM;
337         if (!svm_data->save_area)
338                 goto err_1;
339
340         per_cpu(svm_data, cpu) = svm_data;
341
342         return 0;
343
344 err_1:
345         kfree(svm_data);
346         return r;
347
348 }
349
350 static void set_msr_interception(u32 *msrpm, unsigned msr,
351                                  int read, int write)
352 {
353         int i;
354
355         for (i = 0; i < NUM_MSR_MAPS; i++) {
356                 if (msr >= msrpm_ranges[i] &&
357                     msr < msrpm_ranges[i] + MSRS_IN_RANGE) {
358                         u32 msr_offset = (i * MSRS_IN_RANGE + msr -
359                                           msrpm_ranges[i]) * 2;
360
361                         u32 *base = msrpm + (msr_offset / 32);
362                         u32 msr_shift = msr_offset % 32;
363                         u32 mask = ((write) ? 0 : 2) | ((read) ? 0 : 1);
364                         *base = (*base & ~(0x3 << msr_shift)) |
365                                 (mask << msr_shift);
366                         return;
367                 }
368         }
369         BUG();
370 }
371
372 static __init int svm_hardware_setup(void)
373 {
374         int cpu;
375         struct page *iopm_pages;
376         struct page *msrpm_pages;
377         void *iopm_va, *msrpm_va;
378         int r;
379
380         iopm_pages = alloc_pages(GFP_KERNEL, IOPM_ALLOC_ORDER);
381
382         if (!iopm_pages)
383                 return -ENOMEM;
384
385         iopm_va = page_address(iopm_pages);
386         memset(iopm_va, 0xff, PAGE_SIZE * (1 << IOPM_ALLOC_ORDER));
387         clear_bit(0x80, iopm_va); /* allow direct access to PC debug port */
388         iopm_base = page_to_pfn(iopm_pages) << PAGE_SHIFT;
389
390
391         msrpm_pages = alloc_pages(GFP_KERNEL, MSRPM_ALLOC_ORDER);
392
393         r = -ENOMEM;
394         if (!msrpm_pages)
395                 goto err_1;
396
397         msrpm_va = page_address(msrpm_pages);
398         memset(msrpm_va, 0xff, PAGE_SIZE * (1 << MSRPM_ALLOC_ORDER));
399         msrpm_base = page_to_pfn(msrpm_pages) << PAGE_SHIFT;
400
401 #ifdef CONFIG_X86_64
402         set_msr_interception(msrpm_va, MSR_GS_BASE, 1, 1);
403         set_msr_interception(msrpm_va, MSR_FS_BASE, 1, 1);
404         set_msr_interception(msrpm_va, MSR_KERNEL_GS_BASE, 1, 1);
405         set_msr_interception(msrpm_va, MSR_LSTAR, 1, 1);
406         set_msr_interception(msrpm_va, MSR_CSTAR, 1, 1);
407         set_msr_interception(msrpm_va, MSR_SYSCALL_MASK, 1, 1);
408 #endif
409         set_msr_interception(msrpm_va, MSR_K6_STAR, 1, 1);
410         set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_CS, 1, 1);
411         set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_ESP, 1, 1);
412         set_msr_interception(msrpm_va, MSR_IA32_SYSENTER_EIP, 1, 1);
413
414         for_each_online_cpu(cpu) {
415                 r = svm_cpu_init(cpu);
416                 if (r)
417                         goto err_2;
418         }
419         return 0;
420
421 err_2:
422         __free_pages(msrpm_pages, MSRPM_ALLOC_ORDER);
423         msrpm_base = 0;
424 err_1:
425         __free_pages(iopm_pages, IOPM_ALLOC_ORDER);
426         iopm_base = 0;
427         return r;
428 }
429
430 static __exit void svm_hardware_unsetup(void)
431 {
432         __free_pages(pfn_to_page(msrpm_base >> PAGE_SHIFT), MSRPM_ALLOC_ORDER);
433         __free_pages(pfn_to_page(iopm_base >> PAGE_SHIFT), IOPM_ALLOC_ORDER);
434         iopm_base = msrpm_base = 0;
435 }
436
437 static void init_seg(struct vmcb_seg *seg)
438 {
439         seg->selector = 0;
440         seg->attrib = SVM_SELECTOR_P_MASK | SVM_SELECTOR_S_MASK |
441                 SVM_SELECTOR_WRITE_MASK; /* Read/Write Data Segment */
442         seg->limit = 0xffff;
443         seg->base = 0;
444 }
445
446 static void init_sys_seg(struct vmcb_seg *seg, uint32_t type)
447 {
448         seg->selector = 0;
449         seg->attrib = SVM_SELECTOR_P_MASK | type;
450         seg->limit = 0xffff;
451         seg->base = 0;
452 }
453
454 static void init_vmcb(struct vmcb *vmcb)
455 {
456         struct vmcb_control_area *control = &vmcb->control;
457         struct vmcb_save_area *save = &vmcb->save;
458
459         control->intercept_cr_read =    INTERCEPT_CR0_MASK |
460                                         INTERCEPT_CR3_MASK |
461                                         INTERCEPT_CR4_MASK;
462
463         control->intercept_cr_write =   INTERCEPT_CR0_MASK |
464                                         INTERCEPT_CR3_MASK |
465                                         INTERCEPT_CR4_MASK;
466
467         control->intercept_dr_read =    INTERCEPT_DR0_MASK |
468                                         INTERCEPT_DR1_MASK |
469                                         INTERCEPT_DR2_MASK |
470                                         INTERCEPT_DR3_MASK;
471
472         control->intercept_dr_write =   INTERCEPT_DR0_MASK |
473                                         INTERCEPT_DR1_MASK |
474                                         INTERCEPT_DR2_MASK |
475                                         INTERCEPT_DR3_MASK |
476                                         INTERCEPT_DR5_MASK |
477                                         INTERCEPT_DR7_MASK;
478
479         control->intercept_exceptions = 1 << PF_VECTOR;
480
481
482         control->intercept =    (1ULL << INTERCEPT_INTR) |
483                                 (1ULL << INTERCEPT_NMI) |
484                                 (1ULL << INTERCEPT_SMI) |
485                 /*
486                  * selective cr0 intercept bug?
487                  *      0:   0f 22 d8                mov    %eax,%cr3
488                  *      3:   0f 20 c0                mov    %cr0,%eax
489                  *      6:   0d 00 00 00 80          or     $0x80000000,%eax
490                  *      b:   0f 22 c0                mov    %eax,%cr0
491                  * set cr3 ->interception
492                  * get cr0 ->interception
493                  * set cr0 -> no interception
494                  */
495                 /*              (1ULL << INTERCEPT_SELECTIVE_CR0) | */
496                                 (1ULL << INTERCEPT_CPUID) |
497                                 (1ULL << INTERCEPT_INVD) |
498                                 (1ULL << INTERCEPT_HLT) |
499                                 (1ULL << INTERCEPT_INVLPGA) |
500                                 (1ULL << INTERCEPT_IOIO_PROT) |
501                                 (1ULL << INTERCEPT_MSR_PROT) |
502                                 (1ULL << INTERCEPT_TASK_SWITCH) |
503                                 (1ULL << INTERCEPT_SHUTDOWN) |
504                                 (1ULL << INTERCEPT_VMRUN) |
505                                 (1ULL << INTERCEPT_VMMCALL) |
506                                 (1ULL << INTERCEPT_VMLOAD) |
507                                 (1ULL << INTERCEPT_VMSAVE) |
508                                 (1ULL << INTERCEPT_STGI) |
509                                 (1ULL << INTERCEPT_CLGI) |
510                                 (1ULL << INTERCEPT_SKINIT) |
511                                 (1ULL << INTERCEPT_WBINVD) |
512                                 (1ULL << INTERCEPT_MONITOR) |
513                                 (1ULL << INTERCEPT_MWAIT);
514
515         control->iopm_base_pa = iopm_base;
516         control->msrpm_base_pa = msrpm_base;
517         control->tsc_offset = 0;
518         control->int_ctl = V_INTR_MASKING_MASK;
519
520         init_seg(&save->es);
521         init_seg(&save->ss);
522         init_seg(&save->ds);
523         init_seg(&save->fs);
524         init_seg(&save->gs);
525
526         save->cs.selector = 0xf000;
527         /* Executable/Readable Code Segment */
528         save->cs.attrib = SVM_SELECTOR_READ_MASK | SVM_SELECTOR_P_MASK |
529                 SVM_SELECTOR_S_MASK | SVM_SELECTOR_CODE_MASK;
530         save->cs.limit = 0xffff;
531         /*
532          * cs.base should really be 0xffff0000, but vmx can't handle that, so
533          * be consistent with it.
534          *
535          * Replace when we have real mode working for vmx.
536          */
537         save->cs.base = 0xf0000;
538
539         save->gdtr.limit = 0xffff;
540         save->idtr.limit = 0xffff;
541
542         init_sys_seg(&save->ldtr, SEG_TYPE_LDT);
543         init_sys_seg(&save->tr, SEG_TYPE_BUSY_TSS16);
544
545         save->efer = MSR_EFER_SVME_MASK;
546
547         save->dr6 = 0xffff0ff0;
548         save->dr7 = 0x400;
549         save->rflags = 2;
550         save->rip = 0x0000fff0;
551
552         /*
553          * cr0 val on cpu init should be 0x60000010, we enable cpu
554          * cache by default. the orderly way is to enable cache in bios.
555          */
556         save->cr0 = 0x00000010 | X86_CR0_PG | X86_CR0_WP;
557         save->cr4 = X86_CR4_PAE;
558         /* rdx = ?? */
559 }
560
561 static void svm_vcpu_reset(struct kvm_vcpu *vcpu)
562 {
563         struct vcpu_svm *svm = to_svm(vcpu);
564
565         init_vmcb(svm->vmcb);
566
567         if (vcpu->vcpu_id != 0) {
568                 svm->vmcb->save.rip = 0;
569                 svm->vmcb->save.cs.base = svm->vcpu.sipi_vector << 12;
570                 svm->vmcb->save.cs.selector = svm->vcpu.sipi_vector << 8;
571         }
572 }
573
574 static struct kvm_vcpu *svm_create_vcpu(struct kvm *kvm, unsigned int id)
575 {
576         struct vcpu_svm *svm;
577         struct page *page;
578         int err;
579
580         svm = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
581         if (!svm) {
582                 err = -ENOMEM;
583                 goto out;
584         }
585
586         err = kvm_vcpu_init(&svm->vcpu, kvm, id);
587         if (err)
588                 goto free_svm;
589
590         if (irqchip_in_kernel(kvm)) {
591                 err = kvm_create_lapic(&svm->vcpu);
592                 if (err < 0)
593                         goto free_svm;
594         }
595
596         page = alloc_page(GFP_KERNEL);
597         if (!page) {
598                 err = -ENOMEM;
599                 goto uninit;
600         }
601
602         svm->vmcb = page_address(page);
603         clear_page(svm->vmcb);
604         svm->vmcb_pa = page_to_pfn(page) << PAGE_SHIFT;
605         svm->asid_generation = 0;
606         memset(svm->db_regs, 0, sizeof(svm->db_regs));
607         init_vmcb(svm->vmcb);
608
609         fx_init(&svm->vcpu);
610         svm->vcpu.fpu_active = 1;
611         svm->vcpu.apic_base = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
612         if (svm->vcpu.vcpu_id == 0)
613                 svm->vcpu.apic_base |= MSR_IA32_APICBASE_BSP;
614
615         return &svm->vcpu;
616
617 uninit:
618         kvm_vcpu_uninit(&svm->vcpu);
619 free_svm:
620         kmem_cache_free(kvm_vcpu_cache, svm);
621 out:
622         return ERR_PTR(err);
623 }
624
625 static void svm_free_vcpu(struct kvm_vcpu *vcpu)
626 {
627         struct vcpu_svm *svm = to_svm(vcpu);
628
629         __free_page(pfn_to_page(svm->vmcb_pa >> PAGE_SHIFT));
630         kvm_vcpu_uninit(vcpu);
631         kmem_cache_free(kvm_vcpu_cache, svm);
632 }
633
634 static void svm_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
635 {
636         struct vcpu_svm *svm = to_svm(vcpu);
637         int i;
638
639         if (unlikely(cpu != vcpu->cpu)) {
640                 u64 tsc_this, delta;
641
642                 /*
643                  * Make sure that the guest sees a monotonically
644                  * increasing TSC.
645                  */
646                 rdtscll(tsc_this);
647                 delta = vcpu->host_tsc - tsc_this;
648                 svm->vmcb->control.tsc_offset += delta;
649                 vcpu->cpu = cpu;
650                 kvm_migrate_apic_timer(vcpu);
651         }
652
653         for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
654                 rdmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
655 }
656
657 static void svm_vcpu_put(struct kvm_vcpu *vcpu)
658 {
659         struct vcpu_svm *svm = to_svm(vcpu);
660         int i;
661
662         for (i = 0; i < NR_HOST_SAVE_USER_MSRS; i++)
663                 wrmsrl(host_save_user_msrs[i], svm->host_user_msrs[i]);
664
665         rdtscll(vcpu->host_tsc);
666 }
667
668 static void svm_vcpu_decache(struct kvm_vcpu *vcpu)
669 {
670 }
671
672 static void svm_cache_regs(struct kvm_vcpu *vcpu)
673 {
674         struct vcpu_svm *svm = to_svm(vcpu);
675
676         vcpu->regs[VCPU_REGS_RAX] = svm->vmcb->save.rax;
677         vcpu->regs[VCPU_REGS_RSP] = svm->vmcb->save.rsp;
678         vcpu->rip = svm->vmcb->save.rip;
679 }
680
681 static void svm_decache_regs(struct kvm_vcpu *vcpu)
682 {
683         struct vcpu_svm *svm = to_svm(vcpu);
684         svm->vmcb->save.rax = vcpu->regs[VCPU_REGS_RAX];
685         svm->vmcb->save.rsp = vcpu->regs[VCPU_REGS_RSP];
686         svm->vmcb->save.rip = vcpu->rip;
687 }
688
689 static unsigned long svm_get_rflags(struct kvm_vcpu *vcpu)
690 {
691         return to_svm(vcpu)->vmcb->save.rflags;
692 }
693
694 static void svm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
695 {
696         to_svm(vcpu)->vmcb->save.rflags = rflags;
697 }
698
699 static struct vmcb_seg *svm_seg(struct kvm_vcpu *vcpu, int seg)
700 {
701         struct vmcb_save_area *save = &to_svm(vcpu)->vmcb->save;
702
703         switch (seg) {
704         case VCPU_SREG_CS: return &save->cs;
705         case VCPU_SREG_DS: return &save->ds;
706         case VCPU_SREG_ES: return &save->es;
707         case VCPU_SREG_FS: return &save->fs;
708         case VCPU_SREG_GS: return &save->gs;
709         case VCPU_SREG_SS: return &save->ss;
710         case VCPU_SREG_TR: return &save->tr;
711         case VCPU_SREG_LDTR: return &save->ldtr;
712         }
713         BUG();
714         return NULL;
715 }
716
717 static u64 svm_get_segment_base(struct kvm_vcpu *vcpu, int seg)
718 {
719         struct vmcb_seg *s = svm_seg(vcpu, seg);
720
721         return s->base;
722 }
723
724 static void svm_get_segment(struct kvm_vcpu *vcpu,
725                             struct kvm_segment *var, int seg)
726 {
727         struct vmcb_seg *s = svm_seg(vcpu, seg);
728
729         var->base = s->base;
730         var->limit = s->limit;
731         var->selector = s->selector;
732         var->type = s->attrib & SVM_SELECTOR_TYPE_MASK;
733         var->s = (s->attrib >> SVM_SELECTOR_S_SHIFT) & 1;
734         var->dpl = (s->attrib >> SVM_SELECTOR_DPL_SHIFT) & 3;
735         var->present = (s->attrib >> SVM_SELECTOR_P_SHIFT) & 1;
736         var->avl = (s->attrib >> SVM_SELECTOR_AVL_SHIFT) & 1;
737         var->l = (s->attrib >> SVM_SELECTOR_L_SHIFT) & 1;
738         var->db = (s->attrib >> SVM_SELECTOR_DB_SHIFT) & 1;
739         var->g = (s->attrib >> SVM_SELECTOR_G_SHIFT) & 1;
740         var->unusable = !var->present;
741 }
742
743 static void svm_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
744 {
745         struct vcpu_svm *svm = to_svm(vcpu);
746
747         dt->limit = svm->vmcb->save.idtr.limit;
748         dt->base = svm->vmcb->save.idtr.base;
749 }
750
751 static void svm_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
752 {
753         struct vcpu_svm *svm = to_svm(vcpu);
754
755         svm->vmcb->save.idtr.limit = dt->limit;
756         svm->vmcb->save.idtr.base = dt->base ;
757 }
758
759 static void svm_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
760 {
761         struct vcpu_svm *svm = to_svm(vcpu);
762
763         dt->limit = svm->vmcb->save.gdtr.limit;
764         dt->base = svm->vmcb->save.gdtr.base;
765 }
766
767 static void svm_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
768 {
769         struct vcpu_svm *svm = to_svm(vcpu);
770
771         svm->vmcb->save.gdtr.limit = dt->limit;
772         svm->vmcb->save.gdtr.base = dt->base ;
773 }
774
775 static void svm_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
776 {
777 }
778
779 static void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
780 {
781         struct vcpu_svm *svm = to_svm(vcpu);
782
783 #ifdef CONFIG_X86_64
784         if (vcpu->shadow_efer & KVM_EFER_LME) {
785                 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
786                         vcpu->shadow_efer |= KVM_EFER_LMA;
787                         svm->vmcb->save.efer |= KVM_EFER_LMA | KVM_EFER_LME;
788                 }
789
790                 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG) ) {
791                         vcpu->shadow_efer &= ~KVM_EFER_LMA;
792                         svm->vmcb->save.efer &= ~(KVM_EFER_LMA | KVM_EFER_LME);
793                 }
794         }
795 #endif
796         if ((vcpu->cr0 & X86_CR0_TS) && !(cr0 & X86_CR0_TS)) {
797                 svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
798                 vcpu->fpu_active = 1;
799         }
800
801         vcpu->cr0 = cr0;
802         cr0 |= X86_CR0_PG | X86_CR0_WP;
803         cr0 &= ~(X86_CR0_CD | X86_CR0_NW);
804         svm->vmcb->save.cr0 = cr0;
805 }
806
807 static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
808 {
809        vcpu->cr4 = cr4;
810        to_svm(vcpu)->vmcb->save.cr4 = cr4 | X86_CR4_PAE;
811 }
812
813 static void svm_set_segment(struct kvm_vcpu *vcpu,
814                             struct kvm_segment *var, int seg)
815 {
816         struct vcpu_svm *svm = to_svm(vcpu);
817         struct vmcb_seg *s = svm_seg(vcpu, seg);
818
819         s->base = var->base;
820         s->limit = var->limit;
821         s->selector = var->selector;
822         if (var->unusable)
823                 s->attrib = 0;
824         else {
825                 s->attrib = (var->type & SVM_SELECTOR_TYPE_MASK);
826                 s->attrib |= (var->s & 1) << SVM_SELECTOR_S_SHIFT;
827                 s->attrib |= (var->dpl & 3) << SVM_SELECTOR_DPL_SHIFT;
828                 s->attrib |= (var->present & 1) << SVM_SELECTOR_P_SHIFT;
829                 s->attrib |= (var->avl & 1) << SVM_SELECTOR_AVL_SHIFT;
830                 s->attrib |= (var->l & 1) << SVM_SELECTOR_L_SHIFT;
831                 s->attrib |= (var->db & 1) << SVM_SELECTOR_DB_SHIFT;
832                 s->attrib |= (var->g & 1) << SVM_SELECTOR_G_SHIFT;
833         }
834         if (seg == VCPU_SREG_CS)
835                 svm->vmcb->save.cpl
836                         = (svm->vmcb->save.cs.attrib
837                            >> SVM_SELECTOR_DPL_SHIFT) & 3;
838
839 }
840
841 /* FIXME:
842
843         svm(vcpu)->vmcb->control.int_ctl &= ~V_TPR_MASK;
844         svm(vcpu)->vmcb->control.int_ctl |= (sregs->cr8 & V_TPR_MASK);
845
846 */
847
848 static int svm_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
849 {
850         return -EOPNOTSUPP;
851 }
852
853 static int svm_get_irq(struct kvm_vcpu *vcpu)
854 {
855         struct vcpu_svm *svm = to_svm(vcpu);
856         u32 exit_int_info = svm->vmcb->control.exit_int_info;
857
858         if (is_external_interrupt(exit_int_info))
859                 return exit_int_info & SVM_EVTINJ_VEC_MASK;
860         return -1;
861 }
862
863 static void load_host_msrs(struct kvm_vcpu *vcpu)
864 {
865 #ifdef CONFIG_X86_64
866         wrmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
867 #endif
868 }
869
870 static void save_host_msrs(struct kvm_vcpu *vcpu)
871 {
872 #ifdef CONFIG_X86_64
873         rdmsrl(MSR_GS_BASE, to_svm(vcpu)->host_gs_base);
874 #endif
875 }
876
877 static void new_asid(struct vcpu_svm *svm, struct svm_cpu_data *svm_data)
878 {
879         if (svm_data->next_asid > svm_data->max_asid) {
880                 ++svm_data->asid_generation;
881                 svm_data->next_asid = 1;
882                 svm->vmcb->control.tlb_ctl = TLB_CONTROL_FLUSH_ALL_ASID;
883         }
884
885         svm->vcpu.cpu = svm_data->cpu;
886         svm->asid_generation = svm_data->asid_generation;
887         svm->vmcb->control.asid = svm_data->next_asid++;
888 }
889
890 static unsigned long svm_get_dr(struct kvm_vcpu *vcpu, int dr)
891 {
892         return to_svm(vcpu)->db_regs[dr];
893 }
894
895 static void svm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long value,
896                        int *exception)
897 {
898         struct vcpu_svm *svm = to_svm(vcpu);
899
900         *exception = 0;
901
902         if (svm->vmcb->save.dr7 & DR7_GD_MASK) {
903                 svm->vmcb->save.dr7 &= ~DR7_GD_MASK;
904                 svm->vmcb->save.dr6 |= DR6_BD_MASK;
905                 *exception = DB_VECTOR;
906                 return;
907         }
908
909         switch (dr) {
910         case 0 ... 3:
911                 svm->db_regs[dr] = value;
912                 return;
913         case 4 ... 5:
914                 if (vcpu->cr4 & X86_CR4_DE) {
915                         *exception = UD_VECTOR;
916                         return;
917                 }
918         case 7: {
919                 if (value & ~((1ULL << 32) - 1)) {
920                         *exception = GP_VECTOR;
921                         return;
922                 }
923                 svm->vmcb->save.dr7 = value;
924                 return;
925         }
926         default:
927                 printk(KERN_DEBUG "%s: unexpected dr %u\n",
928                        __FUNCTION__, dr);
929                 *exception = UD_VECTOR;
930                 return;
931         }
932 }
933
934 static int pf_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
935 {
936         u32 exit_int_info = svm->vmcb->control.exit_int_info;
937         struct kvm *kvm = svm->vcpu.kvm;
938         u64 fault_address;
939         u32 error_code;
940         enum emulation_result er;
941         int r;
942
943         if (!irqchip_in_kernel(kvm) &&
944                 is_external_interrupt(exit_int_info))
945                 push_irq(&svm->vcpu, exit_int_info & SVM_EVTINJ_VEC_MASK);
946
947         mutex_lock(&kvm->lock);
948
949         fault_address  = svm->vmcb->control.exit_info_2;
950         error_code = svm->vmcb->control.exit_info_1;
951         r = kvm_mmu_page_fault(&svm->vcpu, fault_address, error_code);
952         if (r < 0) {
953                 mutex_unlock(&kvm->lock);
954                 return r;
955         }
956         if (!r) {
957                 mutex_unlock(&kvm->lock);
958                 return 1;
959         }
960         er = emulate_instruction(&svm->vcpu, kvm_run, fault_address,
961                                  error_code);
962         mutex_unlock(&kvm->lock);
963
964         switch (er) {
965         case EMULATE_DONE:
966                 return 1;
967         case EMULATE_DO_MMIO:
968                 ++svm->vcpu.stat.mmio_exits;
969                 return 0;
970         case EMULATE_FAIL:
971                 kvm_report_emulation_failure(&svm->vcpu, "pagetable");
972                 break;
973         default:
974                 BUG();
975         }
976
977         kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
978         return 0;
979 }
980
981 static int nm_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
982 {
983         svm->vmcb->control.intercept_exceptions &= ~(1 << NM_VECTOR);
984         if (!(svm->vcpu.cr0 & X86_CR0_TS))
985                 svm->vmcb->save.cr0 &= ~X86_CR0_TS;
986         svm->vcpu.fpu_active = 1;
987
988         return 1;
989 }
990
991 static int shutdown_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
992 {
993         /*
994          * VMCB is undefined after a SHUTDOWN intercept
995          * so reinitialize it.
996          */
997         clear_page(svm->vmcb);
998         init_vmcb(svm->vmcb);
999
1000         kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
1001         return 0;
1002 }
1003
1004 static int io_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1005 {
1006         u32 io_info = svm->vmcb->control.exit_info_1; //address size bug?
1007         int size, down, in, string, rep;
1008         unsigned port;
1009
1010         ++svm->vcpu.stat.io_exits;
1011
1012         svm->next_rip = svm->vmcb->control.exit_info_2;
1013
1014         string = (io_info & SVM_IOIO_STR_MASK) != 0;
1015
1016         if (string) {
1017                 if (emulate_instruction(&svm->vcpu, kvm_run, 0, 0) == EMULATE_DO_MMIO)
1018                         return 0;
1019                 return 1;
1020         }
1021
1022         in = (io_info & SVM_IOIO_TYPE_MASK) != 0;
1023         port = io_info >> 16;
1024         size = (io_info & SVM_IOIO_SIZE_MASK) >> SVM_IOIO_SIZE_SHIFT;
1025         rep = (io_info & SVM_IOIO_REP_MASK) != 0;
1026         down = (svm->vmcb->save.rflags & X86_EFLAGS_DF) != 0;
1027
1028         return kvm_emulate_pio(&svm->vcpu, kvm_run, in, size, port);
1029 }
1030
1031 static int nop_on_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1032 {
1033         return 1;
1034 }
1035
1036 static int halt_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1037 {
1038         svm->next_rip = svm->vmcb->save.rip + 1;
1039         skip_emulated_instruction(&svm->vcpu);
1040         return kvm_emulate_halt(&svm->vcpu);
1041 }
1042
1043 static int vmmcall_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1044 {
1045         svm->next_rip = svm->vmcb->save.rip + 3;
1046         skip_emulated_instruction(&svm->vcpu);
1047         return kvm_hypercall(&svm->vcpu, kvm_run);
1048 }
1049
1050 static int invalid_op_interception(struct vcpu_svm *svm,
1051                                    struct kvm_run *kvm_run)
1052 {
1053         inject_ud(&svm->vcpu);
1054         return 1;
1055 }
1056
1057 static int task_switch_interception(struct vcpu_svm *svm,
1058                                     struct kvm_run *kvm_run)
1059 {
1060         pr_unimpl(&svm->vcpu, "%s: task switch is unsupported\n", __FUNCTION__);
1061         kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1062         return 0;
1063 }
1064
1065 static int cpuid_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1066 {
1067         svm->next_rip = svm->vmcb->save.rip + 2;
1068         kvm_emulate_cpuid(&svm->vcpu);
1069         return 1;
1070 }
1071
1072 static int emulate_on_interception(struct vcpu_svm *svm,
1073                                    struct kvm_run *kvm_run)
1074 {
1075         if (emulate_instruction(&svm->vcpu, NULL, 0, 0) != EMULATE_DONE)
1076                 pr_unimpl(&svm->vcpu, "%s: failed\n", __FUNCTION__);
1077         return 1;
1078 }
1079
1080 static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
1081 {
1082         struct vcpu_svm *svm = to_svm(vcpu);
1083
1084         switch (ecx) {
1085         case MSR_IA32_TIME_STAMP_COUNTER: {
1086                 u64 tsc;
1087
1088                 rdtscll(tsc);
1089                 *data = svm->vmcb->control.tsc_offset + tsc;
1090                 break;
1091         }
1092         case MSR_K6_STAR:
1093                 *data = svm->vmcb->save.star;
1094                 break;
1095 #ifdef CONFIG_X86_64
1096         case MSR_LSTAR:
1097                 *data = svm->vmcb->save.lstar;
1098                 break;
1099         case MSR_CSTAR:
1100                 *data = svm->vmcb->save.cstar;
1101                 break;
1102         case MSR_KERNEL_GS_BASE:
1103                 *data = svm->vmcb->save.kernel_gs_base;
1104                 break;
1105         case MSR_SYSCALL_MASK:
1106                 *data = svm->vmcb->save.sfmask;
1107                 break;
1108 #endif
1109         case MSR_IA32_SYSENTER_CS:
1110                 *data = svm->vmcb->save.sysenter_cs;
1111                 break;
1112         case MSR_IA32_SYSENTER_EIP:
1113                 *data = svm->vmcb->save.sysenter_eip;
1114                 break;
1115         case MSR_IA32_SYSENTER_ESP:
1116                 *data = svm->vmcb->save.sysenter_esp;
1117                 break;
1118         default:
1119                 return kvm_get_msr_common(vcpu, ecx, data);
1120         }
1121         return 0;
1122 }
1123
1124 static int rdmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1125 {
1126         u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
1127         u64 data;
1128
1129         if (svm_get_msr(&svm->vcpu, ecx, &data))
1130                 svm_inject_gp(&svm->vcpu, 0);
1131         else {
1132                 svm->vmcb->save.rax = data & 0xffffffff;
1133                 svm->vcpu.regs[VCPU_REGS_RDX] = data >> 32;
1134                 svm->next_rip = svm->vmcb->save.rip + 2;
1135                 skip_emulated_instruction(&svm->vcpu);
1136         }
1137         return 1;
1138 }
1139
1140 static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
1141 {
1142         struct vcpu_svm *svm = to_svm(vcpu);
1143
1144         switch (ecx) {
1145         case MSR_IA32_TIME_STAMP_COUNTER: {
1146                 u64 tsc;
1147
1148                 rdtscll(tsc);
1149                 svm->vmcb->control.tsc_offset = data - tsc;
1150                 break;
1151         }
1152         case MSR_K6_STAR:
1153                 svm->vmcb->save.star = data;
1154                 break;
1155 #ifdef CONFIG_X86_64
1156         case MSR_LSTAR:
1157                 svm->vmcb->save.lstar = data;
1158                 break;
1159         case MSR_CSTAR:
1160                 svm->vmcb->save.cstar = data;
1161                 break;
1162         case MSR_KERNEL_GS_BASE:
1163                 svm->vmcb->save.kernel_gs_base = data;
1164                 break;
1165         case MSR_SYSCALL_MASK:
1166                 svm->vmcb->save.sfmask = data;
1167                 break;
1168 #endif
1169         case MSR_IA32_SYSENTER_CS:
1170                 svm->vmcb->save.sysenter_cs = data;
1171                 break;
1172         case MSR_IA32_SYSENTER_EIP:
1173                 svm->vmcb->save.sysenter_eip = data;
1174                 break;
1175         case MSR_IA32_SYSENTER_ESP:
1176                 svm->vmcb->save.sysenter_esp = data;
1177                 break;
1178         default:
1179                 return kvm_set_msr_common(vcpu, ecx, data);
1180         }
1181         return 0;
1182 }
1183
1184 static int wrmsr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1185 {
1186         u32 ecx = svm->vcpu.regs[VCPU_REGS_RCX];
1187         u64 data = (svm->vmcb->save.rax & -1u)
1188                 | ((u64)(svm->vcpu.regs[VCPU_REGS_RDX] & -1u) << 32);
1189         svm->next_rip = svm->vmcb->save.rip + 2;
1190         if (svm_set_msr(&svm->vcpu, ecx, data))
1191                 svm_inject_gp(&svm->vcpu, 0);
1192         else
1193                 skip_emulated_instruction(&svm->vcpu);
1194         return 1;
1195 }
1196
1197 static int msr_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
1198 {
1199         if (svm->vmcb->control.exit_info_1)
1200                 return wrmsr_interception(svm, kvm_run);
1201         else
1202                 return rdmsr_interception(svm, kvm_run);
1203 }
1204
1205 static int interrupt_window_interception(struct vcpu_svm *svm,
1206                                    struct kvm_run *kvm_run)
1207 {
1208         svm->vmcb->control.intercept &= ~(1ULL << INTERCEPT_VINTR);
1209         svm->vmcb->control.int_ctl &= ~V_IRQ_MASK;
1210         /*
1211          * If the user space waits to inject interrupts, exit as soon as
1212          * possible
1213          */
1214         if (kvm_run->request_interrupt_window &&
1215             !svm->vcpu.irq_summary) {
1216                 ++svm->vcpu.stat.irq_window_exits;
1217                 kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
1218                 return 0;
1219         }
1220
1221         return 1;
1222 }
1223
1224 static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
1225                                       struct kvm_run *kvm_run) = {
1226         [SVM_EXIT_READ_CR0]                     = emulate_on_interception,
1227         [SVM_EXIT_READ_CR3]                     = emulate_on_interception,
1228         [SVM_EXIT_READ_CR4]                     = emulate_on_interception,
1229         /* for now: */
1230         [SVM_EXIT_WRITE_CR0]                    = emulate_on_interception,
1231         [SVM_EXIT_WRITE_CR3]                    = emulate_on_interception,
1232         [SVM_EXIT_WRITE_CR4]                    = emulate_on_interception,
1233         [SVM_EXIT_READ_DR0]                     = emulate_on_interception,
1234         [SVM_EXIT_READ_DR1]                     = emulate_on_interception,
1235         [SVM_EXIT_READ_DR2]                     = emulate_on_interception,
1236         [SVM_EXIT_READ_DR3]                     = emulate_on_interception,
1237         [SVM_EXIT_WRITE_DR0]                    = emulate_on_interception,
1238         [SVM_EXIT_WRITE_DR1]                    = emulate_on_interception,
1239         [SVM_EXIT_WRITE_DR2]                    = emulate_on_interception,
1240         [SVM_EXIT_WRITE_DR3]                    = emulate_on_interception,
1241         [SVM_EXIT_WRITE_DR5]                    = emulate_on_interception,
1242         [SVM_EXIT_WRITE_DR7]                    = emulate_on_interception,
1243         [SVM_EXIT_EXCP_BASE + PF_VECTOR]        = pf_interception,
1244         [SVM_EXIT_EXCP_BASE + NM_VECTOR]        = nm_interception,
1245         [SVM_EXIT_INTR]                         = nop_on_interception,
1246         [SVM_EXIT_NMI]                          = nop_on_interception,
1247         [SVM_EXIT_SMI]                          = nop_on_interception,
1248         [SVM_EXIT_INIT]                         = nop_on_interception,
1249         [SVM_EXIT_VINTR]                        = interrupt_window_interception,
1250         /* [SVM_EXIT_CR0_SEL_WRITE]             = emulate_on_interception, */
1251         [SVM_EXIT_CPUID]                        = cpuid_interception,
1252         [SVM_EXIT_INVD]                         = emulate_on_interception,
1253         [SVM_EXIT_HLT]                          = halt_interception,
1254         [SVM_EXIT_INVLPG]                       = emulate_on_interception,
1255         [SVM_EXIT_INVLPGA]                      = invalid_op_interception,
1256         [SVM_EXIT_IOIO]                         = io_interception,
1257         [SVM_EXIT_MSR]                          = msr_interception,
1258         [SVM_EXIT_TASK_SWITCH]                  = task_switch_interception,
1259         [SVM_EXIT_SHUTDOWN]                     = shutdown_interception,
1260         [SVM_EXIT_VMRUN]                        = invalid_op_interception,
1261         [SVM_EXIT_VMMCALL]                      = vmmcall_interception,
1262         [SVM_EXIT_VMLOAD]                       = invalid_op_interception,
1263         [SVM_EXIT_VMSAVE]                       = invalid_op_interception,
1264         [SVM_EXIT_STGI]                         = invalid_op_interception,
1265         [SVM_EXIT_CLGI]                         = invalid_op_interception,
1266         [SVM_EXIT_SKINIT]                       = invalid_op_interception,
1267         [SVM_EXIT_WBINVD]                       = emulate_on_interception,
1268         [SVM_EXIT_MONITOR]                      = invalid_op_interception,
1269         [SVM_EXIT_MWAIT]                        = invalid_op_interception,
1270 };
1271
1272
1273 static int handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
1274 {
1275         struct vcpu_svm *svm = to_svm(vcpu);
1276         u32 exit_code = svm->vmcb->control.exit_code;
1277
1278         kvm_reput_irq(svm);
1279
1280         if (svm->vmcb->control.exit_code == SVM_EXIT_ERR) {
1281                 kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
1282                 kvm_run->fail_entry.hardware_entry_failure_reason
1283                         = svm->vmcb->control.exit_code;
1284                 return 0;
1285         }
1286
1287         if (is_external_interrupt(svm->vmcb->control.exit_int_info) &&
1288             exit_code != SVM_EXIT_EXCP_BASE + PF_VECTOR)
1289                 printk(KERN_ERR "%s: unexpected exit_ini_info 0x%x "
1290                        "exit_code 0x%x\n",
1291                        __FUNCTION__, svm->vmcb->control.exit_int_info,
1292                        exit_code);
1293
1294         if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
1295             || svm_exit_handlers[exit_code] == 0) {
1296                 kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
1297                 kvm_run->hw.hardware_exit_reason = exit_code;
1298                 return 0;
1299         }
1300
1301         return svm_exit_handlers[exit_code](svm, kvm_run);
1302 }
1303
1304 static void reload_tss(struct kvm_vcpu *vcpu)
1305 {
1306         int cpu = raw_smp_processor_id();
1307
1308         struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1309         svm_data->tss_desc->type = 9; //available 32/64-bit TSS
1310         load_TR_desc();
1311 }
1312
1313 static void pre_svm_run(struct vcpu_svm *svm)
1314 {
1315         int cpu = raw_smp_processor_id();
1316
1317         struct svm_cpu_data *svm_data = per_cpu(svm_data, cpu);
1318
1319         svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
1320         if (svm->vcpu.cpu != cpu ||
1321             svm->asid_generation != svm_data->asid_generation)
1322                 new_asid(svm, svm_data);
1323 }
1324
1325
1326 static inline void svm_inject_irq(struct vcpu_svm *svm, int irq)
1327 {
1328         struct vmcb_control_area *control;
1329
1330         control = &svm->vmcb->control;
1331         control->int_vector = irq;
1332         control->int_ctl &= ~V_INTR_PRIO_MASK;
1333         control->int_ctl |= V_IRQ_MASK |
1334                 ((/*control->int_vector >> 4*/ 0xf) << V_INTR_PRIO_SHIFT);
1335 }
1336
1337 static void svm_set_irq(struct kvm_vcpu *vcpu, int irq)
1338 {
1339         struct vcpu_svm *svm = to_svm(vcpu);
1340
1341         svm_inject_irq(svm, irq);
1342 }
1343
1344 static void svm_intr_assist(struct kvm_vcpu *vcpu)
1345 {
1346         struct vcpu_svm *svm = to_svm(vcpu);
1347         struct vmcb *vmcb = svm->vmcb;
1348         int intr_vector = -1;
1349
1350         kvm_inject_pending_timer_irqs(vcpu);
1351         if ((vmcb->control.exit_int_info & SVM_EVTINJ_VALID) &&
1352             ((vmcb->control.exit_int_info & SVM_EVTINJ_TYPE_MASK) == 0)) {
1353                 intr_vector = vmcb->control.exit_int_info &
1354                               SVM_EVTINJ_VEC_MASK;
1355                 vmcb->control.exit_int_info = 0;
1356                 svm_inject_irq(svm, intr_vector);
1357                 return;
1358         }
1359
1360         if (vmcb->control.int_ctl & V_IRQ_MASK)
1361                 return;
1362
1363         if (!kvm_cpu_has_interrupt(vcpu))
1364                 return;
1365
1366         if (!(vmcb->save.rflags & X86_EFLAGS_IF) ||
1367             (vmcb->control.int_state & SVM_INTERRUPT_SHADOW_MASK) ||
1368             (vmcb->control.event_inj & SVM_EVTINJ_VALID)) {
1369                 /* unable to deliver irq, set pending irq */
1370                 vmcb->control.intercept |= (1ULL << INTERCEPT_VINTR);
1371                 svm_inject_irq(svm, 0x0);
1372                 return;
1373         }
1374         /* Okay, we can deliver the interrupt: grab it and update PIC state. */
1375         intr_vector = kvm_cpu_get_interrupt(vcpu);
1376         svm_inject_irq(svm, intr_vector);
1377         kvm_timer_intr_post(vcpu, intr_vector);
1378 }
1379
1380 static void kvm_reput_irq(struct vcpu_svm *svm)
1381 {
1382         struct vmcb_control_area *control = &svm->vmcb->control;
1383
1384         if ((control->int_ctl & V_IRQ_MASK)
1385             && !irqchip_in_kernel(svm->vcpu.kvm)) {
1386                 control->int_ctl &= ~V_IRQ_MASK;
1387                 push_irq(&svm->vcpu, control->int_vector);
1388         }
1389
1390         svm->vcpu.interrupt_window_open =
1391                 !(control->int_state & SVM_INTERRUPT_SHADOW_MASK);
1392 }
1393
1394 static void svm_do_inject_vector(struct vcpu_svm *svm)
1395 {
1396         struct kvm_vcpu *vcpu = &svm->vcpu;
1397         int word_index = __ffs(vcpu->irq_summary);
1398         int bit_index = __ffs(vcpu->irq_pending[word_index]);
1399         int irq = word_index * BITS_PER_LONG + bit_index;
1400
1401         clear_bit(bit_index, &vcpu->irq_pending[word_index]);
1402         if (!vcpu->irq_pending[word_index])
1403                 clear_bit(word_index, &vcpu->irq_summary);
1404         svm_inject_irq(svm, irq);
1405 }
1406
1407 static void do_interrupt_requests(struct kvm_vcpu *vcpu,
1408                                        struct kvm_run *kvm_run)
1409 {
1410         struct vcpu_svm *svm = to_svm(vcpu);
1411         struct vmcb_control_area *control = &svm->vmcb->control;
1412
1413         svm->vcpu.interrupt_window_open =
1414                 (!(control->int_state & SVM_INTERRUPT_SHADOW_MASK) &&
1415                  (svm->vmcb->save.rflags & X86_EFLAGS_IF));
1416
1417         if (svm->vcpu.interrupt_window_open && svm->vcpu.irq_summary)
1418                 /*
1419                  * If interrupts enabled, and not blocked by sti or mov ss. Good.
1420                  */
1421                 svm_do_inject_vector(svm);
1422
1423         /*
1424          * Interrupts blocked.  Wait for unblock.
1425          */
1426         if (!svm->vcpu.interrupt_window_open &&
1427             (svm->vcpu.irq_summary || kvm_run->request_interrupt_window)) {
1428                 control->intercept |= 1ULL << INTERCEPT_VINTR;
1429         } else
1430                 control->intercept &= ~(1ULL << INTERCEPT_VINTR);
1431 }
1432
1433 static void save_db_regs(unsigned long *db_regs)
1434 {
1435         asm volatile ("mov %%dr0, %0" : "=r"(db_regs[0]));
1436         asm volatile ("mov %%dr1, %0" : "=r"(db_regs[1]));
1437         asm volatile ("mov %%dr2, %0" : "=r"(db_regs[2]));
1438         asm volatile ("mov %%dr3, %0" : "=r"(db_regs[3]));
1439 }
1440
1441 static void load_db_regs(unsigned long *db_regs)
1442 {
1443         asm volatile ("mov %0, %%dr0" : : "r"(db_regs[0]));
1444         asm volatile ("mov %0, %%dr1" : : "r"(db_regs[1]));
1445         asm volatile ("mov %0, %%dr2" : : "r"(db_regs[2]));
1446         asm volatile ("mov %0, %%dr3" : : "r"(db_regs[3]));
1447 }
1448
1449 static void svm_flush_tlb(struct kvm_vcpu *vcpu)
1450 {
1451         force_new_asid(vcpu);
1452 }
1453
1454 static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
1455 {
1456 }
1457
1458 static void svm_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1459 {
1460         struct vcpu_svm *svm = to_svm(vcpu);
1461         u16 fs_selector;
1462         u16 gs_selector;
1463         u16 ldt_selector;
1464
1465         pre_svm_run(svm);
1466
1467         save_host_msrs(vcpu);
1468         fs_selector = read_fs();
1469         gs_selector = read_gs();
1470         ldt_selector = read_ldt();
1471         svm->host_cr2 = kvm_read_cr2();
1472         svm->host_dr6 = read_dr6();
1473         svm->host_dr7 = read_dr7();
1474         svm->vmcb->save.cr2 = vcpu->cr2;
1475
1476         if (svm->vmcb->save.dr7 & 0xff) {
1477                 write_dr7(0);
1478                 save_db_regs(svm->host_db_regs);
1479                 load_db_regs(svm->db_regs);
1480         }
1481
1482         clgi();
1483
1484         local_irq_enable();
1485
1486         asm volatile (
1487 #ifdef CONFIG_X86_64
1488                 "push %%rbx; push %%rcx; push %%rdx;"
1489                 "push %%rsi; push %%rdi; push %%rbp;"
1490                 "push %%r8;  push %%r9;  push %%r10; push %%r11;"
1491                 "push %%r12; push %%r13; push %%r14; push %%r15;"
1492 #else
1493                 "push %%ebx; push %%ecx; push %%edx;"
1494                 "push %%esi; push %%edi; push %%ebp;"
1495 #endif
1496
1497 #ifdef CONFIG_X86_64
1498                 "mov %c[rbx](%[svm]), %%rbx \n\t"
1499                 "mov %c[rcx](%[svm]), %%rcx \n\t"
1500                 "mov %c[rdx](%[svm]), %%rdx \n\t"
1501                 "mov %c[rsi](%[svm]), %%rsi \n\t"
1502                 "mov %c[rdi](%[svm]), %%rdi \n\t"
1503                 "mov %c[rbp](%[svm]), %%rbp \n\t"
1504                 "mov %c[r8](%[svm]),  %%r8  \n\t"
1505                 "mov %c[r9](%[svm]),  %%r9  \n\t"
1506                 "mov %c[r10](%[svm]), %%r10 \n\t"
1507                 "mov %c[r11](%[svm]), %%r11 \n\t"
1508                 "mov %c[r12](%[svm]), %%r12 \n\t"
1509                 "mov %c[r13](%[svm]), %%r13 \n\t"
1510                 "mov %c[r14](%[svm]), %%r14 \n\t"
1511                 "mov %c[r15](%[svm]), %%r15 \n\t"
1512 #else
1513                 "mov %c[rbx](%[svm]), %%ebx \n\t"
1514                 "mov %c[rcx](%[svm]), %%ecx \n\t"
1515                 "mov %c[rdx](%[svm]), %%edx \n\t"
1516                 "mov %c[rsi](%[svm]), %%esi \n\t"
1517                 "mov %c[rdi](%[svm]), %%edi \n\t"
1518                 "mov %c[rbp](%[svm]), %%ebp \n\t"
1519 #endif
1520
1521 #ifdef CONFIG_X86_64
1522                 /* Enter guest mode */
1523                 "push %%rax \n\t"
1524                 "mov %c[vmcb](%[svm]), %%rax \n\t"
1525                 SVM_VMLOAD "\n\t"
1526                 SVM_VMRUN "\n\t"
1527                 SVM_VMSAVE "\n\t"
1528                 "pop %%rax \n\t"
1529 #else
1530                 /* Enter guest mode */
1531                 "push %%eax \n\t"
1532                 "mov %c[vmcb](%[svm]), %%eax \n\t"
1533                 SVM_VMLOAD "\n\t"
1534                 SVM_VMRUN "\n\t"
1535                 SVM_VMSAVE "\n\t"
1536                 "pop %%eax \n\t"
1537 #endif
1538
1539                 /* Save guest registers, load host registers */
1540 #ifdef CONFIG_X86_64
1541                 "mov %%rbx, %c[rbx](%[svm]) \n\t"
1542                 "mov %%rcx, %c[rcx](%[svm]) \n\t"
1543                 "mov %%rdx, %c[rdx](%[svm]) \n\t"
1544                 "mov %%rsi, %c[rsi](%[svm]) \n\t"
1545                 "mov %%rdi, %c[rdi](%[svm]) \n\t"
1546                 "mov %%rbp, %c[rbp](%[svm]) \n\t"
1547                 "mov %%r8,  %c[r8](%[svm]) \n\t"
1548                 "mov %%r9,  %c[r9](%[svm]) \n\t"
1549                 "mov %%r10, %c[r10](%[svm]) \n\t"
1550                 "mov %%r11, %c[r11](%[svm]) \n\t"
1551                 "mov %%r12, %c[r12](%[svm]) \n\t"
1552                 "mov %%r13, %c[r13](%[svm]) \n\t"
1553                 "mov %%r14, %c[r14](%[svm]) \n\t"
1554                 "mov %%r15, %c[r15](%[svm]) \n\t"
1555
1556                 "pop  %%r15; pop  %%r14; pop  %%r13; pop  %%r12;"
1557                 "pop  %%r11; pop  %%r10; pop  %%r9;  pop  %%r8;"
1558                 "pop  %%rbp; pop  %%rdi; pop  %%rsi;"
1559                 "pop  %%rdx; pop  %%rcx; pop  %%rbx; \n\t"
1560 #else
1561                 "mov %%ebx, %c[rbx](%[svm]) \n\t"
1562                 "mov %%ecx, %c[rcx](%[svm]) \n\t"
1563                 "mov %%edx, %c[rdx](%[svm]) \n\t"
1564                 "mov %%esi, %c[rsi](%[svm]) \n\t"
1565                 "mov %%edi, %c[rdi](%[svm]) \n\t"
1566                 "mov %%ebp, %c[rbp](%[svm]) \n\t"
1567
1568                 "pop  %%ebp; pop  %%edi; pop  %%esi;"
1569                 "pop  %%edx; pop  %%ecx; pop  %%ebx; \n\t"
1570 #endif
1571                 :
1572                 : [svm]"a"(svm),
1573                   [vmcb]"i"(offsetof(struct vcpu_svm, vmcb_pa)),
1574                   [rbx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBX])),
1575                   [rcx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RCX])),
1576                   [rdx]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDX])),
1577                   [rsi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RSI])),
1578                   [rdi]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RDI])),
1579                   [rbp]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_RBP]))
1580 #ifdef CONFIG_X86_64
1581                   ,[r8 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R8])),
1582                   [r9 ]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R9 ])),
1583                   [r10]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R10])),
1584                   [r11]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R11])),
1585                   [r12]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R12])),
1586                   [r13]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R13])),
1587                   [r14]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R14])),
1588                   [r15]"i"(offsetof(struct vcpu_svm,vcpu.regs[VCPU_REGS_R15]))
1589 #endif
1590                 : "cc", "memory" );
1591
1592         if ((svm->vmcb->save.dr7 & 0xff))
1593                 load_db_regs(svm->host_db_regs);
1594
1595         vcpu->cr2 = svm->vmcb->save.cr2;
1596
1597         write_dr6(svm->host_dr6);
1598         write_dr7(svm->host_dr7);
1599         kvm_write_cr2(svm->host_cr2);
1600
1601         load_fs(fs_selector);
1602         load_gs(gs_selector);
1603         load_ldt(ldt_selector);
1604         load_host_msrs(vcpu);
1605
1606         reload_tss(vcpu);
1607
1608         local_irq_disable();
1609
1610         stgi();
1611
1612         svm->next_rip = 0;
1613 }
1614
1615 static void svm_set_cr3(struct kvm_vcpu *vcpu, unsigned long root)
1616 {
1617         struct vcpu_svm *svm = to_svm(vcpu);
1618
1619         svm->vmcb->save.cr3 = root;
1620         force_new_asid(vcpu);
1621
1622         if (vcpu->fpu_active) {
1623                 svm->vmcb->control.intercept_exceptions |= (1 << NM_VECTOR);
1624                 svm->vmcb->save.cr0 |= X86_CR0_TS;
1625                 vcpu->fpu_active = 0;
1626         }
1627 }
1628
1629 static void svm_inject_page_fault(struct kvm_vcpu *vcpu,
1630                                   unsigned long  addr,
1631                                   uint32_t err_code)
1632 {
1633         struct vcpu_svm *svm = to_svm(vcpu);
1634         uint32_t exit_int_info = svm->vmcb->control.exit_int_info;
1635
1636         ++vcpu->stat.pf_guest;
1637
1638         if (is_page_fault(exit_int_info)) {
1639
1640                 svm->vmcb->control.event_inj_err = 0;
1641                 svm->vmcb->control.event_inj =  SVM_EVTINJ_VALID |
1642                                                 SVM_EVTINJ_VALID_ERR |
1643                                                 SVM_EVTINJ_TYPE_EXEPT |
1644                                                 DF_VECTOR;
1645                 return;
1646         }
1647         vcpu->cr2 = addr;
1648         svm->vmcb->save.cr2 = addr;
1649         svm->vmcb->control.event_inj =  SVM_EVTINJ_VALID |
1650                                         SVM_EVTINJ_VALID_ERR |
1651                                         SVM_EVTINJ_TYPE_EXEPT |
1652                                         PF_VECTOR;
1653         svm->vmcb->control.event_inj_err = err_code;
1654 }
1655
1656
1657 static int is_disabled(void)
1658 {
1659         u64 vm_cr;
1660
1661         rdmsrl(MSR_VM_CR, vm_cr);
1662         if (vm_cr & (1 << SVM_VM_CR_SVM_DISABLE))
1663                 return 1;
1664
1665         return 0;
1666 }
1667
1668 static void
1669 svm_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
1670 {
1671         /*
1672          * Patch in the VMMCALL instruction:
1673          */
1674         hypercall[0] = 0x0f;
1675         hypercall[1] = 0x01;
1676         hypercall[2] = 0xd9;
1677         hypercall[3] = 0xc3;
1678 }
1679
1680 static void svm_check_processor_compat(void *rtn)
1681 {
1682         *(int *)rtn = 0;
1683 }
1684
1685 static struct kvm_x86_ops svm_x86_ops = {
1686         .cpu_has_kvm_support = has_svm,
1687         .disabled_by_bios = is_disabled,
1688         .hardware_setup = svm_hardware_setup,
1689         .hardware_unsetup = svm_hardware_unsetup,
1690         .check_processor_compatibility = svm_check_processor_compat,
1691         .hardware_enable = svm_hardware_enable,
1692         .hardware_disable = svm_hardware_disable,
1693
1694         .vcpu_create = svm_create_vcpu,
1695         .vcpu_free = svm_free_vcpu,
1696         .vcpu_reset = svm_vcpu_reset,
1697
1698         .prepare_guest_switch = svm_prepare_guest_switch,
1699         .vcpu_load = svm_vcpu_load,
1700         .vcpu_put = svm_vcpu_put,
1701         .vcpu_decache = svm_vcpu_decache,
1702
1703         .set_guest_debug = svm_guest_debug,
1704         .get_msr = svm_get_msr,
1705         .set_msr = svm_set_msr,
1706         .get_segment_base = svm_get_segment_base,
1707         .get_segment = svm_get_segment,
1708         .set_segment = svm_set_segment,
1709         .get_cs_db_l_bits = kvm_get_cs_db_l_bits,
1710         .decache_cr4_guest_bits = svm_decache_cr4_guest_bits,
1711         .set_cr0 = svm_set_cr0,
1712         .set_cr3 = svm_set_cr3,
1713         .set_cr4 = svm_set_cr4,
1714         .set_efer = svm_set_efer,
1715         .get_idt = svm_get_idt,
1716         .set_idt = svm_set_idt,
1717         .get_gdt = svm_get_gdt,
1718         .set_gdt = svm_set_gdt,
1719         .get_dr = svm_get_dr,
1720         .set_dr = svm_set_dr,
1721         .cache_regs = svm_cache_regs,
1722         .decache_regs = svm_decache_regs,
1723         .get_rflags = svm_get_rflags,
1724         .set_rflags = svm_set_rflags,
1725
1726         .tlb_flush = svm_flush_tlb,
1727         .inject_page_fault = svm_inject_page_fault,
1728
1729         .inject_gp = svm_inject_gp,
1730
1731         .run = svm_vcpu_run,
1732         .handle_exit = handle_exit,
1733         .skip_emulated_instruction = skip_emulated_instruction,
1734         .patch_hypercall = svm_patch_hypercall,
1735         .get_irq = svm_get_irq,
1736         .set_irq = svm_set_irq,
1737         .inject_pending_irq = svm_intr_assist,
1738         .inject_pending_vectors = do_interrupt_requests,
1739 };
1740
1741 static int __init svm_init(void)
1742 {
1743         return kvm_init_x86(&svm_x86_ops, sizeof(struct vcpu_svm),
1744                               THIS_MODULE);
1745 }
1746
1747 static void __exit svm_exit(void)
1748 {
1749         kvm_exit_x86();
1750 }
1751
1752 module_init(svm_init)
1753 module_exit(svm_exit)