diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-12 14:36:38 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-12 14:43:56 +0000 |
commit | 04d2cad65dbb07a2f03835a71fb7f5efc0235ea6 (patch) | |
tree | b404553299b18abcb6b27d5f2e6a375ffbb74659 | |
parent | a6bd3011710a3fd4cfe21a3d41a6ec9c929681bf (diff) |
Add identification strings for new Atoms
All of the new Atom (Baytrail) products ship with "HD Graphics".
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/intel_module.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 72c028e3..e4bd65b3 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -204,9 +204,17 @@ static const SymTabRec intel_chipsets[] = { {PCI_CHIP_HASWELL_CRW_E_GT1, "HD Graphics" }, /* ??? */ {PCI_CHIP_HASWELL_CRW_E_GT2, "HD Graphics" }, /* ??? */ {PCI_CHIP_HASWELL_CRW_E_GT3, "Iris(TM) Pro Graphics 5200" }, - {-1, NULL} + + /* Valleyview (Baytail) */ + {0x0f30, "HD Graphics"}, + {0x0f31, "HD Graphics"}, + {0x0f32, "HD Graphics"}, + {0x0f33, "HD Graphics"}, + {0x0155, "HD Graphics"}, + {0x0157, "HD Graphics"}, + + {-1, NULL} /* Sentinel */ }; -#define NUM_CHIPSETS (sizeof(intel_chipsets) / sizeof(intel_chipsets[0])) static const struct pci_id_match intel_device_match[] = { #if UMS |