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