From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2 3/6] drm/i915: Use WC copies on !llc platforms for the command parser
Date: Fri, 20 Nov 2015 17:05:05 +0200 [thread overview]
Message-ID: <20151120150505.GN4437@intel.com> (raw)
In-Reply-To: <1448016961-25331-4-git-send-email-chris@chris-wilson.co.uk>
On Fri, Nov 20, 2015 at 10:55:58AM +0000, Chris Wilson wrote:
> Since we blow the TLB caches by using kmap/kunmap, we may as well go the
> whole hog and see if declaring our destination page as WC is faster than
> keeping it as WB and using clflush. It should be!
Is this description for another patch? I can't see any WC stuff in
there.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> ---
> drivers/gpu/drm/i915/i915_cmd_parser.c | 19 +++++++++++++++----
> 1 file changed, 15 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_cmd_parser.c b/drivers/gpu/drm/i915/i915_cmd_parser.c
> index c6f6d9f2b2ce..4a3e90b042c5 100644
> --- a/drivers/gpu/drm/i915/i915_cmd_parser.c
> +++ b/drivers/gpu/drm/i915/i915_cmd_parser.c
> @@ -992,9 +992,10 @@ int i915_parse_cmds(struct intel_engine_cs *ring,
> const struct drm_i915_cmd_descriptor *desc = &default_desc;
> u32 last_cmd_header = 0;
> unsigned dst_iter, src_iter;
> - int needs_clflush = 0;
> struct get_page rewind;
> void *src, *dst, *tmp;
> + int src_needs_clflush = 0;
> + bool dst_needs_clflush;
> u32 partial, length = 1;
> unsigned in, out;
> bool oacontrol_set = false; /* OACONTROL tracking. See check_cmd() */
> @@ -1007,13 +1008,19 @@ int i915_parse_cmds(struct intel_engine_cs *ring,
> if (WARN_ON(shadow_batch_obj->pages_pin_count == 0))
> return -ENODEV;
>
> - ret = i915_gem_obj_prepare_shmem_read(batch_obj, &needs_clflush);
> + ret = i915_gem_obj_prepare_shmem_read(batch_obj, &src_needs_clflush);
> if (ret) {
> DRM_DEBUG_DRIVER("CMD: failed to prepare shadow batch\n");
> return ret;
> }
>
> - ret = i915_gem_object_set_to_cpu_domain(shadow_batch_obj, true);
> + dst_needs_clflush =
> + shadow_batch_obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
> + !INTEL_INFO(shadow_batch_obj->base.dev)->has_llc;
> + if (dst_needs_clflush)
> + ret = i915_gem_object_set_to_gtt_domain(shadow_batch_obj, true);
> + else
> + ret = i915_gem_object_set_to_cpu_domain(shadow_batch_obj, true);
> if (ret) {
> DRM_DEBUG_DRIVER("CMD: Failed to set shadow batch to CPU\n");
> goto unpin;
> @@ -1048,7 +1055,7 @@ int i915_parse_cmds(struct intel_engine_cs *ring,
> this = PAGE_SIZE - in;
>
> src = kmap_atomic(i915_gem_object_get_page(batch_obj, src_iter));
> - if (needs_clflush)
> + if (src_needs_clflush)
> drm_clflush_virt_range(src + in, this);
>
> if (this == PAGE_SIZE && partial == 0)
> @@ -1151,6 +1158,8 @@ int i915_parse_cmds(struct intel_engine_cs *ring,
> int len;
>
> if (out == PAGE_SIZE) {
> + if (dst_needs_clflush)
> + drm_clflush_virt_range(dst, PAGE_SIZE);
> kunmap_atomic(dst);
> dst = kmap_atomic(i915_gem_object_get_page(shadow_batch_obj, ++dst_iter));
> out = 0;
> @@ -1179,6 +1188,8 @@ int i915_parse_cmds(struct intel_engine_cs *ring,
> kunmap_atomic(src);
> in = 0;
> }
> + if (dst_needs_clflush)
> + drm_clflush_virt_range(dst, out);
> unmap:
> kunmap_atomic(src);
> kunmap_atomic(dst);
> --
> 2.6.2
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-11-20 15:05 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-20 10:55 cmdparser overhead reduction Chris Wilson
2015-11-20 10:55 ` [PATCH v2 1/6] drm/i915: Eliminate vmap overhead for cmd parser Chris Wilson
2015-11-20 14:41 ` Ville Syrjälä
2015-11-20 14:52 ` Chris Wilson
2015-11-20 15:31 ` [PATCH v3] " Chris Wilson
2015-11-25 19:51 ` Ville Syrjälä
2015-11-25 20:13 ` Chris Wilson
2015-11-25 21:15 ` Ville Syrjälä
2015-11-20 10:55 ` [PATCH v2 2/6] drm/i915: Cache last cmd descriptor when parsing Chris Wilson
2015-11-20 15:08 ` Ville Syrjälä
2015-11-20 15:44 ` Chris Wilson
2015-12-01 17:30 ` Ville Syrjälä
2015-11-20 10:55 ` [PATCH v2 3/6] drm/i915: Use WC copies on !llc platforms for the command parser Chris Wilson
2015-11-20 15:05 ` Ville Syrjälä [this message]
2015-11-20 15:22 ` Chris Wilson
2015-12-01 17:32 ` Ville Syrjälä
2015-11-20 10:55 ` [PATCH v2 4/6] drm/i915: Reduce arithmetic operations during cmd parser lookup Chris Wilson
2015-11-20 15:02 ` Ville Syrjälä
2015-11-20 10:56 ` [PATCH v2 5/6] drm/i915: Reduce pointer indirection " Chris Wilson
2015-11-20 15:27 ` Ville Syrjälä
2015-11-20 15:34 ` Chris Wilson
2015-11-20 15:47 ` Ville Syrjälä
2015-11-23 8:09 ` Jani Nikula
2015-12-01 17:39 ` Ville Syrjälä
2015-11-20 10:56 ` [PATCH v2 6/6] drm/i915: Improve hash function for the command parser Chris Wilson
2015-11-20 15:13 ` Ville Syrjälä
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151120150505.GN4437@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.