diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2023-06-30 14:13:58 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-12 13:56:32 +0000 |
commit | 8dc16a9ce2ad7ca55cde4ecc6fdacded471d5e8f (patch) | |
tree | 45a9dc76dbd933d0d02ec07177355977f9a0dd2d /src | |
parent | 1aa5caf2acc1821f109101308042969a763d4c20 (diff) |
soc/intel: Replace number in RPL-S ESPI PCI IDs by chipset name
Change-Id: I68416e1633c3d67070790a9db2cd9a13a8981042
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76192
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/device/pci_ids.h | 6 | ||||
-rw-r--r-- | src/soc/intel/alderlake/bootblock/report_platform.c | 6 | ||||
-rw-r--r-- | src/soc/intel/common/block/lpc/lpc.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index fca9b0dd1f..b311991683 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -2980,9 +2980,9 @@ #define PCI_DID_INTEL_RPP_S_ESPI_1 0x7a01 #define PCI_DID_INTEL_RPP_S_ESPI_2 0x7a02 #define PCI_DID_INTEL_RPP_S_ESPI_3 0x7a03 -#define PCI_DID_INTEL_RPP_S_ESPI_4 0x7a04 -#define PCI_DID_INTEL_RPP_S_ESPI_5 0x7a05 -#define PCI_DID_INTEL_RPP_S_ESPI_6 0x7a06 +#define PCI_DID_INTEL_RPP_S_ESPI_Z790 0x7a04 +#define PCI_DID_INTEL_RPP_S_ESPI_H770 0x7a05 +#define PCI_DID_INTEL_RPP_S_ESPI_B760 0x7a06 #define PCI_DID_INTEL_RPP_S_ESPI_7 0x7a07 #define PCI_DID_INTEL_RPP_S_ESPI_8 0x7a08 #define PCI_DID_INTEL_RPP_S_ESPI_9 0x7a09 diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 4f55c02ba9..d360197555 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -109,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 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_Z790, "Raptorlake-S Z790" }, + { PCI_DID_INTEL_RPP_S_ESPI_H770, "Raptorlake-S H770" }, + { PCI_DID_INTEL_RPP_S_ESPI_B760, "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" }, diff --git a/src/soc/intel/common/block/lpc/lpc.c b/src/soc/intel/common/block/lpc/lpc.c index 1d8d748bb4..0de3154431 100644 --- a/src/soc/intel/common/block/lpc/lpc.c +++ b/src/soc/intel/common/block/lpc/lpc.c @@ -182,9 +182,9 @@ static const unsigned short pci_device_ids[] = { PCI_DID_INTEL_RPP_S_ESPI_1, PCI_DID_INTEL_RPP_S_ESPI_2, PCI_DID_INTEL_RPP_S_ESPI_3, - PCI_DID_INTEL_RPP_S_ESPI_4, - PCI_DID_INTEL_RPP_S_ESPI_5, - PCI_DID_INTEL_RPP_S_ESPI_6, + PCI_DID_INTEL_RPP_S_ESPI_Z790, + PCI_DID_INTEL_RPP_S_ESPI_H770, + PCI_DID_INTEL_RPP_S_ESPI_B760, PCI_DID_INTEL_RPP_S_ESPI_7, PCI_DID_INTEL_RPP_S_ESPI_8, PCI_DID_INTEL_RPP_S_ESPI_9, |