summaryrefslogtreecommitdiff
path: root/lib/i830_reg.h
diff options
context:
space:
mode:
authorBen Widawsky <benjamin.widawsky@intel.com>2013-10-08 15:02:07 -0700
committerBen Widawsky <benjamin.widawsky@intel.com>2013-11-06 09:34:35 -0800
commitf4dfa37e8578419b94a7c84fbcea7d4b70aa68b9 (patch)
tree61de7af4da15cdedd65af14d20081d0c6e0a9913 /lib/i830_reg.h
parent26f09a91897f6ad66b8fb8e0e5afb4c95954fbd2 (diff)
bdw: Update obvious missing blit support
This provides a macro that allows us to update all the arbitrary blit commands we have stuck throughout the code. It assumes we don't actually use 64b relocs (which is currently true). This also allows us to easily find all the areas we need to update later when we really use the upper dword. This block was done mostly with a sed job, and represents the easier in test blit implementations. v2 by Oscar: s/OUT_BATCH/BEGIN_BATCH in BLIT_COPY_BATCH_START CC: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Oscar Mateo <oscar.mateo@intel.com>
Diffstat (limited to 'lib/i830_reg.h')
-rw-r--r--lib/i830_reg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/i830_reg.h b/lib/i830_reg.h
index 4d4e6188..394e74e7 100644
--- a/lib/i830_reg.h
+++ b/lib/i830_reg.h
@@ -80,7 +80,7 @@
#define XY_SETUP_CLIP_BLT_CMD ((2<<29)|(3<<22)|1)
-#define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22)|6)
+#define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22))
#define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21)
#define XY_SRC_COPY_BLT_WRITE_RGB (1<<20)
#define XY_SRC_COPY_BLT_SRC_TILED (1<<15)