diff options
author | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-03-07 17:46:25 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-03-09 23:44:09 +0000 |
commit | c8d47169f43da95fcf8a8c385d49e0a464e58a97 (patch) | |
tree | c6e7999daf295714739e74d0273119f3422b9825 /src/soc/intel/alderlake/bootblock | |
parent | 255f9275152f5485e060956295542eb4ee06caa9 (diff) |
soc/intel/alderlake: Add Raptor Lake System Agent Device IDs
Add System Agent IDs for Raptor Lake SKUs based on RPL Datasheet
(Doc ID: 743844) & EDS Vol 1 (Doc ID: 640555).
Signed-off-by: Lean Sheng Tan <sheng.tan@9elements.com>
Change-Id: I805040c65852742f1bbc43b443e115bcb0a930aa
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81115
Reviewed-by: Jan Samek <jan.samek@siemens.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/alderlake/bootblock')
-rw-r--r-- | src/soc/intel/alderlake/bootblock/report_platform.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 2a4f31a0d1..bd4960d0fe 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -84,11 +84,14 @@ static struct { { PCI_DID_INTEL_RPL_HX_ID_6, "Raptorlake-HX (8+8)" }, { PCI_DID_INTEL_RPL_HX_ID_7, "Raptorlake-HX (6+8)" }, { PCI_DID_INTEL_RPL_HX_ID_8, "Raptorlake-HX (6+4)" }, - { PCI_DID_INTEL_RPL_P_ID_1, "Raptorlake-P" }, - { PCI_DID_INTEL_RPL_P_ID_2, "Raptorlake-P" }, - { 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_P_ID_1, "Raptorlake-P/H/H Refresh (6+8)" }, + { PCI_DID_INTEL_RPL_P_ID_2, "Raptorlake-P/H/H Refresh (4+8)" }, + { PCI_DID_INTEL_RPL_P_ID_3, "Raptorlake-U/U Refresh (2+8)" }, + { PCI_DID_INTEL_RPL_P_ID_4, "Raptorlake-U/U Refresh (2+4)" }, + { PCI_DID_INTEL_RPL_P_ID_5, "Raptorlake-U (1+4)" }, + { PCI_DID_INTEL_RPL_P_ID_6, "Raptorlake-PX (6+8)" }, + { PCI_DID_INTEL_RPL_P_ID_7, "Raptorlake-PX (4+8)" }, + { PCI_DID_INTEL_RPL_P_ID_8, "Raptorlake-H (4+4)" }, { 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)" }, |