Jonathan Zhang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/52863 )
Change subject: inteltool: add initial suppot for Sapphire Rapids Scalable Processor ......................................................................
inteltool: add initial suppot for Sapphire Rapids Scalable Processor
Intel Sapphire Rapids Scalable Processor is a 4th generation processor of Intel Xeon Scalable Processor family.
Signed-off-by: Jonathan Zhang jonzhang@fb.com Change-Id: Idf492d6e7993b9d55d6cd865e721c81876cee9a4 --- M util/inteltool/inteltool.c M util/inteltool/inteltool.h 2 files changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/52863/1
diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c index d7415b0..9f58a6e 100644 --- a/util/inteltool/inteltool.c +++ b/util/inteltool/inteltool.c @@ -142,6 +142,8 @@ "10th generation (Comet Lake family) Core Processor (Mobile)" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HEWITTLAKE, "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D (Hewitt Lake)" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SAPPHIRERAPIDS_SP, + "Xeon Sacalable Processor v4 (Sappire Rapids SP)" }, /* Southbridges (LPC controllers) */ { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371XX, "371AB/EB/MB" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10, "ICH10" }, diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index a528485..3f3d751 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -299,6 +299,7 @@ #define PCI_DEVICE_ID_INTEL_CORE_CML_U2 0x9b61 /* Cometlake U (Mobile) */ #define PCI_DEVICE_ID_INTEL_CORE_CML_U3 0x9b71 /* Cometlake U (Mobile) */ #define PCI_DEVICE_ID_INTEL_HEWITTLAKE 0x6f00 /* Hewitt Lake */ +#define PCI_DEVICE_ID_INTEL_SAPPHIRERAPIDS_SP 0x09a2 /* Sapphire Rapids */
/* Intel GPUs */