Comments
Patch
@@ -488,6 +488,10 @@
#define CPUID_VENDOR_VIA "CentaurHauls"
+/* VMware hardware version 7 defines timing information as
+ * 0x40000010. */
+#define CPUID_HV_TIMING_INFO 0x40000010
+
/* The maximum input value for hypervisor CPUID information for
* Microsoft hypervisors. Is related to HYPERV_CPUID_MIN. */
#define CPUID_HV_LEVEL_HYPERV_CPUID_MIN 0x40000005
@@ -451,6 +451,28 @@ int kvm_arch_init_vcpu(CPUX86State *env)
c->eax = 0x40;
c->ebx = 0x40;
}
+ if (env->cpuid_hv_level >= CPUID_HV_TIMING_INFO) {
+ const uint32_t apic_khz = 1000000L;
+
+ /*
+ * From article.gmane.org/gmane.comp.emulators.kvm.devel/22643
+ *
+ * Leaf 0x40000010, Timing Information.
+ *
+ * VMware has defined the first generic leaf to provide timing
+ * information. This leaf returns the current TSC frequency and
+ * current Bus frequency in kHz.
+ *
+ * # EAX: (Virtual) TSC frequency in kHz.
+ * # EBX: (Virtual) Bus (local apic timer) frequency in kHz.
+ * # ECX, EDX: RESERVED (Per above, reserved fields are set to zero).
+ */
+ c = &cpuid_data.entries[cpuid_i++];
+ memset(c, 0, sizeof(*c));
+ c->function = CPUID_HV_TIMING_INFO;
+ c->eax = (uint32_t)env->tsc_khz;
+ c->ebx = apic_khz;
+ }
if (env->cpuid_hv_vendor_set) {
c = &cpuid_data.entries[cpuid_i++];
memset(c, 0, sizeof(*c));
Part of "target-i386: Add way to expose VMWare CPUID" This is EAX and EBX data for 0x40000010. Add new #define CPUID_HV_TIMING_INFO for this. The best documentation I have found is: http://article.gmane.org/gmane.comp.emulators.kvm.devel/22643 And a test under ESXi 4.0 shows that VMware is setting this data. Signed-off-by: Don Slutz <Don@CloudSwitch.com> --- target-i386/cpu.h | 4 ++++ target-i386/kvm.c | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+), 0 deletions(-)