Merge branch 'x86/ras' into x86/core, to fix conflicts
[deliverable/linux.git] / drivers / gpu / drm / exynos / exynos_drm_crtc.c
CommitLineData
1c248b7d
ID
1/* exynos_drm_crtc.c
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Authors:
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
7 * Seung-Woo Kim <sw0312.kim@samsung.com>
8 *
d81aecb5
ID
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
1c248b7d
ID
13 */
14
760285e7
DH
15#include <drm/drmP.h>
16#include <drm/drm_crtc_helper.h>
1c248b7d 17
e30655d0 18#include "exynos_drm_crtc.h"
1c248b7d 19#include "exynos_drm_drv.h"
1c248b7d 20#include "exynos_drm_encoder.h"
b5d2eb3b 21#include "exynos_drm_plane.h"
1c248b7d 22
1c248b7d
ID
23static void exynos_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
24{
d2716c89 25 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
1c248b7d 26
d2716c89
JS
27 DRM_DEBUG_KMS("crtc[%d] mode[%d]\n", crtc->base.id, mode);
28
ec05da95
ID
29 if (exynos_crtc->dpms == mode) {
30 DRM_DEBUG_KMS("desired dpms mode is same as previous one.\n");
31 return;
32 }
33
20cd2640
ID
34 if (mode > DRM_MODE_DPMS_ON) {
35 /* wait for the completion of page flip. */
e35d7223 36 if (!wait_event_timeout(exynos_crtc->pending_flip_queue,
e752747b
MSB
37 (exynos_crtc->event == NULL), HZ/20))
38 exynos_crtc->event = NULL;
d6948b2f 39 drm_crtc_vblank_off(crtc);
20cd2640
ID
40 }
41
93bca243
GP
42 if (exynos_crtc->ops->dpms)
43 exynos_crtc->ops->dpms(exynos_crtc, mode);
080be03d 44
cf5188ac 45 exynos_crtc->dpms = mode;
d6948b2f
AH
46
47 if (mode == DRM_MODE_DPMS_ON)
48 drm_crtc_vblank_on(crtc);
1c248b7d
ID
49}
50
51static void exynos_drm_crtc_prepare(struct drm_crtc *crtc)
52{
1c248b7d
ID
53 /* drm framework doesn't check NULL. */
54}
55
56static void exynos_drm_crtc_commit(struct drm_crtc *crtc)
57{
d2716c89 58 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
9d5310c0 59 struct exynos_drm_plane *exynos_plane = to_exynos_plane(crtc->primary);
d2716c89 60
50caf25c 61 exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
080be03d 62
93bca243
GP
63 if (exynos_crtc->ops->win_commit)
64 exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos);
080be03d 65
93bca243
GP
66 if (exynos_crtc->ops->commit)
67 exynos_crtc->ops->commit(exynos_crtc);
1c248b7d
ID
68}
69
70static bool
71exynos_drm_crtc_mode_fixup(struct drm_crtc *crtc,
e811f5ae 72 const struct drm_display_mode *mode,
1c248b7d
ID
73 struct drm_display_mode *adjusted_mode)
74{
4b405269 75 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
4b405269 76
93bca243
GP
77 if (exynos_crtc->ops->mode_fixup)
78 return exynos_crtc->ops->mode_fixup(exynos_crtc, mode,
79 adjusted_mode);
4b405269 80
1c248b7d
ID
81 return true;
82}
83
84static int
85exynos_drm_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
86 struct drm_display_mode *adjusted_mode, int x, int y,
87 struct drm_framebuffer *old_fb)
88{
72ed6ccd 89 struct drm_framebuffer *fb = crtc->primary->fb;
4070d212
JS
90 unsigned int crtc_w;
91 unsigned int crtc_h;
adf5691c 92 int ret;
aeb29224 93
1de425b0
ID
94 /*
95 * copy the mode data adjusted by mode_fixup() into crtc->mode
96 * so that hardware can be seet to proper mode.
97 */
98 memcpy(&crtc->mode, adjusted_mode, sizeof(*adjusted_mode));
1c248b7d 99
adf5691c
GP
100 ret = exynos_check_plane(crtc->primary, fb);
101 if (ret < 0)
102 return ret;
103
72ed6ccd
AH
104 crtc_w = fb->width - x;
105 crtc_h = fb->height - y;
adf5691c
GP
106 exynos_plane_mode_set(crtc->primary, crtc, fb, 0, 0,
107 crtc_w, crtc_h, x, y, crtc_w, crtc_h);
108
109 return 0;
1c248b7d
ID
110}
111
fd092d7a 112static int exynos_drm_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
1c248b7d
ID
113 struct drm_framebuffer *old_fb)
114{
4070d212 115 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
72ed6ccd 116 struct drm_framebuffer *fb = crtc->primary->fb;
4070d212
JS
117 unsigned int crtc_w;
118 unsigned int crtc_h;
1c248b7d 119
32aeab17
ID
120 /* when framebuffer changing is requested, crtc's dpms should be on */
121 if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
122 DRM_ERROR("failed framebuffer changing request.\n");
123 return -EPERM;
124 }
125
72ed6ccd
AH
126 crtc_w = fb->width - x;
127 crtc_h = fb->height - y;
4070d212 128
0e0a649f
GP
129 return exynos_update_plane(crtc->primary, crtc, fb, 0, 0,
130 crtc_w, crtc_h, x, y, crtc_w, crtc_h);
1c248b7d
ID
131}
132
a365d9eb
JS
133static void exynos_drm_crtc_disable(struct drm_crtc *crtc)
134{
a9c4cd21
SP
135 struct drm_plane *plane;
136 int ret;
a365d9eb 137
a365d9eb 138 exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
a9c4cd21 139
0886327a 140 drm_for_each_legacy_plane(plane, &crtc->dev->mode_config.plane_list) {
a9c4cd21
SP
141 if (plane->crtc != crtc)
142 continue;
143
144 ret = plane->funcs->disable_plane(plane);
145 if (ret)
146 DRM_ERROR("Failed to disable plane %d\n", ret);
147 }
a365d9eb
JS
148}
149
1c248b7d
ID
150static struct drm_crtc_helper_funcs exynos_crtc_helper_funcs = {
151 .dpms = exynos_drm_crtc_dpms,
152 .prepare = exynos_drm_crtc_prepare,
153 .commit = exynos_drm_crtc_commit,
154 .mode_fixup = exynos_drm_crtc_mode_fixup,
155 .mode_set = exynos_drm_crtc_mode_set,
156 .mode_set_base = exynos_drm_crtc_mode_set_base,
a365d9eb 157 .disable = exynos_drm_crtc_disable,
1c248b7d
ID
158};
159
160static int exynos_drm_crtc_page_flip(struct drm_crtc *crtc,
ed8d1975
KP
161 struct drm_framebuffer *fb,
162 struct drm_pending_vblank_event *event,
163 uint32_t page_flip_flags)
1c248b7d
ID
164{
165 struct drm_device *dev = crtc->dev;
1c248b7d 166 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
f4510a27 167 struct drm_framebuffer *old_fb = crtc->primary->fb;
8b9c4505 168 unsigned int crtc_w, crtc_h;
e752747b 169 int ret;
1c248b7d 170
ef6223dc
ID
171 /* when the page flip is requested, crtc's dpms should be on */
172 if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
173 DRM_ERROR("failed page flip request.\n");
174 return -EINVAL;
175 }
176
e752747b
MSB
177 if (!event)
178 return -EINVAL;
1c248b7d 179
e752747b
MSB
180 spin_lock_irq(&dev->event_lock);
181 if (exynos_crtc->event) {
182 ret = -EBUSY;
183 goto out;
184 }
ccf4d883 185
e752747b
MSB
186 ret = drm_vblank_get(dev, exynos_crtc->pipe);
187 if (ret) {
188 DRM_DEBUG("failed to acquire vblank counter\n");
189 goto out;
190 }
ccf4d883 191
e752747b
MSB
192 exynos_crtc->event = event;
193 spin_unlock_irq(&dev->event_lock);
1c248b7d 194
e752747b
MSB
195 /*
196 * the pipe from user always is 0 so we can set pipe number
197 * of current owner to event.
198 */
199 event->pipe = exynos_crtc->pipe;
200
201 crtc->primary->fb = fb;
202 crtc_w = fb->width - crtc->x;
203 crtc_h = fb->height - crtc->y;
204 ret = exynos_update_plane(crtc->primary, crtc, fb, 0, 0,
205 crtc_w, crtc_h, crtc->x, crtc->y,
206 crtc_w, crtc_h);
207 if (ret) {
208 crtc->primary->fb = old_fb;
85473328 209 spin_lock_irq(&dev->event_lock);
e752747b
MSB
210 exynos_crtc->event = NULL;
211 drm_vblank_put(dev, exynos_crtc->pipe);
85473328 212 spin_unlock_irq(&dev->event_lock);
e752747b 213 return ret;
1c248b7d 214 }
e752747b
MSB
215
216 return 0;
217
1c248b7d 218out:
e752747b 219 spin_unlock_irq(&dev->event_lock);
1c248b7d
ID
220 return ret;
221}
222
223static void exynos_drm_crtc_destroy(struct drm_crtc *crtc)
224{
225 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
226 struct exynos_drm_private *private = crtc->dev->dev_private;
227
1c248b7d
ID
228 private->crtc[exynos_crtc->pipe] = NULL;
229
230 drm_crtc_cleanup(crtc);
231 kfree(exynos_crtc);
232}
233
234static struct drm_crtc_funcs exynos_crtc_funcs = {
235 .set_config = drm_crtc_helper_set_config,
236 .page_flip = exynos_drm_crtc_page_flip,
237 .destroy = exynos_drm_crtc_destroy,
238};
239
93bca243 240struct exynos_drm_crtc *exynos_drm_crtc_create(struct drm_device *drm_dev,
f3aaf762
KK
241 struct drm_plane *plane,
242 int pipe,
243 enum exynos_drm_output_type type,
244 const struct exynos_drm_crtc_ops *ops,
245 void *ctx)
1c248b7d
ID
246{
247 struct exynos_drm_crtc *exynos_crtc;
eb88e422 248 struct exynos_drm_private *private = drm_dev->dev_private;
1c248b7d 249 struct drm_crtc *crtc;
72ed6ccd 250 int ret;
1c248b7d 251
1c248b7d 252 exynos_crtc = kzalloc(sizeof(*exynos_crtc), GFP_KERNEL);
38bb5253 253 if (!exynos_crtc)
93bca243 254 return ERR_PTR(-ENOMEM);
1c248b7d 255
20cd2640 256 init_waitqueue_head(&exynos_crtc->pending_flip_queue);
080be03d
SP
257
258 exynos_crtc->dpms = DRM_MODE_DPMS_OFF;
e09f2b0d 259 exynos_crtc->pipe = pipe;
5d1741ad 260 exynos_crtc->type = type;
93bca243
GP
261 exynos_crtc->ops = ops;
262 exynos_crtc->ctx = ctx;
b5d2eb3b 263
357193cd 264 crtc = &exynos_crtc->base;
1c248b7d 265
e09f2b0d 266 private->crtc[pipe] = crtc;
1c248b7d 267
eb88e422 268 ret = drm_crtc_init_with_planes(drm_dev, crtc, plane, NULL,
72ed6ccd
AH
269 &exynos_crtc_funcs);
270 if (ret < 0)
271 goto err_crtc;
272
1c248b7d
ID
273 drm_crtc_helper_add(crtc, &exynos_crtc_helper_funcs);
274
93bca243 275 return exynos_crtc;
72ed6ccd
AH
276
277err_crtc:
278 plane->funcs->destroy(plane);
72ed6ccd 279 kfree(exynos_crtc);
93bca243 280 return ERR_PTR(ret);
1c248b7d
ID
281}
282
080be03d 283int exynos_drm_crtc_enable_vblank(struct drm_device *dev, int pipe)
1c248b7d
ID
284{
285 struct exynos_drm_private *private = dev->dev_private;
ec05da95 286 struct exynos_drm_crtc *exynos_crtc =
080be03d 287 to_exynos_crtc(private->crtc[pipe]);
1c248b7d 288
ec05da95
ID
289 if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
290 return -EPERM;
291
93bca243
GP
292 if (exynos_crtc->ops->enable_vblank)
293 exynos_crtc->ops->enable_vblank(exynos_crtc);
1c248b7d
ID
294
295 return 0;
296}
297
080be03d 298void exynos_drm_crtc_disable_vblank(struct drm_device *dev, int pipe)
1c248b7d
ID
299{
300 struct exynos_drm_private *private = dev->dev_private;
ec05da95 301 struct exynos_drm_crtc *exynos_crtc =
080be03d 302 to_exynos_crtc(private->crtc[pipe]);
1c248b7d 303
ec05da95
ID
304 if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
305 return;
306
93bca243
GP
307 if (exynos_crtc->ops->disable_vblank)
308 exynos_crtc->ops->disable_vblank(exynos_crtc);
1c248b7d 309}
663d8766 310
080be03d 311void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int pipe)
663d8766
RS
312{
313 struct exynos_drm_private *dev_priv = dev->dev_private;
080be03d 314 struct drm_crtc *drm_crtc = dev_priv->crtc[pipe];
20cd2640 315 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(drm_crtc);
663d8766
RS
316 unsigned long flags;
317
663d8766 318 spin_lock_irqsave(&dev->event_lock, flags);
e752747b 319 if (exynos_crtc->event) {
663d8766 320
e752747b 321 drm_send_vblank_event(dev, -1, exynos_crtc->event);
080be03d 322 drm_vblank_put(dev, pipe);
20cd2640 323 wake_up(&exynos_crtc->pending_flip_queue);
e752747b 324
663d8766
RS
325 }
326
e752747b 327 exynos_crtc->event = NULL;
663d8766
RS
328 spin_unlock_irqrestore(&dev->event_lock, flags);
329}
080be03d 330
080be03d
SP
331void exynos_drm_crtc_complete_scanout(struct drm_framebuffer *fb)
332{
93bca243 333 struct exynos_drm_crtc *exynos_crtc;
080be03d
SP
334 struct drm_device *dev = fb->dev;
335 struct drm_crtc *crtc;
336
337 /*
338 * make sure that overlay data are updated to real hardware
339 * for all encoders.
340 */
341 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
93bca243 342 exynos_crtc = to_exynos_crtc(crtc);
080be03d
SP
343
344 /*
345 * wait for vblank interrupt
346 * - this makes sure that overlay data are updated to
347 * real hardware.
348 */
93bca243
GP
349 if (exynos_crtc->ops->wait_for_vblank)
350 exynos_crtc->ops->wait_for_vblank(exynos_crtc);
080be03d
SP
351 }
352}
f37cd5e8
ID
353
354int exynos_drm_crtc_get_pipe_from_type(struct drm_device *drm_dev,
355 unsigned int out_type)
356{
357 struct drm_crtc *crtc;
358
359 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
360 struct exynos_drm_crtc *exynos_crtc;
361
362 exynos_crtc = to_exynos_crtc(crtc);
5d1741ad 363 if (exynos_crtc->type == out_type)
8a326edd 364 return exynos_crtc->pipe;
f37cd5e8
ID
365 }
366
367 return -EPERM;
368}
5595d4d8
YC
369
370void exynos_drm_crtc_te_handler(struct drm_crtc *crtc)
371{
93bca243 372 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
5595d4d8 373
93bca243
GP
374 if (exynos_crtc->ops->te_handler)
375 exynos_crtc->ops->te_handler(exynos_crtc);
5595d4d8 376}
This page took 0.241389 seconds and 5 git commands to generate.