diff options
author | Ravi Sarawadi <ravishankar.sarawadi@intel.corp-partner.google.com> | 2022-10-11 23:54:55 -0700 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-11-15 10:46:21 +0000 |
commit | 33005df7bcc63550955986f8f6714c595b3b8d70 (patch) | |
tree | c25cce3656d1179230f24a7cc2e100f1ac76fa77 | |
parent | f2e2dc80fa68facbce14d06aa111ca8ab4529bbe (diff) |
soc/intel: Add Meteor Lake IGD device id 0x7d45
Add new IGD device.
Reference: EDS Vol 1 (640228)
Signed-off-by: Ravi Sarawadi <ravishankar.sarawadi@intel.corp-partner.google.com>
Change-Id: Iad69f547a981390ef3749256e9fd9bcfc106fe3c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68305
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r-- | src/include/device/pci_ids.h | 7 | ||||
-rw-r--r-- | src/soc/intel/common/block/graphics/graphics.c | 1 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/bootblock/report_platform.c | 1 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 949afbdd90..5e270cec1f 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4001,9 +4001,10 @@ #define PCI_DID_INTEL_ADL_N_GT2 0x46D1 #define PCI_DID_INTEL_ADL_N_GT3 0x46D2 #define PCI_DID_INTEL_MTL_M_GT2 0x7d40 -#define PCI_DID_INTEL_MTL_P_GT2_1 0x7d50 -#define PCI_DID_INTEL_MTL_P_GT2_2 0x7d55 -#define PCI_DID_INTEL_MTL_P_GT2_3 0x7d60 +#define PCI_DID_INTEL_MTL_P_GT2_1 0x7d45 +#define PCI_DID_INTEL_MTL_P_GT2_2 0x7d50 +#define PCI_DID_INTEL_MTL_P_GT2_3 0x7d55 +#define PCI_DID_INTEL_MTL_P_GT2_4 0x7d60 #define PCI_DID_INTEL_RPL_P_GT1 0xa720 #define PCI_DID_INTEL_RPL_P_GT2 0xa7a8 #define PCI_DID_INTEL_RPL_P_GT3 0xa7a0 diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 98d19813a9..dae181adf4 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -199,6 +199,7 @@ static const unsigned short pci_device_ids[] = { PCI_DID_INTEL_MTL_P_GT2_1, PCI_DID_INTEL_MTL_P_GT2_2, PCI_DID_INTEL_MTL_P_GT2_3, + PCI_DID_INTEL_MTL_P_GT2_4, PCI_DID_INTEL_APL_IGD_HD_505, PCI_DID_INTEL_APL_IGD_HD_500, PCI_DID_INTEL_CNL_GT2_ULX_1, diff --git a/src/soc/intel/meteorlake/bootblock/report_platform.c b/src/soc/intel/meteorlake/bootblock/report_platform.c index 63f1771933..6acf9227c8 100644 --- a/src/soc/intel/meteorlake/bootblock/report_platform.c +++ b/src/soc/intel/meteorlake/bootblock/report_platform.c @@ -52,6 +52,7 @@ static struct { { PCI_DID_INTEL_MTL_P_GT2_1, "MeteorLake-P GT2" }, { PCI_DID_INTEL_MTL_P_GT2_2, "MeteorLake-P GT2" }, { PCI_DID_INTEL_MTL_P_GT2_3, "MeteorLake-P GT2" }, + { PCI_DID_INTEL_MTL_P_GT2_4, "Meteorlake-P GT2" }, }; static inline uint8_t get_dev_revision(pci_devfn_t dev) |