summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorWayne Boyer <wayne.boyer@intel.com>2015-11-13 13:40:24 -0800
committerThomas Wood <thomas.wood@intel.com>2015-11-24 16:36:54 +0000
commit4bc68b1baa8ad288a695eedf4e1638e07e5ab9a1 (patch)
tree1320a480cbbb35b06e1a1817325a3732dd03d5b0 /lib/intel_chipset.h
parent526a63ec6bfa4dfedb9ae27284b604ec37132a16 (diff)
lib/kbl: Add Kabylake GT4 PCI IDs
Add the Kabylake GT4 PCI IDs as defined in this kernel patch. commit 8b10c0cf21ec84618d4bf02c73c0543500ece68d Author: Deepak S <deepak.s@intel.com> Date: Wed Oct 28 12:21:12 2015 -0700 drm/i915/kbl: Add Kabylake GT4 PCI ID Signed-off-by: Wayne Boyer <wayne.boyer@intel.com> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'lib/intel_chipset.h')
-rw-r--r--lib/intel_chipset.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index f71bc8e5..f3bd04f2 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -221,13 +221,17 @@ void intel_check_pch(void);
#define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
#define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
+#define PCI_CHIP_KABYLAKE_DT_GT4 0x5932
#define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
#define PCI_CHIP_KABYLAKE_HALO_GT3 0x592B
#define PCI_CHIP_KABYLAKE_HALO_GT1 0x590B
+#define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
#define PCI_CHIP_KABYLAKE_SRV_GT2 0x591A
#define PCI_CHIP_KABYLAKE_SRV_GT3 0x592A
+#define PCI_CHIP_KABYLAKE_SRV_GT4 0x593A
#define PCI_CHIP_KABYLAKE_SRV_GT1 0x590A
#define PCI_CHIP_KABYLAKE_WKS_GT2 0x591D
+#define PCI_CHIP_KABYLAKE_WKS_GT4 0x593D
#define PCI_CHIP_BROXTON_0 0x0A84
#define PCI_CHIP_BROXTON_1 0x1A84
@@ -439,9 +443,15 @@ void intel_check_pch(void);
(devid) == PCI_CHIP_KABYLAKE_HALO_GT3|| \
(devid) == PCI_CHIP_KABYLAKE_SRV_GT3)
+#define IS_KBL_GT4(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT4|| \
+ (devid) == PCI_CHIP_KABYLAKE_HALO_GT4|| \
+ (devid) == PCI_CHIP_KABYLAKE_SRV_GT4|| \
+ (devid) == PCI_CHIP_KABYLAKE_WKS_GT4)
+
#define IS_KABYLAKE(devid) (IS_KBL_GT1(devid) || \
IS_KBL_GT2(devid) || \
- IS_KBL_GT3(devid))
+ IS_KBL_GT3(devid) || \
+ IS_KBL_GT4(devid))
#define IS_SKYLAKE(devid) (IS_SKL_GT1(devid) || \
IS_SKL_GT2(devid) || \