1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) STMicroelectronics SA 2014
4 * Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
5 * Fabien Dessenne <fabien.dessenne@st.com>
6 * for STMicroelectronics.
12 #include <drm/drm_atomic.h>
13 #include <drm/drm_atomic_helper.h>
14 #include <drm/drm_crtc_helper.h>
15 #include <drm/drm_plane_helper.h>
17 #include "sti_compositor.h"
23 static void sti_crtc_atomic_enable(struct drm_crtc
*crtc
,
24 struct drm_crtc_state
*old_state
)
26 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
28 DRM_DEBUG_DRIVER("\n");
30 mixer
->status
= STI_MIXER_READY
;
32 drm_crtc_vblank_on(crtc
);
35 static void sti_crtc_atomic_disable(struct drm_crtc
*crtc
,
36 struct drm_crtc_state
*old_state
)
38 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
40 DRM_DEBUG_DRIVER("\n");
42 mixer
->status
= STI_MIXER_DISABLING
;
46 sti_crtc_mode_set(struct drm_crtc
*crtc
, struct drm_display_mode
*mode
)
48 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
49 struct device
*dev
= mixer
->dev
;
50 struct sti_compositor
*compo
= dev_get_drvdata(dev
);
51 struct clk
*compo_clk
, *pix_clk
;
52 int rate
= mode
->clock
* 1000;
54 DRM_DEBUG_KMS("CRTC:%d (%s) mode:%d (%s)\n",
55 crtc
->base
.id
, sti_mixer_to_str(mixer
),
56 mode
->base
.id
, mode
->name
);
58 DRM_DEBUG_KMS("%d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n",
59 mode
->vrefresh
, mode
->clock
,
61 mode
->hsync_start
, mode
->hsync_end
,
64 mode
->vsync_start
, mode
->vsync_end
,
65 mode
->vtotal
, mode
->type
, mode
->flags
);
67 if (mixer
->id
== STI_MIXER_MAIN
) {
68 compo_clk
= compo
->clk_compo_main
;
69 pix_clk
= compo
->clk_pix_main
;
71 compo_clk
= compo
->clk_compo_aux
;
72 pix_clk
= compo
->clk_pix_aux
;
75 /* Prepare and enable the compo IP clock */
76 if (clk_prepare_enable(compo_clk
)) {
77 DRM_INFO("Failed to prepare/enable compositor clk\n");
81 /* Set rate and prepare/enable pixel clock */
82 if (clk_set_rate(pix_clk
, rate
) < 0) {
83 DRM_ERROR("Cannot set rate (%dHz) for pix clk\n", rate
);
86 if (clk_prepare_enable(pix_clk
)) {
87 DRM_ERROR("Failed to prepare/enable pix clk\n");
91 sti_vtg_set_config(compo
->vtg
[mixer
->id
], &crtc
->mode
);
93 if (sti_mixer_active_video_area(mixer
, &crtc
->mode
)) {
94 DRM_ERROR("Can't set active video area\n");
101 clk_disable_unprepare(pix_clk
);
103 clk_disable_unprepare(compo_clk
);
108 static void sti_crtc_disable(struct drm_crtc
*crtc
)
110 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
111 struct device
*dev
= mixer
->dev
;
112 struct sti_compositor
*compo
= dev_get_drvdata(dev
);
114 DRM_DEBUG_KMS("CRTC:%d (%s)\n", crtc
->base
.id
, sti_mixer_to_str(mixer
));
116 /* Disable Background */
117 sti_mixer_set_background_status(mixer
, false);
119 drm_crtc_vblank_off(crtc
);
121 /* Disable pixel clock and compo IP clocks */
122 if (mixer
->id
== STI_MIXER_MAIN
) {
123 clk_disable_unprepare(compo
->clk_pix_main
);
124 clk_disable_unprepare(compo
->clk_compo_main
);
126 clk_disable_unprepare(compo
->clk_pix_aux
);
127 clk_disable_unprepare(compo
->clk_compo_aux
);
130 mixer
->status
= STI_MIXER_DISABLED
;
134 sti_crtc_mode_set_nofb(struct drm_crtc
*crtc
)
136 sti_crtc_mode_set(crtc
, &crtc
->state
->adjusted_mode
);
139 static void sti_crtc_atomic_flush(struct drm_crtc
*crtc
,
140 struct drm_crtc_state
*old_crtc_state
)
142 struct drm_device
*drm_dev
= crtc
->dev
;
143 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
144 struct sti_compositor
*compo
= dev_get_drvdata(mixer
->dev
);
146 struct drm_pending_vblank_event
*event
;
149 DRM_DEBUG_DRIVER("\n");
151 /* perform plane actions */
152 list_for_each_entry(p
, &drm_dev
->mode_config
.plane_list
, head
) {
153 struct sti_plane
*plane
= to_sti_plane(p
);
155 switch (plane
->status
) {
156 case STI_PLANE_UPDATED
:
157 /* ignore update for other CRTC */
158 if (p
->state
->crtc
!= crtc
)
161 /* update planes tag as updated */
162 DRM_DEBUG_DRIVER("update plane %s\n",
163 sti_plane_to_str(plane
));
165 if (sti_mixer_set_plane_depth(mixer
, plane
)) {
166 DRM_ERROR("Cannot set plane %s depth\n",
167 sti_plane_to_str(plane
));
171 if (sti_mixer_set_plane_status(mixer
, plane
, true)) {
172 DRM_ERROR("Cannot enable plane %s at mixer\n",
173 sti_plane_to_str(plane
));
177 /* if plane is HQVDP_0 then commit the vid[0] */
178 if (plane
->desc
== STI_HQVDP_0
)
179 sti_vid_commit(compo
->vid
[0], p
->state
);
181 plane
->status
= STI_PLANE_READY
;
184 case STI_PLANE_DISABLING
:
185 /* disabling sequence for planes tag as disabling */
186 DRM_DEBUG_DRIVER("disable plane %s from mixer\n",
187 sti_plane_to_str(plane
));
189 if (sti_mixer_set_plane_status(mixer
, plane
, false)) {
190 DRM_ERROR("Cannot disable plane %s at mixer\n",
191 sti_plane_to_str(plane
));
195 if (plane
->desc
== STI_CURSOR
)
196 /* tag plane status for disabled */
197 plane
->status
= STI_PLANE_DISABLED
;
199 /* tag plane status for flushing */
200 plane
->status
= STI_PLANE_FLUSHING
;
202 /* if plane is HQVDP_0 then disable the vid[0] */
203 if (plane
->desc
== STI_HQVDP_0
)
204 sti_vid_disable(compo
->vid
[0]);
208 /* Other status case are not handled */
213 event
= crtc
->state
->event
;
215 crtc
->state
->event
= NULL
;
217 spin_lock_irqsave(&crtc
->dev
->event_lock
, flags
);
218 if (drm_crtc_vblank_get(crtc
) == 0)
219 drm_crtc_arm_vblank_event(crtc
, event
);
221 drm_crtc_send_vblank_event(crtc
, event
);
222 spin_unlock_irqrestore(&crtc
->dev
->event_lock
, flags
);
226 static const struct drm_crtc_helper_funcs sti_crtc_helper_funcs
= {
227 .mode_set_nofb
= sti_crtc_mode_set_nofb
,
228 .atomic_flush
= sti_crtc_atomic_flush
,
229 .atomic_enable
= sti_crtc_atomic_enable
,
230 .atomic_disable
= sti_crtc_atomic_disable
,
233 static void sti_crtc_destroy(struct drm_crtc
*crtc
)
236 drm_crtc_cleanup(crtc
);
239 static int sti_crtc_set_property(struct drm_crtc
*crtc
,
240 struct drm_property
*property
,
247 int sti_crtc_vblank_cb(struct notifier_block
*nb
,
248 unsigned long event
, void *data
)
250 struct sti_compositor
*compo
;
251 struct drm_crtc
*crtc
= data
;
252 struct sti_mixer
*mixer
;
253 struct sti_private
*priv
;
256 priv
= crtc
->dev
->dev_private
;
257 pipe
= drm_crtc_index(crtc
);
258 compo
= container_of(nb
, struct sti_compositor
, vtg_vblank_nb
[pipe
]);
259 mixer
= compo
->mixer
[pipe
];
261 if ((event
!= VTG_TOP_FIELD_EVENT
) &&
262 (event
!= VTG_BOTTOM_FIELD_EVENT
)) {
263 DRM_ERROR("unknown event: %lu\n", event
);
267 drm_crtc_handle_vblank(crtc
);
269 if (mixer
->status
== STI_MIXER_DISABLING
) {
272 /* Disable mixer only if all overlay planes (GDP and VDP)
274 list_for_each_entry(p
, &crtc
->dev
->mode_config
.plane_list
,
276 struct sti_plane
*plane
= to_sti_plane(p
);
278 if ((plane
->desc
& STI_PLANE_TYPE_MASK
) <= STI_VDP
)
279 if (plane
->status
!= STI_PLANE_DISABLED
)
282 sti_crtc_disable(crtc
);
288 int sti_crtc_enable_vblank(struct drm_device
*dev
, unsigned int pipe
)
290 struct sti_private
*dev_priv
= dev
->dev_private
;
291 struct sti_compositor
*compo
= dev_priv
->compo
;
292 struct notifier_block
*vtg_vblank_nb
= &compo
->vtg_vblank_nb
[pipe
];
293 struct drm_crtc
*crtc
= &compo
->mixer
[pipe
]->drm_crtc
;
294 struct sti_vtg
*vtg
= compo
->vtg
[pipe
];
296 DRM_DEBUG_DRIVER("\n");
298 if (sti_vtg_register_client(vtg
, vtg_vblank_nb
, crtc
)) {
299 DRM_ERROR("Cannot register VTG notifier\n");
306 void sti_crtc_disable_vblank(struct drm_device
*drm_dev
, unsigned int pipe
)
308 struct sti_private
*priv
= drm_dev
->dev_private
;
309 struct sti_compositor
*compo
= priv
->compo
;
310 struct notifier_block
*vtg_vblank_nb
= &compo
->vtg_vblank_nb
[pipe
];
311 struct sti_vtg
*vtg
= compo
->vtg
[pipe
];
313 DRM_DEBUG_DRIVER("\n");
315 if (sti_vtg_unregister_client(vtg
, vtg_vblank_nb
))
316 DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");
319 static int sti_crtc_late_register(struct drm_crtc
*crtc
)
321 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
322 struct sti_compositor
*compo
= dev_get_drvdata(mixer
->dev
);
324 if (drm_crtc_index(crtc
) == 0)
325 return sti_compositor_debugfs_init(compo
, crtc
->dev
->primary
);
330 static const struct drm_crtc_funcs sti_crtc_funcs
= {
331 .set_config
= drm_atomic_helper_set_config
,
332 .page_flip
= drm_atomic_helper_page_flip
,
333 .destroy
= sti_crtc_destroy
,
334 .set_property
= sti_crtc_set_property
,
335 .reset
= drm_atomic_helper_crtc_reset
,
336 .atomic_duplicate_state
= drm_atomic_helper_crtc_duplicate_state
,
337 .atomic_destroy_state
= drm_atomic_helper_crtc_destroy_state
,
338 .late_register
= sti_crtc_late_register
,
341 bool sti_crtc_is_main(struct drm_crtc
*crtc
)
343 struct sti_mixer
*mixer
= to_sti_mixer(crtc
);
345 if (mixer
->id
== STI_MIXER_MAIN
)
351 int sti_crtc_init(struct drm_device
*drm_dev
, struct sti_mixer
*mixer
,
352 struct drm_plane
*primary
, struct drm_plane
*cursor
)
354 struct drm_crtc
*crtc
= &mixer
->drm_crtc
;
357 res
= drm_crtc_init_with_planes(drm_dev
, crtc
, primary
, cursor
,
358 &sti_crtc_funcs
, NULL
);
360 DRM_ERROR("Can't initialze CRTC\n");
364 drm_crtc_helper_add(crtc
, &sti_crtc_helper_funcs
);
366 DRM_DEBUG_DRIVER("drm CRTC:%d mapped to %s\n",
367 crtc
->base
.id
, sti_mixer_to_str(mixer
));