mirror of https://github.com/xemu-project/xemu.git
kvm: vmxcap: Enhance with latest features
Based on SDM from May 2019. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e533f45d7d
commit
fc7d2b451e
|
@ -178,7 +178,11 @@ controls = [
|
||||||
19: 'Conceal non-root operation from PT',
|
19: 'Conceal non-root operation from PT',
|
||||||
20: 'Enable XSAVES/XRSTORS',
|
20: 'Enable XSAVES/XRSTORS',
|
||||||
22: 'Mode-based execute control (XS/XU)',
|
22: 'Mode-based execute control (XS/XU)',
|
||||||
|
23: 'Sub-page write permissions',
|
||||||
|
24: 'GPA translation for PT',
|
||||||
25: 'TSC scaling',
|
25: 'TSC scaling',
|
||||||
|
26: 'User wait and pause',
|
||||||
|
28: 'ENCLV exiting',
|
||||||
},
|
},
|
||||||
cap_msr = MSR_IA32_VMX_PROCBASED_CTLS2,
|
cap_msr = MSR_IA32_VMX_PROCBASED_CTLS2,
|
||||||
),
|
),
|
||||||
|
@ -197,6 +201,7 @@ controls = [
|
||||||
22: 'Save VMX-preemption timer value',
|
22: 'Save VMX-preemption timer value',
|
||||||
23: 'Clear IA32_BNDCFGS',
|
23: 'Clear IA32_BNDCFGS',
|
||||||
24: 'Conceal VM exits from PT',
|
24: 'Conceal VM exits from PT',
|
||||||
|
25: 'Clear IA32_RTIT_CTL',
|
||||||
},
|
},
|
||||||
cap_msr = MSR_IA32_VMX_EXIT_CTLS,
|
cap_msr = MSR_IA32_VMX_EXIT_CTLS,
|
||||||
true_cap_msr = MSR_IA32_VMX_TRUE_EXIT_CTLS,
|
true_cap_msr = MSR_IA32_VMX_TRUE_EXIT_CTLS,
|
||||||
|
@ -214,6 +219,7 @@ controls = [
|
||||||
15: 'Load IA32_EFER',
|
15: 'Load IA32_EFER',
|
||||||
16: 'Load IA32_BNDCFGS',
|
16: 'Load IA32_BNDCFGS',
|
||||||
17: 'Conceal VM entries from PT',
|
17: 'Conceal VM entries from PT',
|
||||||
|
18: 'Load IA32_RTIT_CTL',
|
||||||
},
|
},
|
||||||
cap_msr = MSR_IA32_VMX_ENTRY_CTLS,
|
cap_msr = MSR_IA32_VMX_ENTRY_CTLS,
|
||||||
true_cap_msr = MSR_IA32_VMX_TRUE_ENTRY_CTLS,
|
true_cap_msr = MSR_IA32_VMX_TRUE_ENTRY_CTLS,
|
||||||
|
@ -227,6 +233,7 @@ controls = [
|
||||||
6: 'HLT activity state',
|
6: 'HLT activity state',
|
||||||
7: 'Shutdown activity state',
|
7: 'Shutdown activity state',
|
||||||
8: 'Wait-for-SIPI activity state',
|
8: 'Wait-for-SIPI activity state',
|
||||||
|
14: 'PT in VMX operation',
|
||||||
15: 'IA32_SMBASE support',
|
15: 'IA32_SMBASE support',
|
||||||
(16,24): 'Number of CR3-target values',
|
(16,24): 'Number of CR3-target values',
|
||||||
(25,27): 'MSR-load/store count recommendation',
|
(25,27): 'MSR-load/store count recommendation',
|
||||||
|
@ -249,6 +256,7 @@ controls = [
|
||||||
17: '1GB EPT pages',
|
17: '1GB EPT pages',
|
||||||
20: 'INVEPT supported',
|
20: 'INVEPT supported',
|
||||||
21: 'EPT accessed and dirty flags',
|
21: 'EPT accessed and dirty flags',
|
||||||
|
22: 'Advanced VM-exit information for EPT violations',
|
||||||
25: 'Single-context INVEPT',
|
25: 'Single-context INVEPT',
|
||||||
26: 'All-context INVEPT',
|
26: 'All-context INVEPT',
|
||||||
32: 'INVVPID supported',
|
32: 'INVVPID supported',
|
||||||
|
|
Loading…
Reference in New Issue