dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Gustavo Padovan <gustavo@padovan.org>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: Gustavo Padovan <gustavo.padovan@collabora.co.uk>,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/fence: add fence timeline to drm_crtc
Date: Wed, 16 Nov 2016 18:02:10 +0900	[thread overview]
Message-ID: <20161116090210.GB20601@joana> (raw)
In-Reply-To: <20161116081158.tj2rtamok3y5mgy5@phenom.ffwll.local>

2016-11-16 Daniel Vetter <daniel@ffwll.ch>:

> On Tue, Nov 15, 2016 at 11:37:08PM +0900, Gustavo Padovan wrote:
> > From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> > 
> > Create one timeline context for each CRTC to be able to handle out-fences
> > and signal them. It adds a few members to struct drm_crtc: fence_context,
> > where we store the context we get from fence_context_alloc(), the
> > fence seqno and the fence lock, that we pass in fence_init() to be
> > used by the fence.
> > 
> > v2: Comment by Daniel Stone:
> > 	- add BUG_ON() to fence_to_crtc() macro
> > 
> > v3: Comment by Ville Syrjälä
> > 	- Use more meaningful name as crtc timeline name
> > 
> > v4: Comments by Brian Starkey
> > 	- Use even more meaninful name for the crtc timeline
> > 	- add doc for timeline_name
> >     Comment by Daniel Vetter
> > 	- use in-line style for comments
> > 
> >     - rebase after fence -> dma_fence rename
> > 
> > v5: Comment by Daniel Vetter
> > 	- Add doc for drm_crtc_fence_ops
> > 
> > v6: Comment by Chris Wilson
> > 	- Move fence_to_crtc to drm_crtc.c
> > 	- Move export of drm_crtc_fence_ops to drm_crtc_internal.h
> > 
> >     - rebase against latest drm-misc
> > 
> > Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> > Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v5)
> > Reviewed-by: Sean Paul <seanpaul@chromium.org> (v5)
> > Tested-by: Robert Foss <robert.foss@collabora.com> (v5)
> > ---
> >  drivers/gpu/drm/drm_crtc.c          | 38 +++++++++++++++++++++++++++++++++++++
> >  drivers/gpu/drm/drm_crtc_internal.h |  2 ++
> >  include/drm/drm_crtc.h              | 29 ++++++++++++++++++++++++++++
> >  3 files changed, 69 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
> > index c19ecc2..02e9451 100644
> > --- a/drivers/gpu/drm/drm_crtc.c
> > +++ b/drivers/gpu/drm/drm_crtc.c
> > @@ -33,6 +33,7 @@
> >  #include <linux/list.h>
> >  #include <linux/slab.h>
> >  #include <linux/export.h>
> > +#include <linux/dma-fence.h>
> >  #include <drm/drmP.h>
> >  #include <drm/drm_crtc.h>
> >  #include <drm/drm_edid.h>
> > @@ -163,6 +164,38 @@ static void drm_crtc_crc_fini(struct drm_crtc *crtc)
> >  #endif
> >  }
> >  
> > +static struct drm_crtc *fence_to_crtc(struct dma_fence *fence)
> > +{
> > +	BUG_ON(fence->ops != &drm_crtc_fence_ops);
> > +	return container_of(fence->lock, struct drm_crtc, fence_lock);
> > +}
> > +
> > +static const char *drm_crtc_fence_get_driver_name(struct dma_fence *fence)
> > +{
> > +	struct drm_crtc *crtc = fence_to_crtc(fence);
> > +
> > +	return crtc->dev->driver->name;
> > +}
> > +
> > +static const char *drm_crtc_fence_get_timeline_name(struct dma_fence *fence)
> > +{
> > +	struct drm_crtc *crtc = fence_to_crtc(fence);
> > +
> > +	return crtc->timeline_name;
> > +}
> > +
> > +static bool drm_crtc_fence_enable_signaling(struct dma_fence *fence)
> > +{
> > +	return true;
> > +}
> > +
> > +const struct dma_fence_ops drm_crtc_fence_ops = {
> > +	.get_driver_name = drm_crtc_fence_get_driver_name,
> > +	.get_timeline_name = drm_crtc_fence_get_timeline_name,
> > +	.enable_signaling = drm_crtc_fence_enable_signaling,
> > +	.wait = dma_fence_default_wait,
> > +};
> > +
> >  /**
> >   * drm_crtc_init_with_planes - Initialise a new CRTC object with
> >   *    specified primary and cursor planes.
> > @@ -220,6 +253,11 @@ int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
> >  		return -ENOMEM;
> >  	}
> >  
> > +	crtc->fence_context = dma_fence_context_alloc(1);
> > +	spin_lock_init(&crtc->fence_lock);
> > +	snprintf(crtc->timeline_name, sizeof(crtc->timeline_name),
> > +		 "CRTC:%d-%s", crtc->base.id, crtc->name);
> > +
> >  	crtc->base.properties = &crtc->properties;
> >  
> >  	list_add_tail(&crtc->head, &config->crtc_list);
> > diff --git a/drivers/gpu/drm/drm_crtc_internal.h b/drivers/gpu/drm/drm_crtc_internal.h
> > index 64bb3eb..036b972 100644
> > --- a/drivers/gpu/drm/drm_crtc_internal.h
> > +++ b/drivers/gpu/drm/drm_crtc_internal.h
> > @@ -43,6 +43,8 @@ int drm_crtc_check_viewport(const struct drm_crtc *crtc,
> >  
> >  void drm_fb_release(struct drm_file *file_priv);
> >  
> > +extern const struct dma_fence_ops drm_crtc_fence_ops;
> 
> Do we still needs this after you've moved the cast helper?

Yes, because we use drm_crtc_fence_ops to create fences in drm_atomic.c

Gustavo

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2016-11-16  9:02 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-15 13:06 [PATCH v12 0/3] drm: add explicit fencing Gustavo Padovan
2016-11-15 13:06 ` [PATCH v12 1/3] drm/fence: add in-fences support Gustavo Padovan
2016-11-15 13:06 ` [PATCH v12 2/3] drm/fence: add fence timeline to drm_crtc Gustavo Padovan
2016-11-15 14:37   ` [PATCH] " Gustavo Padovan
2016-11-16  8:11     ` Daniel Vetter
2016-11-16  9:02       ` Gustavo Padovan [this message]
2016-11-16  9:43         ` Daniel Vetter
2016-11-15 13:06 ` [PATCH v12 3/3] drm/fence: add out-fences support Gustavo Padovan
2016-11-16  9:10   ` Chris Wilson
2016-11-15 14:26 ` [PATCH v12 0/3] drm: add explicit fencing Sean Paul

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=20161116090210.GB20601@joana \
    --to=gustavo@padovan.org \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gustavo.padovan@collabora.co.uk \
    /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;
as well as URLs for NNTP newsgroup(s).