aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/device/pci_ids.h2
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c1
-rw-r--r--src/soc/intel/common/block/systemagent/systemagent.c1
-rw-r--r--src/soc/intel/jasperlake/bootblock/report_platform.c2
4 files changed, 6 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index e9674dffca..d40d867ce2 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -3638,6 +3638,7 @@
#define PCI_DEVICE_ID_INTEL_JSL_GT1 0x4E51
#define PCI_DEVICE_ID_INTEL_JSL_GT2 0x4E71
#define PCI_DEVICE_ID_INTEL_JSL_GT3 0x4E61
+#define PCI_DEVICE_ID_INTEL_JSL_GT4 0x4E55
#define PCI_DEVICE_ID_INTEL_ADL_GT0 0x46ff
#define PCI_DEVICE_ID_INTEL_ADL_GT1 0x4600
@@ -3729,6 +3730,7 @@
#define PCI_DEVICE_ID_INTEL_JSL_ID_2 0x4e26
#define PCI_DEVICE_ID_INTEL_JSL_ID_3 0x4e12
#define PCI_DEVICE_ID_INTEL_JSL_ID_4 0x4e14
+#define PCI_DEVICE_ID_INTEL_JSL_ID_5 0x4e24
#define PCI_DEVICE_ID_INTEL_ADL_S_ID_1 0x4660
#define PCI_DEVICE_ID_INTEL_ADL_S_ID_2 0x4664
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index 4561a38cc2..23cf84756d 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -283,6 +283,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_JSL_GT1,
PCI_DEVICE_ID_INTEL_JSL_GT2,
PCI_DEVICE_ID_INTEL_JSL_GT3,
+ PCI_DEVICE_ID_INTEL_JSL_GT4,
PCI_DEVICE_ID_INTEL_ADL_GT0,
PCI_DEVICE_ID_INTEL_ADL_GT1,
PCI_DEVICE_ID_INTEL_ADL_GT1_1,
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c
index bbccc89dcf..4c5731f9ca 100644
--- a/src/soc/intel/common/block/systemagent/systemagent.c
+++ b/src/soc/intel/common/block/systemagent/systemagent.c
@@ -386,6 +386,7 @@ static const unsigned short systemagent_ids[] = {
PCI_DEVICE_ID_INTEL_JSL_ID_2,
PCI_DEVICE_ID_INTEL_JSL_ID_3,
PCI_DEVICE_ID_INTEL_JSL_ID_4,
+ PCI_DEVICE_ID_INTEL_JSL_ID_5,
PCI_DEVICE_ID_INTEL_ADL_S_ID_1,
PCI_DEVICE_ID_INTEL_ADL_S_ID_2,
PCI_DEVICE_ID_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 d7eb490709..beab7822c8 100644
--- a/src/soc/intel/jasperlake/bootblock/report_platform.c
+++ b/src/soc/intel/jasperlake/bootblock/report_platform.c
@@ -29,6 +29,7 @@ static struct {
{ PCI_DEVICE_ID_INTEL_JSL_ID_2, "Jasperlake SKU4-2" },
{ PCI_DEVICE_ID_INTEL_JSL_ID_3, "Jasperlake SKU2-1" },
{ PCI_DEVICE_ID_INTEL_JSL_ID_4, "Jasperlake SKU2-2" },
+ { PCI_DEVICE_ID_INTEL_JSL_ID_5, "Jasperlake SKU4-3" },
};
static struct {
@@ -45,6 +46,7 @@ static struct {
{ PCI_DEVICE_ID_INTEL_JSL_GT1, "Jasperlake GT1" },
{ PCI_DEVICE_ID_INTEL_JSL_GT2, "Jasperlake GT2" },
{ PCI_DEVICE_ID_INTEL_JSL_GT3, "Jasperlake GT3" },
+ { PCI_DEVICE_ID_INTEL_JSL_GT4, "Jasperlake GT4" },
};
static inline uint8_t get_dev_revision(pci_devfn_t dev)