From: Pekka Paalanen <ppaalanen-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> To: Daniel Stone <daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org> Cc: Emil Velikov <emil.l.velikov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>, Sean Paul <seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>, Maarten Lankhorst <maarten.lankhorst-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org, "wayland-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org" <wayland-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> Subject: Re: [PATCH libdrm 2/2] Add CRTC ID to vblank event Date: Wed, 5 Apr 2017 12:26:19 +0300 [thread overview] Message-ID: <20170405122619.21d0a0ff@eldfell> (raw) In-Reply-To: <20170404165221.28240-1-daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org> [-- Attachment #1.1: Type: text/plain, Size: 5311 bytes --] On Tue, 4 Apr 2017 17:52:20 +0100 Daniel Stone <daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org> wrote: > From: Ander Conselvan de Oliveira <ander.conselvan.de.oliveira-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > When using the atomic API, one request can span multiple CRTCs, however > one event is generated per CRTC. As we cannot disambiguate the CRTC with > user data (since we only have one piece of user data to pass in), newer > kernels can include the CRTC ID in the page flip event. > > Add a new vfunc to dispatch vblank events carrying a CRTC ID to clients > who negotiate a higher interface version. > > [daniels: Rebased, include new cap, call page_flip_handler if it is set > but page_flip_handler2 isn't even on newer contexts, write a > commit message.] > > Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan.de.oliveira@intel.com> > Signed-off-by: Daniel Stone <daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org> > Cc: Maarten Lankhorst <maarten.lankhorst-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > --- > include/drm/drm.h | 3 ++- > xf86drm.h | 9 ++++++++- > xf86drmMode.c | 24 ++++++++++++++++-------- > 3 files changed, 26 insertions(+), 10 deletions(-) > Hi, I'm replying to this patch to keep the scope rather than the split ones which are needed together and have unrelated changes. > diff --git a/include/drm/drm.h b/include/drm/drm.h > index 09d4262f..c4492372 100644 > --- a/include/drm/drm.h > +++ b/include/drm/drm.h > @@ -641,6 +641,7 @@ struct drm_gem_open { > #define DRM_CAP_CURSOR_HEIGHT 0x9 > #define DRM_CAP_ADDFB2_MODIFIERS 0x10 > #define DRM_CAP_PAGE_FLIP_TARGET 0x11 > +#define DRM_CAP_CRTC_IN_VBLANK_EVENT 0x12 > > /** DRM_IOCTL_GET_CAP ioctl argument type */ > struct drm_get_cap { > @@ -846,7 +847,7 @@ struct drm_event_vblank { > __u32 tv_sec; > __u32 tv_usec; > __u32 sequence; > - __u32 reserved; > + __u32 crtc_id; > }; > > /* typedef area */ > diff --git a/xf86drm.h b/xf86drm.h > index 0d927018..d75ca8ce 100644 > --- a/xf86drm.h > +++ b/xf86drm.h > @@ -728,7 +728,7 @@ extern void drmMsg(const char *format, ...) DRM_PRINTFLIKE(1, 2); > extern int drmSetMaster(int fd); > extern int drmDropMaster(int fd); > > -#define DRM_EVENT_CONTEXT_VERSION 2 > +#define DRM_EVENT_CONTEXT_VERSION 3 > > typedef struct _drmEventContext { > > @@ -748,6 +748,13 @@ typedef struct _drmEventContext { > unsigned int tv_usec, > void *user_data); > > + void (*page_flip_handler2)(int fd, > + unsigned int sequence, > + unsigned int tv_sec, > + unsigned int tv_usec, > + unsigned int crtc_id, > + void *user_data); > + > } drmEventContext, *drmEventContextPtr; > > extern int drmHandleEvent(int fd, drmEventContextPtr evctx); > diff --git a/xf86drmMode.c b/xf86drmMode.c > index fb47fa8b..b71520aa 100644 > --- a/xf86drmMode.c > +++ b/xf86drmMode.c > @@ -889,6 +889,7 @@ int drmHandleEvent(int fd, drmEventContextPtr evctx) > int len, i; > struct drm_event *e; > struct drm_event_vblank *vblank; > + void *user_data; > > /* The DRM read semantics guarantees that we always get only > * complete events. */ > @@ -915,15 +916,22 @@ int drmHandleEvent(int fd, drmEventContextPtr evctx) > U642VOID (vblank->user_data)); > break; > case DRM_EVENT_FLIP_COMPLETE: > - if (evctx->version < 2 || > - evctx->page_flip_handler == NULL) > - break; > vblank = (struct drm_event_vblank *) e; > - evctx->page_flip_handler(fd, > - vblank->sequence, > - vblank->tv_sec, > - vblank->tv_usec, > - U642VOID (vblank->user_data)); > + user_data = U642VOID (vblank->user_data); > + > + if (evctx->version >= 3 && evctx->page_flip_handler2) > + evctx->page_flip_handler2(fd, > + vblank->sequence, > + vblank->tv_sec, > + vblank->tv_usec, > + vblank->crtc_id, > + user_data); > + else if (evctx->version >= 2 && evctx->page_flip_handler) > + evctx->page_flip_handler(fd, > + vblank->sequence, > + vblank->tv_sec, > + vblank->tv_usec, > + user_data); > break; > default: > break; This is excellent. I have browsed through Weston's DRM backend as of Daniel's atomic series v9, and the end result looks good. It depends on the CRTC ID in the pageflip events. There Weston runs each CRTC independently, but at opportunity will coalesce updates to several CRTCs into the same atomic commit. As the repaint state machines are per CRTC in Weston, it is necessary to know which CRTC completed the pageflip at a time to avoid stalling everything until the last one or not being able to coalesce across CRTCs at all. Being able to coalesce across CRTCs is important particularly for modesets where programming all CRTCs in one go improves the chances of the transition succeeding in hardware. I also cannot think of needing anything more in the event. For instance, if DRM flip queue depth was grown beyond the current of one, we can use the user data pointer to identify which atomic commit is completing. This patch gets all thumbs up from me on behalf of Weston. Thanks, pq [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 833 bytes --] [-- Attachment #2: Type: text/plain, Size: 172 bytes --] _______________________________________________ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel
prev parent reply other threads:[~2017-04-05 9:26 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2017-04-04 16:51 [REPOST PATCH 1/2] Add CRTC ID to vblank events Daniel Stone 2017-04-04 16:52 ` [PATCH libdrm 2/2] Add CRTC ID to vblank event Daniel Stone 2017-04-04 16:52 ` [PATCH kernel 1/2] drm: Pass CRTC ID in userspace vblank events Daniel Stone 2017-04-04 17:58 ` Sean Paul 2017-04-04 20:53 ` Daniel Stone 2017-04-04 17:12 ` [PATCH libdrm 2/2] Add CRTC ID to vblank event Emil Velikov 2017-04-04 17:14 ` Daniel Stone 2017-04-04 20:49 ` [PATCH libdrm v2 1/2] Headers: Sync drm{,_mode}.h with the kernel Daniel Stone 2017-04-04 20:49 ` [PATCH libdrm v2 2/2] Add CRTC ID to vblank event Daniel Stone [not found] ` <20170404165221.28240-1-daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org> 2017-04-05 9:26 ` Pekka Paalanen [this message]
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=20170405122619.21d0a0ff@eldfell \ --to=ppaalanen-re5jqeeqqe8avxtiumwx3w@public.gmane.org \ --cc=daniels-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org \ --cc=dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \ --cc=emil.l.velikov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \ --cc=maarten.lankhorst-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \ --cc=seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \ --cc=wayland-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \ --subject='Re: [PATCH libdrm 2/2] Add CRTC ID to vblank event' \ /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
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.