diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2012-04-13 10:44:57 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2012-04-13 10:44:57 +0800 |
commit | 4e3a3146128c6f790c9f586c2141ae96955069cd (patch) | |
tree | 41d7a95a08a7283f9175ee57bfc76bbf5cd13d34 /src/intel_driver.h | |
parent | d2b83039e450e11d0b5f96492f44fca17f0f585a (diff) | |
download | libva-intel-driver-4e3a3146128c6f790c9f586c2141ae96955069cd.tar.gz libva-intel-driver-4e3a3146128c6f790c9f586c2141ae96955069cd.tar.bz2 libva-intel-driver-4e3a3146128c6f790c9f586c2141ae96955069cd.zip |
Add support for new Ivybridge chipset
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
Diffstat (limited to 'src/intel_driver.h')
-rw-r--r-- | src/intel_driver.h | 4 |
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_ */ |