drm/exynos: atomic phase 2: wire up state reset(), duplicate() and destroy()
[deliverable/linux.git] / drivers / gpu / drm / exynos / exynos_drm_crtc.c
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 *
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.
13 */
14
15 #include <drm/drmP.h>
16 #include <drm/drm_crtc_helper.h>
17 #include <drm/drm_atomic.h>
18 #include <drm/drm_atomic_helper.h>
19
20 #include "exynos_drm_crtc.h"
21 #include "exynos_drm_drv.h"
22 #include "exynos_drm_encoder.h"
23 #include "exynos_drm_plane.h"
24
25 static void exynos_drm_crtc_dpms(struct drm_crtc *crtc, int mode)
26 {
27 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
28
29 DRM_DEBUG_KMS("crtc[%d] mode[%d]\n", crtc->base.id, mode);
30
31 if (exynos_crtc->dpms == mode) {
32 DRM_DEBUG_KMS("desired dpms mode is same as previous one.\n");
33 return;
34 }
35
36 if (mode > DRM_MODE_DPMS_ON) {
37 /* wait for the completion of page flip. */
38 if (!wait_event_timeout(exynos_crtc->pending_flip_queue,
39 (exynos_crtc->event == NULL), HZ/20))
40 exynos_crtc->event = NULL;
41 drm_crtc_vblank_off(crtc);
42 }
43
44 if (exynos_crtc->ops->dpms)
45 exynos_crtc->ops->dpms(exynos_crtc, mode);
46
47 exynos_crtc->dpms = mode;
48
49 if (mode == DRM_MODE_DPMS_ON)
50 drm_crtc_vblank_on(crtc);
51 }
52
53 static void exynos_drm_crtc_prepare(struct drm_crtc *crtc)
54 {
55 /* drm framework doesn't check NULL. */
56 }
57
58 static void exynos_drm_crtc_commit(struct drm_crtc *crtc)
59 {
60 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
61 struct exynos_drm_plane *exynos_plane = to_exynos_plane(crtc->primary);
62
63 exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
64
65 if (exynos_crtc->ops->win_commit)
66 exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos);
67 }
68
69 static bool
70 exynos_drm_crtc_mode_fixup(struct drm_crtc *crtc,
71 const struct drm_display_mode *mode,
72 struct drm_display_mode *adjusted_mode)
73 {
74 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
75
76 if (exynos_crtc->ops->mode_fixup)
77 return exynos_crtc->ops->mode_fixup(exynos_crtc, mode,
78 adjusted_mode);
79
80 return true;
81 }
82
83 static void
84 exynos_drm_crtc_mode_set_nofb(struct drm_crtc *crtc)
85 {
86 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
87
88 if (exynos_crtc->ops->commit)
89 exynos_crtc->ops->commit(exynos_crtc);
90 }
91
92 static void exynos_drm_crtc_disable(struct drm_crtc *crtc)
93 {
94 struct drm_plane *plane;
95 int ret;
96
97 exynos_drm_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
98
99 drm_for_each_legacy_plane(plane, &crtc->dev->mode_config.plane_list) {
100 if (plane->crtc != crtc)
101 continue;
102
103 ret = plane->funcs->disable_plane(plane);
104 if (ret)
105 DRM_ERROR("Failed to disable plane %d\n", ret);
106 }
107 }
108
109 static struct drm_crtc_helper_funcs exynos_crtc_helper_funcs = {
110 .dpms = exynos_drm_crtc_dpms,
111 .prepare = exynos_drm_crtc_prepare,
112 .commit = exynos_drm_crtc_commit,
113 .mode_fixup = exynos_drm_crtc_mode_fixup,
114 .mode_set = drm_helper_crtc_mode_set,
115 .mode_set_nofb = exynos_drm_crtc_mode_set_nofb,
116 .mode_set_base = drm_helper_crtc_mode_set_base,
117 .disable = exynos_drm_crtc_disable,
118 };
119
120 static int exynos_drm_crtc_page_flip(struct drm_crtc *crtc,
121 struct drm_framebuffer *fb,
122 struct drm_pending_vblank_event *event,
123 uint32_t page_flip_flags)
124 {
125 struct drm_device *dev = crtc->dev;
126 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
127 unsigned int crtc_w, crtc_h;
128 int ret;
129
130 /* when the page flip is requested, crtc's dpms should be on */
131 if (exynos_crtc->dpms > DRM_MODE_DPMS_ON) {
132 DRM_ERROR("failed page flip request.\n");
133 return -EINVAL;
134 }
135
136 if (!event)
137 return -EINVAL;
138
139 spin_lock_irq(&dev->event_lock);
140 if (exynos_crtc->event) {
141 ret = -EBUSY;
142 goto out;
143 }
144
145 ret = exynos_check_plane(crtc->primary, fb);
146 if (ret)
147 goto out;
148
149 ret = drm_vblank_get(dev, exynos_crtc->pipe);
150 if (ret) {
151 DRM_DEBUG("failed to acquire vblank counter\n");
152 goto out;
153 }
154
155 exynos_crtc->event = event;
156 spin_unlock_irq(&dev->event_lock);
157
158 /*
159 * the pipe from user always is 0 so we can set pipe number
160 * of current owner to event.
161 */
162 event->pipe = exynos_crtc->pipe;
163
164 crtc->primary->fb = fb;
165 crtc_w = fb->width - crtc->x;
166 crtc_h = fb->height - crtc->y;
167 exynos_update_plane(crtc->primary, crtc, fb, 0, 0,
168 crtc_w, crtc_h, crtc->x << 16, crtc->y << 16,
169 crtc_w << 16, crtc_h << 16);
170
171 return 0;
172
173 out:
174 spin_unlock_irq(&dev->event_lock);
175 return ret;
176 }
177
178 static void exynos_drm_crtc_destroy(struct drm_crtc *crtc)
179 {
180 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
181 struct exynos_drm_private *private = crtc->dev->dev_private;
182
183 private->crtc[exynos_crtc->pipe] = NULL;
184
185 drm_crtc_cleanup(crtc);
186 kfree(exynos_crtc);
187 }
188
189 static struct drm_crtc_funcs exynos_crtc_funcs = {
190 .set_config = drm_crtc_helper_set_config,
191 .page_flip = exynos_drm_crtc_page_flip,
192 .destroy = exynos_drm_crtc_destroy,
193 .reset = drm_atomic_helper_crtc_reset,
194 .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
195 .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
196 };
197
198 struct exynos_drm_crtc *exynos_drm_crtc_create(struct drm_device *drm_dev,
199 struct drm_plane *plane,
200 int pipe,
201 enum exynos_drm_output_type type,
202 const struct exynos_drm_crtc_ops *ops,
203 void *ctx)
204 {
205 struct exynos_drm_crtc *exynos_crtc;
206 struct exynos_drm_private *private = drm_dev->dev_private;
207 struct drm_crtc *crtc;
208 int ret;
209
210 exynos_crtc = kzalloc(sizeof(*exynos_crtc), GFP_KERNEL);
211 if (!exynos_crtc)
212 return ERR_PTR(-ENOMEM);
213
214 init_waitqueue_head(&exynos_crtc->pending_flip_queue);
215
216 exynos_crtc->dpms = DRM_MODE_DPMS_OFF;
217 exynos_crtc->pipe = pipe;
218 exynos_crtc->type = type;
219 exynos_crtc->ops = ops;
220 exynos_crtc->ctx = ctx;
221
222 crtc = &exynos_crtc->base;
223
224 private->crtc[pipe] = crtc;
225
226 ret = drm_crtc_init_with_planes(drm_dev, crtc, plane, NULL,
227 &exynos_crtc_funcs);
228 if (ret < 0)
229 goto err_crtc;
230
231 drm_crtc_helper_add(crtc, &exynos_crtc_helper_funcs);
232
233 return exynos_crtc;
234
235 err_crtc:
236 plane->funcs->destroy(plane);
237 kfree(exynos_crtc);
238 return ERR_PTR(ret);
239 }
240
241 int exynos_drm_crtc_enable_vblank(struct drm_device *dev, int pipe)
242 {
243 struct exynos_drm_private *private = dev->dev_private;
244 struct exynos_drm_crtc *exynos_crtc =
245 to_exynos_crtc(private->crtc[pipe]);
246
247 if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
248 return -EPERM;
249
250 if (exynos_crtc->ops->enable_vblank)
251 exynos_crtc->ops->enable_vblank(exynos_crtc);
252
253 return 0;
254 }
255
256 void exynos_drm_crtc_disable_vblank(struct drm_device *dev, int pipe)
257 {
258 struct exynos_drm_private *private = dev->dev_private;
259 struct exynos_drm_crtc *exynos_crtc =
260 to_exynos_crtc(private->crtc[pipe]);
261
262 if (exynos_crtc->dpms != DRM_MODE_DPMS_ON)
263 return;
264
265 if (exynos_crtc->ops->disable_vblank)
266 exynos_crtc->ops->disable_vblank(exynos_crtc);
267 }
268
269 void exynos_drm_crtc_finish_pageflip(struct drm_device *dev, int pipe)
270 {
271 struct exynos_drm_private *dev_priv = dev->dev_private;
272 struct drm_crtc *drm_crtc = dev_priv->crtc[pipe];
273 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(drm_crtc);
274 unsigned long flags;
275
276 spin_lock_irqsave(&dev->event_lock, flags);
277 if (exynos_crtc->event) {
278
279 drm_send_vblank_event(dev, -1, exynos_crtc->event);
280 drm_vblank_put(dev, pipe);
281 wake_up(&exynos_crtc->pending_flip_queue);
282
283 }
284
285 exynos_crtc->event = NULL;
286 spin_unlock_irqrestore(&dev->event_lock, flags);
287 }
288
289 void exynos_drm_crtc_complete_scanout(struct drm_framebuffer *fb)
290 {
291 struct exynos_drm_crtc *exynos_crtc;
292 struct drm_device *dev = fb->dev;
293 struct drm_crtc *crtc;
294
295 /*
296 * make sure that overlay data are updated to real hardware
297 * for all encoders.
298 */
299 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
300 exynos_crtc = to_exynos_crtc(crtc);
301
302 /*
303 * wait for vblank interrupt
304 * - this makes sure that overlay data are updated to
305 * real hardware.
306 */
307 if (exynos_crtc->ops->wait_for_vblank)
308 exynos_crtc->ops->wait_for_vblank(exynos_crtc);
309 }
310 }
311
312 int exynos_drm_crtc_get_pipe_from_type(struct drm_device *drm_dev,
313 unsigned int out_type)
314 {
315 struct drm_crtc *crtc;
316
317 list_for_each_entry(crtc, &drm_dev->mode_config.crtc_list, head) {
318 struct exynos_drm_crtc *exynos_crtc;
319
320 exynos_crtc = to_exynos_crtc(crtc);
321 if (exynos_crtc->type == out_type)
322 return exynos_crtc->pipe;
323 }
324
325 return -EPERM;
326 }
327
328 void exynos_drm_crtc_te_handler(struct drm_crtc *crtc)
329 {
330 struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc);
331
332 if (exynos_crtc->ops->te_handler)
333 exynos_crtc->ops->te_handler(exynos_crtc);
334 }
This page took 0.050943 seconds and 5 git commands to generate.