3 # tool for querying VMX capabilities
5 # Copyright 2009-2010 Red Hat, Inc.
8 # Avi Kivity <avi@redhat.com>
10 # This work is licensed under the terms of the GNU GPL, version 2. See
11 # the COPYING file in the top-level directory.
13 MSR_IA32_VMX_BASIC
= 0x480
14 MSR_IA32_VMX_PINBASED_CTLS
= 0x481
15 MSR_IA32_VMX_PROCBASED_CTLS
= 0x482
16 MSR_IA32_VMX_EXIT_CTLS
= 0x483
17 MSR_IA32_VMX_ENTRY_CTLS
= 0x484
18 MSR_IA32_VMX_MISC_CTLS
= 0x485
19 MSR_IA32_VMX_PROCBASED_CTLS2
= 0x48B
20 MSR_IA32_VMX_EPT_VPID_CAP
= 0x48C
21 MSR_IA32_VMX_TRUE_PINBASED_CTLS
= 0x48D
22 MSR_IA32_VMX_TRUE_PROCBASED_CTLS
= 0x48E
23 MSR_IA32_VMX_TRUE_EXIT_CTLS
= 0x48F
24 MSR_IA32_VMX_TRUE_ENTRY_CTLS
= 0x490
25 MSR_IA32_VMX_VMFUNC
= 0x491
30 self
.f
= open('/dev/cpu/0/msr', 'r', 0)
32 self
.f
= open('/dev/msr0', 'r', 0)
33 def read(self
, index
, default
= None):
37 return struct
.unpack('Q', self
.f
.read(8))[0]
41 class Control(object):
42 def __init__(self
, name
, bits
, cap_msr
, true_cap_msr
= None):
45 self
.cap_msr
= cap_msr
46 self
.true_cap_msr
= true_cap_msr
50 return (val
& 0xffffffff, val
>> 32)
53 mbz
, mb1
= self
.read2(self
.cap_msr
)
56 tmbz
, tmb1
= self
.read2(self
.true_cap_msr
)
57 for bit
in sorted(self
.bits
.keys()):
58 zero
= not (mbz
& (1 << bit
))
59 one
= mb1
& (1 << bit
)
60 true_zero
= not (tmbz
& (1 << bit
))
61 true_one
= tmb1
& (1 << bit
)
63 if (self
.true_cap_msr
and true_zero
and true_one
64 and one
and not zero
):
66 elif zero
and not one
:
68 elif one
and not zero
:
72 print ' %-40s %s' % (self
.bits
[bit
], s
)
75 def __init__(self
, name
, bits
, msr
):
81 value
= msr().read(self
.msr
, 0)
82 print ' Hex: 0x%x' % (value
)
84 if type(key
) is tuple:
88 for bits
in sorted(self
.bits
.keys(), key
= first_bit
):
89 if type(bits
) is tuple:
95 return { True: 'yes', False: 'no' }[x
]
96 v
= (value
>> lo
) & ((1 << (hi
- lo
+ 1)) - 1)
97 print ' %-40s %s' % (self
.bits
[bits
], fmt(v
))
101 name
= 'Basic VMX Information',
104 (32,44): 'VMCS size',
105 48: 'VMCS restricted to 32 bit addresses',
106 49: 'Dual-monitor support',
107 (50, 53): 'VMCS memory type',
108 54: 'INS/OUTS instruction information',
109 55: 'IA32_VMX_TRUE_*_CTLS support',
111 msr
= MSR_IA32_VMX_BASIC
,
114 name
= 'pin-based controls',
116 0: 'External interrupt exiting',
119 6: 'Activate VMX-preemption timer',
120 7: 'Process posted interrupts',
122 cap_msr
= MSR_IA32_VMX_PINBASED_CTLS
,
123 true_cap_msr
= MSR_IA32_VMX_TRUE_PINBASED_CTLS
,
127 name
= 'primary processor-based controls',
129 2: 'Interrupt window exiting',
130 3: 'Use TSC offsetting',
136 15: 'CR3-load exiting',
137 16: 'CR3-store exiting',
138 19: 'CR8-load exiting',
139 20: 'CR8-store exiting',
140 21: 'Use TPR shadow',
141 22: 'NMI-window exiting',
142 23: 'MOV-DR exiting',
143 24: 'Unconditional I/O exiting',
144 25: 'Use I/O bitmaps',
145 27: 'Monitor trap flag',
146 28: 'Use MSR bitmaps',
147 29: 'MONITOR exiting',
149 31: 'Activate secondary control',
151 cap_msr
= MSR_IA32_VMX_PROCBASED_CTLS
,
152 true_cap_msr
= MSR_IA32_VMX_TRUE_PROCBASED_CTLS
,
156 name
= 'secondary processor-based controls',
158 0: 'Virtualize APIC accesses',
160 2: 'Descriptor-table exiting',
162 4: 'Virtualize x2APIC mode',
165 7: 'Unrestricted guest',
166 8: 'APIC register emulation',
167 9: 'Virtual interrupt delivery',
168 10: 'PAUSE-loop exiting',
169 11: 'RDRAND exiting',
170 12: 'Enable INVPCID',
171 13: 'Enable VM functions',
172 14: 'VMCS shadowing',
173 16: 'RDSEED exiting',
174 18: 'EPT-violation #VE',
175 20: 'Enable XSAVES/XRSTORS',
178 cap_msr
= MSR_IA32_VMX_PROCBASED_CTLS2
,
182 name
= 'VM-Exit controls',
184 2: 'Save debug controls',
185 9: 'Host address-space size',
186 12: 'Load IA32_PERF_GLOBAL_CTRL',
187 15: 'Acknowledge interrupt on exit',
190 20: 'Save IA32_EFER',
191 21: 'Load IA32_EFER',
192 22: 'Save VMX-preemption timer value',
194 cap_msr
= MSR_IA32_VMX_EXIT_CTLS
,
195 true_cap_msr
= MSR_IA32_VMX_TRUE_EXIT_CTLS
,
199 name
= 'VM-Entry controls',
201 2: 'Load debug controls',
202 9: 'IA-32e mode guest',
204 11: 'Deactivate dual-monitor treatment',
205 13: 'Load IA32_PERF_GLOBAL_CTRL',
207 15: 'Load IA32_EFER',
209 cap_msr
= MSR_IA32_VMX_ENTRY_CTLS
,
210 true_cap_msr
= MSR_IA32_VMX_TRUE_ENTRY_CTLS
,
214 name
= 'Miscellaneous data',
216 (0,4): 'VMX-preemption timer scale (log2)',
217 5: 'Store EFER.LMA into IA-32e mode guest control',
218 6: 'HLT activity state',
219 7: 'Shutdown activity state',
220 8: 'Wait-for-SIPI activity state',
221 15: 'IA32_SMBASE support',
222 (16,24): 'Number of CR3-target values',
223 (25,27): 'MSR-load/store count recommendation',
224 28: 'IA32_SMM_MONITOR_CTL[2] can be set to 1',
225 29: 'VMWRITE to VM-exit information fields',
226 (32,63): 'MSEG revision identifier',
228 msr
= MSR_IA32_VMX_MISC_CTLS
,
232 name
= 'VPID and EPT capabilities',
234 0: 'Execute-only EPT translations',
235 6: 'Page-walk length 4',
236 8: 'Paging-structure memory type UC',
237 14: 'Paging-structure memory type WB',
240 20: 'INVEPT supported',
241 21: 'EPT accessed and dirty flags',
242 25: 'Single-context INVEPT',
243 26: 'All-context INVEPT',
244 32: 'INVVPID supported',
245 40: 'Individual-address INVVPID',
246 41: 'Single-context INVVPID',
247 42: 'All-context INVVPID',
248 43: 'Single-context-retaining-globals INVVPID',
250 msr
= MSR_IA32_VMX_EPT_VPID_CAP
,
253 name
= 'VM Functions',
257 msr
= MSR_IA32_VMX_VMFUNC
,