From 7e76f21a4d9d8f5424c257e6e7686d5bb0bb6cf7 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 22 Jul 2013 18:56:03 +0100 Subject: 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 --- src/intel_module.c | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- cgit v1.2.3