blob: efec4265c2ae4e3db46be74eaedf2a5bd3123a35 [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
Rob Clark5833bd22013-08-07 13:41:21 -040068static void 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
Rob Clark5833bd22013-08-07 13:41:21 -040074 omap_framebuffer_unpin(val);
75 mutex_lock(&dev->mode_config.mutex);
76 drm_framebuffer_unreference(val);
77 mutex_unlock(&dev->mode_config.mutex);
Rob Clarkb33f34d2012-03-05 10:48:35 -060078}
79
Rob Clark9a0774e2012-01-16 12:51:17 -060080/* update which fb (if any) is pinned for scanout */
81static int update_pin(struct drm_plane *plane, struct drm_framebuffer *fb)
82{
83 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkb33f34d2012-03-05 10:48:35 -060084 struct drm_framebuffer *pinned_fb = omap_plane->pinned_fb;
Rob Clark9a0774e2012-01-16 12:51:17 -060085
Rob Clarkb33f34d2012-03-05 10:48:35 -060086 if (pinned_fb != fb) {
Rob Clark5833bd22013-08-07 13:41:21 -040087 int ret = 0;
Rob Clarkb33f34d2012-03-05 10:48:35 -060088
89 DBG("%p -> %p", pinned_fb, fb);
90
Rob Clark5833bd22013-08-07 13:41:21 -040091 if (fb) {
Rob Clarkf5f94542012-12-04 13:59:12 -060092 drm_framebuffer_reference(fb);
Rob Clark5833bd22013-08-07 13:41:21 -040093 ret = omap_framebuffer_pin(fb);
94 }
Rob Clarkf5f94542012-12-04 13:59:12 -060095
96 if (pinned_fb)
Rob Clark5833bd22013-08-07 13:41:21 -040097 drm_flip_work_queue(&omap_plane->unpin_work, pinned_fb);
Rob Clarkb33f34d2012-03-05 10:48:35 -060098
99 if (ret) {
100 dev_err(plane->dev->dev, "could not swap %p -> %p\n",
101 omap_plane->pinned_fb, fb);
Rob Clark5833bd22013-08-07 13:41:21 -0400102 drm_framebuffer_unreference(fb);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600103 omap_plane->pinned_fb = NULL;
104 return ret;
105 }
106
Rob Clark9a0774e2012-01-16 12:51:17 -0600107 omap_plane->pinned_fb = fb;
Rob Clark9a0774e2012-01-16 12:51:17 -0600108 }
109
Rob Clarkb33f34d2012-03-05 10:48:35 -0600110 return 0;
Rob Clark9a0774e2012-01-16 12:51:17 -0600111}
112
Rob Clarkf5f94542012-12-04 13:59:12 -0600113static void omap_plane_pre_apply(struct omap_drm_apply *apply)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600114{
Rob Clarkf5f94542012-12-04 13:59:12 -0600115 struct omap_plane *omap_plane =
116 container_of(apply, struct omap_plane, apply);
Rob Clark3c810c62012-08-15 15:18:01 -0500117 struct omap_drm_window *win = &omap_plane->win;
Rob Clarkf5f94542012-12-04 13:59:12 -0600118 struct drm_plane *plane = &omap_plane->base;
119 struct drm_device *dev = plane->dev;
120 struct omap_overlay_info *info = &omap_plane->info;
121 struct drm_crtc *crtc = plane->crtc;
122 enum omap_channel channel;
123 bool enabled = omap_plane->enabled && crtc;
Rob Clark9a0774e2012-01-16 12:51:17 -0600124 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600125
Rob Clarkf5f94542012-12-04 13:59:12 -0600126 DBG("%s, enabled=%d", omap_plane->name, enabled);
127
128 /* if fb has changed, pin new fb: */
129 update_pin(plane, enabled ? plane->fb : NULL);
130
131 if (!enabled) {
132 dispc_ovl_enable(omap_plane->id, false);
Rob Clark2f537002012-01-16 12:51:18 -0600133 return;
Rob Clark9a0774e2012-01-16 12:51:17 -0600134 }
135
Rob Clarkf5f94542012-12-04 13:59:12 -0600136 channel = omap_crtc_channel(crtc);
137
138 /* update scanout: */
Rob Clark3c810c62012-08-15 15:18:01 -0500139 omap_framebuffer_update_scanout(plane->fb, win, info);
Rob Clark9a0774e2012-01-16 12:51:17 -0600140
Rob Clarkf5f94542012-12-04 13:59:12 -0600141 DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
142 info->out_width, info->out_height,
Rob Clark9a0774e2012-01-16 12:51:17 -0600143 info->screen_width);
Russell King2d31ca32014-07-12 10:53:41 +0100144 DBG("%d,%d %pad %pad", info->pos_x, info->pos_y,
145 &info->paddr, &info->p_uv_addr);
Rob Clarkf5f94542012-12-04 13:59:12 -0600146
Rob Clarkf5f94542012-12-04 13:59:12 -0600147 /* and finally, update omapdss: */
Laurent Pinchart9c660b72015-01-12 16:44:03 +0200148 ret = dispc_ovl_setup(omap_plane->id, info, false,
149 omap_crtc_timings(crtc), false);
Rob Clarkf5f94542012-12-04 13:59:12 -0600150 if (ret) {
151 dev_err(dev->dev, "dispc_ovl_setup failed: %d\n", ret);
152 return;
153 }
154
155 dispc_ovl_enable(omap_plane->id, true);
156 dispc_ovl_set_channel_out(omap_plane->id, channel);
157}
158
159static void omap_plane_post_apply(struct omap_drm_apply *apply)
160{
161 struct omap_plane *omap_plane =
162 container_of(apply, struct omap_plane, apply);
163 struct drm_plane *plane = &omap_plane->base;
Rob Clark5833bd22013-08-07 13:41:21 -0400164 struct omap_drm_private *priv = plane->dev->dev_private;
Rob Clarkf5f94542012-12-04 13:59:12 -0600165 struct omap_overlay_info *info = &omap_plane->info;
Rob Clarkf5f94542012-12-04 13:59:12 -0600166 struct callback cb;
167
168 cb = omap_plane->apply_done_cb;
169 omap_plane->apply_done_cb.fxn = NULL;
170
Rob Clark5833bd22013-08-07 13:41:21 -0400171 drm_flip_work_commit(&omap_plane->unpin_work, priv->wq);
Rob Clarkf5f94542012-12-04 13:59:12 -0600172
173 if (cb.fxn)
174 cb.fxn(cb.arg);
175
176 if (omap_plane->enabled) {
177 omap_framebuffer_flush(plane->fb, info->pos_x, info->pos_y,
178 info->out_width, info->out_height);
179 }
180}
181
182static int apply(struct drm_plane *plane)
183{
184 if (plane->crtc) {
185 struct omap_plane *omap_plane = to_omap_plane(plane);
186 return omap_crtc_apply(plane->crtc, &omap_plane->apply);
187 }
188 return 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600189}
190
Rob Clark2f537002012-01-16 12:51:18 -0600191int omap_plane_mode_set(struct drm_plane *plane,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600192 struct drm_crtc *crtc, struct drm_framebuffer *fb,
193 int crtc_x, int crtc_y,
194 unsigned int crtc_w, unsigned int crtc_h,
195 uint32_t src_x, uint32_t src_y,
Rob Clarkf5f94542012-12-04 13:59:12 -0600196 uint32_t src_w, uint32_t src_h,
197 void (*fxn)(void *), void *arg)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600198{
199 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500200 struct omap_drm_window *win = &omap_plane->win;
201
202 win->crtc_x = crtc_x;
203 win->crtc_y = crtc_y;
204 win->crtc_w = crtc_w;
205 win->crtc_h = crtc_h;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600206
207 /* src values are in Q16 fixed point, convert to integer: */
Rob Clark3c810c62012-08-15 15:18:01 -0500208 win->src_x = src_x >> 16;
209 win->src_y = src_y >> 16;
210 win->src_w = src_w >> 16;
211 win->src_h = src_h >> 16;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600212
Rob Clarkf5f94542012-12-04 13:59:12 -0600213 if (fxn) {
214 /* omap_crtc should ensure that a new page flip
215 * isn't permitted while there is one pending:
216 */
217 BUG_ON(omap_plane->apply_done_cb.fxn);
218
219 omap_plane->apply_done_cb.fxn = fxn;
220 omap_plane->apply_done_cb.arg = arg;
221 }
222
Rob Clarkf5f94542012-12-04 13:59:12 -0600223 return apply(plane);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600224}
225
Rob Clark2f537002012-01-16 12:51:18 -0600226static int omap_plane_update(struct drm_plane *plane,
227 struct drm_crtc *crtc, struct drm_framebuffer *fb,
228 int crtc_x, int crtc_y,
229 unsigned int crtc_w, unsigned int crtc_h,
230 uint32_t src_x, uint32_t src_y,
231 uint32_t src_w, uint32_t src_h)
232{
Rob Clarkf5f94542012-12-04 13:59:12 -0600233 struct omap_plane *omap_plane = to_omap_plane(plane);
234 omap_plane->enabled = true;
Archit Tanejab03e14f2013-04-09 15:26:00 +0300235
Grazvydas Ignotasd4586602014-04-05 21:33:51 +0300236 /* omap_plane_mode_set() takes adjusted src */
237 switch (omap_plane->win.rotation & 0xf) {
238 case BIT(DRM_ROTATE_90):
239 case BIT(DRM_ROTATE_270):
240 swap(src_w, src_h);
241 break;
242 }
243
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200244 /*
245 * We don't need to take a reference to the framebuffer as the DRM core
246 * has already done so for the purpose of setting plane->fb.
247 */
248 plane->fb = fb;
249 plane->crtc = crtc;
250
Rob Clarkf5f94542012-12-04 13:59:12 -0600251 return omap_plane_mode_set(plane, crtc, fb,
252 crtc_x, crtc_y, crtc_w, crtc_h,
253 src_x, src_y, src_w, src_h,
254 NULL, NULL);
Rob Clark2f537002012-01-16 12:51:18 -0600255}
256
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600257static int omap_plane_disable(struct drm_plane *plane)
258{
Rob Clark3c810c62012-08-15 15:18:01 -0500259 struct omap_plane *omap_plane = to_omap_plane(plane);
Laurent Pinchart2debab92015-01-12 22:38:16 +0200260
Rob Clark3c810c62012-08-15 15:18:01 -0500261 omap_plane->win.rotation = BIT(DRM_ROTATE_0);
Laurent Pinchart82e588552015-01-12 23:56:57 +0200262 omap_plane->info.zorder = plane->type == DRM_PLANE_TYPE_PRIMARY
263 ? 0 : omap_plane->id;
264
Laurent Pinchart2debab92015-01-12 22:38:16 +0200265 return omap_plane_set_enable(plane, false);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600266}
267
268static void omap_plane_destroy(struct drm_plane *plane)
269{
270 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600271
272 DBG("%s", omap_plane->name);
273
274 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
275
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600276 omap_plane_disable(plane);
277 drm_plane_cleanup(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600278
Rob Clark5833bd22013-08-07 13:41:21 -0400279 drm_flip_work_cleanup(&omap_plane->unpin_work);
Rob Clarkf5f94542012-12-04 13:59:12 -0600280
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600281 kfree(omap_plane);
282}
283
Laurent Pinchart2debab92015-01-12 22:38:16 +0200284int omap_plane_set_enable(struct drm_plane *plane, bool enable)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600285{
286 struct omap_plane *omap_plane = to_omap_plane(plane);
287
Laurent Pinchart2debab92015-01-12 22:38:16 +0200288 if (enable == omap_plane->enabled)
289 return 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600290
Laurent Pinchart2debab92015-01-12 22:38:16 +0200291 omap_plane->enabled = enable;
292 return apply(plane);
Rob Clark72d0c332012-03-11 21:11:21 -0500293}
294
Rob Clark3c810c62012-08-15 15:18:01 -0500295/* helper to install properties which are common to planes and crtcs */
296void omap_plane_install_properties(struct drm_plane *plane,
297 struct drm_mode_object *obj)
298{
299 struct drm_device *dev = plane->dev;
300 struct omap_drm_private *priv = dev->dev_private;
301 struct drm_property *prop;
302
Rob Clarkc2a6a552012-10-25 17:14:13 -0500303 if (priv->has_dmm) {
304 prop = priv->rotation_prop;
305 if (!prop) {
Ville Syrjäläa4969dd2014-07-08 10:31:54 +0530306 prop = drm_mode_create_rotation_property(dev,
307 BIT(DRM_ROTATE_0) |
308 BIT(DRM_ROTATE_90) |
309 BIT(DRM_ROTATE_180) |
310 BIT(DRM_ROTATE_270) |
311 BIT(DRM_REFLECT_X) |
312 BIT(DRM_REFLECT_Y));
Rob Clarkc2a6a552012-10-25 17:14:13 -0500313 if (prop == NULL)
314 return;
315 priv->rotation_prop = prop;
316 }
317 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500318 }
Andre Renaud8451b5a2012-08-15 15:18:02 -0500319
YAMANE Toshiakic17d37d2012-11-14 19:41:13 +0900320 prop = priv->zorder_prop;
321 if (!prop) {
Andre Renaud8451b5a2012-08-15 15:18:02 -0500322 prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
323 if (prop == NULL)
324 return;
325 priv->zorder_prop = prop;
326 }
327 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500328}
329
330int omap_plane_set_property(struct drm_plane *plane,
331 struct drm_property *property, uint64_t val)
332{
333 struct omap_plane *omap_plane = to_omap_plane(plane);
334 struct omap_drm_private *priv = plane->dev->dev_private;
335 int ret = -EINVAL;
336
337 if (property == priv->rotation_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600338 DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
Rob Clark3c810c62012-08-15 15:18:01 -0500339 omap_plane->win.rotation = val;
Rob Clarkf5f94542012-12-04 13:59:12 -0600340 ret = apply(plane);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500341 } else if (property == priv->zorder_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600342 DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500343 omap_plane->info.zorder = val;
Rob Clarkf5f94542012-12-04 13:59:12 -0600344 ret = apply(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500345 }
346
347 return ret;
348}
349
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600350static const struct drm_plane_funcs omap_plane_funcs = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200351 .update_plane = omap_plane_update,
352 .disable_plane = omap_plane_disable,
353 .destroy = omap_plane_destroy,
354 .set_property = omap_plane_set_property,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600355};
356
Rob Clarkf5f94542012-12-04 13:59:12 -0600357static void omap_plane_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
358{
359 struct omap_plane *omap_plane =
360 container_of(irq, struct omap_plane, error_irq);
361 DRM_ERROR("%s: errors: %08x\n", omap_plane->name, irqstatus);
362}
363
364static const char *plane_names[] = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200365 [OMAP_DSS_GFX] = "gfx",
366 [OMAP_DSS_VIDEO1] = "vid1",
367 [OMAP_DSS_VIDEO2] = "vid2",
368 [OMAP_DSS_VIDEO3] = "vid3",
Rob Clarkf5f94542012-12-04 13:59:12 -0600369};
370
371static const uint32_t error_irqs[] = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200372 [OMAP_DSS_GFX] = DISPC_IRQ_GFX_FIFO_UNDERFLOW,
373 [OMAP_DSS_VIDEO1] = DISPC_IRQ_VID1_FIFO_UNDERFLOW,
374 [OMAP_DSS_VIDEO2] = DISPC_IRQ_VID2_FIFO_UNDERFLOW,
375 [OMAP_DSS_VIDEO3] = DISPC_IRQ_VID3_FIFO_UNDERFLOW,
Rob Clarkf5f94542012-12-04 13:59:12 -0600376};
377
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600378/* initialize plane */
379struct drm_plane *omap_plane_init(struct drm_device *dev,
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200380 int id, enum drm_plane_type type)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600381{
Rob Clarkf5f94542012-12-04 13:59:12 -0600382 struct omap_drm_private *priv = dev->dev_private;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200383 struct drm_plane *plane;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600384 struct omap_plane *omap_plane;
Rob Clarkf5f94542012-12-04 13:59:12 -0600385 struct omap_overlay_info *info;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200386 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600387
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200388 DBG("%s: type=%d", plane_names[id], type);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600389
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600390 omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800391 if (!omap_plane)
Laurent Pinchartfb9a35f2015-01-11 16:30:44 +0200392 return ERR_PTR(-ENOMEM);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600393
Boris BREZILLONd7f8db52014-11-14 19:30:30 +0100394 drm_flip_work_init(&omap_plane->unpin_work,
Rob Clark5833bd22013-08-07 13:41:21 -0400395 "unpin", unpin_worker);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600396
Rob Clarka890e662012-03-05 10:48:31 -0600397 omap_plane->nformats = omap_framebuffer_get_formats(
398 omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
Rob Clarkf5f94542012-12-04 13:59:12 -0600399 dss_feat_get_supported_color_modes(id));
400 omap_plane->id = id;
401 omap_plane->name = plane_names[id];
402
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600403 plane = &omap_plane->base;
404
Rob Clarkf5f94542012-12-04 13:59:12 -0600405 omap_plane->apply.pre_apply = omap_plane_pre_apply;
406 omap_plane->apply.post_apply = omap_plane_post_apply;
407
408 omap_plane->error_irq.irqmask = error_irqs[id];
409 omap_plane->error_irq.irq = omap_plane_error_irq;
410 omap_irq_register(dev, &omap_plane->error_irq);
411
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200412 ret = drm_universal_plane_init(dev, plane, (1 << priv->num_crtcs) - 1,
413 &omap_plane_funcs, omap_plane->formats,
414 omap_plane->nformats, type);
415 if (ret < 0)
416 goto error;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600417
Rob Clark3c810c62012-08-15 15:18:01 -0500418 omap_plane_install_properties(plane, &plane->base);
419
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600420 /* get our starting configuration, set defaults for parameters
421 * we don't currently use, etc:
422 */
Rob Clarkf5f94542012-12-04 13:59:12 -0600423 info = &omap_plane->info;
424 info->rotation_type = OMAP_DSS_ROT_DMA;
425 info->rotation = OMAP_DSS_ROT_0;
426 info->global_alpha = 0xff;
427 info->mirror = 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600428
429 /* Set defaults depending on whether we are a CRTC or overlay
430 * layer.
431 * TODO add ioctl to give userspace an API to change this.. this
432 * will come in a subsequent patch.
433 */
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200434 if (type == DRM_PLANE_TYPE_PRIMARY)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600435 omap_plane->info.zorder = 0;
436 else
Rob Clarkf5f94542012-12-04 13:59:12 -0600437 omap_plane->info.zorder = id;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600438
439 return plane;
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200440
441error:
442 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
443 kfree(omap_plane);
444 return NULL;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600445}