summaryrefslogtreecommitdiff
path: root/overlay/igfx.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2015-08-08 20:54:49 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2015-08-08 21:31:54 +0100
commit06aed34d384fc348c4bb52f302bbcf2c6c68bb3c (patch)
tree1c77cf749d39af38465390fe6e570dd40ef8b0a6 /overlay/igfx.c
parent9c15167c611bbac1e702eb064044ec687bfa3703 (diff)
overlay: Add Broadwell+ ids from kernel i915_pciids.h
Diffstat (limited to 'overlay/igfx.c')
-rw-r--r--overlay/igfx.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/overlay/igfx.c b/overlay/igfx.c
index d53ebc7d..604ae5fe 100644
--- a/overlay/igfx.c
+++ b/overlay/igfx.c
@@ -91,6 +91,22 @@ static const struct igfx_info haswell_info = {
.gen = 075,
};
+static const struct igfx_info broadwell_info = {
+ .gen = 0100,
+};
+
+static const struct igfx_info cherryview_info = {
+ .gen = 0101,
+};
+
+static const struct igfx_info skylake_info = {
+ .gen = 0110,
+};
+
+static const struct igfx_info broxton_info = {
+ .gen = 0111,
+};
+
static const struct pci_id_match match[] = {
#if 0
INTEL_VGA_DEVICE(PCI_CHIP_I810, &i81x_info),
@@ -133,6 +149,14 @@ static const struct pci_id_match match[] = {
INTEL_VLV_D_IDS(&valleyview_info),
INTEL_VLV_M_IDS(&valleyview_info),
+ INTEL_BDW_D_IDS(&broadwell_info),
+ INTEL_BDW_M_IDS(&broadwell_info),
+
+ INTEL_CHV_IDS(&cherryview_info),
+
+ INTEL_SKL_IDS(&skylake_info),
+ INTEL_BXT_IDS(&broxton_info),
+
INTEL_VGA_DEVICE(PCI_MATCH_ANY, &generic_info),
{ 0, 0, 0 },