blob: 23fc2db50d178240be78c384e275399beb5f0f6c [file] [log] [blame]
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +02001/*
2 * Copyright (C) STMicroelectronics SA 2014
3 * Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
4 * Fabien Dessenne <fabien.dessenne@st.com>
5 * for STMicroelectronics.
6 * License terms: GNU General Public License (GPL), version 2
7 */
8
9#include <linux/clk.h>
10
11#include <drm/drmP.h>
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +010012#include <drm/drm_atomic.h>
13#include <drm/drm_atomic_helper.h>
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020014#include <drm/drm_crtc_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010015#include <drm/drm_plane_helper.h>
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020016
17#include "sti_compositor.h"
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020018#include "sti_crtc.h"
19#include "sti_drv.h"
Vincent Abriou29d1dc62015-08-03 14:22:16 +020020#include "sti_vid.h"
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020021#include "sti_vtg.h"
22
Vincent Abriou29d1dc62015-08-03 14:22:16 +020023static void sti_crtc_enable(struct drm_crtc *crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020024{
25 struct sti_mixer *mixer = to_sti_mixer(crtc);
26 struct device *dev = mixer->dev;
27 struct sti_compositor *compo = dev_get_drvdata(dev);
28
Vincent Abriou29d1dc62015-08-03 14:22:16 +020029 DRM_DEBUG_DRIVER("\n");
30
31 mixer->status = STI_MIXER_READY;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020032
33 /* Prepare and enable the compo IP clock */
34 if (mixer->id == STI_MIXER_MAIN) {
35 if (clk_prepare_enable(compo->clk_compo_main))
36 DRM_INFO("Failed to prepare/enable compo_main clk\n");
37 } else {
38 if (clk_prepare_enable(compo->clk_compo_aux))
39 DRM_INFO("Failed to prepare/enable compo_aux clk\n");
40 }
Benjamin Gaignard2f7d0e82c2014-12-04 11:17:32 +010041
Vincent Abriou29d1dc62015-08-03 14:22:16 +020042 drm_crtc_vblank_on(crtc);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020043}
44
Vincent Abriou29d1dc62015-08-03 14:22:16 +020045static void sti_crtc_disabling(struct drm_crtc *crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020046{
47 struct sti_mixer *mixer = to_sti_mixer(crtc);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020048
Vincent Abriou29d1dc62015-08-03 14:22:16 +020049 DRM_DEBUG_DRIVER("\n");
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020050
Vincent Abriou29d1dc62015-08-03 14:22:16 +020051 mixer->status = STI_MIXER_DISABLING;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020052}
53
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020054static bool sti_crtc_mode_fixup(struct drm_crtc *crtc,
55 const struct drm_display_mode *mode,
56 struct drm_display_mode *adjusted_mode)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020057{
58 /* accept the provided drm_display_mode, do not fix it up */
59 return true;
60}
61
62static int
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020063sti_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020064{
65 struct sti_mixer *mixer = to_sti_mixer(crtc);
66 struct device *dev = mixer->dev;
67 struct sti_compositor *compo = dev_get_drvdata(dev);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020068 struct clk *clk;
69 int rate = mode->clock * 1000;
70 int res;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020071
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +010072 DRM_DEBUG_KMS("CRTC:%d (%s) mode:%d (%s)\n",
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020073 crtc->base.id, sti_mixer_to_str(mixer),
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +010074 mode->base.id, mode->name);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020075
76 DRM_DEBUG_KMS("%d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n",
77 mode->vrefresh, mode->clock,
78 mode->hdisplay,
79 mode->hsync_start, mode->hsync_end,
80 mode->htotal,
81 mode->vdisplay,
82 mode->vsync_start, mode->vsync_end,
83 mode->vtotal, mode->type, mode->flags);
84
85 /* Set rate and prepare/enable pixel clock */
86 if (mixer->id == STI_MIXER_MAIN)
87 clk = compo->clk_pix_main;
88 else
89 clk = compo->clk_pix_aux;
90
91 res = clk_set_rate(clk, rate);
92 if (res < 0) {
93 DRM_ERROR("Cannot set rate (%dHz) for pix clk\n", rate);
94 return -EINVAL;
95 }
96 if (clk_prepare_enable(clk)) {
97 DRM_ERROR("Failed to prepare/enable pix clk\n");
98 return -EINVAL;
99 }
100
101 sti_vtg_set_config(mixer->id == STI_MIXER_MAIN ?
102 compo->vtg_main : compo->vtg_aux, &crtc->mode);
103
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200104 res = sti_mixer_active_video_area(mixer, &crtc->mode);
105 if (res) {
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200106 DRM_ERROR("Can't set active video area\n");
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200107 return -EINVAL;
108 }
109
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100110 return res;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200111}
112
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200113static void sti_crtc_disable(struct drm_crtc *crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200114{
115 struct sti_mixer *mixer = to_sti_mixer(crtc);
116 struct device *dev = mixer->dev;
117 struct sti_compositor *compo = dev_get_drvdata(dev);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200118
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200119 DRM_DEBUG_KMS("CRTC:%d (%s)\n", crtc->base.id, sti_mixer_to_str(mixer));
120
121 /* Disable Background */
122 sti_mixer_set_background_status(mixer, false);
123
Benjamin Gaignardca614aa2014-12-04 11:27:45 +0100124 drm_crtc_vblank_off(crtc);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200125
126 /* Disable pixel clock and compo IP clocks */
127 if (mixer->id == STI_MIXER_MAIN) {
128 clk_disable_unprepare(compo->clk_pix_main);
129 clk_disable_unprepare(compo->clk_compo_main);
130 } else {
131 clk_disable_unprepare(compo->clk_pix_aux);
132 clk_disable_unprepare(compo->clk_compo_aux);
133 }
134
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200135 mixer->status = STI_MIXER_DISABLED;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200136}
137
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100138static void
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200139sti_crtc_mode_set_nofb(struct drm_crtc *crtc)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100140{
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200141 sti_crtc_enable(crtc);
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200142 sti_crtc_mode_set(crtc, &crtc->state->adjusted_mode);
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100143}
144
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200145static void sti_crtc_atomic_begin(struct drm_crtc *crtc)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100146{
147 struct sti_mixer *mixer = to_sti_mixer(crtc);
148
149 if (crtc->state->event) {
150 crtc->state->event->pipe = drm_crtc_index(crtc);
151
152 WARN_ON(drm_crtc_vblank_get(crtc) != 0);
153
154 mixer->pending_event = crtc->state->event;
155 crtc->state->event = NULL;
156 }
157}
158
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200159static void sti_crtc_atomic_flush(struct drm_crtc *crtc)
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100160{
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200161 struct drm_device *drm_dev = crtc->dev;
162 struct sti_mixer *mixer = to_sti_mixer(crtc);
163 struct sti_compositor *compo = dev_get_drvdata(mixer->dev);
164 struct drm_plane *p;
165
166 DRM_DEBUG_DRIVER("\n");
167
168 /* perform plane actions */
169 list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
170 struct sti_plane *plane = to_sti_plane(p);
171
172 switch (plane->status) {
173 case STI_PLANE_UPDATED:
174 /* update planes tag as updated */
175 DRM_DEBUG_DRIVER("update plane %s\n",
176 sti_plane_to_str(plane));
177
178 if (sti_mixer_set_plane_depth(mixer, plane)) {
179 DRM_ERROR("Cannot set plane %s depth\n",
180 sti_plane_to_str(plane));
181 break;
182 }
183
184 if (sti_mixer_set_plane_status(mixer, plane, true)) {
185 DRM_ERROR("Cannot enable plane %s at mixer\n",
186 sti_plane_to_str(plane));
187 break;
188 }
189
190 /* if plane is HQVDP_0 then commit the vid[0] */
191 if (plane->desc == STI_HQVDP_0)
192 sti_vid_commit(compo->vid[0], p->state);
193
194 plane->status = STI_PLANE_READY;
195
196 break;
197 case STI_PLANE_DISABLING:
198 /* disabling sequence for planes tag as disabling */
199 DRM_DEBUG_DRIVER("disable plane %s from mixer\n",
200 sti_plane_to_str(plane));
201
202 if (sti_mixer_set_plane_status(mixer, plane, false)) {
203 DRM_ERROR("Cannot disable plane %s at mixer\n",
204 sti_plane_to_str(plane));
205 continue;
206 }
207
208 if (plane->desc == STI_CURSOR)
209 /* tag plane status for disabled */
210 plane->status = STI_PLANE_DISABLED;
211 else
212 /* tag plane status for flushing */
213 plane->status = STI_PLANE_FLUSHING;
214
215 /* if plane is HQVDP_0 then disable the vid[0] */
216 if (plane->desc == STI_HQVDP_0)
217 sti_vid_disable(compo->vid[0]);
218
219 break;
220 default:
221 /* Other status case are not handled */
222 break;
223 }
224 }
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100225}
226
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200227static struct drm_crtc_helper_funcs sti_crtc_helper_funcs = {
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200228 .enable = sti_crtc_enable,
229 .disable = sti_crtc_disabling,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200230 .mode_fixup = sti_crtc_mode_fixup,
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100231 .mode_set = drm_helper_crtc_mode_set,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200232 .mode_set_nofb = sti_crtc_mode_set_nofb,
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100233 .mode_set_base = drm_helper_crtc_mode_set_base,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200234 .atomic_begin = sti_crtc_atomic_begin,
235 .atomic_flush = sti_crtc_atomic_flush,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200236};
237
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200238static void sti_crtc_destroy(struct drm_crtc *crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200239{
240 DRM_DEBUG_KMS("\n");
241 drm_crtc_cleanup(crtc);
242}
243
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200244static int sti_crtc_set_property(struct drm_crtc *crtc,
245 struct drm_property *property,
246 uint64_t val)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200247{
248 DRM_DEBUG_KMS("\n");
249 return 0;
250}
251
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200252int sti_crtc_vblank_cb(struct notifier_block *nb,
253 unsigned long event, void *data)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200254{
255 struct drm_device *drm_dev;
256 struct sti_compositor *compo =
257 container_of(nb, struct sti_compositor, vtg_vblank_nb);
258 int *crtc = data;
259 unsigned long flags;
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200260 struct sti_private *priv;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200261
262 drm_dev = compo->mixer[*crtc]->drm_crtc.dev;
263 priv = drm_dev->dev_private;
264
265 if ((event != VTG_TOP_FIELD_EVENT) &&
266 (event != VTG_BOTTOM_FIELD_EVENT)) {
267 DRM_ERROR("unknown event: %lu\n", event);
268 return -EINVAL;
269 }
270
271 drm_handle_vblank(drm_dev, *crtc);
272
273 spin_lock_irqsave(&drm_dev->event_lock, flags);
274 if (compo->mixer[*crtc]->pending_event) {
275 drm_send_vblank_event(drm_dev, -1,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200276 compo->mixer[*crtc]->pending_event);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200277 drm_vblank_put(drm_dev, *crtc);
278 compo->mixer[*crtc]->pending_event = NULL;
279 }
280 spin_unlock_irqrestore(&drm_dev->event_lock, flags);
281
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200282 if (compo->mixer[*crtc]->status == STI_MIXER_DISABLING) {
283 struct drm_plane *p;
284
285 /* Disable mixer only if all overlay planes (GDP and VDP)
286 * are disabled */
287 list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
288 struct sti_plane *plane = to_sti_plane(p);
289
290 if ((plane->desc & STI_PLANE_TYPE_MASK) <= STI_VDP)
291 if (plane->status != STI_PLANE_DISABLED)
292 return 0;
293 }
294 sti_crtc_disable(&compo->mixer[*crtc]->drm_crtc);
295 }
296
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200297 return 0;
298}
299
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200300int sti_crtc_enable_vblank(struct drm_device *dev, int crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200301{
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200302 struct sti_private *dev_priv = dev->dev_private;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200303 struct sti_compositor *compo = dev_priv->compo;
304 struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb;
305
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200306 DRM_DEBUG_DRIVER("\n");
307
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200308 if (sti_vtg_register_client(crtc == STI_MIXER_MAIN ?
309 compo->vtg_main : compo->vtg_aux,
310 vtg_vblank_nb, crtc)) {
311 DRM_ERROR("Cannot register VTG notifier\n");
312 return -EINVAL;
313 }
314
315 return 0;
316}
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200317EXPORT_SYMBOL(sti_crtc_enable_vblank);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200318
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200319void sti_crtc_disable_vblank(struct drm_device *drm_dev, int crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200320{
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200321 struct sti_private *priv = drm_dev->dev_private;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200322 struct sti_compositor *compo = priv->compo;
323 struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200324
325 DRM_DEBUG_DRIVER("\n");
326
327 if (sti_vtg_unregister_client(crtc == STI_MIXER_MAIN ?
328 compo->vtg_main : compo->vtg_aux, vtg_vblank_nb))
329 DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");
330
331 /* free the resources of the pending requests */
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200332 if (compo->mixer[crtc]->pending_event) {
Vincent Abriou29d1dc62015-08-03 14:22:16 +0200333 drm_vblank_put(drm_dev, crtc);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200334 compo->mixer[crtc]->pending_event = NULL;
335 }
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200336}
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200337EXPORT_SYMBOL(sti_crtc_disable_vblank);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200338
339static struct drm_crtc_funcs sti_crtc_funcs = {
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100340 .set_config = drm_atomic_helper_set_config,
341 .page_flip = drm_atomic_helper_page_flip,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200342 .destroy = sti_crtc_destroy,
343 .set_property = sti_crtc_set_property,
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +0100344 .reset = drm_atomic_helper_crtc_reset,
345 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
346 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200347};
348
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200349bool sti_crtc_is_main(struct drm_crtc *crtc)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200350{
351 struct sti_mixer *mixer = to_sti_mixer(crtc);
352
353 if (mixer->id == STI_MIXER_MAIN)
354 return true;
355
356 return false;
357}
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200358EXPORT_SYMBOL(sti_crtc_is_main);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200359
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200360int sti_crtc_init(struct drm_device *drm_dev, struct sti_mixer *mixer,
361 struct drm_plane *primary, struct drm_plane *cursor)
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200362{
363 struct drm_crtc *crtc = &mixer->drm_crtc;
364 int res;
365
366 res = drm_crtc_init_with_planes(drm_dev, crtc, primary, cursor,
Vincent Abriou9e1f05b2015-07-31 11:32:34 +0200367 &sti_crtc_funcs);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200368 if (res) {
Vincent Abriou871bcdf2015-07-31 11:32:13 +0200369 DRM_ERROR("Can't initialze CRTC\n");
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +0200370 return -EINVAL;
371 }
372
373 drm_crtc_helper_add(crtc, &sti_crtc_helper_funcs);
374
375 DRM_DEBUG_DRIVER("drm CRTC:%d mapped to %s\n",
376 crtc->base.id, sti_mixer_to_str(mixer));
377
378 return 0;
379}