blob: 6eedca107376ed3d8147ac18c0cd3696dfe1f276 [file] [log] [blame]
Rob Clarkbb5c2d92012-01-16 12:51:16 -06001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_plane.c
Rob Clarkbb5c2d92012-01-16 12:51:16 -06003 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob.clark@linaro.org>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Rob Clark5833bd22013-08-07 13:41:21 -040020#include "drm_flip_work.h"
Rob Clarkb33f34d2012-03-05 10:48:35 -060021
Rob Clarkbb5c2d92012-01-16 12:51:16 -060022#include "omap_drv.h"
Rob Clark3c810c62012-08-15 15:18:01 -050023#include "omap_dmm_tiler.h"
Rob Clarkbb5c2d92012-01-16 12:51:16 -060024
25/* some hackery because omapdss has an 'enum omap_plane' (which would be
26 * better named omap_plane_id).. and compiler seems unhappy about having
27 * both a 'struct omap_plane' and 'enum omap_plane'
28 */
29#define omap_plane _omap_plane
30
31/*
32 * plane funcs
33 */
34
Rob Clark72d0c332012-03-11 21:11:21 -050035struct callback {
36 void (*fxn)(void *);
37 void *arg;
38};
39
Rob Clarkbb5c2d92012-01-16 12:51:16 -060040#define to_omap_plane(x) container_of(x, struct omap_plane, base)
41
42struct omap_plane {
43 struct drm_plane base;
Rob Clarkf5f94542012-12-04 13:59:12 -060044 int id; /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */
45 const char *name;
Rob Clarkbb5c2d92012-01-16 12:51:16 -060046 struct omap_overlay_info info;
Rob Clarkf5f94542012-12-04 13:59:12 -060047 struct omap_drm_apply apply;
Rob Clarkbb5c2d92012-01-16 12:51:16 -060048
Rob Clark3c810c62012-08-15 15:18:01 -050049 /* position/orientation of scanout within the fb: */
50 struct omap_drm_window win;
Rob Clarkf5f94542012-12-04 13:59:12 -060051 bool enabled;
Rob Clark9a0774e2012-01-16 12:51:17 -060052
53 /* last fb that we pinned: */
54 struct drm_framebuffer *pinned_fb;
Rob Clarkbb5c2d92012-01-16 12:51:16 -060055
Rob Clarka890e662012-03-05 10:48:31 -060056 uint32_t nformats;
57 uint32_t formats[32];
Rob Clarkb33f34d2012-03-05 10:48:35 -060058
Rob Clarkf5f94542012-12-04 13:59:12 -060059 struct omap_drm_irq error_irq;
Rob Clarkb33f34d2012-03-05 10:48:35 -060060
Rob Clark5833bd22013-08-07 13:41:21 -040061 /* for deferring bo unpin's until next post_apply(): */
62 struct drm_flip_work unpin_work;
Rob Clarkb33f34d2012-03-05 10:48:35 -060063
Rob Clarkf5f94542012-12-04 13:59:12 -060064 // XXX maybe get rid of this and handle vblank in crtc too?
65 struct callback apply_done_cb;
Rob Clarka890e662012-03-05 10:48:31 -060066};
Rob Clarkbb5c2d92012-01-16 12:51:16 -060067
Laurent Pinchart2a438c52015-01-17 18:50:10 +020068static void omap_plane_unpin_worker(struct drm_flip_work *work, void *val)
Rob Clarkb33f34d2012-03-05 10:48:35 -060069{
Rob Clark5833bd22013-08-07 13:41:21 -040070 struct omap_plane *omap_plane =
71 container_of(work, struct omap_plane, unpin_work);
72 struct drm_device *dev = omap_plane->base.dev;
Rob Clarkb33f34d2012-03-05 10:48:35 -060073
Tomi Valkeinenf7c5f5d2014-09-03 19:25:57 +000074 /*
75 * omap_framebuffer_pin/unpin are always called from priv->wq,
76 * so there's no need for locking here.
77 */
Rob Clark5833bd22013-08-07 13:41:21 -040078 omap_framebuffer_unpin(val);
79 mutex_lock(&dev->mode_config.mutex);
80 drm_framebuffer_unreference(val);
81 mutex_unlock(&dev->mode_config.mutex);
Rob Clarkb33f34d2012-03-05 10:48:35 -060082}
83
Rob Clark9a0774e2012-01-16 12:51:17 -060084/* update which fb (if any) is pinned for scanout */
Laurent Pinchart2a438c52015-01-17 18:50:10 +020085static int omap_plane_update_pin(struct drm_plane *plane,
86 struct drm_framebuffer *fb)
Rob Clark9a0774e2012-01-16 12:51:17 -060087{
88 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkb33f34d2012-03-05 10:48:35 -060089 struct drm_framebuffer *pinned_fb = omap_plane->pinned_fb;
Rob Clark9a0774e2012-01-16 12:51:17 -060090
Rob Clarkb33f34d2012-03-05 10:48:35 -060091 if (pinned_fb != fb) {
Rob Clark5833bd22013-08-07 13:41:21 -040092 int ret = 0;
Rob Clarkb33f34d2012-03-05 10:48:35 -060093
94 DBG("%p -> %p", pinned_fb, fb);
95
Rob Clark5833bd22013-08-07 13:41:21 -040096 if (fb) {
Rob Clarkf5f94542012-12-04 13:59:12 -060097 drm_framebuffer_reference(fb);
Rob Clark5833bd22013-08-07 13:41:21 -040098 ret = omap_framebuffer_pin(fb);
99 }
Rob Clarkf5f94542012-12-04 13:59:12 -0600100
101 if (pinned_fb)
Rob Clark5833bd22013-08-07 13:41:21 -0400102 drm_flip_work_queue(&omap_plane->unpin_work, pinned_fb);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600103
104 if (ret) {
105 dev_err(plane->dev->dev, "could not swap %p -> %p\n",
106 omap_plane->pinned_fb, fb);
Rob Clark5833bd22013-08-07 13:41:21 -0400107 drm_framebuffer_unreference(fb);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600108 omap_plane->pinned_fb = NULL;
109 return ret;
110 }
111
Rob Clark9a0774e2012-01-16 12:51:17 -0600112 omap_plane->pinned_fb = fb;
Rob Clark9a0774e2012-01-16 12:51:17 -0600113 }
114
Rob Clarkb33f34d2012-03-05 10:48:35 -0600115 return 0;
Rob Clark9a0774e2012-01-16 12:51:17 -0600116}
117
Rob Clarkf5f94542012-12-04 13:59:12 -0600118static void omap_plane_pre_apply(struct omap_drm_apply *apply)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600119{
Rob Clarkf5f94542012-12-04 13:59:12 -0600120 struct omap_plane *omap_plane =
121 container_of(apply, struct omap_plane, apply);
Rob Clark3c810c62012-08-15 15:18:01 -0500122 struct omap_drm_window *win = &omap_plane->win;
Rob Clarkf5f94542012-12-04 13:59:12 -0600123 struct drm_plane *plane = &omap_plane->base;
124 struct drm_device *dev = plane->dev;
125 struct omap_overlay_info *info = &omap_plane->info;
126 struct drm_crtc *crtc = plane->crtc;
127 enum omap_channel channel;
128 bool enabled = omap_plane->enabled && crtc;
Rob Clark9a0774e2012-01-16 12:51:17 -0600129 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600130
Rob Clarkf5f94542012-12-04 13:59:12 -0600131 DBG("%s, enabled=%d", omap_plane->name, enabled);
132
133 /* if fb has changed, pin new fb: */
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200134 omap_plane_update_pin(plane, enabled ? plane->fb : NULL);
Rob Clarkf5f94542012-12-04 13:59:12 -0600135
136 if (!enabled) {
137 dispc_ovl_enable(omap_plane->id, false);
Rob Clark2f537002012-01-16 12:51:18 -0600138 return;
Rob Clark9a0774e2012-01-16 12:51:17 -0600139 }
140
Rob Clarkf5f94542012-12-04 13:59:12 -0600141 channel = omap_crtc_channel(crtc);
142
143 /* update scanout: */
Rob Clark3c810c62012-08-15 15:18:01 -0500144 omap_framebuffer_update_scanout(plane->fb, win, info);
Rob Clark9a0774e2012-01-16 12:51:17 -0600145
Rob Clarkf5f94542012-12-04 13:59:12 -0600146 DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
147 info->out_width, info->out_height,
Rob Clark9a0774e2012-01-16 12:51:17 -0600148 info->screen_width);
Russell King2d31ca32014-07-12 10:53:41 +0100149 DBG("%d,%d %pad %pad", info->pos_x, info->pos_y,
150 &info->paddr, &info->p_uv_addr);
Rob Clarkf5f94542012-12-04 13:59:12 -0600151
Rob Clarkf5f94542012-12-04 13:59:12 -0600152 /* and finally, update omapdss: */
Laurent Pinchart9c660b72015-01-12 16:44:03 +0200153 ret = dispc_ovl_setup(omap_plane->id, info, false,
154 omap_crtc_timings(crtc), false);
Rob Clarkf5f94542012-12-04 13:59:12 -0600155 if (ret) {
156 dev_err(dev->dev, "dispc_ovl_setup failed: %d\n", ret);
157 return;
158 }
159
160 dispc_ovl_enable(omap_plane->id, true);
161 dispc_ovl_set_channel_out(omap_plane->id, channel);
162}
163
164static void omap_plane_post_apply(struct omap_drm_apply *apply)
165{
166 struct omap_plane *omap_plane =
167 container_of(apply, struct omap_plane, apply);
168 struct drm_plane *plane = &omap_plane->base;
Rob Clark5833bd22013-08-07 13:41:21 -0400169 struct omap_drm_private *priv = plane->dev->dev_private;
Rob Clarkf5f94542012-12-04 13:59:12 -0600170 struct callback cb;
171
172 cb = omap_plane->apply_done_cb;
173 omap_plane->apply_done_cb.fxn = NULL;
174
Rob Clark5833bd22013-08-07 13:41:21 -0400175 drm_flip_work_commit(&omap_plane->unpin_work, priv->wq);
Rob Clarkf5f94542012-12-04 13:59:12 -0600176
177 if (cb.fxn)
178 cb.fxn(cb.arg);
Rob Clarkf5f94542012-12-04 13:59:12 -0600179}
180
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200181static int omap_plane_apply(struct drm_plane *plane)
Rob Clarkf5f94542012-12-04 13:59:12 -0600182{
183 if (plane->crtc) {
184 struct omap_plane *omap_plane = to_omap_plane(plane);
185 return omap_crtc_apply(plane->crtc, &omap_plane->apply);
186 }
187 return 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600188}
189
Rob Clark2f537002012-01-16 12:51:18 -0600190int omap_plane_mode_set(struct drm_plane *plane,
Laurent Pincharta350da82015-01-17 22:31:42 +0200191 struct drm_crtc *crtc, struct drm_framebuffer *fb,
192 int crtc_x, int crtc_y,
193 unsigned int crtc_w, unsigned int crtc_h,
194 unsigned int src_x, unsigned int src_y,
195 unsigned int src_w, unsigned int src_h,
196 void (*fxn)(void *), void *arg)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600197{
198 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500199 struct omap_drm_window *win = &omap_plane->win;
200
201 win->crtc_x = crtc_x;
202 win->crtc_y = crtc_y;
203 win->crtc_w = crtc_w;
204 win->crtc_h = crtc_h;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600205
Laurent Pincharta350da82015-01-17 22:31:42 +0200206 win->src_x = src_x;
207 win->src_y = src_y;
208 win->src_w = src_w;
209 win->src_h = src_h;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600210
Rob Clarkf5f94542012-12-04 13:59:12 -0600211 if (fxn) {
212 /* omap_crtc should ensure that a new page flip
213 * isn't permitted while there is one pending:
214 */
215 BUG_ON(omap_plane->apply_done_cb.fxn);
216
217 omap_plane->apply_done_cb.fxn = fxn;
218 omap_plane->apply_done_cb.arg = arg;
219 }
220
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200221 return omap_plane_apply(plane);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600222}
223
Rob Clark2f537002012-01-16 12:51:18 -0600224static int omap_plane_update(struct drm_plane *plane,
225 struct drm_crtc *crtc, struct drm_framebuffer *fb,
226 int crtc_x, int crtc_y,
227 unsigned int crtc_w, unsigned int crtc_h,
228 uint32_t src_x, uint32_t src_y,
229 uint32_t src_w, uint32_t src_h)
230{
Rob Clarkf5f94542012-12-04 13:59:12 -0600231 struct omap_plane *omap_plane = to_omap_plane(plane);
232 omap_plane->enabled = true;
Archit Tanejab03e14f2013-04-09 15:26:00 +0300233
Grazvydas Ignotasd4586602014-04-05 21:33:51 +0300234 /* omap_plane_mode_set() takes adjusted src */
235 switch (omap_plane->win.rotation & 0xf) {
236 case BIT(DRM_ROTATE_90):
237 case BIT(DRM_ROTATE_270):
238 swap(src_w, src_h);
239 break;
240 }
241
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200242 /*
243 * We don't need to take a reference to the framebuffer as the DRM core
244 * has already done so for the purpose of setting plane->fb.
245 */
246 plane->fb = fb;
247 plane->crtc = crtc;
248
Laurent Pincharta350da82015-01-17 22:31:42 +0200249 /* src values are in Q16 fixed point, convert to integer: */
Rob Clarkf5f94542012-12-04 13:59:12 -0600250 return omap_plane_mode_set(plane, crtc, fb,
251 crtc_x, crtc_y, crtc_w, crtc_h,
Laurent Pincharta350da82015-01-17 22:31:42 +0200252 src_x >> 16, src_y >> 16, src_w >> 16, src_h >> 16,
Rob Clarkf5f94542012-12-04 13:59:12 -0600253 NULL, NULL);
Rob Clark2f537002012-01-16 12:51:18 -0600254}
255
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600256static int omap_plane_disable(struct drm_plane *plane)
257{
Rob Clark3c810c62012-08-15 15:18:01 -0500258 struct omap_plane *omap_plane = to_omap_plane(plane);
Laurent Pinchart2debab92015-01-12 22:38:16 +0200259
Rob Clark3c810c62012-08-15 15:18:01 -0500260 omap_plane->win.rotation = BIT(DRM_ROTATE_0);
Laurent Pinchart82e588552015-01-12 23:56:57 +0200261 omap_plane->info.zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
262 ? 0 : omap_plane->id;
263
Laurent Pinchart2debab92015-01-12 22:38:16 +0200264 return omap_plane_set_enable(plane, false);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600265}
266
267static void omap_plane_destroy(struct drm_plane *plane)
268{
269 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600270
271 DBG("%s", omap_plane->name);
272
273 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
274
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600275 drm_plane_cleanup(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600276
Rob Clark5833bd22013-08-07 13:41:21 -0400277 drm_flip_work_cleanup(&omap_plane->unpin_work);
Rob Clarkf5f94542012-12-04 13:59:12 -0600278
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600279 kfree(omap_plane);
280}
281
Laurent Pinchart2debab92015-01-12 22:38:16 +0200282int omap_plane_set_enable(struct drm_plane *plane, bool enable)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600283{
284 struct omap_plane *omap_plane = to_omap_plane(plane);
285
Laurent Pinchart2debab92015-01-12 22:38:16 +0200286 if (enable == omap_plane->enabled)
287 return 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600288
Laurent Pinchart2debab92015-01-12 22:38:16 +0200289 omap_plane->enabled = enable;
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200290 return omap_plane_apply(plane);
Rob Clark72d0c332012-03-11 21:11:21 -0500291}
292
Rob Clark3c810c62012-08-15 15:18:01 -0500293/* helper to install properties which are common to planes and crtcs */
294void omap_plane_install_properties(struct drm_plane *plane,
295 struct drm_mode_object *obj)
296{
297 struct drm_device *dev = plane->dev;
298 struct omap_drm_private *priv = dev->dev_private;
299 struct drm_property *prop;
300
Rob Clarkc2a6a552012-10-25 17:14:13 -0500301 if (priv->has_dmm) {
302 prop = priv->rotation_prop;
303 if (!prop) {
Ville Syrjäläa4969dd2014-07-08 10:31:54 +0530304 prop = drm_mode_create_rotation_property(dev,
305 BIT(DRM_ROTATE_0) |
306 BIT(DRM_ROTATE_90) |
307 BIT(DRM_ROTATE_180) |
308 BIT(DRM_ROTATE_270) |
309 BIT(DRM_REFLECT_X) |
310 BIT(DRM_REFLECT_Y));
Rob Clarkc2a6a552012-10-25 17:14:13 -0500311 if (prop == NULL)
312 return;
313 priv->rotation_prop = prop;
314 }
315 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500316 }
Andre Renaud8451b5a2012-08-15 15:18:02 -0500317
YAMANE Toshiakic17d37d2012-11-14 19:41:13 +0900318 prop = priv->zorder_prop;
319 if (!prop) {
Andre Renaud8451b5a2012-08-15 15:18:02 -0500320 prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
321 if (prop == NULL)
322 return;
323 priv->zorder_prop = prop;
324 }
325 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500326}
327
328int omap_plane_set_property(struct drm_plane *plane,
329 struct drm_property *property, uint64_t val)
330{
331 struct omap_plane *omap_plane = to_omap_plane(plane);
332 struct omap_drm_private *priv = plane->dev->dev_private;
333 int ret = -EINVAL;
334
335 if (property == priv->rotation_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600336 DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
Rob Clark3c810c62012-08-15 15:18:01 -0500337 omap_plane->win.rotation = val;
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200338 ret = omap_plane_apply(plane);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500339 } else if (property == priv->zorder_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600340 DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500341 omap_plane->info.zorder = val;
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200342 ret = omap_plane_apply(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500343 }
344
345 return ret;
346}
347
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600348static const struct drm_plane_funcs omap_plane_funcs = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200349 .update_plane = omap_plane_update,
350 .disable_plane = omap_plane_disable,
351 .destroy = omap_plane_destroy,
352 .set_property = omap_plane_set_property,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600353};
354
Rob Clarkf5f94542012-12-04 13:59:12 -0600355static void omap_plane_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
356{
357 struct omap_plane *omap_plane =
358 container_of(irq, struct omap_plane, error_irq);
359 DRM_ERROR("%s: errors: %08x\n", omap_plane->name, irqstatus);
360}
361
362static const char *plane_names[] = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200363 [OMAP_DSS_GFX] = "gfx",
364 [OMAP_DSS_VIDEO1] = "vid1",
365 [OMAP_DSS_VIDEO2] = "vid2",
366 [OMAP_DSS_VIDEO3] = "vid3",
Rob Clarkf5f94542012-12-04 13:59:12 -0600367};
368
369static const uint32_t error_irqs[] = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200370 [OMAP_DSS_GFX] = DISPC_IRQ_GFX_FIFO_UNDERFLOW,
371 [OMAP_DSS_VIDEO1] = DISPC_IRQ_VID1_FIFO_UNDERFLOW,
372 [OMAP_DSS_VIDEO2] = DISPC_IRQ_VID2_FIFO_UNDERFLOW,
373 [OMAP_DSS_VIDEO3] = DISPC_IRQ_VID3_FIFO_UNDERFLOW,
Rob Clarkf5f94542012-12-04 13:59:12 -0600374};
375
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600376/* initialize plane */
377struct drm_plane *omap_plane_init(struct drm_device *dev,
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200378 int id, enum drm_plane_type type)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600379{
Rob Clarkf5f94542012-12-04 13:59:12 -0600380 struct omap_drm_private *priv = dev->dev_private;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200381 struct drm_plane *plane;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600382 struct omap_plane *omap_plane;
Rob Clarkf5f94542012-12-04 13:59:12 -0600383 struct omap_overlay_info *info;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200384 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600385
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200386 DBG("%s: type=%d", plane_names[id], type);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600387
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600388 omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800389 if (!omap_plane)
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200390 return ERR_PTR(-ENOMEM);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600391
Boris BREZILLONd7f8db52014-11-14 19:30:30 +0100392 drm_flip_work_init(&omap_plane->unpin_work,
Laurent Pinchart2a438c52015-01-17 18:50:10 +0200393 "unpin", omap_plane_unpin_worker);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600394
Rob Clarka890e662012-03-05 10:48:31 -0600395 omap_plane->nformats = omap_framebuffer_get_formats(
396 omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
Rob Clarkf5f94542012-12-04 13:59:12 -0600397 dss_feat_get_supported_color_modes(id));
398 omap_plane->id = id;
399 omap_plane->name = plane_names[id];
400
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600401 plane = &omap_plane->base;
402
Rob Clarkf5f94542012-12-04 13:59:12 -0600403 omap_plane->apply.pre_apply = omap_plane_pre_apply;
404 omap_plane->apply.post_apply = omap_plane_post_apply;
405
406 omap_plane->error_irq.irqmask = error_irqs[id];
407 omap_plane->error_irq.irq = omap_plane_error_irq;
408 omap_irq_register(dev, &omap_plane->error_irq);
409
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200410 ret = drm_universal_plane_init(dev, plane, (1 << priv->num_crtcs) - 1,
411 &omap_plane_funcs, omap_plane->formats,
412 omap_plane->nformats, type);
413 if (ret < 0)
414 goto error;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600415
Rob Clark3c810c62012-08-15 15:18:01 -0500416 omap_plane_install_properties(plane, &plane->base);
417
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600418 /* get our starting configuration, set defaults for parameters
419 * we don't currently use, etc:
420 */
Rob Clarkf5f94542012-12-04 13:59:12 -0600421 info = &omap_plane->info;
422 info->rotation_type = OMAP_DSS_ROT_DMA;
423 info->rotation = OMAP_DSS_ROT_0;
424 info->global_alpha = 0xff;
425 info->mirror = 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600426
427 /* Set defaults depending on whether we are a CRTC or overlay
428 * layer.
429 * TODO add ioctl to give userspace an API to change this.. this
430 * will come in a subsequent patch.
431 */
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200432 if (type == DRM_PLANE_TYPE_PRIMARY)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600433 omap_plane->info.zorder = 0;
434 else
Rob Clarkf5f94542012-12-04 13:59:12 -0600435 omap_plane->info.zorder = id;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600436
437 return plane;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200438
439error:
440 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
441 kfree(omap_plane);
442 return NULL;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600443}