1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2014 Red Hat
7 #include <drm/drm_atomic_uapi.h>
8 #include <drm/drm_gem_framebuffer_helper.h>
9 #include <drm/drm_vblank.h>
11 #include "msm_atomic_trace.h"
16 int msm_atomic_prepare_fb(struct drm_plane *plane,
17 struct drm_plane_state *new_state)
19 struct msm_drm_private *priv = plane->dev->dev_private;
20 struct msm_kms *kms = priv->kms;
25 drm_gem_fb_prepare_fb(plane, new_state);
27 return msm_framebuffer_prepare(new_state->fb, kms->aspace);
31 * Helpers to control vblanks while we flush.. basically just to ensure
32 * that vblank accounting is switched on, so we get valid seqn/timestamp
33 * on pageflip events (if requested)
36 static void vblank_get(struct msm_kms *kms, unsigned crtc_mask)
38 struct drm_crtc *crtc;
40 for_each_crtc_mask(kms->dev, crtc, crtc_mask) {
41 if (!crtc->state->active)
43 drm_crtc_vblank_get(crtc);
47 static void vblank_put(struct msm_kms *kms, unsigned crtc_mask)
49 struct drm_crtc *crtc;
51 for_each_crtc_mask(kms->dev, crtc, crtc_mask) {
52 if (!crtc->state->active)
54 drm_crtc_vblank_put(crtc);
58 static void msm_atomic_async_commit(struct msm_kms *kms, int crtc_idx)
60 unsigned crtc_mask = BIT(crtc_idx);
62 trace_msm_atomic_async_commit_start(crtc_mask);
64 mutex_lock(&kms->commit_lock);
66 if (!(kms->pending_crtc_mask & crtc_mask)) {
67 mutex_unlock(&kms->commit_lock);
71 kms->pending_crtc_mask &= ~crtc_mask;
73 kms->funcs->enable_commit(kms);
75 vblank_get(kms, crtc_mask);
78 * Flush hardware updates:
80 trace_msm_atomic_flush_commit(crtc_mask);
81 kms->funcs->flush_commit(kms, crtc_mask);
82 mutex_unlock(&kms->commit_lock);
85 * Wait for flush to complete:
87 trace_msm_atomic_wait_flush_start(crtc_mask);
88 kms->funcs->wait_flush(kms, crtc_mask);
89 trace_msm_atomic_wait_flush_finish(crtc_mask);
91 vblank_put(kms, crtc_mask);
93 mutex_lock(&kms->commit_lock);
94 kms->funcs->complete_commit(kms, crtc_mask);
95 mutex_unlock(&kms->commit_lock);
96 kms->funcs->disable_commit(kms);
99 trace_msm_atomic_async_commit_finish(crtc_mask);
102 static enum hrtimer_restart msm_atomic_pending_timer(struct hrtimer *t)
104 struct msm_pending_timer *timer = container_of(t,
105 struct msm_pending_timer, timer);
106 struct msm_drm_private *priv = timer->kms->dev->dev_private;
108 queue_work(priv->wq, &timer->work);
110 return HRTIMER_NORESTART;
113 static void msm_atomic_pending_work(struct work_struct *work)
115 struct msm_pending_timer *timer = container_of(work,
116 struct msm_pending_timer, work);
118 msm_atomic_async_commit(timer->kms, timer->crtc_idx);
121 void msm_atomic_init_pending_timer(struct msm_pending_timer *timer,
122 struct msm_kms *kms, int crtc_idx)
125 timer->crtc_idx = crtc_idx;
126 hrtimer_init(&timer->timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
127 timer->timer.function = msm_atomic_pending_timer;
128 INIT_WORK(&timer->work, msm_atomic_pending_work);
131 static bool can_do_async(struct drm_atomic_state *state,
132 struct drm_crtc **async_crtc)
134 struct drm_connector_state *connector_state;
135 struct drm_connector *connector;
136 struct drm_crtc_state *crtc_state;
137 struct drm_crtc *crtc;
138 int i, num_crtcs = 0;
140 if (!(state->legacy_cursor_update || state->async_update))
143 /* any connector change, means slow path: */
144 for_each_new_connector_in_state(state, connector, connector_state, i)
147 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
148 if (drm_atomic_crtc_needs_modeset(crtc_state))
158 /* Get bitmask of crtcs that will need to be flushed. The bitmask
159 * can be used with for_each_crtc_mask() iterator, to iterate
160 * effected crtcs without needing to preserve the atomic state.
162 static unsigned get_crtc_mask(struct drm_atomic_state *state)
164 struct drm_crtc_state *crtc_state;
165 struct drm_crtc *crtc;
166 unsigned i, mask = 0;
168 for_each_new_crtc_in_state(state, crtc, crtc_state, i)
169 mask |= drm_crtc_mask(crtc);
174 void msm_atomic_commit_tail(struct drm_atomic_state *state)
176 struct drm_device *dev = state->dev;
177 struct msm_drm_private *priv = dev->dev_private;
178 struct msm_kms *kms = priv->kms;
179 struct drm_crtc *async_crtc = NULL;
180 unsigned crtc_mask = get_crtc_mask(state);
181 bool async = kms->funcs->vsync_time &&
182 can_do_async(state, &async_crtc);
184 trace_msm_atomic_commit_tail_start(async, crtc_mask);
186 kms->funcs->enable_commit(kms);
189 * Ensure any previous (potentially async) commit has
192 trace_msm_atomic_wait_flush_start(crtc_mask);
193 kms->funcs->wait_flush(kms, crtc_mask);
194 trace_msm_atomic_wait_flush_finish(crtc_mask);
196 mutex_lock(&kms->commit_lock);
199 * Now that there is no in-progress flush, prepare the
202 kms->funcs->prepare_commit(kms, state);
205 * Push atomic updates down to hardware:
207 drm_atomic_helper_commit_modeset_disables(dev, state);
208 drm_atomic_helper_commit_planes(dev, state, 0);
209 drm_atomic_helper_commit_modeset_enables(dev, state);
212 struct msm_pending_timer *timer =
213 &kms->pending_timers[drm_crtc_index(async_crtc)];
215 /* async updates are limited to single-crtc updates: */
216 WARN_ON(crtc_mask != drm_crtc_mask(async_crtc));
219 * Start timer if we don't already have an update pending
222 if (!(kms->pending_crtc_mask & crtc_mask)) {
223 ktime_t vsync_time, wakeup_time;
225 kms->pending_crtc_mask |= crtc_mask;
227 vsync_time = kms->funcs->vsync_time(kms, async_crtc);
228 wakeup_time = ktime_sub(vsync_time, ms_to_ktime(1));
230 hrtimer_start(&timer->timer, wakeup_time,
234 kms->funcs->disable_commit(kms);
235 mutex_unlock(&kms->commit_lock);
238 * At this point, from drm core's perspective, we
239 * are done with the atomic update, so we can just
240 * go ahead and signal that it is done:
242 drm_atomic_helper_commit_hw_done(state);
243 drm_atomic_helper_cleanup_planes(dev, state);
245 trace_msm_atomic_commit_tail_finish(async, crtc_mask);
251 * If there is any async flush pending on updated crtcs, fold
252 * them into the current flush.
254 kms->pending_crtc_mask &= ~crtc_mask;
256 vblank_get(kms, crtc_mask);
259 * Flush hardware updates:
261 trace_msm_atomic_flush_commit(crtc_mask);
262 kms->funcs->flush_commit(kms, crtc_mask);
263 mutex_unlock(&kms->commit_lock);
266 * Wait for flush to complete:
268 trace_msm_atomic_wait_flush_start(crtc_mask);
269 kms->funcs->wait_flush(kms, crtc_mask);
270 trace_msm_atomic_wait_flush_finish(crtc_mask);
272 vblank_put(kms, crtc_mask);
274 mutex_lock(&kms->commit_lock);
275 kms->funcs->complete_commit(kms, crtc_mask);
276 mutex_unlock(&kms->commit_lock);
277 kms->funcs->disable_commit(kms);
279 drm_atomic_helper_commit_hw_done(state);
280 drm_atomic_helper_cleanup_planes(dev, state);
282 trace_msm_atomic_commit_tail_finish(async, crtc_mask);