Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 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/list.h> |
| 11 | #include <linux/mutex.h> |
| 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/mm.h> |
| 14 | |
| 15 | #include "vmx.h" |
| 16 | #include <linux/kvm.h> |
| 17 | |
| 18 | #define CR0_PE_MASK (1ULL << 0) |
| 19 | #define CR0_TS_MASK (1ULL << 3) |
| 20 | #define CR0_NE_MASK (1ULL << 5) |
| 21 | #define CR0_WP_MASK (1ULL << 16) |
| 22 | #define CR0_NW_MASK (1ULL << 29) |
| 23 | #define CR0_CD_MASK (1ULL << 30) |
| 24 | #define CR0_PG_MASK (1ULL << 31) |
| 25 | |
| 26 | #define CR3_WPT_MASK (1ULL << 3) |
| 27 | #define CR3_PCD_MASK (1ULL << 4) |
| 28 | |
| 29 | #define CR3_RESEVED_BITS 0x07ULL |
| 30 | #define CR3_L_MODE_RESEVED_BITS (~((1ULL << 40) - 1) | 0x0fe7ULL) |
| 31 | #define CR3_FLAGS_MASK ((1ULL << 5) - 1) |
| 32 | |
| 33 | #define CR4_VME_MASK (1ULL << 0) |
| 34 | #define CR4_PSE_MASK (1ULL << 4) |
| 35 | #define CR4_PAE_MASK (1ULL << 5) |
| 36 | #define CR4_PGE_MASK (1ULL << 7) |
| 37 | #define CR4_VMXE_MASK (1ULL << 13) |
| 38 | |
| 39 | #define KVM_GUEST_CR0_MASK \ |
| 40 | (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK \ |
| 41 | | CR0_NW_MASK | CR0_CD_MASK) |
| 42 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 43 | (CR0_PG_MASK | CR0_PE_MASK | CR0_WP_MASK | CR0_NE_MASK) |
| 44 | #define KVM_GUEST_CR4_MASK \ |
| 45 | (CR4_PSE_MASK | CR4_PAE_MASK | CR4_PGE_MASK | CR4_VMXE_MASK | CR4_VME_MASK) |
| 46 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK) |
| 47 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (CR4_VMXE_MASK | CR4_PAE_MASK | CR4_VME_MASK) |
| 48 | |
| 49 | #define INVALID_PAGE (~(hpa_t)0) |
| 50 | #define UNMAPPED_GVA (~(gpa_t)0) |
| 51 | |
| 52 | #define KVM_MAX_VCPUS 1 |
| 53 | #define KVM_MEMORY_SLOTS 4 |
| 54 | #define KVM_NUM_MMU_PAGES 256 |
| 55 | |
| 56 | #define FX_IMAGE_SIZE 512 |
| 57 | #define FX_IMAGE_ALIGN 16 |
| 58 | #define FX_BUF_SIZE (2 * FX_IMAGE_SIZE + FX_IMAGE_ALIGN) |
| 59 | |
| 60 | #define DE_VECTOR 0 |
| 61 | #define DF_VECTOR 8 |
| 62 | #define TS_VECTOR 10 |
| 63 | #define NP_VECTOR 11 |
| 64 | #define SS_VECTOR 12 |
| 65 | #define GP_VECTOR 13 |
| 66 | #define PF_VECTOR 14 |
| 67 | |
| 68 | #define SELECTOR_TI_MASK (1 << 2) |
| 69 | #define SELECTOR_RPL_MASK 0x03 |
| 70 | |
| 71 | #define IOPL_SHIFT 12 |
| 72 | |
| 73 | /* |
| 74 | * Address types: |
| 75 | * |
| 76 | * gva - guest virtual address |
| 77 | * gpa - guest physical address |
| 78 | * gfn - guest frame number |
| 79 | * hva - host virtual address |
| 80 | * hpa - host physical address |
| 81 | * hfn - host frame number |
| 82 | */ |
| 83 | |
| 84 | typedef unsigned long gva_t; |
| 85 | typedef u64 gpa_t; |
| 86 | typedef unsigned long gfn_t; |
| 87 | |
| 88 | typedef unsigned long hva_t; |
| 89 | typedef u64 hpa_t; |
| 90 | typedef unsigned long hfn_t; |
| 91 | |
| 92 | struct kvm_mmu_page { |
| 93 | struct list_head link; |
| 94 | hpa_t page_hpa; |
| 95 | unsigned long slot_bitmap; /* One bit set per slot which has memory |
| 96 | * in this shadow page. |
| 97 | */ |
| 98 | int global; /* Set if all ptes in this page are global */ |
| 99 | u64 *parent_pte; |
| 100 | }; |
| 101 | |
| 102 | struct vmcs { |
| 103 | u32 revision_id; |
| 104 | u32 abort; |
| 105 | char data[0]; |
| 106 | }; |
| 107 | |
| 108 | #define vmx_msr_entry kvm_msr_entry |
| 109 | |
| 110 | struct kvm_vcpu; |
| 111 | |
| 112 | /* |
| 113 | * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level |
| 114 | * 32-bit). The kvm_mmu structure abstracts the details of the current mmu |
| 115 | * mode. |
| 116 | */ |
| 117 | struct kvm_mmu { |
| 118 | void (*new_cr3)(struct kvm_vcpu *vcpu); |
| 119 | int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err); |
| 120 | void (*inval_page)(struct kvm_vcpu *vcpu, gva_t gva); |
| 121 | void (*free)(struct kvm_vcpu *vcpu); |
| 122 | gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva); |
| 123 | hpa_t root_hpa; |
| 124 | int root_level; |
| 125 | int shadow_root_level; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame^] | 126 | |
| 127 | u64 *pae_root; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | struct kvm_guest_debug { |
| 131 | int enabled; |
| 132 | unsigned long bp[4]; |
| 133 | int singlestep; |
| 134 | }; |
| 135 | |
| 136 | enum { |
| 137 | VCPU_REGS_RAX = 0, |
| 138 | VCPU_REGS_RCX = 1, |
| 139 | VCPU_REGS_RDX = 2, |
| 140 | VCPU_REGS_RBX = 3, |
| 141 | VCPU_REGS_RSP = 4, |
| 142 | VCPU_REGS_RBP = 5, |
| 143 | VCPU_REGS_RSI = 6, |
| 144 | VCPU_REGS_RDI = 7, |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 145 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 146 | VCPU_REGS_R8 = 8, |
| 147 | VCPU_REGS_R9 = 9, |
| 148 | VCPU_REGS_R10 = 10, |
| 149 | VCPU_REGS_R11 = 11, |
| 150 | VCPU_REGS_R12 = 12, |
| 151 | VCPU_REGS_R13 = 13, |
| 152 | VCPU_REGS_R14 = 14, |
| 153 | VCPU_REGS_R15 = 15, |
| 154 | #endif |
| 155 | NR_VCPU_REGS |
| 156 | }; |
| 157 | |
| 158 | enum { |
| 159 | VCPU_SREG_CS, |
| 160 | VCPU_SREG_DS, |
| 161 | VCPU_SREG_ES, |
| 162 | VCPU_SREG_FS, |
| 163 | VCPU_SREG_GS, |
| 164 | VCPU_SREG_SS, |
| 165 | VCPU_SREG_TR, |
| 166 | VCPU_SREG_LDTR, |
| 167 | }; |
| 168 | |
| 169 | struct kvm_vcpu { |
| 170 | struct kvm *kvm; |
| 171 | union { |
| 172 | struct vmcs *vmcs; |
| 173 | struct vcpu_svm *svm; |
| 174 | }; |
| 175 | struct mutex mutex; |
| 176 | int cpu; |
| 177 | int launched; |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 178 | int interrupt_window_open; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 179 | unsigned long irq_summary; /* bit vector: 1 per word in irq_pending */ |
| 180 | #define NR_IRQ_WORDS KVM_IRQ_BITMAP_SIZE(unsigned long) |
| 181 | unsigned long irq_pending[NR_IRQ_WORDS]; |
| 182 | unsigned long regs[NR_VCPU_REGS]; /* for rsp: vcpu_load_rsp_rip() */ |
| 183 | unsigned long rip; /* needs vcpu_load_rsp_rip() */ |
| 184 | |
| 185 | unsigned long cr0; |
| 186 | unsigned long cr2; |
| 187 | unsigned long cr3; |
| 188 | unsigned long cr4; |
| 189 | unsigned long cr8; |
Avi Kivity | 1342d35 | 2007-01-05 16:36:39 -0800 | [diff] [blame] | 190 | u64 pdptrs[4]; /* pae */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 191 | u64 shadow_efer; |
| 192 | u64 apic_base; |
| 193 | int nmsrs; |
| 194 | struct vmx_msr_entry *guest_msrs; |
| 195 | struct vmx_msr_entry *host_msrs; |
| 196 | |
| 197 | struct list_head free_pages; |
| 198 | struct kvm_mmu_page page_header_buf[KVM_NUM_MMU_PAGES]; |
| 199 | struct kvm_mmu mmu; |
| 200 | |
| 201 | struct kvm_guest_debug guest_debug; |
| 202 | |
| 203 | char fx_buf[FX_BUF_SIZE]; |
| 204 | char *host_fx_image; |
| 205 | char *guest_fx_image; |
| 206 | |
| 207 | int mmio_needed; |
| 208 | int mmio_read_completed; |
| 209 | int mmio_is_write; |
| 210 | int mmio_size; |
| 211 | unsigned char mmio_data[8]; |
| 212 | gpa_t mmio_phys_addr; |
| 213 | |
| 214 | struct { |
| 215 | int active; |
| 216 | u8 save_iopl; |
| 217 | struct kvm_save_segment { |
| 218 | u16 selector; |
| 219 | unsigned long base; |
| 220 | u32 limit; |
| 221 | u32 ar; |
| 222 | } tr, es, ds, fs, gs; |
| 223 | } rmode; |
| 224 | }; |
| 225 | |
| 226 | struct kvm_memory_slot { |
| 227 | gfn_t base_gfn; |
| 228 | unsigned long npages; |
| 229 | unsigned long flags; |
| 230 | struct page **phys_mem; |
| 231 | unsigned long *dirty_bitmap; |
| 232 | }; |
| 233 | |
| 234 | struct kvm { |
| 235 | spinlock_t lock; /* protects everything except vcpus */ |
| 236 | int nmemslots; |
| 237 | struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS]; |
| 238 | struct list_head active_mmu_pages; |
| 239 | struct kvm_vcpu vcpus[KVM_MAX_VCPUS]; |
| 240 | int memory_config_version; |
| 241 | int busy; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 242 | unsigned long rmap_overflow; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | struct kvm_stat { |
| 246 | u32 pf_fixed; |
| 247 | u32 pf_guest; |
| 248 | u32 tlb_flush; |
| 249 | u32 invlpg; |
| 250 | |
| 251 | u32 exits; |
| 252 | u32 io_exits; |
| 253 | u32 mmio_exits; |
| 254 | u32 signal_exits; |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 255 | u32 irq_window_exits; |
| 256 | u32 halt_exits; |
| 257 | u32 request_irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 258 | u32 irq_exits; |
| 259 | }; |
| 260 | |
| 261 | struct descriptor_table { |
| 262 | u16 limit; |
| 263 | unsigned long base; |
| 264 | } __attribute__((packed)); |
| 265 | |
| 266 | struct kvm_arch_ops { |
| 267 | int (*cpu_has_kvm_support)(void); /* __init */ |
| 268 | int (*disabled_by_bios)(void); /* __init */ |
| 269 | void (*hardware_enable)(void *dummy); /* __init */ |
| 270 | void (*hardware_disable)(void *dummy); |
| 271 | int (*hardware_setup)(void); /* __init */ |
| 272 | void (*hardware_unsetup)(void); /* __exit */ |
| 273 | |
| 274 | int (*vcpu_create)(struct kvm_vcpu *vcpu); |
| 275 | void (*vcpu_free)(struct kvm_vcpu *vcpu); |
| 276 | |
| 277 | struct kvm_vcpu *(*vcpu_load)(struct kvm_vcpu *vcpu); |
| 278 | void (*vcpu_put)(struct kvm_vcpu *vcpu); |
| 279 | |
| 280 | int (*set_guest_debug)(struct kvm_vcpu *vcpu, |
| 281 | struct kvm_debug_guest *dbg); |
| 282 | int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata); |
| 283 | int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data); |
| 284 | u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg); |
| 285 | void (*get_segment)(struct kvm_vcpu *vcpu, |
| 286 | struct kvm_segment *var, int seg); |
| 287 | void (*set_segment)(struct kvm_vcpu *vcpu, |
| 288 | struct kvm_segment *var, int seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 289 | void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l); |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 290 | void (*decache_cr0_cr4_guest_bits)(struct kvm_vcpu *vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 291 | void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 292 | void (*set_cr0_no_modeswitch)(struct kvm_vcpu *vcpu, |
| 293 | unsigned long cr0); |
| 294 | void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3); |
| 295 | void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4); |
| 296 | void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer); |
| 297 | void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); |
| 298 | void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); |
| 299 | void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); |
| 300 | void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); |
| 301 | unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr); |
| 302 | void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value, |
| 303 | int *exception); |
| 304 | void (*cache_regs)(struct kvm_vcpu *vcpu); |
| 305 | void (*decache_regs)(struct kvm_vcpu *vcpu); |
| 306 | unsigned long (*get_rflags)(struct kvm_vcpu *vcpu); |
| 307 | void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags); |
| 308 | |
| 309 | void (*invlpg)(struct kvm_vcpu *vcpu, gva_t addr); |
| 310 | void (*tlb_flush)(struct kvm_vcpu *vcpu); |
| 311 | void (*inject_page_fault)(struct kvm_vcpu *vcpu, |
| 312 | unsigned long addr, u32 err_code); |
| 313 | |
| 314 | void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code); |
| 315 | |
| 316 | int (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run); |
| 317 | int (*vcpu_setup)(struct kvm_vcpu *vcpu); |
| 318 | void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu); |
| 319 | }; |
| 320 | |
| 321 | extern struct kvm_stat kvm_stat; |
| 322 | extern struct kvm_arch_ops *kvm_arch_ops; |
| 323 | |
| 324 | #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt) |
| 325 | #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt) |
| 326 | |
| 327 | int kvm_init_arch(struct kvm_arch_ops *ops, struct module *module); |
| 328 | void kvm_exit_arch(void); |
| 329 | |
| 330 | void kvm_mmu_destroy(struct kvm_vcpu *vcpu); |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 331 | int kvm_mmu_create(struct kvm_vcpu *vcpu); |
| 332 | int kvm_mmu_setup(struct kvm_vcpu *vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 333 | |
| 334 | int kvm_mmu_reset_context(struct kvm_vcpu *vcpu); |
| 335 | void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot); |
| 336 | |
| 337 | hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa); |
| 338 | #define HPA_MSB ((sizeof(hpa_t) * 8) - 1) |
| 339 | #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB) |
| 340 | static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; } |
| 341 | hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva); |
| 342 | |
| 343 | void kvm_emulator_want_group7_invlpg(void); |
| 344 | |
| 345 | extern hpa_t bad_page_address; |
| 346 | |
| 347 | static inline struct page *gfn_to_page(struct kvm_memory_slot *slot, gfn_t gfn) |
| 348 | { |
| 349 | return slot->phys_mem[gfn - slot->base_gfn]; |
| 350 | } |
| 351 | |
| 352 | struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn); |
| 353 | void mark_page_dirty(struct kvm *kvm, gfn_t gfn); |
| 354 | |
| 355 | enum emulation_result { |
| 356 | EMULATE_DONE, /* no further processing */ |
| 357 | EMULATE_DO_MMIO, /* kvm_run filled with mmio request */ |
| 358 | EMULATE_FAIL, /* can't emulate this instruction */ |
| 359 | }; |
| 360 | |
| 361 | int emulate_instruction(struct kvm_vcpu *vcpu, struct kvm_run *run, |
| 362 | unsigned long cr2, u16 error_code); |
| 363 | void realmode_lgdt(struct kvm_vcpu *vcpu, u16 size, unsigned long address); |
| 364 | void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address); |
| 365 | void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw, |
| 366 | unsigned long *rflags); |
| 367 | |
| 368 | unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr); |
| 369 | void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value, |
| 370 | unsigned long *rflags); |
| 371 | |
| 372 | struct x86_emulate_ctxt; |
| 373 | |
| 374 | int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address); |
| 375 | int emulate_clts(struct kvm_vcpu *vcpu); |
| 376 | int emulator_get_dr(struct x86_emulate_ctxt* ctxt, int dr, |
| 377 | unsigned long *dest); |
| 378 | int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 379 | unsigned long value); |
| 380 | |
| 381 | void set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 382 | void set_cr3(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 383 | void set_cr4(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 384 | void set_cr8(struct kvm_vcpu *vcpu, unsigned long cr0); |
| 385 | void lmsw(struct kvm_vcpu *vcpu, unsigned long msw); |
| 386 | |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 387 | int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata); |
| 388 | int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 389 | |
| 390 | void fx_init(struct kvm_vcpu *vcpu); |
| 391 | |
| 392 | void load_msrs(struct vmx_msr_entry *e, int n); |
| 393 | void save_msrs(struct vmx_msr_entry *e, int n); |
| 394 | void kvm_resched(struct kvm_vcpu *vcpu); |
| 395 | |
| 396 | int kvm_read_guest(struct kvm_vcpu *vcpu, |
| 397 | gva_t addr, |
| 398 | unsigned long size, |
| 399 | void *dest); |
| 400 | |
| 401 | int kvm_write_guest(struct kvm_vcpu *vcpu, |
| 402 | gva_t addr, |
| 403 | unsigned long size, |
| 404 | void *data); |
| 405 | |
| 406 | unsigned long segment_base(u16 selector); |
| 407 | |
| 408 | static inline struct page *_gfn_to_page(struct kvm *kvm, gfn_t gfn) |
| 409 | { |
| 410 | struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn); |
| 411 | return (slot) ? slot->phys_mem[gfn - slot->base_gfn] : NULL; |
| 412 | } |
| 413 | |
Avi Kivity | a9058ec | 2006-12-29 16:49:37 -0800 | [diff] [blame] | 414 | static inline int is_long_mode(struct kvm_vcpu *vcpu) |
| 415 | { |
| 416 | #ifdef CONFIG_X86_64 |
| 417 | return vcpu->shadow_efer & EFER_LME; |
| 418 | #else |
| 419 | return 0; |
| 420 | #endif |
| 421 | } |
| 422 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 423 | static inline int is_pae(struct kvm_vcpu *vcpu) |
| 424 | { |
| 425 | return vcpu->cr4 & CR4_PAE_MASK; |
| 426 | } |
| 427 | |
| 428 | static inline int is_pse(struct kvm_vcpu *vcpu) |
| 429 | { |
| 430 | return vcpu->cr4 & CR4_PSE_MASK; |
| 431 | } |
| 432 | |
| 433 | static inline int is_paging(struct kvm_vcpu *vcpu) |
| 434 | { |
| 435 | return vcpu->cr0 & CR0_PG_MASK; |
| 436 | } |
| 437 | |
| 438 | static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot) |
| 439 | { |
| 440 | return slot - kvm->memslots; |
| 441 | } |
| 442 | |
| 443 | static inline struct kvm_mmu_page *page_header(hpa_t shadow_page) |
| 444 | { |
| 445 | struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT); |
| 446 | |
| 447 | return (struct kvm_mmu_page *)page->private; |
| 448 | } |
| 449 | |
| 450 | static inline u16 read_fs(void) |
| 451 | { |
| 452 | u16 seg; |
| 453 | asm ("mov %%fs, %0" : "=g"(seg)); |
| 454 | return seg; |
| 455 | } |
| 456 | |
| 457 | static inline u16 read_gs(void) |
| 458 | { |
| 459 | u16 seg; |
| 460 | asm ("mov %%gs, %0" : "=g"(seg)); |
| 461 | return seg; |
| 462 | } |
| 463 | |
| 464 | static inline u16 read_ldt(void) |
| 465 | { |
| 466 | u16 ldt; |
| 467 | asm ("sldt %0" : "=g"(ldt)); |
| 468 | return ldt; |
| 469 | } |
| 470 | |
| 471 | static inline void load_fs(u16 sel) |
| 472 | { |
| 473 | asm ("mov %0, %%fs" : : "rm"(sel)); |
| 474 | } |
| 475 | |
| 476 | static inline void load_gs(u16 sel) |
| 477 | { |
| 478 | asm ("mov %0, %%gs" : : "rm"(sel)); |
| 479 | } |
| 480 | |
| 481 | #ifndef load_ldt |
| 482 | static inline void load_ldt(u16 sel) |
| 483 | { |
| 484 | asm ("lldt %0" : : "g"(sel)); |
| 485 | } |
| 486 | #endif |
| 487 | |
| 488 | static inline void get_idt(struct descriptor_table *table) |
| 489 | { |
| 490 | asm ("sidt %0" : "=m"(*table)); |
| 491 | } |
| 492 | |
| 493 | static inline void get_gdt(struct descriptor_table *table) |
| 494 | { |
| 495 | asm ("sgdt %0" : "=m"(*table)); |
| 496 | } |
| 497 | |
| 498 | static inline unsigned long read_tr_base(void) |
| 499 | { |
| 500 | u16 tr; |
| 501 | asm ("str %0" : "=g"(tr)); |
| 502 | return segment_base(tr); |
| 503 | } |
| 504 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 505 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 506 | static inline unsigned long read_msr(unsigned long msr) |
| 507 | { |
| 508 | u64 value; |
| 509 | |
| 510 | rdmsrl(msr, value); |
| 511 | return value; |
| 512 | } |
| 513 | #endif |
| 514 | |
| 515 | static inline void fx_save(void *image) |
| 516 | { |
| 517 | asm ("fxsave (%0)":: "r" (image)); |
| 518 | } |
| 519 | |
| 520 | static inline void fx_restore(void *image) |
| 521 | { |
| 522 | asm ("fxrstor (%0)":: "r" (image)); |
| 523 | } |
| 524 | |
| 525 | static inline void fpu_init(void) |
| 526 | { |
| 527 | asm ("finit"); |
| 528 | } |
| 529 | |
| 530 | static inline u32 get_rdx_init_val(void) |
| 531 | { |
| 532 | return 0x600; /* P6 family */ |
| 533 | } |
| 534 | |
| 535 | #define ASM_VMX_VMCLEAR_RAX ".byte 0x66, 0x0f, 0xc7, 0x30" |
| 536 | #define ASM_VMX_VMLAUNCH ".byte 0x0f, 0x01, 0xc2" |
| 537 | #define ASM_VMX_VMRESUME ".byte 0x0f, 0x01, 0xc3" |
| 538 | #define ASM_VMX_VMPTRLD_RAX ".byte 0x0f, 0xc7, 0x30" |
| 539 | #define ASM_VMX_VMREAD_RDX_RAX ".byte 0x0f, 0x78, 0xd0" |
| 540 | #define ASM_VMX_VMWRITE_RAX_RDX ".byte 0x0f, 0x79, 0xd0" |
| 541 | #define ASM_VMX_VMWRITE_RSP_RDX ".byte 0x0f, 0x79, 0xd4" |
| 542 | #define ASM_VMX_VMXOFF ".byte 0x0f, 0x01, 0xc4" |
| 543 | #define ASM_VMX_VMXON_RAX ".byte 0xf3, 0x0f, 0xc7, 0x30" |
| 544 | |
| 545 | #define MSR_IA32_TIME_STAMP_COUNTER 0x010 |
| 546 | |
| 547 | #define TSS_IOPB_BASE_OFFSET 0x66 |
| 548 | #define TSS_BASE_SIZE 0x68 |
| 549 | #define TSS_IOPB_SIZE (65536 / 8) |
| 550 | #define TSS_REDIRECTION_SIZE (256 / 8) |
| 551 | #define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1) |
| 552 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 553 | #endif |