Jamie Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63077 )
Change subject: soc/intel/jasperlake: Add MCH device ids ......................................................................
soc/intel/jasperlake: Add MCH device ids
Add MCH device-ids for jasperlake. Reference is taken from jasperlake EDS volume 1 (#613601) chapter 13.3.
BUG=None BRANCH=None TEST=Build and boot Jasperlake platform.
Signed-off-by: Jamie Chen jamie.chen@intel.com Change-Id: I7732c1860f780e5f90fa74f77674f29b29c3fff5 --- M src/include/device/pci_ids.h M src/soc/intel/common/block/systemagent/systemagent.c M src/soc/intel/jasperlake/bootblock/report_platform.c 3 files changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/77/63077/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index ff7d69a..ab6fdce 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4044,6 +4044,7 @@ #define PCI_DID_INTEL_JSL_ID_3 0x4e12 #define PCI_DID_INTEL_JSL_ID_4 0x4e14 #define PCI_DID_INTEL_JSL_ID_5 0x4e24 +#define PCI_DID_INTEL_JSL_ID_6 0x4e28
#define PCI_DID_INTEL_ADL_S_ID_1 0x4660 #define PCI_DID_INTEL_ADL_S_ID_2 0x4664 diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index 07bcb0c..8dda791 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -413,6 +413,7 @@ PCI_DID_INTEL_JSL_ID_3, PCI_DID_INTEL_JSL_ID_4, PCI_DID_INTEL_JSL_ID_5, + PCI_DID_INTEL_JSL_ID_6, PCI_DID_INTEL_ADL_S_ID_1, PCI_DID_INTEL_ADL_S_ID_2, PCI_DID_INTEL_ADL_S_ID_3, diff --git a/src/soc/intel/jasperlake/bootblock/report_platform.c b/src/soc/intel/jasperlake/bootblock/report_platform.c index 0d2fe43..50afb44 100644 --- a/src/soc/intel/jasperlake/bootblock/report_platform.c +++ b/src/soc/intel/jasperlake/bootblock/report_platform.c @@ -29,6 +29,7 @@ { PCI_DID_INTEL_JSL_ID_3, "Jasperlake SKU2-1" }, { PCI_DID_INTEL_JSL_ID_4, "Jasperlake SKU2-2" }, { PCI_DID_INTEL_JSL_ID_5, "Jasperlake SKU4-3" }, + { PCI_DID_INTEL_JSL_ID_6, "Jasperlake SKU4-4" }, };
static struct {