]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/sti/sti_drm_crtc.c
Merge tag 'topic/core-stuff-2014-12-19' of git://anongit.freedesktop.org/drm-intel...
[karo-tx-linux.git] / drivers / gpu / drm / sti / sti_drm_crtc.c
1 /*
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>
12 #include <drm/drm_crtc_helper.h>
13 #include <drm/drm_plane_helper.h>
14
15 #include "sti_compositor.h"
16 #include "sti_drm_drv.h"
17 #include "sti_drm_crtc.h"
18 #include "sti_vtg.h"
19
20 static void sti_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
21 {
22         DRM_DEBUG_KMS("\n");
23 }
24
25 static void sti_drm_crtc_prepare(struct drm_crtc *crtc)
26 {
27         struct sti_mixer *mixer = to_sti_mixer(crtc);
28         struct device *dev = mixer->dev;
29         struct sti_compositor *compo = dev_get_drvdata(dev);
30
31         mixer->enabled = true;
32
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         }
41
42         sti_mixer_clear_all_layers(mixer);
43 }
44
45 static void sti_drm_crtc_commit(struct drm_crtc *crtc)
46 {
47         struct sti_mixer *mixer = to_sti_mixer(crtc);
48         struct device *dev = mixer->dev;
49         struct sti_compositor *compo = dev_get_drvdata(dev);
50         struct sti_layer *layer;
51
52         if ((!mixer || !compo)) {
53                 DRM_ERROR("Can not find mixer or compositor)\n");
54                 return;
55         }
56
57         /* get GDP which is reserved to the CRTC FB */
58         layer = to_sti_layer(crtc->primary);
59         if (layer)
60                 sti_layer_commit(layer);
61         else
62                 DRM_ERROR("Can not find CRTC dedicated plane (GDP0)\n");
63
64         /* Enable layer on mixer */
65         if (sti_mixer_set_layer_status(mixer, layer, true))
66                 DRM_ERROR("Can not enable layer at mixer\n");
67
68         drm_crtc_vblank_on(crtc);
69 }
70
71 static bool sti_drm_crtc_mode_fixup(struct drm_crtc *crtc,
72                                     const struct drm_display_mode *mode,
73                                     struct drm_display_mode *adjusted_mode)
74 {
75         /* accept the provided drm_display_mode, do not fix it up */
76         return true;
77 }
78
79 static int
80 sti_drm_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
81                       struct drm_display_mode *adjusted_mode, int x, int y,
82                       struct drm_framebuffer *old_fb)
83 {
84         struct sti_mixer *mixer = to_sti_mixer(crtc);
85         struct device *dev = mixer->dev;
86         struct sti_compositor *compo = dev_get_drvdata(dev);
87         struct sti_layer *layer;
88         struct clk *clk;
89         int rate = mode->clock * 1000;
90         int res;
91         unsigned int w, h;
92
93         DRM_DEBUG_KMS("CRTC:%d (%s) fb:%d mode:%d (%s)\n",
94                       crtc->base.id, sti_mixer_to_str(mixer),
95                       crtc->primary->fb->base.id, mode->base.id, mode->name);
96
97         DRM_DEBUG_KMS("%d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n",
98                       mode->vrefresh, mode->clock,
99                       mode->hdisplay,
100                       mode->hsync_start, mode->hsync_end,
101                       mode->htotal,
102                       mode->vdisplay,
103                       mode->vsync_start, mode->vsync_end,
104                       mode->vtotal, mode->type, mode->flags);
105
106         /* Set rate and prepare/enable pixel clock */
107         if (mixer->id == STI_MIXER_MAIN)
108                 clk = compo->clk_pix_main;
109         else
110                 clk = compo->clk_pix_aux;
111
112         res = clk_set_rate(clk, rate);
113         if (res < 0) {
114                 DRM_ERROR("Cannot set rate (%dHz) for pix clk\n", rate);
115                 return -EINVAL;
116         }
117         if (clk_prepare_enable(clk)) {
118                 DRM_ERROR("Failed to prepare/enable pix clk\n");
119                 return -EINVAL;
120         }
121
122         sti_vtg_set_config(mixer->id == STI_MIXER_MAIN ?
123                         compo->vtg_main : compo->vtg_aux, &crtc->mode);
124
125         /* a GDP is reserved to the CRTC FB */
126         layer = to_sti_layer(crtc->primary);
127         if (!layer) {
128                 DRM_ERROR("Can not find GDP0)\n");
129                 return -EINVAL;
130         }
131
132         /* copy the mode data adjusted by mode_fixup() into crtc->mode
133          * so that hardware can be set to proper mode
134          */
135         memcpy(&crtc->mode, adjusted_mode, sizeof(*adjusted_mode));
136
137         res = sti_mixer_set_layer_depth(mixer, layer);
138         if (res) {
139                 DRM_ERROR("Can not set layer depth\n");
140                 return -EINVAL;
141         }
142         res = sti_mixer_active_video_area(mixer, &crtc->mode);
143         if (res) {
144                 DRM_ERROR("Can not set active video area\n");
145                 return -EINVAL;
146         }
147
148         w = crtc->primary->fb->width - x;
149         h = crtc->primary->fb->height - y;
150
151         return sti_layer_prepare(layer, crtc,
152                         crtc->primary->fb, &crtc->mode,
153                         mixer->id, 0, 0, w, h, x, y, w, h);
154 }
155
156 static int sti_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
157                                       struct drm_framebuffer *old_fb)
158 {
159         struct sti_mixer *mixer = to_sti_mixer(crtc);
160         struct sti_layer *layer;
161         unsigned int w, h;
162         int ret;
163
164         DRM_DEBUG_KMS("CRTC:%d (%s) fb:%d (%d,%d)\n",
165                       crtc->base.id, sti_mixer_to_str(mixer),
166                       crtc->primary->fb->base.id, x, y);
167
168         /* GDP is reserved to the CRTC FB */
169         layer = to_sti_layer(crtc->primary);
170         if (!layer) {
171                 DRM_ERROR("Can not find GDP0)\n");
172                 ret = -EINVAL;
173                 goto out;
174         }
175
176         w = crtc->primary->fb->width - crtc->x;
177         h = crtc->primary->fb->height - crtc->y;
178
179         ret = sti_layer_prepare(layer, crtc,
180                                 crtc->primary->fb, &crtc->mode,
181                                 mixer->id, 0, 0, w, h,
182                                 crtc->x, crtc->y, w, h);
183         if (ret) {
184                 DRM_ERROR("Can not prepare layer\n");
185                 goto out;
186         }
187
188         sti_drm_crtc_commit(crtc);
189 out:
190         return ret;
191 }
192
193 static void sti_drm_crtc_disable(struct drm_crtc *crtc)
194 {
195         struct sti_mixer *mixer = to_sti_mixer(crtc);
196         struct device *dev = mixer->dev;
197         struct sti_compositor *compo = dev_get_drvdata(dev);
198         struct sti_layer *layer;
199
200         if (!mixer->enabled)
201                 return;
202
203         DRM_DEBUG_KMS("CRTC:%d (%s)\n", crtc->base.id, sti_mixer_to_str(mixer));
204
205         /* Disable Background */
206         sti_mixer_set_background_status(mixer, false);
207
208         /* Disable GDP */
209         layer = to_sti_layer(crtc->primary);
210         if (!layer) {
211                 DRM_ERROR("Cannot find GDP0\n");
212                 return;
213         }
214
215         /* Disable layer at mixer level */
216         if (sti_mixer_set_layer_status(mixer, layer, false))
217                 DRM_ERROR("Can not disable %s layer at mixer\n",
218                                 sti_layer_to_str(layer));
219
220         /* Wait a while to be sure that a Vsync event is received */
221         msleep(WAIT_NEXT_VSYNC_MS);
222
223         /* Then disable layer itself */
224         sti_layer_disable(layer);
225
226         drm_crtc_vblank_off(crtc);
227
228         /* Disable pixel clock and compo IP clocks */
229         if (mixer->id == STI_MIXER_MAIN) {
230                 clk_disable_unprepare(compo->clk_pix_main);
231                 clk_disable_unprepare(compo->clk_compo_main);
232         } else {
233                 clk_disable_unprepare(compo->clk_pix_aux);
234                 clk_disable_unprepare(compo->clk_compo_aux);
235         }
236
237         mixer->enabled = false;
238 }
239
240 static struct drm_crtc_helper_funcs sti_crtc_helper_funcs = {
241         .dpms = sti_drm_crtc_dpms,
242         .prepare = sti_drm_crtc_prepare,
243         .commit = sti_drm_crtc_commit,
244         .mode_fixup = sti_drm_crtc_mode_fixup,
245         .mode_set = sti_drm_crtc_mode_set,
246         .mode_set_base = sti_drm_crtc_mode_set_base,
247         .disable = sti_drm_crtc_disable,
248 };
249
250 static int sti_drm_crtc_page_flip(struct drm_crtc *crtc,
251                                   struct drm_framebuffer *fb,
252                                   struct drm_pending_vblank_event *event,
253                                   uint32_t page_flip_flags)
254 {
255         struct drm_device *drm_dev = crtc->dev;
256         struct drm_framebuffer *old_fb;
257         struct sti_mixer *mixer = to_sti_mixer(crtc);
258         unsigned long flags;
259         int ret;
260
261         DRM_DEBUG_KMS("fb %d --> fb %d\n",
262                         crtc->primary->fb->base.id, fb->base.id);
263
264         mutex_lock(&drm_dev->struct_mutex);
265
266         old_fb = crtc->primary->fb;
267         crtc->primary->fb = fb;
268         ret = sti_drm_crtc_mode_set_base(crtc, crtc->x, crtc->y, old_fb);
269         if (ret) {
270                 DRM_ERROR("failed\n");
271                 crtc->primary->fb = old_fb;
272                 goto out;
273         }
274
275         if (event) {
276                 event->pipe = mixer->id;
277
278                 ret = drm_vblank_get(drm_dev, event->pipe);
279                 if (ret) {
280                         DRM_ERROR("Cannot get vblank\n");
281                         goto out;
282                 }
283
284                 spin_lock_irqsave(&drm_dev->event_lock, flags);
285                 if (mixer->pending_event) {
286                         drm_vblank_put(drm_dev, event->pipe);
287                         ret = -EBUSY;
288                 } else {
289                         mixer->pending_event = event;
290                 }
291                 spin_unlock_irqrestore(&drm_dev->event_lock, flags);
292         }
293 out:
294         mutex_unlock(&drm_dev->struct_mutex);
295         return ret;
296 }
297
298 static void sti_drm_crtc_destroy(struct drm_crtc *crtc)
299 {
300         DRM_DEBUG_KMS("\n");
301         drm_crtc_cleanup(crtc);
302 }
303
304 static int sti_drm_crtc_set_property(struct drm_crtc *crtc,
305                                      struct drm_property *property,
306                                      uint64_t val)
307 {
308         DRM_DEBUG_KMS("\n");
309         return 0;
310 }
311
312 int sti_drm_crtc_vblank_cb(struct notifier_block *nb,
313                            unsigned long event, void *data)
314 {
315         struct drm_device *drm_dev;
316         struct sti_compositor *compo =
317                 container_of(nb, struct sti_compositor, vtg_vblank_nb);
318         int *crtc = data;
319         unsigned long flags;
320         struct sti_drm_private *priv;
321
322         drm_dev = compo->mixer[*crtc]->drm_crtc.dev;
323         priv = drm_dev->dev_private;
324
325         if ((event != VTG_TOP_FIELD_EVENT) &&
326             (event != VTG_BOTTOM_FIELD_EVENT)) {
327                 DRM_ERROR("unknown event: %lu\n", event);
328                 return -EINVAL;
329         }
330
331         drm_handle_vblank(drm_dev, *crtc);
332
333         spin_lock_irqsave(&drm_dev->event_lock, flags);
334         if (compo->mixer[*crtc]->pending_event) {
335                 drm_send_vblank_event(drm_dev, -1,
336                                 compo->mixer[*crtc]->pending_event);
337                 drm_vblank_put(drm_dev, *crtc);
338                 compo->mixer[*crtc]->pending_event = NULL;
339         }
340         spin_unlock_irqrestore(&drm_dev->event_lock, flags);
341
342         return 0;
343 }
344
345 int sti_drm_crtc_enable_vblank(struct drm_device *dev, int crtc)
346 {
347         struct sti_drm_private *dev_priv = dev->dev_private;
348         struct sti_compositor *compo = dev_priv->compo;
349         struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb;
350
351         if (sti_vtg_register_client(crtc == STI_MIXER_MAIN ?
352                         compo->vtg_main : compo->vtg_aux,
353                         vtg_vblank_nb, crtc)) {
354                 DRM_ERROR("Cannot register VTG notifier\n");
355                 return -EINVAL;
356         }
357
358         return 0;
359 }
360 EXPORT_SYMBOL(sti_drm_crtc_enable_vblank);
361
362 void sti_drm_crtc_disable_vblank(struct drm_device *dev, int crtc)
363 {
364         struct sti_drm_private *priv = dev->dev_private;
365         struct sti_compositor *compo = priv->compo;
366         struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb;
367
368         DRM_DEBUG_DRIVER("\n");
369
370         if (sti_vtg_unregister_client(crtc == STI_MIXER_MAIN ?
371                         compo->vtg_main : compo->vtg_aux, vtg_vblank_nb))
372                 DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");
373
374         /* free the resources of the pending requests */
375         if (compo->mixer[crtc]->pending_event) {
376                 drm_vblank_put(dev, crtc);
377                 compo->mixer[crtc]->pending_event = NULL;
378         }
379 }
380 EXPORT_SYMBOL(sti_drm_crtc_disable_vblank);
381
382 static struct drm_crtc_funcs sti_crtc_funcs = {
383         .set_config = drm_crtc_helper_set_config,
384         .page_flip = sti_drm_crtc_page_flip,
385         .destroy = sti_drm_crtc_destroy,
386         .set_property = sti_drm_crtc_set_property,
387 };
388
389 bool sti_drm_crtc_is_main(struct drm_crtc *crtc)
390 {
391         struct sti_mixer *mixer = to_sti_mixer(crtc);
392
393         if (mixer->id == STI_MIXER_MAIN)
394                 return true;
395
396         return false;
397 }
398 EXPORT_SYMBOL(sti_drm_crtc_is_main);
399
400 int sti_drm_crtc_init(struct drm_device *drm_dev, struct sti_mixer *mixer,
401                 struct drm_plane *primary, struct drm_plane *cursor)
402 {
403         struct drm_crtc *crtc = &mixer->drm_crtc;
404         int res;
405
406         res = drm_crtc_init_with_planes(drm_dev, crtc, primary, cursor,
407                         &sti_crtc_funcs);
408         if (res) {
409                 DRM_ERROR("Can not initialze CRTC\n");
410                 return -EINVAL;
411         }
412
413         drm_crtc_helper_add(crtc, &sti_crtc_helper_funcs);
414
415         DRM_DEBUG_DRIVER("drm CRTC:%d mapped to %s\n",
416                          crtc->base.id, sti_mixer_to_str(mixer));
417
418         return 0;
419 }