[Intel-gfx] [PATCH 4/4] drm/i915: Simplify relocate_entry_gtt() and make 64-bit safe
Daniel Vetter
daniel at ffwll.ch
Mon Aug 11 14:16:47 CEST 2014
On Sun, Aug 10, 2014 at 06:29:11AM +0100, Chris Wilson wrote:
> Even though we should not try to use 4+GiB GTTs on 32-bit systems, by
> using a local variable we can future proof the code whilst making it
> easier to read.
>
> Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
Appeased checkpatch a bit for the long lines and pulled this in with the
other patches from this series, except the likely/unlikely one.
Thanks, Daniel
> ---
> drivers/gpu/drm/i915/i915_gem_execbuffer.c | 23 ++++++++++-------------
> 1 file changed, 10 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> index e6fcd0594bd5..5c04f77f8a66 100644
> --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
> @@ -302,7 +302,7 @@ relocate_entry_gtt(struct drm_i915_gem_object *obj,
> struct drm_device *dev = obj->base.dev;
> struct drm_i915_private *dev_priv = dev->dev_private;
> uint64_t delta = reloc->delta + target_offset;
> - uint32_t __iomem *reloc_entry;
> + uint64_t offset;
> void __iomem *reloc_page;
> int ret;
>
> @@ -315,25 +315,22 @@ relocate_entry_gtt(struct drm_i915_gem_object *obj,
> return ret;
>
> /* Map the page containing the relocation we're going to perform. */
> - reloc->offset += i915_gem_obj_ggtt_offset(obj);
> + offset = i915_gem_obj_ggtt_offset(obj);
> + offset += reloc->offset;
> reloc_page = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
> - reloc->offset & PAGE_MASK);
> - reloc_entry = (uint32_t __iomem *)
> - (reloc_page + offset_in_page(reloc->offset));
> - iowrite32(lower_32_bits(delta), reloc_entry);
> + offset & PAGE_MASK);
> + iowrite32(lower_32_bits(delta), reloc_page + offset_in_page(offset));
>
> if (INTEL_INFO(dev)->gen >= 8) {
> - reloc_entry += 1;
> + offset += sizeof(uint32_t);
>
> - if (offset_in_page(reloc->offset + sizeof(uint32_t)) == 0) {
> + if (offset_in_page(offset) == 0) {
> io_mapping_unmap_atomic(reloc_page);
> - reloc_page = io_mapping_map_atomic_wc(
> - dev_priv->gtt.mappable,
> - reloc->offset + sizeof(uint32_t));
> - reloc_entry = reloc_page;
> + reloc_page = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
> + offset);
> }
>
> - iowrite32(upper_32_bits(delta), reloc_entry);
> + iowrite32(upper_32_bits(delta), reloc_page + offset_in_page(offset));
> }
>
> io_mapping_unmap_atomic(reloc_page);
> --
> 2.1.0.rc1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
More information about the Intel-gfx
mailing list