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