mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging
* qemu-kvm/uq/master: virtio/vhost: Add support for KVM in-kernel MSI injection msix: Add msix_nr_vectors_allocated kvm: Enable use of kvm_irqchip_in_kernel in hwlib code kvm: Introduce kvm_irqchip_add/remove_irqfd kvm: Make kvm_irqchip_commit_routes an internal service kvm: Publicize kvm_irqchip_release_virq kvm: Introduce kvm_irqchip_add_msi_route kvm: Rename kvm_irqchip_add_route to kvm_irqchip_add_irq_route msix: Introduce vector notifiers msix: Invoke msix_handle_mask_update on msix_mask_all msix: Factor out msix_get_message kvm: update vmxcap for EPT A/D, INVPCID, RDRAND, VMFUNC kvm: Enable in-kernel irqchip support by default kvm: Add support for direct MSI injections kvm: Update kernel headers kvm: x86: Wire up MSI support for in-kernel irqchip pc: Enable MSI support at APIC level kvm: Introduce basic MSI support for in-kernel irqchips Introduce MSIMessage structure kvm: Refactor KVMState::max_gsi to gsi_count
This commit is contained in:
commit
74f4d2279b
18 changed files with 624 additions and 52 deletions
|
@ -22,6 +22,7 @@ MSR_IA32_VMX_TRUE_PINBASED_CTLS = 0x48D
|
|||
MSR_IA32_VMX_TRUE_PROCBASED_CTLS = 0x48E
|
||||
MSR_IA32_VMX_TRUE_EXIT_CTLS = 0x48F
|
||||
MSR_IA32_VMX_TRUE_ENTRY_CTLS = 0x490
|
||||
MSR_IA32_VMX_VMFUNC = 0x491
|
||||
|
||||
class msr(object):
|
||||
def __init__(self):
|
||||
|
@ -147,6 +148,9 @@ controls = [
|
|||
6: 'WBINVD exiting',
|
||||
7: 'Unrestricted guest',
|
||||
10: 'PAUSE-loop exiting',
|
||||
11: 'RDRAND exiting',
|
||||
12: 'Enable INVPCID',
|
||||
13: 'Enable VM functions',
|
||||
},
|
||||
cap_msr = MSR_IA32_VMX_PROCBASED_CTLS2,
|
||||
),
|
||||
|
@ -193,6 +197,7 @@ controls = [
|
|||
8: 'Wait-for-SIPI activity state',
|
||||
(16,24): 'Number of CR3-target values',
|
||||
(25,27): 'MSR-load/store count recommenation',
|
||||
28: 'IA32_SMM_MONITOR_CTL[2] can be set to 1',
|
||||
(32,62): 'MSEG revision identifier',
|
||||
},
|
||||
msr = MSR_IA32_VMX_MISC_CTLS,
|
||||
|
@ -208,6 +213,7 @@ controls = [
|
|||
16: '2MB EPT pages',
|
||||
17: '1GB EPT pages',
|
||||
20: 'INVEPT supported',
|
||||
21: 'EPT accessed and dirty flags',
|
||||
25: 'Single-context INVEPT',
|
||||
26: 'All-context INVEPT',
|
||||
32: 'INVVPID supported',
|
||||
|
@ -218,6 +224,13 @@ controls = [
|
|||
},
|
||||
msr = MSR_IA32_VMX_EPT_VPID_CAP,
|
||||
),
|
||||
Misc(
|
||||
name = 'VM Functions',
|
||||
bits = {
|
||||
0: 'EPTP Switching',
|
||||
},
|
||||
msr = MSR_IA32_VMX_VMFUNC,
|
||||
),
|
||||
]
|
||||
|
||||
for c in controls:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue