util/inteltool/cpu: fix IA32_PLATFORM_ID MSR addr
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 <max.senia.poliak@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35913 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
43a98b9589
commit
3e7ff29995
|
@ -1539,7 +1539,7 @@ int print_intel_core_msrs(void)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static const msr_entry_t model96ex_global_msrs[] = {
|
static const msr_entry_t model96ex_global_msrs[] = {
|
||||||
{ 0x0000, "IA32_PLATFORM_ID"},
|
{ 0x0017, "IA32_PLATFORM_ID"},
|
||||||
{ 0x0080, "MSR_TRACE_HUB_STH_ACPIBAR_BASE"},
|
{ 0x0080, "MSR_TRACE_HUB_STH_ACPIBAR_BASE"},
|
||||||
{ 0x00CE, "MSR_PLATFORM_INFO"},
|
{ 0x00CE, "MSR_PLATFORM_INFO"},
|
||||||
{ 0x0198, "IA32_PERF_STATUS"},
|
{ 0x0198, "IA32_PERF_STATUS"},
|
||||||
|
|
Loading…
Reference in New Issue