2 * Copyright (C) 2014 Red Hat
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "msm_fence.h"
24 struct drm_device *dev;
25 struct drm_atomic_state *state;
26 struct work_struct work;
30 static void commit_worker(struct work_struct *work);
32 /* block until specified crtcs are no longer pending update, and
33 * atomically mark them as pending update
35 static int start_atomic(struct msm_drm_private *priv, uint32_t crtc_mask)
39 spin_lock(&priv->pending_crtcs_event.lock);
40 ret = wait_event_interruptible_locked(priv->pending_crtcs_event,
41 !(priv->pending_crtcs & crtc_mask));
43 DBG("start: %08x", crtc_mask);
44 priv->pending_crtcs |= crtc_mask;
46 spin_unlock(&priv->pending_crtcs_event.lock);
51 /* clear specified crtcs (no longer pending update)
53 static void end_atomic(struct msm_drm_private *priv, uint32_t crtc_mask)
55 spin_lock(&priv->pending_crtcs_event.lock);
56 DBG("end: %08x", crtc_mask);
57 priv->pending_crtcs &= ~crtc_mask;
58 wake_up_all_locked(&priv->pending_crtcs_event);
59 spin_unlock(&priv->pending_crtcs_event.lock);
62 static struct msm_commit *commit_init(struct drm_atomic_state *state)
64 struct msm_commit *c = kzalloc(sizeof(*c), GFP_KERNEL);
72 INIT_WORK(&c->work, commit_worker);
77 static void commit_destroy(struct msm_commit *c)
79 end_atomic(c->dev->dev_private, c->crtc_mask);
83 static void msm_atomic_wait_for_commit_done(struct drm_device *dev,
84 struct drm_atomic_state *old_state)
86 struct drm_crtc *crtc;
87 struct drm_crtc_state *crtc_state;
88 struct msm_drm_private *priv = old_state->dev->dev_private;
89 struct msm_kms *kms = priv->kms;
92 for_each_crtc_in_state(old_state, crtc, crtc_state, i) {
93 if (!crtc->state->enable)
96 /* Legacy cursor ioctls are completely unsynced, and userspace
97 * relies on that (by doing tons of cursor updates). */
98 if (old_state->legacy_cursor_update)
101 kms->funcs->wait_for_crtc_commit_done(kms, crtc);
105 /* The (potentially) asynchronous part of the commit. At this point
106 * nothing can fail short of armageddon.
108 static void complete_commit(struct msm_commit *c, bool async)
110 struct drm_atomic_state *state = c->state;
111 struct drm_device *dev = state->dev;
112 struct msm_drm_private *priv = dev->dev_private;
113 struct msm_kms *kms = priv->kms;
115 drm_atomic_helper_wait_for_fences(dev, state, false);
117 kms->funcs->prepare_commit(kms, state);
119 drm_atomic_helper_commit_modeset_disables(dev, state);
121 drm_atomic_helper_commit_planes(dev, state, 0);
123 drm_atomic_helper_commit_modeset_enables(dev, state);
125 /* NOTE: _wait_for_vblanks() only waits for vblank on
126 * enabled CRTCs. So we end up faulting when disabling
127 * due to (potentially) unref'ing the outgoing fb's
128 * before the vblank when the disable has latched.
130 * But if it did wait on disabled (or newly disabled)
131 * CRTCs, that would be racy (ie. we could have missed
132 * the irq. We need some way to poll for pipe shut
133 * down. Or just live with occasionally hitting the
134 * timeout in the CRTC disable path (which really should
135 * not be critical path)
138 msm_atomic_wait_for_commit_done(dev, state);
140 drm_atomic_helper_cleanup_planes(dev, state);
142 kms->funcs->complete_commit(kms, state);
144 drm_atomic_state_free(state);
149 static void commit_worker(struct work_struct *work)
151 complete_commit(container_of(work, struct msm_commit, work), true);
154 int msm_atomic_check(struct drm_device *dev,
155 struct drm_atomic_state *state)
160 * msm ->atomic_check can update ->mode_changed for pixel format
161 * changes, hence must be run before we check the modeset changes.
163 ret = drm_atomic_helper_check_planes(dev, state);
167 ret = drm_atomic_helper_check_modeset(dev, state);
175 * drm_atomic_helper_commit - commit validated state object
177 * @state: the driver state object
178 * @nonblock: nonblocking commit
180 * This function commits a with drm_atomic_helper_check() pre-validated state
181 * object. This can still fail when e.g. the framebuffer reservation fails.
184 * Zero for success or -errno.
186 int msm_atomic_commit(struct drm_device *dev,
187 struct drm_atomic_state *state, bool nonblock)
189 struct msm_drm_private *priv = dev->dev_private;
190 struct msm_commit *c;
191 struct drm_crtc *crtc;
192 struct drm_crtc_state *crtc_state;
193 struct drm_plane *plane;
194 struct drm_plane_state *plane_state;
197 ret = drm_atomic_helper_prepare_planes(dev, state);
201 c = commit_init(state);
208 * Figure out what crtcs we have:
210 for_each_crtc_in_state(state, crtc, crtc_state, i)
211 c->crtc_mask |= drm_crtc_mask(crtc);
214 * Figure out what fence to wait for:
216 for_each_plane_in_state(state, plane, plane_state, i) {
217 if ((plane->state->fb != plane_state->fb) && plane_state->fb) {
218 struct drm_gem_object *obj = msm_framebuffer_bo(plane_state->fb, 0);
219 struct msm_gem_object *msm_obj = to_msm_bo(obj);
221 plane_state->fence = reservation_object_get_excl_rcu(msm_obj->resv);
226 * Wait for pending updates on any of the same crtc's and then
227 * mark our set of crtc's as busy:
229 ret = start_atomic(dev->dev_private, c->crtc_mask);
236 * This is the point of no return - everything below never fails except
237 * when the hw goes bonghits. Which means we can commit the new state on
238 * the software side now.
241 drm_atomic_helper_swap_state(state, true);
244 * Everything below can be run asynchronously without the need to grab
245 * any modeset locks at all under one conditions: It must be guaranteed
246 * that the asynchronous work has either been cancelled (if the driver
247 * supports it, which at least requires that the framebuffers get
248 * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
249 * before the new state gets committed on the software side with
250 * drm_atomic_helper_swap_state().
252 * This scheme allows new atomic state updates to be prepared and
253 * checked in parallel to the asynchronous completion of the previous
254 * update. Which is important since compositors need to figure out the
255 * composition of the next frame right after having submitted the
260 queue_work(priv->atomic_wq, &c->work);
264 complete_commit(c, false);
269 drm_atomic_helper_cleanup_planes(dev, state);