summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorRodrigo Vivi <rodrigo.vivi@intel.com>2016-03-17 14:37:39 -0700
committerRodrigo Vivi <rodrigo.vivi@intel.com>2016-03-18 09:30:08 -0700
commitdbc74dd99097adc2bd32cd5945186791a8d2d806 (patch)
tree2f1e2fa563059f09bdf2561ba398e5ad07b3f175 /lib/intel_chipset.h
parent5d669bf1ddfb0f16162d91a6a47cf36855bc513e (diff)
intel: Adding missing Broxton PCI IDs.
These IDs were already part of the kernel since: kernel commit 985dd4360fdf2533fe48a33a4a2094f2e4718dc0 Author: Imre Deak <imre.deak@intel.com> Date: Thu Jan 28 16:04:12 2016 +0200 drm/i915/bxt: update list of PCIIDs Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Arun Siluvery <arun.siluvery@linux.intel.com>
Diffstat (limited to 'lib/intel_chipset.h')
-rw-r--r--lib/intel_chipset.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index f3bd04f2..4b406125 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -236,6 +236,8 @@ void intel_check_pch(void);
#define PCI_CHIP_BROXTON_0 0x0A84
#define PCI_CHIP_BROXTON_1 0x1A84
#define PCI_CHIP_BROXTON_2 0x5A84
+#define PCI_CHIP_BROXTON_3 0x1A85
+#define PCI_CHIP_BROXTON_4 0x5A85
#endif /* __GTK_DOC_IGNORE__ */
@@ -460,7 +462,9 @@ void intel_check_pch(void);
#define IS_BROXTON(devid) ((devid) == PCI_CHIP_BROXTON_0 || \
(devid) == PCI_CHIP_BROXTON_1 || \
- (devid) == PCI_CHIP_BROXTON_2)
+ (devid) == PCI_CHIP_BROXTON_2 || \
+ (devid) == PCI_CHIP_BROXTON_3 || \
+ (devid) == PCI_CHIP_BROXTON_4)
#define IS_GEN9(devid) (IS_KABYLAKE(devid) || \
IS_SKYLAKE(devid) || \