summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-09-26 09:22:50 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-09-26 09:22:50 +0100
commitabc9b3f5753d602da296d50c8769cefb88ec473d (patch)
treebc485905480c4dd1c6babb9624ece40e808c4f3e
parent7302f8a6482f4eed497536fc5a8a487c10da4d52 (diff)
Add Skylake PCI IDs
From kernel commit 72bbf0af0c76cbefe9cecbd2ed670b7555e03625 Author: Damien Lespiau <damien.lespiau@intel.com> Date: Wed Feb 13 15:27:37 2013 +0000 drm/i915/skl: Add the Skylake PCI ids Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/i915_pciids.h17
-rw-r--r--src/intel_module.c7
2 files changed, 24 insertions, 0 deletions
diff --git a/src/i915_pciids.h b/src/i915_pciids.h
index a70d4564..180ad0e6 100644
--- a/src/i915_pciids.h
+++ b/src/i915_pciids.h
@@ -259,4 +259,21 @@
INTEL_VGA_DEVICE(0x22b2, info), \
INTEL_VGA_DEVICE(0x22b3, info)
+#define INTEL_SKL_IDS(info) \
+ INTEL_VGA_DEVICE(0x1916, info), /* ULT GT2 */ \
+ INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
+ INTEL_VGA_DEVICE(0x1926, info), /* ULT GT3 */ \
+ INTEL_VGA_DEVICE(0x1921, info), /* ULT GT2F */ \
+ INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
+ INTEL_VGA_DEVICE(0x191E, info), /* ULX GT2 */ \
+ INTEL_VGA_DEVICE(0x1912, info), /* DT GT2 */ \
+ INTEL_VGA_DEVICE(0x1902, info), /* DT GT1 */ \
+ INTEL_VGA_DEVICE(0x191B, info), /* Halo GT2 */ \
+ INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
+ INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
+ INTEL_VGA_DEVICE(0x191A, info), /* SRV GT2 */ \
+ INTEL_VGA_DEVICE(0x192A, info), /* SRV GT3 */ \
+ INTEL_VGA_DEVICE(0x190A, info), /* SRV GT1 */ \
+ INTEL_VGA_DEVICE(0x191D, info) /* WKS GT2 */
+
#endif /* _I915_PCIIDS_H */
diff --git a/src/intel_module.c b/src/intel_module.c
index 57ac5ef4..e3da2908 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -122,6 +122,11 @@ static const struct intel_device_info intel_cherryview_info = {
.gen = 0101,
};
+static const struct intel_device_info intel_skylake_info = {
+ .gen = 0110,
+};
+
+
static const SymTabRec intel_chipsets[] = {
{PCI_CHIP_I810, "i810"},
{PCI_CHIP_I810_DC100, "i810-dc100"},
@@ -311,6 +316,8 @@ static const struct pci_id_match intel_device_match[] = {
INTEL_CHV_IDS(&intel_cherryview_info),
+ INTEL_SKL_IDS(&intel_skylake_info),
+
INTEL_VGA_DEVICE(PCI_MATCH_ANY, &intel_generic_info),
#endif