diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2016-08-18 19:16:56 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2016-08-19 00:36:48 +0300 |
commit | 9d80841ea4c9df420da3f9a61a819d09a03f2161 (patch) | |
tree | 51cd7c74bc0d94dd37cac9b2fbd0f8d9107894df /drivers/gpu/drm/i915/intel_ringbuffer.h | |
parent | 05a20d098db1e3318228e7c281cd9b2d3d25f12b (diff) | |
download | linux-9d80841ea4c9df420da3f9a61a819d09a03f2161.tar.xz |
drm/i915: Allow ringbuffers to be bound anywhere
Now that we have WC vmapping available, we can bind our rings anywhere
in the GGTT and do not need to restrict them to the mappable region.
Except for stolen objects, for which direct access is verbatim and we
must use the mappable aperture.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160818161718.27187-17-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/intel_ringbuffer.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_ringbuffer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.h b/drivers/gpu/drm/i915/intel_ringbuffer.h index 86612d502c65..84aea549de5d 100644 --- a/drivers/gpu/drm/i915/intel_ringbuffer.h +++ b/drivers/gpu/drm/i915/intel_ringbuffer.h @@ -96,7 +96,6 @@ struct intel_ring { int space; int size; int effective_size; - bool needs_iomap; /** We track the position of the requests in the ring buffer, and * when each is retired we increment last_retired_head as the GPU |