xref: /qemu/target/i386/kvm/kvm_i386.h (revision 513823e7521a09ed7ad1e32e6454bac3b2cbf52d)
1 /*
2  * QEMU KVM support -- x86 specific functions.
3  *
4  * Copyright (c) 2012 Linaro Limited
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  *
9  */
10 
11 #ifndef QEMU_KVM_I386_H
12 #define QEMU_KVM_I386_H
13 
14 #include "system/kvm.h"
15 
16 /* always false if !CONFIG_KVM */
17 #define kvm_pit_in_kernel() \
18     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
19 #define kvm_pic_in_kernel()  \
20     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
21 #define kvm_ioapic_in_kernel() \
22     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
23 
24 bool kvm_has_smm(void);
25 bool kvm_enable_x2apic(void);
26 bool kvm_hv_vpindex_settable(void);
27 bool kvm_enable_hypercall(uint64_t enable_mask);
28 
29 bool kvm_enable_sgx_provisioning(KVMState *s);
30 bool kvm_hyperv_expand_features(X86CPU *cpu, Error **errp);
31 
32 int kvm_get_vm_type(MachineState *ms);
33 void kvm_arch_reset_vcpu(X86CPU *cs);
34 void kvm_arch_after_reset_vcpu(X86CPU *cpu);
35 void kvm_arch_do_init_vcpu(X86CPU *cs);
36 uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
37                                       uint32_t index, int reg);
38 uint64_t kvm_arch_get_supported_msr_feature(KVMState *s, uint32_t index);
39 
40 void kvm_set_max_apic_id(uint32_t max_apic_id);
41 void kvm_request_xsave_components(X86CPU *cpu, uint64_t mask);
42 
43 #ifdef CONFIG_KVM
44 
45 bool kvm_is_vm_type_supported(int type);
46 bool kvm_has_adjust_clock_stable(void);
47 bool kvm_has_exception_payload(void);
48 void kvm_synchronize_all_tsc(void);
49 
50 void kvm_get_apic_state(DeviceState *d, struct kvm_lapic_state *kapic);
51 void kvm_put_apicbase(X86CPU *cpu, uint64_t value);
52 
53 bool kvm_has_x2apic_api(void);
54 bool kvm_has_waitpkg(void);
55 
56 uint64_t kvm_swizzle_msi_ext_dest_id(uint64_t address);
57 void kvm_update_msi_routes_all(void *private, bool global,
58                                uint32_t index, uint32_t mask);
59 
60 #endif /* CONFIG_KVM */
61 
62 void kvm_pc_setup_irq_routing(bool pci_enabled);
63 
64 #endif
65