diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-07-22 18:56:03 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-12-11 21:39:40 +0000 |
commit | 7e76f21a4d9d8f5424c257e6e7686d5bb0bb6cf7 (patch) | |
tree | d5f33c01d52683726e222cc341619c67501ab73a | |
parent | f7d1c2b8d1883280e7916bb4473ff6436b186950 (diff) |
intel: Recognise gen8
Assign gen=8 to the Broadwell PCI IDs, no marketing names are known at
this point in time.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/intel_module.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index d739aa78..fb8734a9 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -110,6 +110,10 @@ static const struct intel_device_info intel_haswell_info = { .gen = 075, }; +static const struct intel_device_info intel_broadwell_info = { + .gen = 0100, +}; + static const SymTabRec intel_chipsets[] = { {PCI_CHIP_I810, "i810"}, {PCI_CHIP_I810_DC100, "i810-dc100"}, @@ -262,6 +266,9 @@ static const struct pci_id_match intel_device_match[] = { INTEL_VLV_D_IDS(&intel_valleyview_info), INTEL_VLV_M_IDS(&intel_valleyview_info), + INTEL_BDW_D_IDS(&intel_broadwell_info), + INTEL_BDW_M_IDS(&intel_broadwell_info), + INTEL_VGA_DEVICE(PCI_MATCH_ANY, &intel_generic_info), #endif |