mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
Many Intel GPUs can't switch between sync and async flips willy nilly. Sometimes that change itself will take one extra frame. This means that constant ping-pong between sync and async flips is only going to cause problems. Stay in async flip mode as long as the client is requesting it. The present protocol spec does say: "If 'options' contains PresentOptionAsync, and the 'target-msc' is less than or equal to the current msc for 'window', then the operation will be performed as soon as possible, not necessarily waiting for the next vertical blank interval." So there is an expectation that a future target-msc will still be respected even when PresentOptionAsync is specified. Staying in async flip mode won't actually change that given that present_scmd_pixmap() takes the flip mode into account when calculating exec_msc. So visually the flip should still happen on the correct target_msc regardles of whether we executed it as sync or async. Signed-off-by: notbabaisyou <though-went-some-simple@proton.me>
304 lines
10 KiB
C
304 lines
10 KiB
C
/*
|
|
* Copyright © 2013 Keith Packard
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
* that the name of the copyright holders not be used in advertising or
|
|
* publicity pertaining to distribution of the software without specific,
|
|
* written prior permission. The copyright holders make no representations
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
* is" without express or implied warranty.
|
|
*
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
* OF THIS SOFTWARE.
|
|
*/
|
|
#include <dix-config.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "present/present_priv.h"
|
|
|
|
void
|
|
present_vblank_notify(present_vblank_ptr vblank, CARD8 kind, CARD8 mode, uint64_t ust, uint64_t crtc_msc)
|
|
{
|
|
int n;
|
|
|
|
if (vblank->window)
|
|
present_send_complete_notify(vblank->window, kind, mode, vblank->serial, ust, crtc_msc - vblank->msc_offset);
|
|
for (n = 0; n < vblank->num_notifies; n++) {
|
|
WindowPtr window = vblank->notifies[n].window;
|
|
CARD32 serial = vblank->notifies[n].serial;
|
|
|
|
if (window)
|
|
present_send_complete_notify(window, kind, mode, serial, ust, crtc_msc - vblank->msc_offset);
|
|
}
|
|
}
|
|
|
|
static Bool
|
|
present_want_async_flip(uint32_t options, uint32_t capabilities)
|
|
{
|
|
if (options & PresentOptionAsync &&
|
|
capabilities & PresentCapabilityAsync)
|
|
return TRUE;
|
|
|
|
if (options & PresentOptionAsyncMayTear &&
|
|
capabilities & PresentCapabilityAsyncMayTear)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/* The memory vblank points to must be 0-initialized before calling this function.
|
|
*
|
|
* If this function returns FALSE, present_vblank_destroy must be called to clean
|
|
* up.
|
|
*/
|
|
Bool
|
|
present_vblank_init(present_vblank_ptr vblank,
|
|
WindowPtr window,
|
|
PixmapPtr pixmap,
|
|
CARD32 serial,
|
|
RegionPtr valid,
|
|
RegionPtr update,
|
|
int16_t x_off,
|
|
int16_t y_off,
|
|
RRCrtcPtr target_crtc,
|
|
SyncFence *wait_fence,
|
|
SyncFence *idle_fence,
|
|
#ifdef DRI3
|
|
struct dri3_syncobj *acquire_syncobj,
|
|
struct dri3_syncobj *release_syncobj,
|
|
uint64_t acquire_point,
|
|
uint64_t release_point,
|
|
#endif /* DRI3 */
|
|
uint32_t options,
|
|
const uint32_t capabilities,
|
|
present_notify_ptr notifies,
|
|
int num_notifies,
|
|
uint64_t target_msc,
|
|
uint64_t crtc_msc)
|
|
{
|
|
ScreenPtr screen = window->drawable.pScreen;
|
|
present_window_priv_ptr window_priv = present_get_window_priv(window, TRUE);
|
|
present_screen_priv_ptr screen_priv = present_screen_priv(screen);
|
|
PresentFlipReason reason = PRESENT_FLIP_REASON_UNKNOWN;
|
|
|
|
if (target_crtc) {
|
|
screen_priv = present_screen_priv(target_crtc->pScreen);
|
|
}
|
|
|
|
xorg_list_append(&vblank->window_list, &window_priv->vblank);
|
|
xorg_list_init(&vblank->event_queue);
|
|
|
|
vblank->screen = screen;
|
|
vblank->window = window;
|
|
vblank->pixmap = pixmap;
|
|
|
|
if (pixmap) {
|
|
vblank->kind = PresentCompleteKindPixmap;
|
|
pixmap->refcnt++;
|
|
} else
|
|
vblank->kind = PresentCompleteKindNotifyMSC;
|
|
|
|
vblank->serial = serial;
|
|
|
|
if (valid) {
|
|
vblank->valid = RegionDuplicate(valid);
|
|
if (!vblank->valid)
|
|
goto no_mem;
|
|
}
|
|
if (update) {
|
|
vblank->update = RegionDuplicate(update);
|
|
if (!vblank->update)
|
|
goto no_mem;
|
|
}
|
|
|
|
vblank->x_off = x_off;
|
|
vblank->y_off = y_off;
|
|
vblank->target_msc = target_msc;
|
|
vblank->exec_msc = target_msc;
|
|
vblank->crtc = target_crtc;
|
|
vblank->msc_offset = window_priv->msc_offset;
|
|
vblank->notifies = notifies;
|
|
vblank->num_notifies = num_notifies;
|
|
vblank->has_suboptimal = (options & PresentOptionSuboptimal);
|
|
|
|
if (pixmap != NULL &&
|
|
!(options & PresentOptionCopy) &&
|
|
screen_priv->check_flip) {
|
|
|
|
Bool sync_flip = !present_want_async_flip(options, capabilities);
|
|
|
|
if (screen_priv->check_flip (target_crtc, window, pixmap,
|
|
sync_flip, valid, x_off, y_off, &reason))
|
|
{
|
|
vblank->flip = TRUE;
|
|
vblank->sync_flip = sync_flip;
|
|
}
|
|
}
|
|
vblank->reason = reason;
|
|
|
|
if (wait_fence) {
|
|
vblank->wait_fence = present_fence_create(wait_fence);
|
|
if (!vblank->wait_fence)
|
|
goto no_mem;
|
|
}
|
|
|
|
if (idle_fence) {
|
|
vblank->idle_fence = present_fence_create(idle_fence);
|
|
if (!vblank->idle_fence)
|
|
goto no_mem;
|
|
}
|
|
|
|
#ifdef DRI3
|
|
vblank->efd = -1;
|
|
|
|
if (acquire_syncobj) {
|
|
vblank->acquire_syncobj = acquire_syncobj;
|
|
++acquire_syncobj->refcount;
|
|
vblank->acquire_point = acquire_point;
|
|
}
|
|
|
|
if (release_syncobj) {
|
|
vblank->release_syncobj = release_syncobj;
|
|
++release_syncobj->refcount;
|
|
vblank->release_point = release_point;
|
|
}
|
|
#endif /* DRI3 */
|
|
|
|
if (pixmap)
|
|
DebugPresent(("q %" PRIu64 " %p %" PRIu64 ": %08" PRIx32 " -> %08" PRIx32 " (crtc %p) flip %d vsync %d serial %d\n",
|
|
vblank->event_id, vblank, target_msc,
|
|
vblank->pixmap->drawable.id, vblank->window->drawable.id,
|
|
target_crtc, vblank->flip, vblank->sync_flip, vblank->serial));
|
|
return TRUE;
|
|
|
|
no_mem:
|
|
vblank->notifies = NULL;
|
|
return FALSE;
|
|
}
|
|
|
|
present_vblank_ptr
|
|
present_vblank_create(WindowPtr window,
|
|
PixmapPtr pixmap,
|
|
CARD32 serial,
|
|
RegionPtr valid,
|
|
RegionPtr update,
|
|
int16_t x_off,
|
|
int16_t y_off,
|
|
RRCrtcPtr target_crtc,
|
|
SyncFence *wait_fence,
|
|
SyncFence *idle_fence,
|
|
#ifdef DRI3
|
|
struct dri3_syncobj *acquire_syncobj,
|
|
struct dri3_syncobj *release_syncobj,
|
|
uint64_t acquire_point,
|
|
uint64_t release_point,
|
|
#endif /* DRI3 */
|
|
uint32_t options,
|
|
const uint32_t capabilities,
|
|
present_notify_ptr notifies,
|
|
int num_notifies,
|
|
uint64_t target_msc,
|
|
uint64_t crtc_msc)
|
|
{
|
|
present_vblank_ptr vblank = calloc(1, sizeof(present_vblank_rec));
|
|
|
|
if (!vblank)
|
|
return NULL;
|
|
|
|
if (present_vblank_init(vblank, window, pixmap, serial, valid, update,
|
|
x_off, y_off, target_crtc, wait_fence, idle_fence,
|
|
#ifdef DRI3
|
|
acquire_syncobj, release_syncobj,
|
|
acquire_point, release_point,
|
|
#endif /* DRI3 */
|
|
options, capabilities, notifies, num_notifies,
|
|
target_msc, crtc_msc))
|
|
return vblank;
|
|
|
|
present_vblank_destroy(vblank);
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
present_vblank_scrap(present_vblank_ptr vblank)
|
|
{
|
|
DebugPresent(("\tx %" PRIu64 " %p %" PRIu64 " %" PRIu64 ": %08" PRIx32 " -> %08" PRIx32 " (crtc %p)\n",
|
|
vblank->event_id, vblank, vblank->exec_msc, vblank->target_msc,
|
|
vblank->pixmap->drawable.id, vblank->window->drawable.id,
|
|
vblank->crtc));
|
|
|
|
#ifdef DRI3
|
|
if (vblank->release_syncobj)
|
|
vblank->release_syncobj->signal(vblank->release_syncobj,
|
|
vblank->release_point);
|
|
else
|
|
#endif /* DRI3 */
|
|
present_pixmap_idle(vblank->pixmap, vblank->window, vblank->serial, vblank->idle_fence);
|
|
|
|
present_fence_destroy(vblank->idle_fence);
|
|
dixDestroyPixmap(vblank->pixmap, vblank->pixmap->drawable.id);
|
|
|
|
vblank->pixmap = NULL;
|
|
vblank->idle_fence = NULL;
|
|
vblank->flip = FALSE;
|
|
}
|
|
|
|
void
|
|
present_vblank_destroy(present_vblank_ptr vblank)
|
|
{
|
|
/* Remove vblank from window and screen lists */
|
|
xorg_list_del(&vblank->window_list);
|
|
/* Also make sure vblank is removed from event queue (wnmd) */
|
|
xorg_list_del(&vblank->event_queue);
|
|
|
|
DebugPresent(("\td %" PRIu64 " %p %" PRIu64 " %" PRIu64 ": %08" PRIx32 " -> %08" PRIx32 "\n",
|
|
vblank->event_id, vblank, vblank->exec_msc, vblank->target_msc,
|
|
vblank->pixmap ? vblank->pixmap->drawable.id : 0,
|
|
vblank->window ? vblank->window->drawable.id : 0));
|
|
|
|
/* Drop pixmap reference */
|
|
if (vblank->pixmap)
|
|
dixDestroyPixmap(vblank->pixmap, vblank->pixmap->drawable.id);
|
|
|
|
/* Free regions */
|
|
if (vblank->valid)
|
|
RegionDestroy(vblank->valid);
|
|
if (vblank->update)
|
|
RegionDestroy(vblank->update);
|
|
|
|
if (vblank->wait_fence)
|
|
present_fence_destroy(vblank->wait_fence);
|
|
|
|
if (vblank->idle_fence)
|
|
present_fence_destroy(vblank->idle_fence);
|
|
|
|
if (vblank->notifies)
|
|
present_destroy_notifies(vblank->notifies, vblank->num_notifies);
|
|
|
|
#ifdef DRI3
|
|
if (vblank->efd >= 0) {
|
|
SetNotifyFd(vblank->efd, NULL, 0, NULL);
|
|
close(vblank->efd);
|
|
}
|
|
|
|
if (vblank->acquire_syncobj &&
|
|
--vblank->acquire_syncobj->refcount == 0)
|
|
vblank->acquire_syncobj->free(vblank->acquire_syncobj);
|
|
|
|
if (vblank->release_syncobj &&
|
|
--vblank->release_syncobj->refcount == 0)
|
|
vblank->release_syncobj->free(vblank->release_syncobj);
|
|
#endif /* DRI3 */
|
|
|
|
free(vblank);
|
|
}
|