diff options
author | Chris Wilson <[email protected]> | 2014-09-12 07:37:42 +0100 |
---|---|---|
committer | Jani Nikula <[email protected]> | 2014-09-15 09:55:52 +0300 |
commit | 611a7a4fd8b5fb6b25ab1f8bdcde61800a7feacf (patch) | |
tree | 07362f625ad626f94b4a9690555420018e05255c | |
parent | 9e82bf014195d6f0054982c463575cdce24292be (diff) |
drm/i915: Fix SRC_COPY width on 830/845g
One small change I forgot to make in
commit c4d69da167fa967749aeb70bc0e94a457e5d00c1
Author: Chris Wilson <[email protected]>
Date: Mon Sep 8 14:25:41 2014 +0100
drm/i915: Evict CS TLBs between batches
was to update the copy width for the compact BLT copy instruction.
Reported-by: Thomas Richter <[email protected]>
Signed-off-by: Chris Wilson <[email protected]>
Cc: Thomas Richter <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: [email protected]
Tested-by: Thomas Richter <[email protected]>
Acked-by: Daniel Vetter <[email protected]>
Signed-off-by: Jani Nikula <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/intel_ringbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c index 2d068edd1adc..47a126a0493f 100644 --- a/drivers/gpu/drm/i915/intel_ringbuffer.c +++ b/drivers/gpu/drm/i915/intel_ringbuffer.c @@ -1400,7 +1400,7 @@ i830_dispatch_execbuffer(struct intel_engine_cs *ring, */ intel_ring_emit(ring, SRC_COPY_BLT_CMD | BLT_WRITE_RGBA); intel_ring_emit(ring, BLT_DEPTH_32 | BLT_ROP_SRC_COPY | 4096); - intel_ring_emit(ring, DIV_ROUND_UP(len, 4096) << 16 | 1024); + intel_ring_emit(ring, DIV_ROUND_UP(len, 4096) << 16 | 4096); intel_ring_emit(ring, cs_offset); intel_ring_emit(ring, 4096); intel_ring_emit(ring, offset); |