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 /drivers/kvm/x86.h | |
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>
Diffstat (limited to 'drivers/kvm/x86.h')
-rw-r--r-- | drivers/kvm/x86.h | 67 |
1 files changed, 67 insertions, 0 deletions
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); |