blob: da9d15d214cf1b38cb0e8175b29e391c8cd6888a [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;
124 bool ilace, replication;
Rob Clark9a0774e2012-01-16 12:51:17 -0600125 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600126
Rob Clarkf5f94542012-12-04 13:59:12 -0600127 DBG("%s, enabled=%d", omap_plane->name, enabled);
128
129 /* if fb has changed, pin new fb: */
130 update_pin(plane, enabled ? plane->fb : NULL);
131
132 if (!enabled) {
133 dispc_ovl_enable(omap_plane->id, false);
Rob Clark2f537002012-01-16 12:51:18 -0600134 return;
Rob Clark9a0774e2012-01-16 12:51:17 -0600135 }
136
Rob Clarkf5f94542012-12-04 13:59:12 -0600137 channel = omap_crtc_channel(crtc);
138
139 /* update scanout: */
Rob Clark3c810c62012-08-15 15:18:01 -0500140 omap_framebuffer_update_scanout(plane->fb, win, info);
Rob Clark9a0774e2012-01-16 12:51:17 -0600141
Rob Clarkf5f94542012-12-04 13:59:12 -0600142 DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
143 info->out_width, info->out_height,
Rob Clark9a0774e2012-01-16 12:51:17 -0600144 info->screen_width);
Rob Clarkf5f94542012-12-04 13:59:12 -0600145 DBG("%d,%d %08x %08x", info->pos_x, info->pos_y,
146 info->paddr, info->p_uv_addr);
147
148 /* TODO: */
149 ilace = false;
150 replication = false;
151
152 /* and finally, update omapdss: */
153 ret = dispc_ovl_setup(omap_plane->id, info,
154 replication, omap_crtc_timings(crtc), false);
155 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 omap_overlay_info *info = &omap_plane->info;
Rob Clarkf5f94542012-12-04 13:59:12 -0600171 struct callback cb;
172
173 cb = omap_plane->apply_done_cb;
174 omap_plane->apply_done_cb.fxn = NULL;
175
Rob Clark5833bd22013-08-07 13:41:21 -0400176 drm_flip_work_commit(&omap_plane->unpin_work, priv->wq);
Rob Clarkf5f94542012-12-04 13:59:12 -0600177
178 if (cb.fxn)
179 cb.fxn(cb.arg);
180
181 if (omap_plane->enabled) {
182 omap_framebuffer_flush(plane->fb, info->pos_x, info->pos_y,
183 info->out_width, info->out_height);
184 }
185}
186
187static int apply(struct drm_plane *plane)
188{
189 if (plane->crtc) {
190 struct omap_plane *omap_plane = to_omap_plane(plane);
191 return omap_crtc_apply(plane->crtc, &omap_plane->apply);
192 }
193 return 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600194}
195
Rob Clark2f537002012-01-16 12:51:18 -0600196int omap_plane_mode_set(struct drm_plane *plane,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600197 struct drm_crtc *crtc, struct drm_framebuffer *fb,
198 int crtc_x, int crtc_y,
199 unsigned int crtc_w, unsigned int crtc_h,
200 uint32_t src_x, uint32_t src_y,
Rob Clarkf5f94542012-12-04 13:59:12 -0600201 uint32_t src_w, uint32_t src_h,
202 void (*fxn)(void *), void *arg)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600203{
204 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500205 struct omap_drm_window *win = &omap_plane->win;
206
207 win->crtc_x = crtc_x;
208 win->crtc_y = crtc_y;
209 win->crtc_w = crtc_w;
210 win->crtc_h = crtc_h;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600211
212 /* src values are in Q16 fixed point, convert to integer: */
Rob Clark3c810c62012-08-15 15:18:01 -0500213 win->src_x = src_x >> 16;
214 win->src_y = src_y >> 16;
215 win->src_w = src_w >> 16;
216 win->src_h = src_h >> 16;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600217
Rob Clarkf5f94542012-12-04 13:59:12 -0600218 if (fxn) {
219 /* omap_crtc should ensure that a new page flip
220 * isn't permitted while there is one pending:
221 */
222 BUG_ON(omap_plane->apply_done_cb.fxn);
223
224 omap_plane->apply_done_cb.fxn = fxn;
225 omap_plane->apply_done_cb.arg = arg;
226 }
227
Tomi Valkeinenf2d022a2014-04-15 16:26:01 +0300228 if (plane->fb)
229 drm_framebuffer_unreference(plane->fb);
230
231 drm_framebuffer_reference(fb);
232
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600233 plane->fb = fb;
234 plane->crtc = crtc;
235
Rob Clarkf5f94542012-12-04 13:59:12 -0600236 return apply(plane);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600237}
238
Rob Clark2f537002012-01-16 12:51:18 -0600239static int omap_plane_update(struct drm_plane *plane,
240 struct drm_crtc *crtc, struct drm_framebuffer *fb,
241 int crtc_x, int crtc_y,
242 unsigned int crtc_w, unsigned int crtc_h,
243 uint32_t src_x, uint32_t src_y,
244 uint32_t src_w, uint32_t src_h)
245{
Rob Clarkf5f94542012-12-04 13:59:12 -0600246 struct omap_plane *omap_plane = to_omap_plane(plane);
247 omap_plane->enabled = true;
Archit Tanejab03e14fd2013-04-09 15:26:00 +0300248
Grazvydas Ignotasd4586602014-04-05 21:33:51 +0300249 /* omap_plane_mode_set() takes adjusted src */
250 switch (omap_plane->win.rotation & 0xf) {
251 case BIT(DRM_ROTATE_90):
252 case BIT(DRM_ROTATE_270):
253 swap(src_w, src_h);
254 break;
255 }
256
Rob Clarkf5f94542012-12-04 13:59:12 -0600257 return omap_plane_mode_set(plane, crtc, fb,
258 crtc_x, crtc_y, crtc_w, crtc_h,
259 src_x, src_y, src_w, src_h,
260 NULL, NULL);
Rob Clark2f537002012-01-16 12:51:18 -0600261}
262
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600263static int omap_plane_disable(struct drm_plane *plane)
264{
Rob Clark3c810c62012-08-15 15:18:01 -0500265 struct omap_plane *omap_plane = to_omap_plane(plane);
266 omap_plane->win.rotation = BIT(DRM_ROTATE_0);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600267 return omap_plane_dpms(plane, DRM_MODE_DPMS_OFF);
268}
269
270static void omap_plane_destroy(struct drm_plane *plane)
271{
272 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600273
274 DBG("%s", omap_plane->name);
275
276 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
277
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600278 omap_plane_disable(plane);
279 drm_plane_cleanup(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600280
Rob Clark5833bd22013-08-07 13:41:21 -0400281 drm_flip_work_cleanup(&omap_plane->unpin_work);
Rob Clarkf5f94542012-12-04 13:59:12 -0600282
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600283 kfree(omap_plane);
284}
285
286int omap_plane_dpms(struct drm_plane *plane, int mode)
287{
288 struct omap_plane *omap_plane = to_omap_plane(plane);
Rob Clarkf5f94542012-12-04 13:59:12 -0600289 bool enabled = (mode == DRM_MODE_DPMS_ON);
290 int ret = 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600291
Rob Clarkf5f94542012-12-04 13:59:12 -0600292 if (enabled != omap_plane->enabled) {
293 omap_plane->enabled = enabled;
294 ret = apply(plane);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600295 }
296
Rob Clarkf5f94542012-12-04 13:59:12 -0600297 return ret;
Rob Clark72d0c332012-03-11 21:11:21 -0500298}
299
Rob Clark3c810c62012-08-15 15:18:01 -0500300/* helper to install properties which are common to planes and crtcs */
301void omap_plane_install_properties(struct drm_plane *plane,
302 struct drm_mode_object *obj)
303{
304 struct drm_device *dev = plane->dev;
305 struct omap_drm_private *priv = dev->dev_private;
306 struct drm_property *prop;
307
Rob Clarkc2a6a552012-10-25 17:14:13 -0500308 if (priv->has_dmm) {
309 prop = priv->rotation_prop;
310 if (!prop) {
Ville Syrjäläa4969dd2014-07-08 10:31:54 +0530311 prop = drm_mode_create_rotation_property(dev,
312 BIT(DRM_ROTATE_0) |
313 BIT(DRM_ROTATE_90) |
314 BIT(DRM_ROTATE_180) |
315 BIT(DRM_ROTATE_270) |
316 BIT(DRM_REFLECT_X) |
317 BIT(DRM_REFLECT_Y));
Rob Clarkc2a6a552012-10-25 17:14:13 -0500318 if (prop == NULL)
319 return;
320 priv->rotation_prop = prop;
321 }
322 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500323 }
Andre Renaud8451b5a2012-08-15 15:18:02 -0500324
YAMANE Toshiakic17d37d2012-11-14 19:41:13 +0900325 prop = priv->zorder_prop;
326 if (!prop) {
Andre Renaud8451b5a2012-08-15 15:18:02 -0500327 prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
328 if (prop == NULL)
329 return;
330 priv->zorder_prop = prop;
331 }
332 drm_object_attach_property(obj, prop, 0);
Rob Clark3c810c62012-08-15 15:18:01 -0500333}
334
335int omap_plane_set_property(struct drm_plane *plane,
336 struct drm_property *property, uint64_t val)
337{
338 struct omap_plane *omap_plane = to_omap_plane(plane);
339 struct omap_drm_private *priv = plane->dev->dev_private;
340 int ret = -EINVAL;
341
342 if (property == priv->rotation_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600343 DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
Rob Clark3c810c62012-08-15 15:18:01 -0500344 omap_plane->win.rotation = val;
Rob Clarkf5f94542012-12-04 13:59:12 -0600345 ret = apply(plane);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500346 } else if (property == priv->zorder_prop) {
Rob Clarkf5f94542012-12-04 13:59:12 -0600347 DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
Andre Renaud8451b5a2012-08-15 15:18:02 -0500348 omap_plane->info.zorder = val;
Rob Clarkf5f94542012-12-04 13:59:12 -0600349 ret = apply(plane);
Rob Clark3c810c62012-08-15 15:18:01 -0500350 }
351
352 return ret;
353}
354
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600355static const struct drm_plane_funcs omap_plane_funcs = {
356 .update_plane = omap_plane_update,
357 .disable_plane = omap_plane_disable,
358 .destroy = omap_plane_destroy,
Rob Clark3c810c62012-08-15 15:18:01 -0500359 .set_property = omap_plane_set_property,
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600360};
361
Rob Clarkf5f94542012-12-04 13:59:12 -0600362static void omap_plane_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
363{
364 struct omap_plane *omap_plane =
365 container_of(irq, struct omap_plane, error_irq);
366 DRM_ERROR("%s: errors: %08x\n", omap_plane->name, irqstatus);
367}
368
369static const char *plane_names[] = {
370 [OMAP_DSS_GFX] = "gfx",
371 [OMAP_DSS_VIDEO1] = "vid1",
372 [OMAP_DSS_VIDEO2] = "vid2",
373 [OMAP_DSS_VIDEO3] = "vid3",
374};
375
376static const uint32_t error_irqs[] = {
377 [OMAP_DSS_GFX] = DISPC_IRQ_GFX_FIFO_UNDERFLOW,
378 [OMAP_DSS_VIDEO1] = DISPC_IRQ_VID1_FIFO_UNDERFLOW,
379 [OMAP_DSS_VIDEO2] = DISPC_IRQ_VID2_FIFO_UNDERFLOW,
380 [OMAP_DSS_VIDEO3] = DISPC_IRQ_VID3_FIFO_UNDERFLOW,
381};
382
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600383/* initialize plane */
384struct drm_plane *omap_plane_init(struct drm_device *dev,
Rob Clarkf5f94542012-12-04 13:59:12 -0600385 int id, bool private_plane)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600386{
Rob Clarkf5f94542012-12-04 13:59:12 -0600387 struct omap_drm_private *priv = dev->dev_private;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600388 struct drm_plane *plane = NULL;
389 struct omap_plane *omap_plane;
Rob Clarkf5f94542012-12-04 13:59:12 -0600390 struct omap_overlay_info *info;
Rob Clarkb33f34d2012-03-05 10:48:35 -0600391 int ret;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600392
Rob Clarkf5f94542012-12-04 13:59:12 -0600393 DBG("%s: priv=%d", plane_names[id], private_plane);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600394
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600395 omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
Joe Perches78110bb2013-02-11 09:41:29 -0800396 if (!omap_plane)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600397 goto fail;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600398
Rob Clark5833bd22013-08-07 13:41:21 -0400399 ret = drm_flip_work_init(&omap_plane->unpin_work, 16,
400 "unpin", unpin_worker);
Rob Clarkb33f34d2012-03-05 10:48:35 -0600401 if (ret) {
402 dev_err(dev->dev, "could not allocate unpin FIFO\n");
403 goto fail;
404 }
405
Rob Clarka890e662012-03-05 10:48:31 -0600406 omap_plane->nformats = omap_framebuffer_get_formats(
407 omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
Rob Clarkf5f94542012-12-04 13:59:12 -0600408 dss_feat_get_supported_color_modes(id));
409 omap_plane->id = id;
410 omap_plane->name = plane_names[id];
411
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600412 plane = &omap_plane->base;
413
Rob Clarkf5f94542012-12-04 13:59:12 -0600414 omap_plane->apply.pre_apply = omap_plane_pre_apply;
415 omap_plane->apply.post_apply = omap_plane_post_apply;
416
417 omap_plane->error_irq.irqmask = error_irqs[id];
418 omap_plane->error_irq.irq = omap_plane_error_irq;
419 omap_irq_register(dev, &omap_plane->error_irq);
420
421 drm_plane_init(dev, plane, (1 << priv->num_crtcs) - 1, &omap_plane_funcs,
422 omap_plane->formats, omap_plane->nformats, private_plane);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600423
Rob Clark3c810c62012-08-15 15:18:01 -0500424 omap_plane_install_properties(plane, &plane->base);
425
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600426 /* get our starting configuration, set defaults for parameters
427 * we don't currently use, etc:
428 */
Rob Clarkf5f94542012-12-04 13:59:12 -0600429 info = &omap_plane->info;
430 info->rotation_type = OMAP_DSS_ROT_DMA;
431 info->rotation = OMAP_DSS_ROT_0;
432 info->global_alpha = 0xff;
433 info->mirror = 0;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600434
435 /* Set defaults depending on whether we are a CRTC or overlay
436 * layer.
437 * TODO add ioctl to give userspace an API to change this.. this
438 * will come in a subsequent patch.
439 */
Rob Clarkf5f94542012-12-04 13:59:12 -0600440 if (private_plane)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600441 omap_plane->info.zorder = 0;
442 else
Rob Clarkf5f94542012-12-04 13:59:12 -0600443 omap_plane->info.zorder = id;
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600444
445 return plane;
446
447fail:
YAMANE Toshiaki373de7f2012-11-14 19:40:57 +0900448 if (plane)
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600449 omap_plane_destroy(plane);
YAMANE Toshiaki373de7f2012-11-14 19:40:57 +0900450
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600451 return NULL;
452}