Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
4 * Author: Rob Clark <rob.clark@linaro.org>
5 */
6
7#include <drm/drm_atomic.h>
8#include <drm/drm_atomic_helper.h>
9#include <drm/drm_gem_atomic_helper.h>
10#include <drm/drm_plane_helper.h>
11
12#include "omap_dmm_tiler.h"
13#include "omap_drv.h"
14
15/*
16 * plane funcs
17 */
18
19#define to_omap_plane(x) container_of(x, struct omap_plane, base)
20
21struct omap_plane {
22 struct drm_plane base;
23 enum omap_plane_id id;
24 const char *name;
25};
26
27static int omap_plane_prepare_fb(struct drm_plane *plane,
28 struct drm_plane_state *new_state)
29{
30 if (!new_state->fb)
31 return 0;
32
33 drm_gem_plane_helper_prepare_fb(plane, new_state);
34
35 return omap_framebuffer_pin(new_state->fb);
36}
37
38static void omap_plane_cleanup_fb(struct drm_plane *plane,
39 struct drm_plane_state *old_state)
40{
41 if (old_state->fb)
42 omap_framebuffer_unpin(old_state->fb);
43}
44
45static void omap_plane_atomic_update(struct drm_plane *plane,
46 struct drm_atomic_state *state)
47{
48 struct omap_drm_private *priv = plane->dev->dev_private;
49 struct omap_plane *omap_plane = to_omap_plane(plane);
50 struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
51 plane);
52 struct omap_overlay_info info;
53 int ret;
54
55 DBG("%s, crtc=%p fb=%p", omap_plane->name, new_state->crtc,
56 new_state->fb);
57
58 memset(&info, 0, sizeof(info));
59 info.rotation_type = OMAP_DSS_ROT_NONE;
60 info.rotation = DRM_MODE_ROTATE_0;
61 info.global_alpha = new_state->alpha >> 8;
62 info.zorder = new_state->normalized_zpos;
63 if (new_state->pixel_blend_mode == DRM_MODE_BLEND_PREMULTI)
64 info.pre_mult_alpha = 1;
65 else
66 info.pre_mult_alpha = 0;
67 info.color_encoding = new_state->color_encoding;
68 info.color_range = new_state->color_range;
69
70 /* update scanout: */
71 omap_framebuffer_update_scanout(new_state->fb, new_state, &info);
72
73 DBG("%dx%d -> %dx%d (%d)", info.width, info.height,
74 info.out_width, info.out_height,
75 info.screen_width);
76 DBG("%d,%d %pad %pad", info.pos_x, info.pos_y,
77 &info.paddr, &info.p_uv_addr);
78
79 /* and finally, update omapdss: */
80 ret = dispc_ovl_setup(priv->dispc, omap_plane->id, &info,
81 omap_crtc_timings(new_state->crtc), false,
82 omap_crtc_channel(new_state->crtc));
83 if (ret) {
84 dev_err(plane->dev->dev, "Failed to setup plane %s\n",
85 omap_plane->name);
86 dispc_ovl_enable(priv->dispc, omap_plane->id, false);
87 return;
88 }
89
90 dispc_ovl_enable(priv->dispc, omap_plane->id, true);
91}
92
93static void omap_plane_atomic_disable(struct drm_plane *plane,
94 struct drm_atomic_state *state)
95{
96 struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
97 plane);
98 struct omap_drm_private *priv = plane->dev->dev_private;
99 struct omap_plane *omap_plane = to_omap_plane(plane);
100
101 new_state->rotation = DRM_MODE_ROTATE_0;
102 new_state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY ? 0 : omap_plane->id;
103
104 dispc_ovl_enable(priv->dispc, omap_plane->id, false);
105}
106
107static int omap_plane_atomic_check(struct drm_plane *plane,
108 struct drm_atomic_state *state)
109{
110 struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
111 plane);
112 struct drm_crtc_state *crtc_state;
113
114 if (!new_plane_state->fb)
115 return 0;
116
117 /* crtc should only be NULL when disabling (i.e., !new_plane_state->fb) */
118 if (WARN_ON(!new_plane_state->crtc))
119 return 0;
120
121 crtc_state = drm_atomic_get_existing_crtc_state(state,
122 new_plane_state->crtc);
123 /* we should have a crtc state if the plane is attached to a crtc */
124 if (WARN_ON(!crtc_state))
125 return 0;
126
127 if (!crtc_state->enable)
128 return 0;
129
130 if (new_plane_state->crtc_x < 0 || new_plane_state->crtc_y < 0)
131 return -EINVAL;
132
133 if (new_plane_state->crtc_x + new_plane_state->crtc_w > crtc_state->adjusted_mode.hdisplay)
134 return -EINVAL;
135
136 if (new_plane_state->crtc_y + new_plane_state->crtc_h > crtc_state->adjusted_mode.vdisplay)
137 return -EINVAL;
138
139 if (new_plane_state->rotation != DRM_MODE_ROTATE_0 &&
140 !omap_framebuffer_supports_rotation(new_plane_state->fb))
141 return -EINVAL;
142
143 return 0;
144}
145
146static const struct drm_plane_helper_funcs omap_plane_helper_funcs = {
147 .prepare_fb = omap_plane_prepare_fb,
148 .cleanup_fb = omap_plane_cleanup_fb,
149 .atomic_check = omap_plane_atomic_check,
150 .atomic_update = omap_plane_atomic_update,
151 .atomic_disable = omap_plane_atomic_disable,
152};
153
154static void omap_plane_destroy(struct drm_plane *plane)
155{
156 struct omap_plane *omap_plane = to_omap_plane(plane);
157
158 DBG("%s", omap_plane->name);
159
160 drm_plane_cleanup(plane);
161
162 kfree(omap_plane);
163}
164
165/* helper to install properties which are common to planes and crtcs */
166void omap_plane_install_properties(struct drm_plane *plane,
167 struct drm_mode_object *obj)
168{
169 struct drm_device *dev = plane->dev;
170 struct omap_drm_private *priv = dev->dev_private;
171
172 if (priv->has_dmm) {
173 if (!plane->rotation_property)
174 drm_plane_create_rotation_property(plane,
175 DRM_MODE_ROTATE_0,
176 DRM_MODE_ROTATE_0 | DRM_MODE_ROTATE_90 |
177 DRM_MODE_ROTATE_180 | DRM_MODE_ROTATE_270 |
178 DRM_MODE_REFLECT_X | DRM_MODE_REFLECT_Y);
179
180 /* Attach the rotation property also to the crtc object */
181 if (plane->rotation_property && obj != &plane->base)
182 drm_object_attach_property(obj, plane->rotation_property,
183 DRM_MODE_ROTATE_0);
184 }
185
186 drm_object_attach_property(obj, priv->zorder_prop, 0);
187}
188
189static void omap_plane_reset(struct drm_plane *plane)
190{
191 struct omap_plane *omap_plane = to_omap_plane(plane);
192
193 drm_atomic_helper_plane_reset(plane);
194 if (!plane->state)
195 return;
196
197 /*
198 * Set the zpos default depending on whether we are a primary or overlay
199 * plane.
200 */
201 plane->state->zpos = plane->type == DRM_PLANE_TYPE_PRIMARY
202 ? 0 : omap_plane->id;
203 plane->state->color_encoding = DRM_COLOR_YCBCR_BT601;
204 plane->state->color_range = DRM_COLOR_YCBCR_FULL_RANGE;
205}
206
207static int omap_plane_atomic_set_property(struct drm_plane *plane,
208 struct drm_plane_state *state,
209 struct drm_property *property,
210 u64 val)
211{
212 struct omap_drm_private *priv = plane->dev->dev_private;
213
214 if (property == priv->zorder_prop)
215 state->zpos = val;
216 else
217 return -EINVAL;
218
219 return 0;
220}
221
222static int omap_plane_atomic_get_property(struct drm_plane *plane,
223 const struct drm_plane_state *state,
224 struct drm_property *property,
225 u64 *val)
226{
227 struct omap_drm_private *priv = plane->dev->dev_private;
228
229 if (property == priv->zorder_prop)
230 *val = state->zpos;
231 else
232 return -EINVAL;
233
234 return 0;
235}
236
237static const struct drm_plane_funcs omap_plane_funcs = {
238 .update_plane = drm_atomic_helper_update_plane,
239 .disable_plane = drm_atomic_helper_disable_plane,
240 .reset = omap_plane_reset,
241 .destroy = omap_plane_destroy,
242 .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
243 .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
244 .atomic_set_property = omap_plane_atomic_set_property,
245 .atomic_get_property = omap_plane_atomic_get_property,
246};
247
248static bool omap_plane_supports_yuv(struct drm_plane *plane)
249{
250 struct omap_drm_private *priv = plane->dev->dev_private;
251 struct omap_plane *omap_plane = to_omap_plane(plane);
252 const u32 *formats = dispc_ovl_get_color_modes(priv->dispc, omap_plane->id);
253 u32 i;
254
255 for (i = 0; formats[i]; i++)
256 if (formats[i] == DRM_FORMAT_YUYV ||
257 formats[i] == DRM_FORMAT_UYVY ||
258 formats[i] == DRM_FORMAT_NV12)
259 return true;
260
261 return false;
262}
263
264static const char *plane_id_to_name[] = {
265 [OMAP_DSS_GFX] = "gfx",
266 [OMAP_DSS_VIDEO1] = "vid1",
267 [OMAP_DSS_VIDEO2] = "vid2",
268 [OMAP_DSS_VIDEO3] = "vid3",
269};
270
271static const enum omap_plane_id plane_idx_to_id[] = {
272 OMAP_DSS_GFX,
273 OMAP_DSS_VIDEO1,
274 OMAP_DSS_VIDEO2,
275 OMAP_DSS_VIDEO3,
276};
277
278/* initialize plane */
279struct drm_plane *omap_plane_init(struct drm_device *dev,
280 int idx, enum drm_plane_type type,
281 u32 possible_crtcs)
282{
283 struct omap_drm_private *priv = dev->dev_private;
284 unsigned int num_planes = dispc_get_num_ovls(priv->dispc);
285 struct drm_plane *plane;
286 struct omap_plane *omap_plane;
287 enum omap_plane_id id;
288 int ret;
289 u32 nformats;
290 const u32 *formats;
291
292 if (WARN_ON(idx >= ARRAY_SIZE(plane_idx_to_id)))
293 return ERR_PTR(-EINVAL);
294
295 id = plane_idx_to_id[idx];
296
297 DBG("%s: type=%d", plane_id_to_name[id], type);
298
299 omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
300 if (!omap_plane)
301 return ERR_PTR(-ENOMEM);
302
303 formats = dispc_ovl_get_color_modes(priv->dispc, id);
304 for (nformats = 0; formats[nformats]; ++nformats)
305 ;
306 omap_plane->id = id;
307 omap_plane->name = plane_id_to_name[id];
308
309 plane = &omap_plane->base;
310
311 ret = drm_universal_plane_init(dev, plane, possible_crtcs,
312 &omap_plane_funcs, formats,
313 nformats, NULL, type, NULL);
314 if (ret < 0)
315 goto error;
316
317 drm_plane_helper_add(plane, &omap_plane_helper_funcs);
318
319 omap_plane_install_properties(plane, &plane->base);
320 drm_plane_create_zpos_property(plane, 0, 0, num_planes - 1);
321 drm_plane_create_alpha_property(plane);
322 drm_plane_create_blend_mode_property(plane, BIT(DRM_MODE_BLEND_PREMULTI) |
323 BIT(DRM_MODE_BLEND_COVERAGE));
324
325 if (omap_plane_supports_yuv(plane))
326 drm_plane_create_color_properties(plane,
327 BIT(DRM_COLOR_YCBCR_BT601) |
328 BIT(DRM_COLOR_YCBCR_BT709),
329 BIT(DRM_COLOR_YCBCR_FULL_RANGE) |
330 BIT(DRM_COLOR_YCBCR_LIMITED_RANGE),
331 DRM_COLOR_YCBCR_BT601,
332 DRM_COLOR_YCBCR_FULL_RANGE);
333
334 return plane;
335
336error:
337 dev_err(dev->dev, "%s(): could not create plane: %s\n",
338 __func__, plane_id_to_name[id]);
339
340 kfree(omap_plane);
341 return NULL;
342}
1/*
2 * drivers/gpu/drm/omapdrm/omap_plane.c
3 *
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
20#include "drm_flip_work.h"
21
22#include "omap_drv.h"
23#include "omap_dmm_tiler.h"
24
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
35struct callback {
36 void (*fxn)(void *);
37 void *arg;
38};
39
40#define to_omap_plane(x) container_of(x, struct omap_plane, base)
41
42struct omap_plane {
43 struct drm_plane base;
44 int id; /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */
45 const char *name;
46 struct omap_overlay_info info;
47 struct omap_drm_apply apply;
48
49 /* position/orientation of scanout within the fb: */
50 struct omap_drm_window win;
51 bool enabled;
52
53 /* last fb that we pinned: */
54 struct drm_framebuffer *pinned_fb;
55
56 uint32_t nformats;
57 uint32_t formats[32];
58
59 struct omap_drm_irq error_irq;
60
61 /* for deferring bo unpin's until next post_apply(): */
62 struct drm_flip_work unpin_work;
63
64 // XXX maybe get rid of this and handle vblank in crtc too?
65 struct callback apply_done_cb;
66};
67
68static void unpin_worker(struct drm_flip_work *work, void *val)
69{
70 struct omap_plane *omap_plane =
71 container_of(work, struct omap_plane, unpin_work);
72 struct drm_device *dev = omap_plane->base.dev;
73
74 omap_framebuffer_unpin(val);
75 mutex_lock(&dev->mode_config.mutex);
76 drm_framebuffer_unreference(val);
77 mutex_unlock(&dev->mode_config.mutex);
78}
79
80/* 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);
84 struct drm_framebuffer *pinned_fb = omap_plane->pinned_fb;
85
86 if (pinned_fb != fb) {
87 int ret = 0;
88
89 DBG("%p -> %p", pinned_fb, fb);
90
91 if (fb) {
92 drm_framebuffer_reference(fb);
93 ret = omap_framebuffer_pin(fb);
94 }
95
96 if (pinned_fb)
97 drm_flip_work_queue(&omap_plane->unpin_work, pinned_fb);
98
99 if (ret) {
100 dev_err(plane->dev->dev, "could not swap %p -> %p\n",
101 omap_plane->pinned_fb, fb);
102 drm_framebuffer_unreference(fb);
103 omap_plane->pinned_fb = NULL;
104 return ret;
105 }
106
107 omap_plane->pinned_fb = fb;
108 }
109
110 return 0;
111}
112
113static void omap_plane_pre_apply(struct omap_drm_apply *apply)
114{
115 struct omap_plane *omap_plane =
116 container_of(apply, struct omap_plane, apply);
117 struct omap_drm_window *win = &omap_plane->win;
118 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;
125 int ret;
126
127 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);
134 return;
135 }
136
137 channel = omap_crtc_channel(crtc);
138
139 /* update scanout: */
140 omap_framebuffer_update_scanout(plane->fb, win, info);
141
142 DBG("%dx%d -> %dx%d (%d)", info->width, info->height,
143 info->out_width, info->out_height,
144 info->screen_width);
145 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;
169 struct omap_drm_private *priv = plane->dev->dev_private;
170 struct omap_overlay_info *info = &omap_plane->info;
171 struct callback cb;
172
173 cb = omap_plane->apply_done_cb;
174 omap_plane->apply_done_cb.fxn = NULL;
175
176 drm_flip_work_commit(&omap_plane->unpin_work, priv->wq);
177
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;
194}
195
196int omap_plane_mode_set(struct drm_plane *plane,
197 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,
201 uint32_t src_w, uint32_t src_h,
202 void (*fxn)(void *), void *arg)
203{
204 struct omap_plane *omap_plane = to_omap_plane(plane);
205 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;
211
212 /* src values are in Q16 fixed point, convert to integer: */
213 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;
217
218 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
228 if (plane->fb)
229 drm_framebuffer_unreference(plane->fb);
230
231 drm_framebuffer_reference(fb);
232
233 plane->fb = fb;
234 plane->crtc = crtc;
235
236 return apply(plane);
237}
238
239static 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{
246 struct omap_plane *omap_plane = to_omap_plane(plane);
247 omap_plane->enabled = true;
248
249 /* 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
257 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);
261}
262
263static int omap_plane_disable(struct drm_plane *plane)
264{
265 struct omap_plane *omap_plane = to_omap_plane(plane);
266 omap_plane->win.rotation = BIT(DRM_ROTATE_0);
267 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);
273
274 DBG("%s", omap_plane->name);
275
276 omap_irq_unregister(plane->dev, &omap_plane->error_irq);
277
278 omap_plane_disable(plane);
279 drm_plane_cleanup(plane);
280
281 drm_flip_work_cleanup(&omap_plane->unpin_work);
282
283 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);
289 bool enabled = (mode == DRM_MODE_DPMS_ON);
290 int ret = 0;
291
292 if (enabled != omap_plane->enabled) {
293 omap_plane->enabled = enabled;
294 ret = apply(plane);
295 }
296
297 return ret;
298}
299
300/* 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
308 if (priv->has_dmm) {
309 prop = priv->rotation_prop;
310 if (!prop) {
311 const struct drm_prop_enum_list props[] = {
312 { DRM_ROTATE_0, "rotate-0" },
313 { DRM_ROTATE_90, "rotate-90" },
314 { DRM_ROTATE_180, "rotate-180" },
315 { DRM_ROTATE_270, "rotate-270" },
316 { DRM_REFLECT_X, "reflect-x" },
317 { DRM_REFLECT_Y, "reflect-y" },
318 };
319 prop = drm_property_create_bitmask(dev, 0, "rotation",
320 props, ARRAY_SIZE(props));
321 if (prop == NULL)
322 return;
323 priv->rotation_prop = prop;
324 }
325 drm_object_attach_property(obj, prop, 0);
326 }
327
328 prop = priv->zorder_prop;
329 if (!prop) {
330 prop = drm_property_create_range(dev, 0, "zorder", 0, 3);
331 if (prop == NULL)
332 return;
333 priv->zorder_prop = prop;
334 }
335 drm_object_attach_property(obj, prop, 0);
336}
337
338int omap_plane_set_property(struct drm_plane *plane,
339 struct drm_property *property, uint64_t val)
340{
341 struct omap_plane *omap_plane = to_omap_plane(plane);
342 struct omap_drm_private *priv = plane->dev->dev_private;
343 int ret = -EINVAL;
344
345 if (property == priv->rotation_prop) {
346 DBG("%s: rotation: %02x", omap_plane->name, (uint32_t)val);
347 omap_plane->win.rotation = val;
348 ret = apply(plane);
349 } else if (property == priv->zorder_prop) {
350 DBG("%s: zorder: %02x", omap_plane->name, (uint32_t)val);
351 omap_plane->info.zorder = val;
352 ret = apply(plane);
353 }
354
355 return ret;
356}
357
358static const struct drm_plane_funcs omap_plane_funcs = {
359 .update_plane = omap_plane_update,
360 .disable_plane = omap_plane_disable,
361 .destroy = omap_plane_destroy,
362 .set_property = omap_plane_set_property,
363};
364
365static void omap_plane_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
366{
367 struct omap_plane *omap_plane =
368 container_of(irq, struct omap_plane, error_irq);
369 DRM_ERROR("%s: errors: %08x\n", omap_plane->name, irqstatus);
370}
371
372static const char *plane_names[] = {
373 [OMAP_DSS_GFX] = "gfx",
374 [OMAP_DSS_VIDEO1] = "vid1",
375 [OMAP_DSS_VIDEO2] = "vid2",
376 [OMAP_DSS_VIDEO3] = "vid3",
377};
378
379static const uint32_t error_irqs[] = {
380 [OMAP_DSS_GFX] = DISPC_IRQ_GFX_FIFO_UNDERFLOW,
381 [OMAP_DSS_VIDEO1] = DISPC_IRQ_VID1_FIFO_UNDERFLOW,
382 [OMAP_DSS_VIDEO2] = DISPC_IRQ_VID2_FIFO_UNDERFLOW,
383 [OMAP_DSS_VIDEO3] = DISPC_IRQ_VID3_FIFO_UNDERFLOW,
384};
385
386/* initialize plane */
387struct drm_plane *omap_plane_init(struct drm_device *dev,
388 int id, bool private_plane)
389{
390 struct omap_drm_private *priv = dev->dev_private;
391 struct drm_plane *plane = NULL;
392 struct omap_plane *omap_plane;
393 struct omap_overlay_info *info;
394 int ret;
395
396 DBG("%s: priv=%d", plane_names[id], private_plane);
397
398 omap_plane = kzalloc(sizeof(*omap_plane), GFP_KERNEL);
399 if (!omap_plane)
400 goto fail;
401
402 ret = drm_flip_work_init(&omap_plane->unpin_work, 16,
403 "unpin", unpin_worker);
404 if (ret) {
405 dev_err(dev->dev, "could not allocate unpin FIFO\n");
406 goto fail;
407 }
408
409 omap_plane->nformats = omap_framebuffer_get_formats(
410 omap_plane->formats, ARRAY_SIZE(omap_plane->formats),
411 dss_feat_get_supported_color_modes(id));
412 omap_plane->id = id;
413 omap_plane->name = plane_names[id];
414
415 plane = &omap_plane->base;
416
417 omap_plane->apply.pre_apply = omap_plane_pre_apply;
418 omap_plane->apply.post_apply = omap_plane_post_apply;
419
420 omap_plane->error_irq.irqmask = error_irqs[id];
421 omap_plane->error_irq.irq = omap_plane_error_irq;
422 omap_irq_register(dev, &omap_plane->error_irq);
423
424 drm_plane_init(dev, plane, (1 << priv->num_crtcs) - 1, &omap_plane_funcs,
425 omap_plane->formats, omap_plane->nformats, private_plane);
426
427 omap_plane_install_properties(plane, &plane->base);
428
429 /* get our starting configuration, set defaults for parameters
430 * we don't currently use, etc:
431 */
432 info = &omap_plane->info;
433 info->rotation_type = OMAP_DSS_ROT_DMA;
434 info->rotation = OMAP_DSS_ROT_0;
435 info->global_alpha = 0xff;
436 info->mirror = 0;
437
438 /* Set defaults depending on whether we are a CRTC or overlay
439 * layer.
440 * TODO add ioctl to give userspace an API to change this.. this
441 * will come in a subsequent patch.
442 */
443 if (private_plane)
444 omap_plane->info.zorder = 0;
445 else
446 omap_plane->info.zorder = id;
447
448 return plane;
449
450fail:
451 if (plane)
452 omap_plane_destroy(plane);
453
454 return NULL;
455}