aboutsummaryrefslogtreecommitdiff
path: root/backend/drm
diff options
context:
space:
mode:
authorScott Anderson <scott@anderso.nz>2020-02-11 12:38:43 +1300
committerSimon Ser <contact@emersion.fr>2020-04-28 09:54:52 +0200
commitbe90062c51ba5470f513aa118d99472c304e8f36 (patch)
treea889b7ab676a5987dc708363723f8eb100c878f0 /backend/drm
parent8da9d9679e4cad640b0f0a518ca1529c8cdecbe0 (diff)
backend/drm: don't have fallback atomic commits
This is just doing atomic incorrectly.
Diffstat (limited to 'backend/drm')
-rw-r--r--backend/drm/atomic.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/backend/drm/atomic.c b/backend/drm/atomic.c
index 05dd9d1f..cedc687b 100644
--- a/backend/drm/atomic.c
+++ b/backend/drm/atomic.c
@@ -28,14 +28,14 @@ static void atomic_begin(struct wlr_drm_crtc *crtc, struct atomic *atom) {
atom->failed = false;
}
-static bool atomic_end(int drm_fd, struct atomic *atom) {
+static bool atomic_end(int drm_fd, uint32_t flags, struct atomic *atom) {
if (atom->failed) {
return false;
}
- uint32_t flags = DRM_MODE_ATOMIC_TEST_ONLY | DRM_MODE_ATOMIC_NONBLOCK;
+ flags |= DRM_MODE_ATOMIC_TEST_ONLY;
if (drmModeAtomicCommit(drm_fd, atom->req, flags, NULL)) {
- wlr_log_errno(WLR_ERROR, "Atomic test failed");
+ wlr_log_errno(WLR_DEBUG, "Atomic test failed");
drmModeAtomicSetCursor(atom->req, atom->cursor);
return false;
}
@@ -55,14 +55,6 @@ static bool atomic_commit(int drm_fd, struct atomic *atom,
if (ret) {
wlr_log_errno(WLR_ERROR, "%s: Atomic commit failed (%s)",
conn->output.name, modeset ? "modeset" : "pageflip");
-
- // Try to commit without new changes
- drmModeAtomicSetCursor(atom->req, atom->cursor);
- if (drmModeAtomicCommit(drm_fd, atom->req, flags, drm)) {
- wlr_log_errno(WLR_ERROR,
- "%s: Atomic commit without new changes failed (%s)",
- conn->output.name, modeset ? "modeset" : "pageflip");
- }
}
drmModeAtomicSetCursor(atom->req, 0);
@@ -70,7 +62,7 @@ static bool atomic_commit(int drm_fd, struct atomic *atom,
return !ret;
}
-static inline void atomic_add(struct atomic *atom, uint32_t id, uint32_t prop, uint64_t val) {
+static void atomic_add(struct atomic *atom, uint32_t id, uint32_t prop, uint64_t val) {
if (!atom->failed && drmModeAtomicAddProperty(atom->req, id, prop, val) < 0) {
wlr_log_errno(WLR_ERROR, "Failed to add atomic DRM property");
atom->failed = true;
@@ -130,6 +122,12 @@ static bool atomic_crtc_pageflip(struct wlr_drm_backend *drm,
atomic_add(&atom, crtc->id, crtc->props.mode_id, crtc->mode_id);
atomic_add(&atom, crtc->id, crtc->props.active, 1);
set_plane_props(&atom, crtc->primary, crtc->id, fb_id, true);
+
+ if (!atomic_end(drm->fd, mode ? DRM_MODE_ATOMIC_ALLOW_MODESET : 0, &atom)) {
+ drmModeAtomicSetCursor(atom.req, 0);
+ return false;
+ }
+
return atomic_commit(drm->fd, &atom, conn, flags, mode);
}
@@ -238,7 +236,7 @@ static bool atomic_crtc_set_gamma(struct wlr_drm_backend *drm,
struct atomic atom;
atomic_begin(crtc, &atom);
atomic_add(&atom, crtc->id, crtc->props.gamma_lut, crtc->gamma_lut);
- return atomic_end(drm->fd, &atom);
+ return atomic_end(drm->fd, 0, &atom);
}
static size_t atomic_crtc_get_gamma_size(struct wlr_drm_backend *drm,