diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2023-06-30 14:07:21 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-12 13:55:35 +0000 |
commit | 1aa5caf2acc1821f109101308042969a763d4c20 (patch) | |
tree | a91fdc5b33c248f0f820766475a9f2e8fa6f3421 /src/soc/intel/alderlake | |
parent | d54a5b294ff3fe7a8b27f71b5fb3da2d2d0057b1 (diff) |
soc/intel: Fix W790 chipset name
In newer ADL/RPL PCH EDS 619362 revision 2.1 the ESPI ID 0x7A8A
belongs to the W790 chipset. Earlier revisions had the chipset with
ID 0x7A8A named W685, which was probably just a temporary name.
Change the naming throughout the tree to W790, which is the real
existing chipset.
Change-Id: I87603298d655e9bf898b34acdd5b403f5affaee3
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76191
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Crawford <tcrawford@system76.com>
Diffstat (limited to 'src/soc/intel/alderlake')
-rw-r--r-- | src/soc/intel/alderlake/bootblock/report_platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 938c8ebbca..4f55c02ba9 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -102,7 +102,7 @@ static struct { { PCI_DID_INTEL_ADP_S_ESPI_Q670, "AlderLake-S Q670" }, { PCI_DID_INTEL_ADP_S_ESPI_Z690, "AlderLake-S Z690" }, { PCI_DID_INTEL_ADP_S_ESPI_W680, "AlderLake-S W680" }, - { PCI_DID_INTEL_ADP_S_ESPI_W685, "AlderLake-S W685" }, + { PCI_DID_INTEL_ADP_S_ESPI_W790, "AlderLake-S W790" }, { PCI_DID_INTEL_ADP_S_ESPI_WM690, "AlderLake-S WM690" }, { PCI_DID_INTEL_ADP_S_ESPI_HM670, "AlderLake-S HM670" }, { PCI_DID_INTEL_RPP_S_ESPI_0, "Raptorlake-S SKU" }, |