From: Alexander Goins <agoins@nvidia.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: "dri-devel@lists.freedesktop.org" <dri-devel@lists.freedesktop.org>
Subject: RE: [PATCH i915 v4 1/2] i915: wait for fences in mmio_flip()
Date: Fri, 20 Nov 2015 21:51:36 +0000 [thread overview]
Message-ID: <87ef26eb0bc140989720cb47ca1288db@HQMAIL103.nvidia.com> (raw)
In-Reply-To: <20151120082120.GR17050@phenom.ffwll.local>
Alright, will do.
Thanks,
Alex
-----Original Message-----
From: Daniel Vetter [mailto:daniel.vetter@ffwll.ch] On Behalf Of Daniel Vetter
Sent: Friday, November 20, 2015 12:21 AM
To: Alexander Goins
Cc: dri-devel@lists.freedesktop.org; daniel@fooishbar.org; daniel@ffwll.ch; maarten.lankhorst@linux.intel.com; chris@chris-wilson.co.uk
Subject: Re: [PATCH i915 v4 1/2] i915: wait for fences in mmio_flip()
On Thu, Nov 19, 2015 at 07:51:25PM -0800, Alex Goins wrote:
> If a buffer is backed by dmabuf, wait on its reservation object's
> fences before flipping.
>
> Signed-off-by: Alex Goins <agoins@nvidia.com>
When resending patches please add a per-revision changelog to each patch with notes what changed. Otherwise reviewers have to recollect all the context themselves by digging through old threads.
Can you please resend with that added?
Thanks, Daniel
> ---
> drivers/gpu/drm/i915/intel_display.c | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c
> b/drivers/gpu/drm/i915/intel_display.c
> index b2270d5..4867ff0 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -44,6 +44,8 @@
> #include <drm/drm_plane_helper.h>
> #include <drm/drm_rect.h>
> #include <linux/dma_remapping.h>
> +#include <linux/reservation.h>
> +#include <linux/dma-buf.h>
>
> /* Primary plane formats for gen <= 3 */ static const uint32_t
> i8xx_primary_formats[] = { @@ -11088,6 +11090,8 @@ static bool
> use_mmio_flip(struct intel_engine_cs *ring,
> return true;
> else if (i915.enable_execlists)
> return true;
> + else if (obj->base.dma_buf && obj->base.dma_buf->resv->fence_excl)
> + return true;
> else
> return ring != i915_gem_request_get_ring(obj->last_write_req);
> }
> @@ -11170,8 +11174,18 @@ static void ilk_do_mmio_flip(struct
> intel_crtc *intel_crtc) static void intel_do_mmio_flip(struct
> intel_crtc *intel_crtc) {
> struct drm_device *dev = intel_crtc->base.dev;
> + struct intel_framebuffer *intel_fb =
> + to_intel_framebuffer(intel_crtc->base.primary->fb);
> + struct drm_i915_gem_object *obj = intel_fb->obj;
> u32 start_vbl_count;
>
> + /* For framebuffer backed by dmabuf, wait for fence */
> + if (obj->base.dma_buf) {
> + reservation_object_wait_timeout_rcu(
> + obj->base.dma_buf->resv,
> + false, true, MAX_SCHEDULE_TIMEOUT);
> + }
> +
> intel_mark_page_flip_active(intel_crtc);
>
> intel_pipe_update_start(intel_crtc, &start_vbl_count);
> --
> 1.9.1
>
>
> ----------------------------------------------------------------------
> ------------- This email message is for the sole use of the intended
> recipient(s) and may contain confidential information. Any
> unauthorized review, use, disclosure or distribution is prohibited.
> If you are not the intended recipient, please contact the sender by
> reply email and destroy all copies of the original message.
> ----------------------------------------------------------------------
> -------------
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2015-11-20 21:51 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-20 3:51 [PATCH i915 v4 0/2] PRIME Synchronization Alex Goins
2015-11-20 3:51 ` [PATCH i915 v4 1/2] i915: wait for fences in mmio_flip() Alex Goins
2015-11-20 8:21 ` Daniel Vetter
2015-11-20 21:51 ` Alexander Goins [this message]
2015-11-20 11:30 ` Ville Syrjälä
2015-11-20 21:51 ` Alexander Goins
2015-11-20 3:51 ` [PATCH i915 v4 2/2] i915: wait for fence in prepare_plane_fb Alex Goins
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=87ef26eb0bc140989720cb47ca1288db@HQMAIL103.nvidia.com \
--to=agoins@nvidia.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox