1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
7 #include <drm/drm_atomic.h>
8 #include <drm/drm_atomic_helper.h>
9 #include <drm/drm_crtc.h>
10 #include <drm/drm_crtc_helper.h>
11 #include <drm/drm_gem_dma_helper.h>
12 #include <drm/drm_vblank.h>
14 #include "tidss_crtc.h"
15 #include "tidss_dispc.h"
16 #include "tidss_drv.h"
17 #include "tidss_irq.h"
18 #include "tidss_plane.h"
20 /* Page flip and frame done IRQs */
22 static void tidss_crtc_finish_page_flip(struct tidss_crtc *tcrtc)
24 struct drm_device *ddev = tcrtc->crtc.dev;
25 struct tidss_device *tidss = to_tidss(ddev);
26 struct drm_pending_vblank_event *event;
30 spin_lock_irqsave(&ddev->event_lock, flags);
33 * New settings are taken into use at VFP, and GO bit is cleared at
34 * the same time. This happens before the vertical blank interrupt.
35 * So there is a small change that the driver sets GO bit after VFP, but
36 * before vblank, and we have to check for that case here.
38 busy = dispc_vp_go_busy(tidss->dispc, tcrtc->hw_videoport);
40 spin_unlock_irqrestore(&ddev->event_lock, flags);
48 spin_unlock_irqrestore(&ddev->event_lock, flags);
52 drm_crtc_send_vblank_event(&tcrtc->crtc, event);
54 spin_unlock_irqrestore(&ddev->event_lock, flags);
56 drm_crtc_vblank_put(&tcrtc->crtc);
59 void tidss_crtc_vblank_irq(struct drm_crtc *crtc)
61 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
63 drm_crtc_handle_vblank(crtc);
65 tidss_crtc_finish_page_flip(tcrtc);
68 void tidss_crtc_framedone_irq(struct drm_crtc *crtc)
70 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
72 complete(&tcrtc->framedone_completion);
75 void tidss_crtc_error_irq(struct drm_crtc *crtc, u64 irqstatus)
77 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
79 dev_err_ratelimited(crtc->dev->dev, "CRTC%u SYNC LOST: (irq %llx)\n",
80 tcrtc->hw_videoport, irqstatus);
83 /* drm_crtc_helper_funcs */
85 static int tidss_crtc_atomic_check(struct drm_crtc *crtc,
86 struct drm_atomic_state *state)
88 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
90 struct drm_device *ddev = crtc->dev;
91 struct tidss_device *tidss = to_tidss(ddev);
92 struct dispc_device *dispc = tidss->dispc;
93 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
94 u32 hw_videoport = tcrtc->hw_videoport;
95 const struct drm_display_mode *mode;
96 enum drm_mode_status ok;
98 dev_dbg(ddev->dev, "%s\n", __func__);
100 if (!crtc_state->enable)
103 mode = &crtc_state->adjusted_mode;
105 ok = dispc_vp_mode_valid(dispc, hw_videoport, mode);
107 dev_dbg(ddev->dev, "%s: bad mode: %ux%u pclk %u kHz\n",
108 __func__, mode->hdisplay, mode->vdisplay, mode->clock);
112 return dispc_vp_bus_check(dispc, hw_videoport, crtc_state);
116 * This needs all affected planes to be present in the atomic
117 * state. The untouched planes are added to the state in
118 * tidss_atomic_check().
120 static void tidss_crtc_position_planes(struct tidss_device *tidss,
121 struct drm_crtc *crtc,
122 struct drm_crtc_state *old_state,
125 struct drm_atomic_state *ostate = old_state->state;
126 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
127 struct drm_crtc_state *cstate = crtc->state;
130 if (!newmodeset && !cstate->zpos_changed &&
131 !to_tidss_crtc_state(cstate)->plane_pos_changed)
134 for (layer = 0; layer < tidss->feat->num_planes; layer++) {
135 struct drm_plane_state *pstate;
136 struct drm_plane *plane;
137 bool layer_active = false;
140 for_each_new_plane_in_state(ostate, plane, pstate, i) {
141 if (pstate->crtc != crtc || !pstate->visible)
144 if (pstate->normalized_zpos == layer) {
151 struct tidss_plane *tplane = to_tidss_plane(plane);
153 dispc_ovr_set_plane(tidss->dispc, tplane->hw_plane_id,
155 pstate->crtc_x, pstate->crtc_y,
158 dispc_ovr_enable_layer(tidss->dispc, tcrtc->hw_videoport, layer,
163 static void tidss_crtc_atomic_flush(struct drm_crtc *crtc,
164 struct drm_atomic_state *state)
166 struct drm_crtc_state *old_crtc_state = drm_atomic_get_old_crtc_state(state,
168 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
169 struct drm_device *ddev = crtc->dev;
170 struct tidss_device *tidss = to_tidss(ddev);
174 "%s: %s enabled %d, needs modeset %d, event %p\n", __func__,
175 crtc->name, drm_atomic_crtc_needs_modeset(crtc->state),
176 crtc->state->enable, crtc->state->event);
178 /* There is nothing to do if CRTC is not going to be enabled. */
179 if (!crtc->state->enable)
183 * Flush CRTC changes with go bit only if new modeset is not
184 * coming, so CRTC is enabled trough out the commit.
186 if (drm_atomic_crtc_needs_modeset(crtc->state))
189 /* If the GO bit is stuck we better quit here. */
190 if (WARN_ON(dispc_vp_go_busy(tidss->dispc, tcrtc->hw_videoport)))
193 /* We should have event if CRTC is enabled through out this commit. */
194 if (WARN_ON(!crtc->state->event))
197 /* Write vp properties to HW if needed. */
198 dispc_vp_setup(tidss->dispc, tcrtc->hw_videoport, crtc->state, false);
200 /* Update plane positions if needed. */
201 tidss_crtc_position_planes(tidss, crtc, old_crtc_state, false);
203 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
205 spin_lock_irqsave(&ddev->event_lock, flags);
206 dispc_vp_go(tidss->dispc, tcrtc->hw_videoport);
208 WARN_ON(tcrtc->event);
210 tcrtc->event = crtc->state->event;
211 crtc->state->event = NULL;
213 spin_unlock_irqrestore(&ddev->event_lock, flags);
216 static void tidss_crtc_atomic_enable(struct drm_crtc *crtc,
217 struct drm_atomic_state *state)
219 struct drm_crtc_state *old_state = drm_atomic_get_old_crtc_state(state,
221 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
222 struct drm_device *ddev = crtc->dev;
223 struct tidss_device *tidss = to_tidss(ddev);
224 const struct drm_display_mode *mode = &crtc->state->adjusted_mode;
228 dev_dbg(ddev->dev, "%s, event %p\n", __func__, crtc->state->event);
230 tidss_runtime_get(tidss);
232 r = dispc_vp_set_clk_rate(tidss->dispc, tcrtc->hw_videoport,
237 r = dispc_vp_enable_clk(tidss->dispc, tcrtc->hw_videoport);
241 dispc_vp_setup(tidss->dispc, tcrtc->hw_videoport, crtc->state, true);
242 tidss_crtc_position_planes(tidss, crtc, old_state, true);
244 /* Turn vertical blanking interrupt reporting on. */
245 drm_crtc_vblank_on(crtc);
247 dispc_vp_prepare(tidss->dispc, tcrtc->hw_videoport, crtc->state);
249 dispc_vp_enable(tidss->dispc, tcrtc->hw_videoport, crtc->state);
251 spin_lock_irqsave(&ddev->event_lock, flags);
253 if (crtc->state->event) {
254 drm_crtc_send_vblank_event(crtc, crtc->state->event);
255 crtc->state->event = NULL;
258 spin_unlock_irqrestore(&ddev->event_lock, flags);
261 static void tidss_crtc_atomic_disable(struct drm_crtc *crtc,
262 struct drm_atomic_state *state)
264 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
265 struct drm_device *ddev = crtc->dev;
266 struct tidss_device *tidss = to_tidss(ddev);
269 dev_dbg(ddev->dev, "%s, event %p\n", __func__, crtc->state->event);
271 reinit_completion(&tcrtc->framedone_completion);
273 dispc_vp_disable(tidss->dispc, tcrtc->hw_videoport);
275 if (!wait_for_completion_timeout(&tcrtc->framedone_completion,
276 msecs_to_jiffies(500)))
277 dev_err(tidss->dev, "Timeout waiting for framedone on crtc %d",
278 tcrtc->hw_videoport);
280 dispc_vp_unprepare(tidss->dispc, tcrtc->hw_videoport);
282 spin_lock_irqsave(&ddev->event_lock, flags);
283 if (crtc->state->event) {
284 drm_crtc_send_vblank_event(crtc, crtc->state->event);
285 crtc->state->event = NULL;
287 spin_unlock_irqrestore(&ddev->event_lock, flags);
289 drm_crtc_vblank_off(crtc);
291 dispc_vp_disable_clk(tidss->dispc, tcrtc->hw_videoport);
293 tidss_runtime_put(tidss);
297 enum drm_mode_status tidss_crtc_mode_valid(struct drm_crtc *crtc,
298 const struct drm_display_mode *mode)
300 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
301 struct drm_device *ddev = crtc->dev;
302 struct tidss_device *tidss = to_tidss(ddev);
304 return dispc_vp_mode_valid(tidss->dispc, tcrtc->hw_videoport, mode);
307 static const struct drm_crtc_helper_funcs tidss_crtc_helper_funcs = {
308 .atomic_check = tidss_crtc_atomic_check,
309 .atomic_flush = tidss_crtc_atomic_flush,
310 .atomic_enable = tidss_crtc_atomic_enable,
311 .atomic_disable = tidss_crtc_atomic_disable,
313 .mode_valid = tidss_crtc_mode_valid,
318 static int tidss_crtc_enable_vblank(struct drm_crtc *crtc)
320 struct drm_device *ddev = crtc->dev;
321 struct tidss_device *tidss = to_tidss(ddev);
323 dev_dbg(ddev->dev, "%s\n", __func__);
325 tidss_runtime_get(tidss);
327 tidss_irq_enable_vblank(crtc);
332 static void tidss_crtc_disable_vblank(struct drm_crtc *crtc)
334 struct drm_device *ddev = crtc->dev;
335 struct tidss_device *tidss = to_tidss(ddev);
337 dev_dbg(ddev->dev, "%s\n", __func__);
339 tidss_irq_disable_vblank(crtc);
341 tidss_runtime_put(tidss);
344 static void tidss_crtc_reset(struct drm_crtc *crtc)
346 struct tidss_crtc_state *tcrtc;
349 __drm_atomic_helper_crtc_destroy_state(crtc->state);
353 tcrtc = kzalloc(sizeof(*tcrtc), GFP_KERNEL);
359 __drm_atomic_helper_crtc_reset(crtc, &tcrtc->base);
362 static struct drm_crtc_state *tidss_crtc_duplicate_state(struct drm_crtc *crtc)
364 struct tidss_crtc_state *state, *current_state;
366 if (WARN_ON(!crtc->state))
369 current_state = to_tidss_crtc_state(crtc->state);
371 state = kmalloc(sizeof(*state), GFP_KERNEL);
375 __drm_atomic_helper_crtc_duplicate_state(crtc, &state->base);
377 state->plane_pos_changed = false;
379 state->bus_format = current_state->bus_format;
380 state->bus_flags = current_state->bus_flags;
385 static void tidss_crtc_destroy(struct drm_crtc *crtc)
387 struct tidss_crtc *tcrtc = to_tidss_crtc(crtc);
389 drm_crtc_cleanup(crtc);
393 static const struct drm_crtc_funcs tidss_crtc_funcs = {
394 .reset = tidss_crtc_reset,
395 .destroy = tidss_crtc_destroy,
396 .set_config = drm_atomic_helper_set_config,
397 .page_flip = drm_atomic_helper_page_flip,
398 .atomic_duplicate_state = tidss_crtc_duplicate_state,
399 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
400 .enable_vblank = tidss_crtc_enable_vblank,
401 .disable_vblank = tidss_crtc_disable_vblank,
404 struct tidss_crtc *tidss_crtc_create(struct tidss_device *tidss,
406 struct drm_plane *primary)
408 struct tidss_crtc *tcrtc;
409 struct drm_crtc *crtc;
410 unsigned int gamma_lut_size = 0;
411 bool has_ctm = tidss->feat->vp_feat.color.has_ctm;
414 tcrtc = kzalloc(sizeof(*tcrtc), GFP_KERNEL);
416 return ERR_PTR(-ENOMEM);
418 tcrtc->hw_videoport = hw_videoport;
419 init_completion(&tcrtc->framedone_completion);
423 ret = drm_crtc_init_with_planes(&tidss->ddev, crtc, primary,
424 NULL, &tidss_crtc_funcs, NULL);
430 drm_crtc_helper_add(crtc, &tidss_crtc_helper_funcs);
433 * The dispc gamma functions adapt to what ever size we ask
434 * from it no matter what HW supports. X-server assumes 256
435 * element gamma tables so lets use that.
437 if (tidss->feat->vp_feat.color.gamma_size)
438 gamma_lut_size = 256;
440 drm_crtc_enable_color_mgmt(crtc, 0, has_ctm, gamma_lut_size);
442 drm_mode_crtc_set_gamma_size(crtc, gamma_lut_size);