drm/i915: Add IS_BDW_GT3 macro.
authorRodrigo Vivi <rodrigo.vivi@intel.com>
Sat, 20 Sep 2014 00:16:26 +0000 (20:16 -0400)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 30 Sep 2014 07:18:58 +0000 (09:18 +0200)
It will be usefull to specify w/a that affects only BDW GT3.

Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_drv.h

index cccb7767e837e055d0a72e67aa38f387db0c0d30..8f05258ff49b3a0efb3feb3471def50629804f39 100644 (file)
@@ -2111,6 +2111,8 @@ struct drm_i915_cmd_table {
                                 ((INTEL_DEVID(dev) & 0xf) == 0x2  || \
                                 (INTEL_DEVID(dev) & 0xf) == 0x6 || \
                                 (INTEL_DEVID(dev) & 0xf) == 0xe))
+#define IS_BDW_GT3(dev)                (IS_BROADWELL(dev) && \
+                                (INTEL_DEVID(dev) & 0x00F0) == 0x0020)
 #define IS_HSW_ULT(dev)                (IS_HASWELL(dev) && \
                                 (INTEL_DEVID(dev) & 0xFF00) == 0x0A00)
 #define IS_ULT(dev)            (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
This page took 0.02705 seconds and 5 git commands to generate.