From 3e7ff299954e0429908d52b8a13aec92abb349da Mon Sep 17 00:00:00 2001 From: Maxim Polyakov Date: Tue, 8 Oct 2019 12:29:00 +0300 Subject: util/inteltool/cpu: fix IA32_PLATFORM_ID MSR addr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the documentation [1], IA32_PLATFORM_ID MSR register address should be 17H. [1] Table 2-2. Intel (R) 64 and IA-32 Architectures Software Developer’s Manual. Volume 4: Model-Specific Registers. May 2019. Order Number: 335592-070US Change-Id: I9a16b162db51d21c7849b3c08c987ab341845b1e Signed-off-by: Maxim Polyakov Reviewed-on: https://review.coreboot.org/c/coreboot/+/35913 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held --- util/inteltool/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c index 75c7dae53f95..446fd82c61d0 100644 --- a/util/inteltool/cpu.c +++ b/util/inteltool/cpu.c @@ -1539,7 +1539,7 @@ int print_intel_core_msrs(void) */ static const msr_entry_t model96ex_global_msrs[] = { - { 0x0000, "IA32_PLATFORM_ID"}, + { 0x0017, "IA32_PLATFORM_ID"}, { 0x0080, "MSR_TRACE_HUB_STH_ACPIBAR_BASE"}, { 0x00CE, "MSR_PLATFORM_INFO"}, { 0x0198, "IA32_PERF_STATUS"}, -- cgit v1.2.3