]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/kvm/kvm.h
KVM: Add instruction emulation statistics
[linux-2.6-omap-h63xx.git] / drivers / kvm / kvm.h
1 #ifndef __KVM_H
2 #define __KVM_H
3
4 /*
5  * This work is licensed under the terms of the GNU GPL, version 2.  See
6  * the COPYING file in the top-level directory.
7  */
8
9 #include <linux/types.h>
10 #include <linux/hardirq.h>
11 #include <linux/list.h>
12 #include <linux/mutex.h>
13 #include <linux/spinlock.h>
14 #include <linux/signal.h>
15 #include <linux/sched.h>
16 #include <linux/mm.h>
17 #include <linux/preempt.h>
18 #include <asm/signal.h>
19
20 #include <linux/kvm.h>
21 #include <linux/kvm_para.h>
22
23 #define CR3_PAE_RESERVED_BITS ((X86_CR3_PWT | X86_CR3_PCD) - 1)
24 #define CR3_NONPAE_RESERVED_BITS ((PAGE_SIZE-1) & ~(X86_CR3_PWT | X86_CR3_PCD))
25 #define CR3_L_MODE_RESERVED_BITS (CR3_NONPAE_RESERVED_BITS|0xFFFFFF0000000000ULL)
26
27 #define KVM_GUEST_CR0_MASK \
28         (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE \
29          | X86_CR0_NW | X86_CR0_CD)
30 #define KVM_VM_CR0_ALWAYS_ON \
31         (X86_CR0_PG | X86_CR0_PE | X86_CR0_WP | X86_CR0_NE | X86_CR0_TS \
32          | X86_CR0_MP)
33 #define KVM_GUEST_CR4_MASK \
34         (X86_CR4_VME | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_PGE | X86_CR4_VMXE)
35 #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
36 #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
37
38 #define INVALID_PAGE (~(hpa_t)0)
39 #define UNMAPPED_GVA (~(gpa_t)0)
40
41 #define KVM_MAX_VCPUS 4
42 #define KVM_ALIAS_SLOTS 4
43 #define KVM_MEMORY_SLOTS 8
44 /* memory slots that does not exposed to userspace */
45 #define KVM_PRIVATE_MEM_SLOTS 4
46 #define KVM_PERMILLE_MMU_PAGES 20
47 #define KVM_MIN_ALLOC_MMU_PAGES 64
48 #define KVM_NUM_MMU_PAGES 1024
49 #define KVM_MIN_FREE_MMU_PAGES 5
50 #define KVM_REFILL_PAGES 25
51 #define KVM_MAX_CPUID_ENTRIES 40
52
53 #define DE_VECTOR 0
54 #define UD_VECTOR 6
55 #define NM_VECTOR 7
56 #define DF_VECTOR 8
57 #define TS_VECTOR 10
58 #define NP_VECTOR 11
59 #define SS_VECTOR 12
60 #define GP_VECTOR 13
61 #define PF_VECTOR 14
62
63 #define SELECTOR_TI_MASK (1 << 2)
64 #define SELECTOR_RPL_MASK 0x03
65
66 #define IOPL_SHIFT 12
67
68 #define KVM_PIO_PAGE_OFFSET 1
69
70 /*
71  * vcpu->requests bit members
72  */
73 #define KVM_REQ_TLB_FLUSH          0
74
75 /*
76  * Address types:
77  *
78  *  gva - guest virtual address
79  *  gpa - guest physical address
80  *  gfn - guest frame number
81  *  hva - host virtual address
82  *  hpa - host physical address
83  *  hfn - host frame number
84  */
85
86 typedef unsigned long  gva_t;
87 typedef u64            gpa_t;
88 typedef unsigned long  gfn_t;
89
90 typedef unsigned long  hva_t;
91 typedef u64            hpa_t;
92 typedef unsigned long  hfn_t;
93
94 #define NR_PTE_CHAIN_ENTRIES 5
95
96 struct kvm_pte_chain {
97         u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
98         struct hlist_node link;
99 };
100
101 /*
102  * kvm_mmu_page_role, below, is defined as:
103  *
104  *   bits 0:3 - total guest paging levels (2-4, or zero for real mode)
105  *   bits 4:7 - page table level for this shadow (1-4)
106  *   bits 8:9 - page table quadrant for 2-level guests
107  *   bit   16 - "metaphysical" - gfn is not a real page (huge page/real mode)
108  *   bits 17:19 - "access" - the user, writable, and nx bits of a huge page pde
109  */
110 union kvm_mmu_page_role {
111         unsigned word;
112         struct {
113                 unsigned glevels : 4;
114                 unsigned level : 4;
115                 unsigned quadrant : 2;
116                 unsigned pad_for_nice_hex_output : 6;
117                 unsigned metaphysical : 1;
118                 unsigned hugepage_access : 3;
119         };
120 };
121
122 struct kvm_mmu_page {
123         struct list_head link;
124         struct hlist_node hash_link;
125
126         /*
127          * The following two entries are used to key the shadow page in the
128          * hash table.
129          */
130         gfn_t gfn;
131         union kvm_mmu_page_role role;
132
133         u64 *spt;
134         /* hold the gfn of each spte inside spt */
135         gfn_t *gfns;
136         unsigned long slot_bitmap; /* One bit set per slot which has memory
137                                     * in this shadow page.
138                                     */
139         int multimapped;         /* More than one parent_pte? */
140         int root_count;          /* Currently serving as active root */
141         union {
142                 u64 *parent_pte;               /* !multimapped */
143                 struct hlist_head parent_ptes; /* multimapped, kvm_pte_chain */
144         };
145 };
146
147 struct kvm_vcpu;
148 extern struct kmem_cache *kvm_vcpu_cache;
149
150 /*
151  * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
152  * 32-bit).  The kvm_mmu structure abstracts the details of the current mmu
153  * mode.
154  */
155 struct kvm_mmu {
156         void (*new_cr3)(struct kvm_vcpu *vcpu);
157         int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err);
158         void (*free)(struct kvm_vcpu *vcpu);
159         gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva);
160         void (*prefetch_page)(struct kvm_vcpu *vcpu,
161                               struct kvm_mmu_page *page);
162         hpa_t root_hpa;
163         int root_level;
164         int shadow_root_level;
165
166         u64 *pae_root;
167 };
168
169 #define KVM_NR_MEM_OBJS 40
170
171 struct kvm_mmu_memory_cache {
172         int nobjs;
173         void *objects[KVM_NR_MEM_OBJS];
174 };
175
176 /*
177  * We don't want allocation failures within the mmu code, so we preallocate
178  * enough memory for a single page fault in a cache.
179  */
180 struct kvm_guest_debug {
181         int enabled;
182         unsigned long bp[4];
183         int singlestep;
184 };
185
186 enum {
187         VCPU_REGS_RAX = 0,
188         VCPU_REGS_RCX = 1,
189         VCPU_REGS_RDX = 2,
190         VCPU_REGS_RBX = 3,
191         VCPU_REGS_RSP = 4,
192         VCPU_REGS_RBP = 5,
193         VCPU_REGS_RSI = 6,
194         VCPU_REGS_RDI = 7,
195 #ifdef CONFIG_X86_64
196         VCPU_REGS_R8 = 8,
197         VCPU_REGS_R9 = 9,
198         VCPU_REGS_R10 = 10,
199         VCPU_REGS_R11 = 11,
200         VCPU_REGS_R12 = 12,
201         VCPU_REGS_R13 = 13,
202         VCPU_REGS_R14 = 14,
203         VCPU_REGS_R15 = 15,
204 #endif
205         NR_VCPU_REGS
206 };
207
208 enum {
209         VCPU_SREG_CS,
210         VCPU_SREG_DS,
211         VCPU_SREG_ES,
212         VCPU_SREG_FS,
213         VCPU_SREG_GS,
214         VCPU_SREG_SS,
215         VCPU_SREG_TR,
216         VCPU_SREG_LDTR,
217 };
218
219 #include "x86_emulate.h"
220
221 struct kvm_pio_request {
222         unsigned long count;
223         int cur_count;
224         struct page *guest_pages[2];
225         unsigned guest_page_offset;
226         int in;
227         int port;
228         int size;
229         int string;
230         int down;
231         int rep;
232 };
233
234 struct kvm_stat {
235         u32 pf_fixed;
236         u32 pf_guest;
237         u32 tlb_flush;
238         u32 invlpg;
239
240         u32 exits;
241         u32 io_exits;
242         u32 mmio_exits;
243         u32 signal_exits;
244         u32 irq_window_exits;
245         u32 halt_exits;
246         u32 halt_wakeup;
247         u32 request_irq_exits;
248         u32 irq_exits;
249         u32 host_state_reload;
250         u32 efer_reload;
251         u32 fpu_reload;
252         u32 insn_emulation;
253         u32 insn_emulation_fail;
254 };
255
256 struct kvm_io_device {
257         void (*read)(struct kvm_io_device *this,
258                      gpa_t addr,
259                      int len,
260                      void *val);
261         void (*write)(struct kvm_io_device *this,
262                       gpa_t addr,
263                       int len,
264                       const void *val);
265         int (*in_range)(struct kvm_io_device *this, gpa_t addr);
266         void (*destructor)(struct kvm_io_device *this);
267
268         void             *private;
269 };
270
271 static inline void kvm_iodevice_read(struct kvm_io_device *dev,
272                                      gpa_t addr,
273                                      int len,
274                                      void *val)
275 {
276         dev->read(dev, addr, len, val);
277 }
278
279 static inline void kvm_iodevice_write(struct kvm_io_device *dev,
280                                       gpa_t addr,
281                                       int len,
282                                       const void *val)
283 {
284         dev->write(dev, addr, len, val);
285 }
286
287 static inline int kvm_iodevice_inrange(struct kvm_io_device *dev, gpa_t addr)
288 {
289         return dev->in_range(dev, addr);
290 }
291
292 static inline void kvm_iodevice_destructor(struct kvm_io_device *dev)
293 {
294         if (dev->destructor)
295                 dev->destructor(dev);
296 }
297
298 /*
299  * It would be nice to use something smarter than a linear search, TBD...
300  * Thankfully we dont expect many devices to register (famous last words :),
301  * so until then it will suffice.  At least its abstracted so we can change
302  * in one place.
303  */
304 struct kvm_io_bus {
305         int                   dev_count;
306 #define NR_IOBUS_DEVS 6
307         struct kvm_io_device *devs[NR_IOBUS_DEVS];
308 };
309
310 void kvm_io_bus_init(struct kvm_io_bus *bus);
311 void kvm_io_bus_destroy(struct kvm_io_bus *bus);
312 struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr);
313 void kvm_io_bus_register_dev(struct kvm_io_bus *bus,
314                              struct kvm_io_device *dev);
315
316 #ifdef CONFIG_HAS_IOMEM
317 #define KVM_VCPU_MMIO                   \
318         int mmio_needed;                \
319         int mmio_read_completed;        \
320         int mmio_is_write;              \
321         int mmio_size;                  \
322         unsigned char mmio_data[8];     \
323         gpa_t mmio_phys_addr;
324
325 #else
326 #define KVM_VCPU_MMIO
327
328 #endif
329
330 #define KVM_VCPU_COMM                                   \
331         struct kvm *kvm;                                \
332         struct preempt_notifier preempt_notifier;       \
333         int vcpu_id;                                    \
334         struct mutex mutex;                             \
335         int   cpu;                                      \
336         struct kvm_run *run;                            \
337         int guest_mode;                                 \
338         unsigned long requests;                         \
339         struct kvm_guest_debug guest_debug;             \
340         int fpu_active;                                 \
341         int guest_fpu_loaded;                           \
342         wait_queue_head_t wq;                           \
343         int sigset_active;                              \
344         sigset_t sigset;                                \
345         struct kvm_stat stat;                           \
346         KVM_VCPU_MMIO
347
348 struct kvm_mem_alias {
349         gfn_t base_gfn;
350         unsigned long npages;
351         gfn_t target_gfn;
352 };
353
354 struct kvm_memory_slot {
355         gfn_t base_gfn;
356         unsigned long npages;
357         unsigned long flags;
358         unsigned long *rmap;
359         unsigned long *dirty_bitmap;
360         unsigned long userspace_addr;
361         int user_alloc;
362 };
363
364 struct kvm {
365         struct mutex lock; /* protects everything except vcpus */
366         int naliases;
367         struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS];
368         int nmemslots;
369         struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS +
370                                         KVM_PRIVATE_MEM_SLOTS];
371         /*
372          * Hash table of struct kvm_mmu_page.
373          */
374         struct list_head active_mmu_pages;
375         unsigned int n_free_mmu_pages;
376         unsigned int n_requested_mmu_pages;
377         unsigned int n_alloc_mmu_pages;
378         struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
379         struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
380         unsigned long rmap_overflow;
381         struct list_head vm_list;
382         struct file *filp;
383         struct kvm_io_bus mmio_bus;
384         struct kvm_io_bus pio_bus;
385         struct kvm_pic *vpic;
386         struct kvm_ioapic *vioapic;
387         int round_robin_prev_vcpu;
388         unsigned int tss_addr;
389         struct page *apic_access_page;
390 };
391
392 static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
393 {
394         return kvm->vpic;
395 }
396
397 static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
398 {
399         return kvm->vioapic;
400 }
401
402 static inline int irqchip_in_kernel(struct kvm *kvm)
403 {
404         return pic_irqchip(kvm) != NULL;
405 }
406
407 struct descriptor_table {
408         u16 limit;
409         unsigned long base;
410 } __attribute__((packed));
411
412 struct kvm_x86_ops {
413         int (*cpu_has_kvm_support)(void);          /* __init */
414         int (*disabled_by_bios)(void);             /* __init */
415         void (*hardware_enable)(void *dummy);      /* __init */
416         void (*hardware_disable)(void *dummy);
417         void (*check_processor_compatibility)(void *rtn);
418         int (*hardware_setup)(void);               /* __init */
419         void (*hardware_unsetup)(void);            /* __exit */
420
421         /* Create, but do not attach this VCPU */
422         struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id);
423         void (*vcpu_free)(struct kvm_vcpu *vcpu);
424         int (*vcpu_reset)(struct kvm_vcpu *vcpu);
425
426         void (*prepare_guest_switch)(struct kvm_vcpu *vcpu);
427         void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu);
428         void (*vcpu_put)(struct kvm_vcpu *vcpu);
429         void (*vcpu_decache)(struct kvm_vcpu *vcpu);
430
431         int (*set_guest_debug)(struct kvm_vcpu *vcpu,
432                                struct kvm_debug_guest *dbg);
433         void (*guest_debug_pre)(struct kvm_vcpu *vcpu);
434         int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
435         int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
436         u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg);
437         void (*get_segment)(struct kvm_vcpu *vcpu,
438                             struct kvm_segment *var, int seg);
439         void (*set_segment)(struct kvm_vcpu *vcpu,
440                             struct kvm_segment *var, int seg);
441         void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l);
442         void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu);
443         void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0);
444         void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3);
445         void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4);
446         void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer);
447         void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
448         void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
449         void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
450         void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt);
451         unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr);
452         void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value,
453                        int *exception);
454         void (*cache_regs)(struct kvm_vcpu *vcpu);
455         void (*decache_regs)(struct kvm_vcpu *vcpu);
456         unsigned long (*get_rflags)(struct kvm_vcpu *vcpu);
457         void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags);
458
459         void (*tlb_flush)(struct kvm_vcpu *vcpu);
460         void (*inject_page_fault)(struct kvm_vcpu *vcpu,
461                                   unsigned long addr, u32 err_code);
462
463         void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code);
464
465         void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run);
466         int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu);
467         void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu);
468         void (*patch_hypercall)(struct kvm_vcpu *vcpu,
469                                 unsigned char *hypercall_addr);
470         int (*get_irq)(struct kvm_vcpu *vcpu);
471         void (*set_irq)(struct kvm_vcpu *vcpu, int vec);
472         void (*inject_pending_irq)(struct kvm_vcpu *vcpu);
473         void (*inject_pending_vectors)(struct kvm_vcpu *vcpu,
474                                        struct kvm_run *run);
475
476         int (*set_tss_addr)(struct kvm *kvm, unsigned int addr);
477 };
478
479 extern struct kvm_x86_ops *kvm_x86_ops;
480
481 /* The guest did something we don't support. */
482 #define pr_unimpl(vcpu, fmt, ...)                                       \
483  do {                                                                   \
484         if (printk_ratelimit())                                         \
485                 printk(KERN_ERR "kvm: %i: cpu%i " fmt,                  \
486                        current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
487  } while (0)
488
489 #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
490 #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
491
492 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
493 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
494
495 void vcpu_load(struct kvm_vcpu *vcpu);
496 void vcpu_put(struct kvm_vcpu *vcpu);
497
498 void decache_vcpus_on_cpu(int cpu);
499
500
501 int kvm_init(void *opaque, unsigned int vcpu_size,
502                   struct module *module);
503 void kvm_exit(void);
504
505 int kvm_mmu_module_init(void);
506 void kvm_mmu_module_exit(void);
507
508 void kvm_mmu_destroy(struct kvm_vcpu *vcpu);
509 int kvm_mmu_create(struct kvm_vcpu *vcpu);
510 int kvm_mmu_setup(struct kvm_vcpu *vcpu);
511 void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte);
512
513 int kvm_mmu_reset_context(struct kvm_vcpu *vcpu);
514 void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot);
515 void kvm_mmu_zap_all(struct kvm *kvm);
516 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages);
517
518 hpa_t gpa_to_hpa(struct kvm *kvm, gpa_t gpa);
519 #define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
520 #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
521 static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
522 hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva);
523 struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
524
525 extern struct page *bad_page;
526
527 int is_error_page(struct page *page);
528 int kvm_is_error_hva(unsigned long addr);
529 int kvm_set_memory_region(struct kvm *kvm,
530                           struct kvm_userspace_memory_region *mem,
531                           int user_alloc);
532 int __kvm_set_memory_region(struct kvm *kvm,
533                             struct kvm_userspace_memory_region *mem,
534                             int user_alloc);
535 gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
536 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
537 void kvm_release_page(struct page *page);
538 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
539                         int len);
540 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
541 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
542                          int offset, int len);
543 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
544                     unsigned long len);
545 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
546 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
547 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
548 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
549 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
550
551 enum emulation_result {
552         EMULATE_DONE,       /* no further processing */
553         EMULATE_DO_MMIO,      /* kvm_run filled with mmio request */
554         EMULATE_FAIL,         /* can't emulate this instruction */
555 };
556
557 int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run,
558                         unsigned long cr2, u16 error_code, int no_decode);
559 void kvm_report_emulation_failure(struct kvm_vcpu *cvpu, const char *context);
560 void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
561 void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
562 void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
563                    unsigned long *rflags);
564
565 unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
566 void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value,
567                      unsigned long *rflags);
568 int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
569 int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
570
571 struct x86_emulate_ctxt;
572
573 int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
574                      int size, unsigned port);
575 int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
576                            int size, unsigned long count, int down,
577                             gva_t address, int rep, unsigned port);
578 void kvm_emulate_cpuid(struct kvm_vcpu *vcpu);
579 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
580 int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address);
581 int emulate_clts(struct kvm_vcpu *vcpu);
582 int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr,
583                     unsigned long *dest);
584 int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr,
585                     unsigned long value);
586
587 void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
588 void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0);
589 void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0);
590 void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0);
591 unsigned long get_cr8(struct kvm_vcpu *vcpu);
592 void lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
593 void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l);
594
595 int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata);
596 int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data);
597
598 void fx_init(struct kvm_vcpu *vcpu);
599
600 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
601 void kvm_resched(struct kvm_vcpu *vcpu);
602 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
603 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
604 void kvm_flush_remote_tlbs(struct kvm *kvm);
605
606 int emulator_read_std(unsigned long addr,
607                       void *val,
608                       unsigned int bytes,
609                       struct kvm_vcpu *vcpu);
610 int emulator_write_emulated(unsigned long addr,
611                             const void *val,
612                             unsigned int bytes,
613                             struct kvm_vcpu *vcpu);
614
615 unsigned long segment_base(u16 selector);
616
617 void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
618                        const u8 *new, int bytes);
619 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva);
620 void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu);
621 int kvm_mmu_load(struct kvm_vcpu *vcpu);
622 void kvm_mmu_unload(struct kvm_vcpu *vcpu);
623
624 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu);
625
626 int kvm_fix_hypercall(struct kvm_vcpu *vcpu);
627
628 long kvm_arch_dev_ioctl(struct file *filp,
629                         unsigned int ioctl, unsigned long arg);
630 long kvm_arch_vcpu_ioctl(struct file *filp,
631                          unsigned int ioctl, unsigned long arg);
632 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
633 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
634
635 int kvm_dev_ioctl_check_extension(long ext);
636
637 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
638                                    struct
639                                    kvm_userspace_memory_region *mem,
640                                    int user_alloc);
641 long kvm_arch_vm_ioctl(struct file *filp,
642                        unsigned int ioctl, unsigned long arg);
643 void kvm_arch_destroy_vm(struct kvm *kvm);
644
645 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
646 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
647
648 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
649                                     struct kvm_translation *tr);
650
651 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
652 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
653 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
654                                   struct kvm_sregs *sregs);
655 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
656                                   struct kvm_sregs *sregs);
657 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
658                                     struct kvm_debug_guest *dbg);
659 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
660
661 int kvm_arch_init(void *opaque);
662 void kvm_arch_exit(void);
663
664 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
665 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
666
667 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
668 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
669 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
670 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
671 void kvm_arch_vcpu_destory(struct kvm_vcpu *vcpu);
672
673 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
674 void kvm_arch_hardware_enable(void *garbage);
675 void kvm_arch_hardware_disable(void *garbage);
676 int kvm_arch_hardware_setup(void);
677 void kvm_arch_hardware_unsetup(void);
678 void kvm_arch_check_processor_compat(void *rtn);
679
680 void kvm_free_physmem(struct kvm *kvm);
681
682 struct  kvm *kvm_arch_create_vm(void);
683 void kvm_arch_destroy_vm(struct kvm *kvm);
684
685 static inline void kvm_guest_enter(void)
686 {
687         account_system_vtime(current);
688         current->flags |= PF_VCPU;
689 }
690
691 static inline void kvm_guest_exit(void)
692 {
693         account_system_vtime(current);
694         current->flags &= ~PF_VCPU;
695 }
696
697 static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
698 {
699         return slot - kvm->memslots;
700 }
701
702 static inline struct kvm_mmu_page *page_header(hpa_t shadow_page)
703 {
704         struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT);
705
706         return (struct kvm_mmu_page *)page_private(page);
707 }
708
709 static inline u16 read_fs(void)
710 {
711         u16 seg;
712         asm("mov %%fs, %0" : "=g"(seg));
713         return seg;
714 }
715
716 static inline u16 read_gs(void)
717 {
718         u16 seg;
719         asm("mov %%gs, %0" : "=g"(seg));
720         return seg;
721 }
722
723 static inline u16 read_ldt(void)
724 {
725         u16 ldt;
726         asm("sldt %0" : "=g"(ldt));
727         return ldt;
728 }
729
730 static inline void load_fs(u16 sel)
731 {
732         asm("mov %0, %%fs" : : "rm"(sel));
733 }
734
735 static inline void load_gs(u16 sel)
736 {
737         asm("mov %0, %%gs" : : "rm"(sel));
738 }
739
740 #ifndef load_ldt
741 static inline void load_ldt(u16 sel)
742 {
743         asm("lldt %0" : : "rm"(sel));
744 }
745 #endif
746
747 static inline void get_idt(struct descriptor_table *table)
748 {
749         asm("sidt %0" : "=m"(*table));
750 }
751
752 static inline void get_gdt(struct descriptor_table *table)
753 {
754         asm("sgdt %0" : "=m"(*table));
755 }
756
757 static inline unsigned long read_tr_base(void)
758 {
759         u16 tr;
760         asm("str %0" : "=g"(tr));
761         return segment_base(tr);
762 }
763
764 #ifdef CONFIG_X86_64
765 static inline unsigned long read_msr(unsigned long msr)
766 {
767         u64 value;
768
769         rdmsrl(msr, value);
770         return value;
771 }
772 #endif
773
774 static inline void fx_save(struct i387_fxsave_struct *image)
775 {
776         asm("fxsave (%0)":: "r" (image));
777 }
778
779 static inline void fx_restore(struct i387_fxsave_struct *image)
780 {
781         asm("fxrstor (%0)":: "r" (image));
782 }
783
784 static inline void fpu_init(void)
785 {
786         asm("finit");
787 }
788
789 static inline u32 get_rdx_init_val(void)
790 {
791         return 0x600; /* P6 family */
792 }
793
794 #define ASM_VMX_VMCLEAR_RAX       ".byte 0x66, 0x0f, 0xc7, 0x30"
795 #define ASM_VMX_VMLAUNCH          ".byte 0x0f, 0x01, 0xc2"
796 #define ASM_VMX_VMRESUME          ".byte 0x0f, 0x01, 0xc3"
797 #define ASM_VMX_VMPTRLD_RAX       ".byte 0x0f, 0xc7, 0x30"
798 #define ASM_VMX_VMREAD_RDX_RAX    ".byte 0x0f, 0x78, 0xd0"
799 #define ASM_VMX_VMWRITE_RAX_RDX   ".byte 0x0f, 0x79, 0xd0"
800 #define ASM_VMX_VMWRITE_RSP_RDX   ".byte 0x0f, 0x79, 0xd4"
801 #define ASM_VMX_VMXOFF            ".byte 0x0f, 0x01, 0xc4"
802 #define ASM_VMX_VMXON_RAX         ".byte 0xf3, 0x0f, 0xc7, 0x30"
803
804 #define MSR_IA32_TIME_STAMP_COUNTER             0x010
805
806 #define TSS_IOPB_BASE_OFFSET 0x66
807 #define TSS_BASE_SIZE 0x68
808 #define TSS_IOPB_SIZE (65536 / 8)
809 #define TSS_REDIRECTION_SIZE (256 / 8)
810 #define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1)
811
812 struct kvm_stats_debugfs_item {
813         const char *name;
814         int offset;
815         struct dentry *dentry;
816 };
817 extern struct kvm_stats_debugfs_item debugfs_entries[];
818
819 #endif