diff options
Diffstat (limited to 'drivers/gpu/drm/i915/i915_reg.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_reg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index d675d79efd48..6f6eed169630 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h | |||
@@ -243,14 +243,20 @@ | |||
243 | #define DISPLAY_PLANE_A (0<<20) | 243 | #define DISPLAY_PLANE_A (0<<20) |
244 | #define DISPLAY_PLANE_B (1<<20) | 244 | #define DISPLAY_PLANE_B (1<<20) |
245 | #define GFX_OP_PIPE_CONTROL(len) ((0x3<<29)|(0x3<<27)|(0x2<<24)|(len-2)) | 245 | #define GFX_OP_PIPE_CONTROL(len) ((0x3<<29)|(0x3<<27)|(0x2<<24)|(len-2)) |
246 | #define PIPE_CONTROL_CS_STALL (1<<20) | ||
246 | #define PIPE_CONTROL_QW_WRITE (1<<14) | 247 | #define PIPE_CONTROL_QW_WRITE (1<<14) |
247 | #define PIPE_CONTROL_DEPTH_STALL (1<<13) | 248 | #define PIPE_CONTROL_DEPTH_STALL (1<<13) |
248 | #define PIPE_CONTROL_WRITE_FLUSH (1<<12) | 249 | #define PIPE_CONTROL_WRITE_FLUSH (1<<12) |
250 | #define PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH (1<<12) /* gen6+ */ | ||
249 | #define PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE (1<<11) /* MBZ on Ironlake */ | 251 | #define PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE (1<<11) /* MBZ on Ironlake */ |
250 | #define PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE (1<<10) /* GM45+ only */ | 252 | #define PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE (1<<10) /* GM45+ only */ |
251 | #define PIPE_CONTROL_INDIRECT_STATE_DISABLE (1<<9) | 253 | #define PIPE_CONTROL_INDIRECT_STATE_DISABLE (1<<9) |
252 | #define PIPE_CONTROL_NOTIFY (1<<8) | 254 | #define PIPE_CONTROL_NOTIFY (1<<8) |
255 | #define PIPE_CONTROL_VF_CACHE_INVALIDATE (1<<4) | ||
256 | #define PIPE_CONTROL_CONST_CACHE_INVALIDATE (1<<3) | ||
257 | #define PIPE_CONTROL_STATE_CACHE_INVALIDATE (1<<2) | ||
253 | #define PIPE_CONTROL_STALL_AT_SCOREBOARD (1<<1) | 258 | #define PIPE_CONTROL_STALL_AT_SCOREBOARD (1<<1) |
259 | #define PIPE_CONTROL_DEPTH_CACHE_FLUSH (1<<0) | ||
254 | #define PIPE_CONTROL_GLOBAL_GTT (1<<2) /* in addr dword */ | 260 | #define PIPE_CONTROL_GLOBAL_GTT (1<<2) /* in addr dword */ |
255 | 261 | ||
256 | 262 | ||