diff options
author | Zhang Xiantao <xiantao.zhang@intel.com> | 2007-11-19 01:40:47 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 10:53:05 -0500 |
commit | ea4a5ff80c24a25034a0c0468f6d1f47d1782076 (patch) | |
tree | 3bc4e67dca3c45d670f7be3b16ab94ba14d26f5e | |
parent | cd6e8f87efb74d91100d84894021dd12fea1a8a5 (diff) |
KVM: Portability: Move struct kvm_x86_ops definition to x86.h
Signed-off-by: Zhang Xiantao <xiantao.zhang@intel.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
-rw-r--r-- | drivers/kvm/kvm.h | 69 | ||||
-rw-r--r-- | drivers/kvm/x86.h | 67 |
2 files changed, 67 insertions, 69 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index aceecf4e4f2d..e4e1ff7e6f9e 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h | |||
@@ -386,75 +386,6 @@ struct descriptor_table { | |||
386 | unsigned long base; | 386 | unsigned long base; |
387 | } __attribute__((packed)); | 387 | } __attribute__((packed)); |
388 | 388 | ||
389 | struct kvm_x86_ops { | ||
390 | int (*cpu_has_kvm_support)(void); /* __init */ | ||
391 | int (*disabled_by_bios)(void); /* __init */ | ||
392 | void (*hardware_enable)(void *dummy); /* __init */ | ||
393 | void (*hardware_disable)(void *dummy); | ||
394 | void (*check_processor_compatibility)(void *rtn); | ||
395 | int (*hardware_setup)(void); /* __init */ | ||
396 | void (*hardware_unsetup)(void); /* __exit */ | ||
397 | |||
398 | /* Create, but do not attach this VCPU */ | ||
399 | struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id); | ||
400 | void (*vcpu_free)(struct kvm_vcpu *vcpu); | ||
401 | int (*vcpu_reset)(struct kvm_vcpu *vcpu); | ||
402 | |||
403 | void (*prepare_guest_switch)(struct kvm_vcpu *vcpu); | ||
404 | void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu); | ||
405 | void (*vcpu_put)(struct kvm_vcpu *vcpu); | ||
406 | void (*vcpu_decache)(struct kvm_vcpu *vcpu); | ||
407 | |||
408 | int (*set_guest_debug)(struct kvm_vcpu *vcpu, | ||
409 | struct kvm_debug_guest *dbg); | ||
410 | void (*guest_debug_pre)(struct kvm_vcpu *vcpu); | ||
411 | int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata); | ||
412 | int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data); | ||
413 | u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg); | ||
414 | void (*get_segment)(struct kvm_vcpu *vcpu, | ||
415 | struct kvm_segment *var, int seg); | ||
416 | void (*set_segment)(struct kvm_vcpu *vcpu, | ||
417 | struct kvm_segment *var, int seg); | ||
418 | void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l); | ||
419 | void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu); | ||
420 | void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0); | ||
421 | void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3); | ||
422 | void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4); | ||
423 | void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer); | ||
424 | void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
425 | void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
426 | void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
427 | void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
428 | unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr); | ||
429 | void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value, | ||
430 | int *exception); | ||
431 | void (*cache_regs)(struct kvm_vcpu *vcpu); | ||
432 | void (*decache_regs)(struct kvm_vcpu *vcpu); | ||
433 | unsigned long (*get_rflags)(struct kvm_vcpu *vcpu); | ||
434 | void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags); | ||
435 | |||
436 | void (*tlb_flush)(struct kvm_vcpu *vcpu); | ||
437 | void (*inject_page_fault)(struct kvm_vcpu *vcpu, | ||
438 | unsigned long addr, u32 err_code); | ||
439 | |||
440 | void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code); | ||
441 | |||
442 | void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run); | ||
443 | int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu); | ||
444 | void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu); | ||
445 | void (*patch_hypercall)(struct kvm_vcpu *vcpu, | ||
446 | unsigned char *hypercall_addr); | ||
447 | int (*get_irq)(struct kvm_vcpu *vcpu); | ||
448 | void (*set_irq)(struct kvm_vcpu *vcpu, int vec); | ||
449 | void (*inject_pending_irq)(struct kvm_vcpu *vcpu); | ||
450 | void (*inject_pending_vectors)(struct kvm_vcpu *vcpu, | ||
451 | struct kvm_run *run); | ||
452 | |||
453 | int (*set_tss_addr)(struct kvm *kvm, unsigned int addr); | ||
454 | }; | ||
455 | |||
456 | extern struct kvm_x86_ops *kvm_x86_ops; | ||
457 | |||
458 | /* The guest did something we don't support. */ | 389 | /* The guest did something we don't support. */ |
459 | #define pr_unimpl(vcpu, fmt, ...) \ | 390 | #define pr_unimpl(vcpu, fmt, ...) \ |
460 | do { \ | 391 | do { \ |
diff --git a/drivers/kvm/x86.h b/drivers/kvm/x86.h index ec1d66940c80..77b4092c0542 100644 --- a/drivers/kvm/x86.h +++ b/drivers/kvm/x86.h | |||
@@ -121,6 +121,73 @@ struct kvm_vcpu { | |||
121 | struct x86_emulate_ctxt emulate_ctxt; | 121 | struct x86_emulate_ctxt emulate_ctxt; |
122 | }; | 122 | }; |
123 | 123 | ||
124 | struct kvm_x86_ops { | ||
125 | int (*cpu_has_kvm_support)(void); /* __init */ | ||
126 | int (*disabled_by_bios)(void); /* __init */ | ||
127 | void (*hardware_enable)(void *dummy); /* __init */ | ||
128 | void (*hardware_disable)(void *dummy); | ||
129 | void (*check_processor_compatibility)(void *rtn); | ||
130 | int (*hardware_setup)(void); /* __init */ | ||
131 | void (*hardware_unsetup)(void); /* __exit */ | ||
132 | |||
133 | /* Create, but do not attach this VCPU */ | ||
134 | struct kvm_vcpu *(*vcpu_create)(struct kvm *kvm, unsigned id); | ||
135 | void (*vcpu_free)(struct kvm_vcpu *vcpu); | ||
136 | int (*vcpu_reset)(struct kvm_vcpu *vcpu); | ||
137 | |||
138 | void (*prepare_guest_switch)(struct kvm_vcpu *vcpu); | ||
139 | void (*vcpu_load)(struct kvm_vcpu *vcpu, int cpu); | ||
140 | void (*vcpu_put)(struct kvm_vcpu *vcpu); | ||
141 | void (*vcpu_decache)(struct kvm_vcpu *vcpu); | ||
142 | |||
143 | int (*set_guest_debug)(struct kvm_vcpu *vcpu, | ||
144 | struct kvm_debug_guest *dbg); | ||
145 | void (*guest_debug_pre)(struct kvm_vcpu *vcpu); | ||
146 | int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata); | ||
147 | int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data); | ||
148 | u64 (*get_segment_base)(struct kvm_vcpu *vcpu, int seg); | ||
149 | void (*get_segment)(struct kvm_vcpu *vcpu, | ||
150 | struct kvm_segment *var, int seg); | ||
151 | void (*set_segment)(struct kvm_vcpu *vcpu, | ||
152 | struct kvm_segment *var, int seg); | ||
153 | void (*get_cs_db_l_bits)(struct kvm_vcpu *vcpu, int *db, int *l); | ||
154 | void (*decache_cr4_guest_bits)(struct kvm_vcpu *vcpu); | ||
155 | void (*set_cr0)(struct kvm_vcpu *vcpu, unsigned long cr0); | ||
156 | void (*set_cr3)(struct kvm_vcpu *vcpu, unsigned long cr3); | ||
157 | void (*set_cr4)(struct kvm_vcpu *vcpu, unsigned long cr4); | ||
158 | void (*set_efer)(struct kvm_vcpu *vcpu, u64 efer); | ||
159 | void (*get_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
160 | void (*set_idt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
161 | void (*get_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
162 | void (*set_gdt)(struct kvm_vcpu *vcpu, struct descriptor_table *dt); | ||
163 | unsigned long (*get_dr)(struct kvm_vcpu *vcpu, int dr); | ||
164 | void (*set_dr)(struct kvm_vcpu *vcpu, int dr, unsigned long value, | ||
165 | int *exception); | ||
166 | void (*cache_regs)(struct kvm_vcpu *vcpu); | ||
167 | void (*decache_regs)(struct kvm_vcpu *vcpu); | ||
168 | unsigned long (*get_rflags)(struct kvm_vcpu *vcpu); | ||
169 | void (*set_rflags)(struct kvm_vcpu *vcpu, unsigned long rflags); | ||
170 | |||
171 | void (*tlb_flush)(struct kvm_vcpu *vcpu); | ||
172 | void (*inject_page_fault)(struct kvm_vcpu *vcpu, | ||
173 | unsigned long addr, u32 err_code); | ||
174 | |||
175 | void (*inject_gp)(struct kvm_vcpu *vcpu, unsigned err_code); | ||
176 | |||
177 | void (*run)(struct kvm_vcpu *vcpu, struct kvm_run *run); | ||
178 | int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu); | ||
179 | void (*skip_emulated_instruction)(struct kvm_vcpu *vcpu); | ||
180 | void (*patch_hypercall)(struct kvm_vcpu *vcpu, | ||
181 | unsigned char *hypercall_addr); | ||
182 | int (*get_irq)(struct kvm_vcpu *vcpu); | ||
183 | void (*set_irq)(struct kvm_vcpu *vcpu, int vec); | ||
184 | void (*inject_pending_irq)(struct kvm_vcpu *vcpu); | ||
185 | void (*inject_pending_vectors)(struct kvm_vcpu *vcpu, | ||
186 | struct kvm_run *run); | ||
187 | |||
188 | int (*set_tss_addr)(struct kvm *kvm, unsigned int addr); | ||
189 | }; | ||
190 | |||
124 | extern struct kvm_x86_ops *kvm_x86_ops; | 191 | extern struct kvm_x86_ops *kvm_x86_ops; |
125 | 192 | ||
126 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code); | 193 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, u32 error_code); |