mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-13 08:22:16 -04:00
This helper monitors buffers for implicit and explicit work synchronization, delaying the surface commit until the fences are ready to be consumed for synchronization (i.e., fences have materialized), or for the work to be complete, depending on the specified waiter mode. Through this, the compositor can avoid stalling on incomplete work, staying fully interactive until the buffer is ready to be sampled. This is a generalization of Simon's patch that added a waiter for traditional implicit sync. Based-on-patch-by: Simon Ser <contact@emersion.fr>
260 lines
6.7 KiB
C
260 lines
6.7 KiB
C
#include <assert.h>
|
|
#include <xf86drm.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <wayland-server-core.h>
|
|
#include <wlr/render/drm_syncobj.h>
|
|
#include <wlr/util/addon.h>
|
|
#include <wlr/util/log.h>
|
|
|
|
#include "config.h"
|
|
|
|
#if HAVE_EVENTFD
|
|
#include <sys/eventfd.h>
|
|
#endif
|
|
|
|
static struct wlr_drm_syncobj_timeline *timeline_create(int drm_fd, uint32_t handle) {
|
|
struct wlr_drm_syncobj_timeline *timeline = calloc(1, sizeof(*timeline));
|
|
if (timeline == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
timeline->drm_fd = drm_fd;
|
|
timeline->n_refs = 1;
|
|
timeline->handle = handle;
|
|
|
|
wlr_addon_set_init(&timeline->addons);
|
|
|
|
return timeline;
|
|
}
|
|
|
|
struct wlr_drm_syncobj_timeline *wlr_drm_syncobj_timeline_create(int drm_fd) {
|
|
uint32_t handle = 0;
|
|
if (drmSyncobjCreate(drm_fd, 0, &handle) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjCreate failed");
|
|
return NULL;
|
|
}
|
|
|
|
struct wlr_drm_syncobj_timeline *timeline = timeline_create(drm_fd, handle);
|
|
if (timeline == NULL) {
|
|
drmSyncobjDestroy(drm_fd, handle);
|
|
}
|
|
|
|
return timeline;
|
|
}
|
|
|
|
struct wlr_drm_syncobj_timeline *wlr_drm_syncobj_timeline_import(int drm_fd,
|
|
int drm_syncobj_fd) {
|
|
uint32_t handle = 0;
|
|
if (drmSyncobjFDToHandle(drm_fd, drm_syncobj_fd, &handle) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjFDToHandle failed");
|
|
return NULL;
|
|
}
|
|
|
|
struct wlr_drm_syncobj_timeline *timeline = timeline_create(drm_fd, handle);
|
|
if (timeline == NULL) {
|
|
drmSyncobjDestroy(drm_fd, handle);
|
|
}
|
|
|
|
return timeline;
|
|
}
|
|
|
|
struct wlr_drm_syncobj_timeline *wlr_drm_syncobj_timeline_ref(struct wlr_drm_syncobj_timeline *timeline) {
|
|
timeline->n_refs++;
|
|
return timeline;
|
|
}
|
|
|
|
void wlr_drm_syncobj_timeline_unref(struct wlr_drm_syncobj_timeline *timeline) {
|
|
if (timeline == NULL) {
|
|
return;
|
|
}
|
|
|
|
assert(timeline->n_refs > 0);
|
|
timeline->n_refs--;
|
|
if (timeline->n_refs > 0) {
|
|
return;
|
|
}
|
|
|
|
wlr_addon_set_finish(&timeline->addons);
|
|
drmSyncobjDestroy(timeline->drm_fd, timeline->handle);
|
|
free(timeline);
|
|
}
|
|
|
|
int wlr_drm_syncobj_timeline_export(struct wlr_drm_syncobj_timeline *timeline) {
|
|
int drm_syncobj_fd = -1;
|
|
if (drmSyncobjHandleToFD(timeline->drm_fd, timeline->handle, &drm_syncobj_fd) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjHandleToFD failed");
|
|
return -1;
|
|
}
|
|
return drm_syncobj_fd;
|
|
}
|
|
|
|
bool wlr_drm_syncobj_timeline_transfer(struct wlr_drm_syncobj_timeline *dst,
|
|
uint64_t dst_point, struct wlr_drm_syncobj_timeline *src, uint64_t src_point) {
|
|
assert(dst->drm_fd == src->drm_fd);
|
|
|
|
if (drmSyncobjTransfer(dst->drm_fd, dst->handle, dst_point,
|
|
src->handle, src_point, 0) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjTransfer failed");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
int wlr_drm_syncobj_timeline_export_sync_file(struct wlr_drm_syncobj_timeline *timeline,
|
|
uint64_t src_point) {
|
|
int sync_file_fd = -1;
|
|
|
|
uint32_t syncobj_handle;
|
|
if (drmSyncobjCreate(timeline->drm_fd, 0, &syncobj_handle) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjCreate failed");
|
|
return -1;
|
|
}
|
|
|
|
if (drmSyncobjTransfer(timeline->drm_fd, syncobj_handle, 0,
|
|
timeline->handle, src_point, 0) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjTransfer failed");
|
|
goto out;
|
|
}
|
|
|
|
if (drmSyncobjExportSyncFile(timeline->drm_fd,
|
|
syncobj_handle, &sync_file_fd) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjExportSyncFile failed");
|
|
goto out;
|
|
}
|
|
|
|
out:
|
|
drmSyncobjDestroy(timeline->drm_fd, syncobj_handle);
|
|
return sync_file_fd;
|
|
}
|
|
|
|
bool wlr_drm_syncobj_timeline_import_sync_file(struct wlr_drm_syncobj_timeline *timeline,
|
|
uint64_t dst_point, int sync_file_fd) {
|
|
bool ok = false;
|
|
|
|
uint32_t syncobj_handle;
|
|
if (drmSyncobjCreate(timeline->drm_fd, 0, &syncobj_handle) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjCreate failed");
|
|
return false;
|
|
}
|
|
|
|
if (drmSyncobjImportSyncFile(timeline->drm_fd, syncobj_handle,
|
|
sync_file_fd) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjImportSyncFile failed");
|
|
goto out;
|
|
}
|
|
|
|
if (drmSyncobjTransfer(timeline->drm_fd, timeline->handle, dst_point,
|
|
syncobj_handle, 0, 0) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjTransfer failed");
|
|
goto out;
|
|
}
|
|
|
|
ok = true;
|
|
|
|
out:
|
|
drmSyncobjDestroy(timeline->drm_fd, syncobj_handle);
|
|
return ok;
|
|
}
|
|
|
|
bool wlr_drm_syncobj_timeline_check(struct wlr_drm_syncobj_timeline *timeline,
|
|
uint64_t point, uint32_t flags, bool *result) {
|
|
int etime;
|
|
#if defined(__FreeBSD__)
|
|
etime = ETIMEDOUT;
|
|
#else
|
|
etime = ETIME;
|
|
#endif
|
|
|
|
int ret = drmSyncobjTimelineWait(timeline->drm_fd, &timeline->handle, &point, 1, 0, flags, NULL);
|
|
if (ret != 0 && ret != -etime) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjTimelineWait() failed");
|
|
return false;
|
|
}
|
|
|
|
*result = ret == 0;
|
|
return true;
|
|
}
|
|
|
|
bool wlr_drm_syncobj_timeline_signal(struct wlr_drm_syncobj_timeline *timeline, uint64_t point) {
|
|
if (drmSyncobjTimelineSignal(timeline->drm_fd, &timeline->handle, &point, 1) != 0) {
|
|
wlr_log(WLR_ERROR, "drmSyncobjTimelineSignal() failed");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int wlr_drm_syncobj_timeline_eventfd(struct wlr_drm_syncobj_timeline *timeline,
|
|
uint64_t point, uint32_t flags) {
|
|
int ev_fd;
|
|
#if HAVE_EVENTFD
|
|
ev_fd = eventfd(0, EFD_CLOEXEC);
|
|
if (ev_fd < 0) {
|
|
wlr_log_errno(WLR_ERROR, "eventfd() failed");
|
|
}
|
|
#else
|
|
ev_fd = -1;
|
|
wlr_log(WLR_ERROR, "eventfd() is unavailable");
|
|
#endif
|
|
if (ev_fd < 0) {
|
|
return -1;
|
|
}
|
|
|
|
if (drmSyncobjEventfd(timeline->drm_fd, timeline->handle, point, ev_fd, flags) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "drmSyncobjEventfd() failed");
|
|
close(ev_fd);
|
|
return -1;
|
|
}
|
|
|
|
return ev_fd;
|
|
}
|
|
|
|
static int handle_eventfd_ready(int ev_fd, uint32_t mask, void *data) {
|
|
struct wlr_drm_syncobj_timeline_waiter *waiter = data;
|
|
|
|
if (mask & (WL_EVENT_HANGUP | WL_EVENT_ERROR)) {
|
|
wlr_log(WLR_ERROR, "Failed to wait for render timeline: eventfd error");
|
|
}
|
|
|
|
if (mask & WL_EVENT_READABLE) {
|
|
uint64_t ev_fd_value;
|
|
if (read(ev_fd, &ev_fd_value, sizeof(ev_fd_value)) <= 0) {
|
|
wlr_log(WLR_ERROR, "Failed to wait for render timeline: read() failed");
|
|
}
|
|
}
|
|
|
|
waiter->callback(waiter);
|
|
return 0;
|
|
}
|
|
|
|
bool wlr_drm_syncobj_timeline_waiter_init(struct wlr_drm_syncobj_timeline_waiter *waiter,
|
|
struct wlr_drm_syncobj_timeline *timeline, uint64_t point, uint32_t flags,
|
|
struct wl_event_loop *loop, wlr_drm_syncobj_timeline_ready_callback callback) {
|
|
assert(callback);
|
|
|
|
int ev_fd = wlr_drm_syncobj_timeline_eventfd(timeline, point, flags);
|
|
if (ev_fd < 0) {
|
|
return false;
|
|
}
|
|
|
|
struct wl_event_source *source = wl_event_loop_add_fd(loop, ev_fd,
|
|
WL_EVENT_READABLE, handle_eventfd_ready, waiter);
|
|
if (source == NULL) {
|
|
wlr_log(WLR_ERROR, "Failed to add FD to event loop");
|
|
close(ev_fd);
|
|
return false;
|
|
}
|
|
|
|
*waiter = (struct wlr_drm_syncobj_timeline_waiter){
|
|
.ev_fd = ev_fd,
|
|
.event_source = source,
|
|
.callback = callback,
|
|
};
|
|
return true;
|
|
}
|
|
|
|
void wlr_drm_syncobj_timeline_waiter_finish(struct wlr_drm_syncobj_timeline_waiter *waiter) {
|
|
wl_event_source_remove(waiter->event_source);
|
|
close(waiter->ev_fd);
|
|
}
|