summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2012-04-13 10:44:57 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2012-04-13 10:44:57 +0800
commit4e3a3146128c6f790c9f586c2141ae96955069cd (patch)
tree41d7a95a08a7283f9175ee57bfc76bbf5cd13d34
parentd2b83039e450e11d0b5f96492f44fca17f0f585a (diff)
Add support for new Ivybridge chipset
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-rw-r--r--src/intel_driver.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intel_driver.h b/src/intel_driver.h
index 395a3b5..339ff3f 100644
--- a/src/intel_driver.h
+++ b/src/intel_driver.h
@@ -166,6 +166,7 @@ struct intel_region
#define PCI_CHIP_IVYBRIDGE_M_GT1 0x0156 /* Mobile */
#define PCI_CHIP_IVYBRIDGE_M_GT2 0x0166
#define PCI_CHIP_IVYBRIDGE_S_GT1 0x015a /* Server */
+#define PCI_CHIP_IVYBRIDGE_S_GT2 0x016a
#define IS_G45(devid) (devid == PCI_CHIP_IGD_E_G || \
devid == PCI_CHIP_Q45_G || \
@@ -193,6 +194,7 @@ struct intel_region
devid == PCI_CHIP_IVYBRIDGE_GT2 || \
devid == PCI_CHIP_IVYBRIDGE_M_GT1 || \
devid == PCI_CHIP_IVYBRIDGE_M_GT2 || \
- devid == PCI_CHIP_IVYBRIDGE_S_GT1)
+ devid == PCI_CHIP_IVYBRIDGE_S_GT1 || \
+ devid == PCI_CHIP_IVYBRIDGE_S_GT2)
#endif /* _INTEL_DRIVER_H_ */