From: John Wolfe Date: Mon, 20 Sep 2021 15:07:36 +0000 (-0700) Subject: Common header file change not applicable to open-vm-tools. X-Git-Tag: stable-12.0.0~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03b6ca66c23289da7b34d1e47f5769d063ee3ad9;p=thirdparty%2Fopen-vm-tools.git Common header file change not applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/x86cpuid.h b/open-vm-tools/lib/include/x86cpuid.h index 65a80330b..499075ada 100644 --- a/open-vm-tools/lib/include/x86cpuid.h +++ b/open-vm-tools/lib/include/x86cpuid.h @@ -1652,7 +1652,8 @@ CPUIDCheck(int32 eaxIn, int32 eaxInCheck, #define CPUID_MODEL_ICELAKE_7E 0x7e // Ice Lake U/Y #define CPUID_MODEL_ICELAKE_6A 0x6a // Ice Lake SP (ICX) #define CPUID_MODEL_ICELAKE_6C 0x6c // Ice Lake D -#define CPUID_MODEL_TIGERLAKE_8C 0x8c // Tiger Lake +#define CPUID_MODEL_TIGERLAKE_8C 0x8c // Tiger Lake UP3/UP4/H35 +#define CPUID_MODEL_TIGERLAKE_8D 0x8d // Tiger Lake H81 #define CPUID_MODEL_KNM_85 0x85 // Knights Mill #define CPUID_MODEL_KABYLAKE_8E 0x8e // Kaby Lake U/Y QS #define CPUID_MODEL_KABYLAKE_9E 0x9e // Kaby Lake S/H QS @@ -2028,7 +2029,8 @@ CPUID_MODEL_IS_TIGERLAKE(uint32 v) // IN: %eax from CPUID with %eax=1. { /* Assumes the CPU manufacturer is Intel. */ return CPUID_FAMILY_IS_P6(v) && - (CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_TIGERLAKE_8C); + (CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_TIGERLAKE_8C || + CPUID_EFFECTIVE_MODEL(v) == CPUID_MODEL_TIGERLAKE_8D); } static INLINE Bool