[Beignet] [PATCH 1/2] runtime: add Broadwell deviceID 0x162B
Ruiling Song
ruiling.song at intel.com
Tue Jul 28 23:32:53 PDT 2015
Signed-off-by: Ruiling Song <ruiling.song at intel.com>
---
src/cl_device_data.h | 4 +++-
src/cl_device_id.c | 2 ++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/cl_device_data.h b/src/cl_device_data.h
index b7b64c0..600ed6b 100644
--- a/src/cl_device_data.h
+++ b/src/cl_device_data.h
@@ -201,7 +201,8 @@
#define PCI_CHIP_BROADWLL_W_GT2 0x161D /* Intel(R) Broadwell Workstation - GT2 */
#define PCI_CHIP_BROADWLL_U_GT2 0x161E /* Intel(R) Broadwell ULX - GT2 */
#define PCI_CHIP_BROADWLL_M_GT3 0x1622 /* Intel(R) Broadwell Mobile - Halo (EDRAM) - GT3 */
-#define PCI_CHIP_BROADWLL_D_GT3 0x1626 /* Intel(R) Broadwell U-Processor - GT3 */
+#define PCI_CHIP_BROADWLL_D_GT3 0x1626 /* Intel(R) Broadwell U-Processor HD 6000 - GT3 */
+#define PCI_CHIP_BROADWLL_UI_GT3 0x162B /* Intel(R) Broadwell U-Process Iris 6100 - GT3 */
#define PCI_CHIP_BROADWLL_S_GT3 0x162A /* Intel(R) Broadwell Server - GT3 */
#define PCI_CHIP_BROADWLL_W_GT3 0x162D /* Intel(R) Broadwell Workstation - GT3 */
#define PCI_CHIP_BROADWLL_U_GT3 0x162E /* Intel(R) Broadwell ULX - GT3 */
@@ -225,6 +226,7 @@
devid == PCI_CHIP_BROADWLL_D_GT3 || \
devid == PCI_CHIP_BROADWLL_S_GT3 || \
devid == PCI_CHIP_BROADWLL_W_GT3 || \
+ devid == PCI_CHIP_BROADWLL_UI_GT3 || \
devid == PCI_CHIP_BROADWLL_U_GT3)
#define IS_BROADWELL(devid) (IS_BRW_GT1(devid) || IS_BRW_GT2(devid) || IS_BRW_GT3(devid))
diff --git a/src/cl_device_id.c b/src/cl_device_id.c
index e9e2c16..c1db4e2 100644
--- a/src/cl_device_id.c
+++ b/src/cl_device_id.c
@@ -430,6 +430,8 @@ brw_gt2_break:
DECL_INFO_STRING(brw_gt3_break, intel_brw_gt3_device, name, "Intel(R) HD Graphics BroadWell Mobile GT3");
case PCI_CHIP_BROADWLL_D_GT3:
DECL_INFO_STRING(brw_gt3_break, intel_brw_gt3_device, name, "Intel(R) HD Graphics BroadWell U-Processor GT3");
+ case PCI_CHIP_BROADWLL_UI_GT3:
+ DECL_INFO_STRING(brw_gt3_break, intel_brw_gt3_device, name, "Intel(R) Iris Graphics 6100 BroadWell U-Processor GT3");
case PCI_CHIP_BROADWLL_S_GT3:
DECL_INFO_STRING(brw_gt3_break, intel_brw_gt3_device, name, "Intel(R) HD Graphics BroadWell Server GT3");
case PCI_CHIP_BROADWLL_W_GT3:
--
2.3.1
More information about the Beignet
mailing list