aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/alderlake/bootblock
diff options
context:
space:
mode:
authorMax Fritz <antischmock@googlemail.com>2022-11-19 01:54:44 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-07-12 13:52:16 +0000
commit573e6ded9f0cc0119c90dbe849480b1a2974773e (patch)
tree6d19b2c5fba0bdb210c26316f8f86b5907131ab4 /src/soc/intel/alderlake/bootblock
parent5787bd21c7f61d983dfcd6ef90cd5c6b6f10f33a (diff)
soc/intel/alderlake: Add support for Raptor Lake S CPUs
Add PCI IDs, default VR values and power limits for Raptor Lake S CPUs. Based on docs 639116 and 640555. TEST=Tested on a MSI PRO Z690-A (ms7d25) with i9-13900K with Ubuntu 22.10 and LinuxBoot (Linux + u-root). Also tested on MSI PRO Z790-P with i5-13600K (UEFI Payload) usign RPL-S IoT FSP and Ubuntu 22.04. Change-Id: I767dd08a169a6af59188d9ecd73520b916f69155 Signed-off-by: Max Fritz <antischmock@googlemail.com> Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69798 Reviewed-by: Tim Crawford <tcrawford@system76.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michał Kopeć <michal.kopec@3mdeb.com>
Diffstat (limited to 'src/soc/intel/alderlake/bootblock')
-rw-r--r--src/soc/intel/alderlake/bootblock/report_platform.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c
index 5c6c2d152a..9cc2c17766 100644
--- a/src/soc/intel/alderlake/bootblock/report_platform.c
+++ b/src/soc/intel/alderlake/bootblock/report_platform.c
@@ -34,6 +34,10 @@ static struct {
{ CPUID_ALDERLAKE_S_C0, "Alderlake-S C0 Platform" },
{ CPUID_ALDERLAKE_S_G0, "Alderlake-S G0 Platform" },
{ CPUID_ALDERLAKE_S_H0, "Alderlake-S H0 Platform" },
+ { CPUID_RAPTORLAKE_S_A0, "Raptorlake-S A0 Platform" },
+ { CPUID_RAPTORLAKE_S_B0, "Raptorlake-S B0 Platform" },
+ { CPUID_RAPTORLAKE_S_C0, "Raptorlake-S C0 Platform" },
+ { CPUID_RAPTORLAKE_S_H0, "Raptorlake-S H0 Platform" },
{ CPUID_RAPTORLAKE_P_J0, "Raptorlake-P J0 Platform" },
{ CPUID_RAPTORLAKE_P_Q0, "Raptorlake-P Q0 Platform" },
};
@@ -76,7 +80,11 @@ static struct {
{ PCI_DID_INTEL_RPL_P_ID_3, "Raptorlake-P" },
{ PCI_DID_INTEL_RPL_P_ID_4, "Raptorlake-P" },
{ PCI_DID_INTEL_RPL_P_ID_5, "Raptorlake-P" },
-
+ { PCI_DID_INTEL_RPL_S_ID_1, "Raptorlake-S (8+16)" },
+ { PCI_DID_INTEL_RPL_S_ID_2, "Raptorlake-S (8+0)" },
+ { PCI_DID_INTEL_RPL_S_ID_3, "Raptorlake-S (8+8)" },
+ { PCI_DID_INTEL_RPL_S_ID_4, "Raptorlake-S (6+8)" },
+ { PCI_DID_INTEL_RPL_S_ID_5, "Raptorlake-S (6+4)" },
};
static struct {
@@ -101,9 +109,9 @@ static struct {
{ PCI_DID_INTEL_RPP_S_ESPI_1, "Raptorlake-S SKU" },
{ PCI_DID_INTEL_RPP_S_ESPI_2, "Raptorlake-S SKU" },
{ PCI_DID_INTEL_RPP_S_ESPI_3, "Raptorlake-S SKU" },
- { PCI_DID_INTEL_RPP_S_ESPI_4, "Raptorlake-S SKU" },
- { PCI_DID_INTEL_RPP_S_ESPI_5, "Raptorlake-S SKU" },
- { PCI_DID_INTEL_RPP_S_ESPI_6, "Raptorlake-S SKU" },
+ { PCI_DID_INTEL_RPP_S_ESPI_4, "Raptorlake-S Z790" },
+ { PCI_DID_INTEL_RPP_S_ESPI_5, "Raptorlake-S H770" },
+ { PCI_DID_INTEL_RPP_S_ESPI_6, "Raptorlake-S B760" },
{ PCI_DID_INTEL_RPP_S_ESPI_7, "Raptorlake-S SKU" },
{ PCI_DID_INTEL_RPP_S_ESPI_8, "Raptorlake-S SKU" },
{ PCI_DID_INTEL_RPP_S_ESPI_9, "Raptorlake-S SKU" },
@@ -205,6 +213,10 @@ static struct {
{ PCI_DID_INTEL_RPL_P_GT4, "Raptorlake P GT4" },
{ PCI_DID_INTEL_RPL_P_GT5, "Raptorlake P GT5" },
{ PCI_DID_INTEL_RPL_P_GT6, "Raptorlake P GT6" },
+ { PCI_DID_INTEL_RPL_S_GT0, "Raptorlake S GT0" },
+ { PCI_DID_INTEL_RPL_S_GT1_1, "Raptorlake S GT1" },
+ { PCI_DID_INTEL_RPL_S_GT1_2, "Raptorlake S GT1" },
+ { PCI_DID_INTEL_RPL_S_GT1_3, "Raptorlake S GT1" }
};
static inline uint8_t get_dev_revision(pci_devfn_t dev)