Merge tag 'tilcdc-4.15-fixes' of https://github.com/jsarha/linux into drm-next
[sfrench/cifs-2.6.git] / drivers / gpu / drm / msm / mdp / mdp5 / mdp5_plane.c
1 /*
2  * Copyright (C) 2014-2015 The Linux Foundation. All rights reserved.
3  * Copyright (C) 2013 Red Hat
4  * Author: Rob Clark <robdclark@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 as published by
8  * the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <drm/drm_print.h>
20 #include "mdp5_kms.h"
21
22 struct mdp5_plane {
23         struct drm_plane base;
24
25         uint32_t nformats;
26         uint32_t formats[32];
27 };
28 #define to_mdp5_plane(x) container_of(x, struct mdp5_plane, base)
29
30 static int mdp5_plane_mode_set(struct drm_plane *plane,
31                 struct drm_crtc *crtc, struct drm_framebuffer *fb,
32                 struct drm_rect *src, struct drm_rect *dest);
33
34 static struct mdp5_kms *get_kms(struct drm_plane *plane)
35 {
36         struct msm_drm_private *priv = plane->dev->dev_private;
37         return to_mdp5_kms(to_mdp_kms(priv->kms));
38 }
39
40 static bool plane_enabled(struct drm_plane_state *state)
41 {
42         return state->visible;
43 }
44
45 static void mdp5_plane_destroy(struct drm_plane *plane)
46 {
47         struct mdp5_plane *mdp5_plane = to_mdp5_plane(plane);
48
49         drm_plane_helper_disable(plane);
50         drm_plane_cleanup(plane);
51
52         kfree(mdp5_plane);
53 }
54
55 static void mdp5_plane_install_rotation_property(struct drm_device *dev,
56                 struct drm_plane *plane)
57 {
58         drm_plane_create_rotation_property(plane,
59                                            DRM_MODE_ROTATE_0,
60                                            DRM_MODE_ROTATE_0 |
61                                            DRM_MODE_ROTATE_180 |
62                                            DRM_MODE_REFLECT_X |
63                                            DRM_MODE_REFLECT_Y);
64 }
65
66 /* helper to install properties which are common to planes and crtcs */
67 static void mdp5_plane_install_properties(struct drm_plane *plane,
68                 struct drm_mode_object *obj)
69 {
70         struct drm_device *dev = plane->dev;
71         struct msm_drm_private *dev_priv = dev->dev_private;
72         struct drm_property *prop;
73
74 #define INSTALL_PROPERTY(name, NAME, init_val, fnc, ...) do { \
75                 prop = dev_priv->plane_property[PLANE_PROP_##NAME]; \
76                 if (!prop) { \
77                         prop = drm_property_##fnc(dev, 0, #name, \
78                                 ##__VA_ARGS__); \
79                         if (!prop) { \
80                                 dev_warn(dev->dev, \
81                                         "Create property %s failed\n", \
82                                         #name); \
83                                 return; \
84                         } \
85                         dev_priv->plane_property[PLANE_PROP_##NAME] = prop; \
86                 } \
87                 drm_object_attach_property(&plane->base, prop, init_val); \
88         } while (0)
89
90 #define INSTALL_RANGE_PROPERTY(name, NAME, min, max, init_val) \
91                 INSTALL_PROPERTY(name, NAME, init_val, \
92                                 create_range, min, max)
93
94 #define INSTALL_ENUM_PROPERTY(name, NAME, init_val) \
95                 INSTALL_PROPERTY(name, NAME, init_val, \
96                                 create_enum, name##_prop_enum_list, \
97                                 ARRAY_SIZE(name##_prop_enum_list))
98
99         INSTALL_RANGE_PROPERTY(zpos, ZPOS, 1, 255, 1);
100
101         mdp5_plane_install_rotation_property(dev, plane);
102
103 #undef INSTALL_RANGE_PROPERTY
104 #undef INSTALL_ENUM_PROPERTY
105 #undef INSTALL_PROPERTY
106 }
107
108 static int mdp5_plane_atomic_set_property(struct drm_plane *plane,
109                 struct drm_plane_state *state, struct drm_property *property,
110                 uint64_t val)
111 {
112         struct drm_device *dev = plane->dev;
113         struct mdp5_plane_state *pstate;
114         struct msm_drm_private *dev_priv = dev->dev_private;
115         int ret = 0;
116
117         pstate = to_mdp5_plane_state(state);
118
119 #define SET_PROPERTY(name, NAME, type) do { \
120                 if (dev_priv->plane_property[PLANE_PROP_##NAME] == property) { \
121                         pstate->name = (type)val; \
122                         DBG("Set property %s %d", #name, (type)val); \
123                         goto done; \
124                 } \
125         } while (0)
126
127         SET_PROPERTY(zpos, ZPOS, uint8_t);
128
129         dev_err(dev->dev, "Invalid property\n");
130         ret = -EINVAL;
131 done:
132         return ret;
133 #undef SET_PROPERTY
134 }
135
136 static int mdp5_plane_atomic_get_property(struct drm_plane *plane,
137                 const struct drm_plane_state *state,
138                 struct drm_property *property, uint64_t *val)
139 {
140         struct drm_device *dev = plane->dev;
141         struct mdp5_plane_state *pstate;
142         struct msm_drm_private *dev_priv = dev->dev_private;
143         int ret = 0;
144
145         pstate = to_mdp5_plane_state(state);
146
147 #define GET_PROPERTY(name, NAME, type) do { \
148                 if (dev_priv->plane_property[PLANE_PROP_##NAME] == property) { \
149                         *val = pstate->name; \
150                         DBG("Get property %s %lld", #name, *val); \
151                         goto done; \
152                 } \
153         } while (0)
154
155         GET_PROPERTY(zpos, ZPOS, uint8_t);
156
157         dev_err(dev->dev, "Invalid property\n");
158         ret = -EINVAL;
159 done:
160         return ret;
161 #undef SET_PROPERTY
162 }
163
164 static void
165 mdp5_plane_atomic_print_state(struct drm_printer *p,
166                 const struct drm_plane_state *state)
167 {
168         struct mdp5_plane_state *pstate = to_mdp5_plane_state(state);
169         struct mdp5_kms *mdp5_kms = get_kms(state->plane);
170
171         drm_printf(p, "\thwpipe=%s\n", pstate->hwpipe ?
172                         pstate->hwpipe->name : "(null)");
173         if (mdp5_kms->caps & MDP_CAP_SRC_SPLIT)
174                 drm_printf(p, "\tright-hwpipe=%s\n",
175                            pstate->r_hwpipe ? pstate->r_hwpipe->name :
176                                               "(null)");
177         drm_printf(p, "\tpremultiplied=%u\n", pstate->premultiplied);
178         drm_printf(p, "\tzpos=%u\n", pstate->zpos);
179         drm_printf(p, "\talpha=%u\n", pstate->alpha);
180         drm_printf(p, "\tstage=%s\n", stage2name(pstate->stage));
181 }
182
183 static void mdp5_plane_reset(struct drm_plane *plane)
184 {
185         struct mdp5_plane_state *mdp5_state;
186
187         if (plane->state && plane->state->fb)
188                 drm_framebuffer_unreference(plane->state->fb);
189
190         kfree(to_mdp5_plane_state(plane->state));
191         mdp5_state = kzalloc(sizeof(*mdp5_state), GFP_KERNEL);
192
193         /* assign default blend parameters */
194         mdp5_state->alpha = 255;
195         mdp5_state->premultiplied = 0;
196
197         if (plane->type == DRM_PLANE_TYPE_PRIMARY)
198                 mdp5_state->zpos = STAGE_BASE;
199         else
200                 mdp5_state->zpos = STAGE0 + drm_plane_index(plane);
201
202         mdp5_state->base.plane = plane;
203
204         plane->state = &mdp5_state->base;
205 }
206
207 static struct drm_plane_state *
208 mdp5_plane_duplicate_state(struct drm_plane *plane)
209 {
210         struct mdp5_plane_state *mdp5_state;
211
212         if (WARN_ON(!plane->state))
213                 return NULL;
214
215         mdp5_state = kmemdup(to_mdp5_plane_state(plane->state),
216                         sizeof(*mdp5_state), GFP_KERNEL);
217         if (!mdp5_state)
218                 return NULL;
219
220         __drm_atomic_helper_plane_duplicate_state(plane, &mdp5_state->base);
221
222         return &mdp5_state->base;
223 }
224
225 static void mdp5_plane_destroy_state(struct drm_plane *plane,
226                 struct drm_plane_state *state)
227 {
228         struct mdp5_plane_state *pstate = to_mdp5_plane_state(state);
229
230         if (state->fb)
231                 drm_framebuffer_unreference(state->fb);
232
233         kfree(pstate);
234 }
235
236 static const struct drm_plane_funcs mdp5_plane_funcs = {
237                 .update_plane = drm_atomic_helper_update_plane,
238                 .disable_plane = drm_atomic_helper_disable_plane,
239                 .destroy = mdp5_plane_destroy,
240                 .atomic_set_property = mdp5_plane_atomic_set_property,
241                 .atomic_get_property = mdp5_plane_atomic_get_property,
242                 .reset = mdp5_plane_reset,
243                 .atomic_duplicate_state = mdp5_plane_duplicate_state,
244                 .atomic_destroy_state = mdp5_plane_destroy_state,
245                 .atomic_print_state = mdp5_plane_atomic_print_state,
246 };
247
248 static int mdp5_plane_prepare_fb(struct drm_plane *plane,
249                                  struct drm_plane_state *new_state)
250 {
251         struct mdp5_kms *mdp5_kms = get_kms(plane);
252         struct msm_kms *kms = &mdp5_kms->base.base;
253         struct drm_framebuffer *fb = new_state->fb;
254
255         if (!new_state->fb)
256                 return 0;
257
258         DBG("%s: prepare: FB[%u]", plane->name, fb->base.id);
259         return msm_framebuffer_prepare(fb, kms->aspace);
260 }
261
262 static void mdp5_plane_cleanup_fb(struct drm_plane *plane,
263                                   struct drm_plane_state *old_state)
264 {
265         struct mdp5_kms *mdp5_kms = get_kms(plane);
266         struct msm_kms *kms = &mdp5_kms->base.base;
267         struct drm_framebuffer *fb = old_state->fb;
268
269         if (!fb)
270                 return;
271
272         DBG("%s: cleanup: FB[%u]", plane->name, fb->base.id);
273         msm_framebuffer_cleanup(fb, kms->aspace);
274 }
275
276 #define FRAC_16_16(mult, div)    (((mult) << 16) / (div))
277 static int mdp5_plane_atomic_check_with_state(struct drm_crtc_state *crtc_state,
278                                               struct drm_plane_state *state)
279 {
280         struct mdp5_plane_state *mdp5_state = to_mdp5_plane_state(state);
281         struct drm_plane *plane = state->plane;
282         struct drm_plane_state *old_state = plane->state;
283         struct mdp5_cfg *config = mdp5_cfg_get_config(get_kms(plane)->cfg);
284         bool new_hwpipe = false;
285         bool need_right_hwpipe = false;
286         uint32_t max_width, max_height;
287         bool out_of_bounds = false;
288         uint32_t caps = 0;
289         struct drm_rect clip;
290         int min_scale, max_scale;
291         int ret;
292
293         DBG("%s: check (%d -> %d)", plane->name,
294                         plane_enabled(old_state), plane_enabled(state));
295
296         max_width = config->hw->lm.max_width << 16;
297         max_height = config->hw->lm.max_height << 16;
298
299         /* Make sure source dimensions are within bounds. */
300         if (state->src_h > max_height)
301                 out_of_bounds = true;
302
303         if (state->src_w > max_width) {
304                 /* If source split is supported, we can go up to 2x
305                  * the max LM width, but we'd need to stage another
306                  * hwpipe to the right LM. So, the drm_plane would
307                  * consist of 2 hwpipes.
308                  */
309                 if (config->hw->mdp.caps & MDP_CAP_SRC_SPLIT &&
310                     (state->src_w <= 2 * max_width))
311                         need_right_hwpipe = true;
312                 else
313                         out_of_bounds = true;
314         }
315
316         if (out_of_bounds) {
317                 struct drm_rect src = drm_plane_state_src(state);
318                 DBG("Invalid source size "DRM_RECT_FP_FMT,
319                                 DRM_RECT_FP_ARG(&src));
320                 return -ERANGE;
321         }
322
323         clip.x1 = 0;
324         clip.y1 = 0;
325         clip.x2 = crtc_state->adjusted_mode.hdisplay;
326         clip.y2 = crtc_state->adjusted_mode.vdisplay;
327         min_scale = FRAC_16_16(1, 8);
328         max_scale = FRAC_16_16(8, 1);
329
330         ret = drm_plane_helper_check_state(state, &clip, min_scale,
331                                            max_scale, true, true);
332         if (ret)
333                 return ret;
334
335         if (plane_enabled(state)) {
336                 unsigned int rotation;
337                 const struct mdp_format *format;
338                 struct mdp5_kms *mdp5_kms = get_kms(plane);
339                 uint32_t blkcfg = 0;
340
341                 format = to_mdp_format(msm_framebuffer_format(state->fb));
342                 if (MDP_FORMAT_IS_YUV(format))
343                         caps |= MDP_PIPE_CAP_SCALE | MDP_PIPE_CAP_CSC;
344
345                 if (((state->src_w >> 16) != state->crtc_w) ||
346                                 ((state->src_h >> 16) != state->crtc_h))
347                         caps |= MDP_PIPE_CAP_SCALE;
348
349                 rotation = drm_rotation_simplify(state->rotation,
350                                                  DRM_MODE_ROTATE_0 |
351                                                  DRM_MODE_REFLECT_X |
352                                                  DRM_MODE_REFLECT_Y);
353
354                 if (rotation & DRM_MODE_REFLECT_X)
355                         caps |= MDP_PIPE_CAP_HFLIP;
356
357                 if (rotation & DRM_MODE_REFLECT_Y)
358                         caps |= MDP_PIPE_CAP_VFLIP;
359
360                 if (plane->type == DRM_PLANE_TYPE_CURSOR)
361                         caps |= MDP_PIPE_CAP_CURSOR;
362
363                 /* (re)allocate hw pipe if we don't have one or caps-mismatch: */
364                 if (!mdp5_state->hwpipe || (caps & ~mdp5_state->hwpipe->caps))
365                         new_hwpipe = true;
366
367                 /*
368                  * (re)allocte hw pipe if we're either requesting for 2 hw pipes
369                  * or we're switching from 2 hw pipes to 1 hw pipe because the
370                  * new src_w can be supported by 1 hw pipe itself.
371                  */
372                 if ((need_right_hwpipe && !mdp5_state->r_hwpipe) ||
373                     (!need_right_hwpipe && mdp5_state->r_hwpipe))
374                         new_hwpipe = true;
375
376                 if (mdp5_kms->smp) {
377                         const struct mdp_format *format =
378                                 to_mdp_format(msm_framebuffer_format(state->fb));
379
380                         blkcfg = mdp5_smp_calculate(mdp5_kms->smp, format,
381                                         state->src_w >> 16, false);
382
383                         if (mdp5_state->hwpipe && (mdp5_state->hwpipe->blkcfg != blkcfg))
384                                 new_hwpipe = true;
385                 }
386
387                 /* (re)assign hwpipe if needed, otherwise keep old one: */
388                 if (new_hwpipe) {
389                         /* TODO maybe we want to re-assign hwpipe sometimes
390                          * in cases when we no-longer need some caps to make
391                          * it available for other planes?
392                          */
393                         struct mdp5_hw_pipe *old_hwpipe = mdp5_state->hwpipe;
394                         struct mdp5_hw_pipe *old_right_hwpipe =
395                                                           mdp5_state->r_hwpipe;
396                         struct mdp5_hw_pipe *new_hwpipe = NULL;
397                         struct mdp5_hw_pipe *new_right_hwpipe = NULL;
398
399                         ret = mdp5_pipe_assign(state->state, plane, caps,
400                                                blkcfg, &new_hwpipe,
401                                                need_right_hwpipe ?
402                                                &new_right_hwpipe : NULL);
403                         if (ret) {
404                                 DBG("%s: failed to assign hwpipe(s)!",
405                                     plane->name);
406                                 return ret;
407                         }
408
409                         mdp5_state->hwpipe = new_hwpipe;
410                         if (need_right_hwpipe)
411                                 mdp5_state->r_hwpipe = new_right_hwpipe;
412                         else
413                                 /*
414                                  * set it to NULL so that the driver knows we
415                                  * don't have a right hwpipe when committing a
416                                  * new state
417                                  */
418                                 mdp5_state->r_hwpipe = NULL;
419
420
421                         mdp5_pipe_release(state->state, old_hwpipe);
422                         mdp5_pipe_release(state->state, old_right_hwpipe);
423                 }
424         } else {
425                 mdp5_pipe_release(state->state, mdp5_state->hwpipe);
426                 mdp5_pipe_release(state->state, mdp5_state->r_hwpipe);
427                 mdp5_state->hwpipe = mdp5_state->r_hwpipe = NULL;
428         }
429
430         return 0;
431 }
432
433 static int mdp5_plane_atomic_check(struct drm_plane *plane,
434                                    struct drm_plane_state *state)
435 {
436         struct drm_crtc *crtc;
437         struct drm_crtc_state *crtc_state;
438
439         crtc = state->crtc ? state->crtc : plane->state->crtc;
440         if (!crtc)
441                 return 0;
442
443         crtc_state = drm_atomic_get_existing_crtc_state(state->state, crtc);
444         if (WARN_ON(!crtc_state))
445                 return -EINVAL;
446
447         return mdp5_plane_atomic_check_with_state(crtc_state, state);
448 }
449
450 static void mdp5_plane_atomic_update(struct drm_plane *plane,
451                                      struct drm_plane_state *old_state)
452 {
453         struct drm_plane_state *state = plane->state;
454
455         DBG("%s: update", plane->name);
456
457         if (plane_enabled(state)) {
458                 int ret;
459
460                 ret = mdp5_plane_mode_set(plane,
461                                 state->crtc, state->fb,
462                                 &state->src, &state->dst);
463                 /* atomic_check should have ensured that this doesn't fail */
464                 WARN_ON(ret < 0);
465         }
466 }
467
468 static int mdp5_plane_atomic_async_check(struct drm_plane *plane,
469                                          struct drm_plane_state *state)
470 {
471         struct mdp5_plane_state *mdp5_state = to_mdp5_plane_state(state);
472         struct drm_crtc_state *crtc_state;
473         struct drm_rect clip;
474         int min_scale, max_scale;
475         int ret;
476
477         crtc_state = drm_atomic_get_existing_crtc_state(state->state,
478                                                         state->crtc);
479         if (WARN_ON(!crtc_state))
480                 return -EINVAL;
481
482         if (!crtc_state->active)
483                 return -EINVAL;
484
485         mdp5_state = to_mdp5_plane_state(state);
486
487         /* don't use fast path if we don't have a hwpipe allocated yet */
488         if (!mdp5_state->hwpipe)
489                 return -EINVAL;
490
491         /* only allow changing of position(crtc x/y or src x/y) in fast path */
492         if (plane->state->crtc != state->crtc ||
493             plane->state->src_w != state->src_w ||
494             plane->state->src_h != state->src_h ||
495             plane->state->crtc_w != state->crtc_w ||
496             plane->state->crtc_h != state->crtc_h ||
497             !plane->state->fb ||
498             plane->state->fb != state->fb)
499                 return -EINVAL;
500
501         clip.x1 = 0;
502         clip.y1 = 0;
503         clip.x2 = crtc_state->adjusted_mode.hdisplay;
504         clip.y2 = crtc_state->adjusted_mode.vdisplay;
505         min_scale = FRAC_16_16(1, 8);
506         max_scale = FRAC_16_16(8, 1);
507
508         ret = drm_plane_helper_check_state(state, &clip, min_scale,
509                                            max_scale, true, true);
510         if (ret)
511                 return ret;
512
513         /*
514          * if the visibility of the plane changes (i.e, if the cursor is
515          * clipped out completely, we can't take the async path because
516          * we need to stage/unstage the plane from the Layer Mixer(s). We
517          * also assign/unassign the hwpipe(s) tied to the plane. We avoid
518          * taking the fast path for both these reasons.
519          */
520         if (state->visible != plane->state->visible)
521                 return -EINVAL;
522
523         return 0;
524 }
525
526 static void mdp5_plane_atomic_async_update(struct drm_plane *plane,
527                                            struct drm_plane_state *new_state)
528 {
529         plane->state->src_x = new_state->src_x;
530         plane->state->src_y = new_state->src_y;
531         plane->state->crtc_x = new_state->crtc_x;
532         plane->state->crtc_y = new_state->crtc_y;
533
534         if (plane_enabled(new_state)) {
535                 struct mdp5_ctl *ctl;
536                 struct mdp5_pipeline *pipeline =
537                                         mdp5_crtc_get_pipeline(plane->crtc);
538                 int ret;
539
540                 ret = mdp5_plane_mode_set(plane, new_state->crtc, new_state->fb,
541                                 &new_state->src, &new_state->dst);
542                 WARN_ON(ret < 0);
543
544                 ctl = mdp5_crtc_get_ctl(new_state->crtc);
545
546                 mdp5_ctl_commit(ctl, pipeline, mdp5_plane_get_flush(plane));
547         }
548
549         *to_mdp5_plane_state(plane->state) =
550                 *to_mdp5_plane_state(new_state);
551 }
552
553 static const struct drm_plane_helper_funcs mdp5_plane_helper_funcs = {
554                 .prepare_fb = mdp5_plane_prepare_fb,
555                 .cleanup_fb = mdp5_plane_cleanup_fb,
556                 .atomic_check = mdp5_plane_atomic_check,
557                 .atomic_update = mdp5_plane_atomic_update,
558                 .atomic_async_check = mdp5_plane_atomic_async_check,
559                 .atomic_async_update = mdp5_plane_atomic_async_update,
560 };
561
562 static void set_scanout_locked(struct mdp5_kms *mdp5_kms,
563                                enum mdp5_pipe pipe,
564                                struct drm_framebuffer *fb)
565 {
566         struct msm_kms *kms = &mdp5_kms->base.base;
567
568         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_STRIDE_A(pipe),
569                         MDP5_PIPE_SRC_STRIDE_A_P0(fb->pitches[0]) |
570                         MDP5_PIPE_SRC_STRIDE_A_P1(fb->pitches[1]));
571
572         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_STRIDE_B(pipe),
573                         MDP5_PIPE_SRC_STRIDE_B_P2(fb->pitches[2]) |
574                         MDP5_PIPE_SRC_STRIDE_B_P3(fb->pitches[3]));
575
576         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC0_ADDR(pipe),
577                         msm_framebuffer_iova(fb, kms->aspace, 0));
578         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC1_ADDR(pipe),
579                         msm_framebuffer_iova(fb, kms->aspace, 1));
580         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC2_ADDR(pipe),
581                         msm_framebuffer_iova(fb, kms->aspace, 2));
582         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC3_ADDR(pipe),
583                         msm_framebuffer_iova(fb, kms->aspace, 3));
584 }
585
586 /* Note: mdp5_plane->pipe_lock must be locked */
587 static void csc_disable(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe)
588 {
589         uint32_t value = mdp5_read(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe)) &
590                          ~MDP5_PIPE_OP_MODE_CSC_1_EN;
591
592         mdp5_write(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe), value);
593 }
594
595 /* Note: mdp5_plane->pipe_lock must be locked */
596 static void csc_enable(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe,
597                 struct csc_cfg *csc)
598 {
599         uint32_t  i, mode = 0; /* RGB, no CSC */
600         uint32_t *matrix;
601
602         if (unlikely(!csc))
603                 return;
604
605         if ((csc->type == CSC_YUV2RGB) || (CSC_YUV2YUV == csc->type))
606                 mode |= MDP5_PIPE_OP_MODE_CSC_SRC_DATA_FORMAT(DATA_FORMAT_YUV);
607         if ((csc->type == CSC_RGB2YUV) || (CSC_YUV2YUV == csc->type))
608                 mode |= MDP5_PIPE_OP_MODE_CSC_DST_DATA_FORMAT(DATA_FORMAT_YUV);
609         mode |= MDP5_PIPE_OP_MODE_CSC_1_EN;
610         mdp5_write(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe), mode);
611
612         matrix = csc->matrix;
613         mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_0(pipe),
614                         MDP5_PIPE_CSC_1_MATRIX_COEFF_0_COEFF_11(matrix[0]) |
615                         MDP5_PIPE_CSC_1_MATRIX_COEFF_0_COEFF_12(matrix[1]));
616         mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_1(pipe),
617                         MDP5_PIPE_CSC_1_MATRIX_COEFF_1_COEFF_13(matrix[2]) |
618                         MDP5_PIPE_CSC_1_MATRIX_COEFF_1_COEFF_21(matrix[3]));
619         mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_2(pipe),
620                         MDP5_PIPE_CSC_1_MATRIX_COEFF_2_COEFF_22(matrix[4]) |
621                         MDP5_PIPE_CSC_1_MATRIX_COEFF_2_COEFF_23(matrix[5]));
622         mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_3(pipe),
623                         MDP5_PIPE_CSC_1_MATRIX_COEFF_3_COEFF_31(matrix[6]) |
624                         MDP5_PIPE_CSC_1_MATRIX_COEFF_3_COEFF_32(matrix[7]));
625         mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_4(pipe),
626                         MDP5_PIPE_CSC_1_MATRIX_COEFF_4_COEFF_33(matrix[8]));
627
628         for (i = 0; i < ARRAY_SIZE(csc->pre_bias); i++) {
629                 uint32_t *pre_clamp = csc->pre_clamp;
630                 uint32_t *post_clamp = csc->post_clamp;
631
632                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_PRE_CLAMP(pipe, i),
633                         MDP5_PIPE_CSC_1_PRE_CLAMP_REG_HIGH(pre_clamp[2*i+1]) |
634                         MDP5_PIPE_CSC_1_PRE_CLAMP_REG_LOW(pre_clamp[2*i]));
635
636                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_POST_CLAMP(pipe, i),
637                         MDP5_PIPE_CSC_1_POST_CLAMP_REG_HIGH(post_clamp[2*i+1]) |
638                         MDP5_PIPE_CSC_1_POST_CLAMP_REG_LOW(post_clamp[2*i]));
639
640                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_PRE_BIAS(pipe, i),
641                         MDP5_PIPE_CSC_1_PRE_BIAS_REG_VALUE(csc->pre_bias[i]));
642
643                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_POST_BIAS(pipe, i),
644                         MDP5_PIPE_CSC_1_POST_BIAS_REG_VALUE(csc->post_bias[i]));
645         }
646 }
647
648 #define PHASE_STEP_SHIFT        21
649 #define DOWN_SCALE_RATIO_MAX    32      /* 2^(26-21) */
650
651 static int calc_phase_step(uint32_t src, uint32_t dst, uint32_t *out_phase)
652 {
653         uint32_t unit;
654
655         if (src == 0 || dst == 0)
656                 return -EINVAL;
657
658         /*
659          * PHASE_STEP_X/Y is coded on 26 bits (25:0),
660          * where 2^21 represents the unity "1" in fixed-point hardware design.
661          * This leaves 5 bits for the integer part (downscale case):
662          *      -> maximum downscale ratio = 0b1_1111 = 31
663          */
664         if (src > (dst * DOWN_SCALE_RATIO_MAX))
665                 return -EOVERFLOW;
666
667         unit = 1 << PHASE_STEP_SHIFT;
668         *out_phase = mult_frac(unit, src, dst);
669
670         return 0;
671 }
672
673 static int calc_scalex_steps(struct drm_plane *plane,
674                 uint32_t pixel_format, uint32_t src, uint32_t dest,
675                 uint32_t phasex_steps[COMP_MAX])
676 {
677         struct mdp5_kms *mdp5_kms = get_kms(plane);
678         struct device *dev = mdp5_kms->dev->dev;
679         uint32_t phasex_step;
680         unsigned int hsub;
681         int ret;
682
683         ret = calc_phase_step(src, dest, &phasex_step);
684         if (ret) {
685                 dev_err(dev, "X scaling (%d->%d) failed: %d\n", src, dest, ret);
686                 return ret;
687         }
688
689         hsub = drm_format_horz_chroma_subsampling(pixel_format);
690
691         phasex_steps[COMP_0]   = phasex_step;
692         phasex_steps[COMP_3]   = phasex_step;
693         phasex_steps[COMP_1_2] = phasex_step / hsub;
694
695         return 0;
696 }
697
698 static int calc_scaley_steps(struct drm_plane *plane,
699                 uint32_t pixel_format, uint32_t src, uint32_t dest,
700                 uint32_t phasey_steps[COMP_MAX])
701 {
702         struct mdp5_kms *mdp5_kms = get_kms(plane);
703         struct device *dev = mdp5_kms->dev->dev;
704         uint32_t phasey_step;
705         unsigned int vsub;
706         int ret;
707
708         ret = calc_phase_step(src, dest, &phasey_step);
709         if (ret) {
710                 dev_err(dev, "Y scaling (%d->%d) failed: %d\n", src, dest, ret);
711                 return ret;
712         }
713
714         vsub = drm_format_vert_chroma_subsampling(pixel_format);
715
716         phasey_steps[COMP_0]   = phasey_step;
717         phasey_steps[COMP_3]   = phasey_step;
718         phasey_steps[COMP_1_2] = phasey_step / vsub;
719
720         return 0;
721 }
722
723 static uint32_t get_scale_config(const struct mdp_format *format,
724                 uint32_t src, uint32_t dst, bool horz)
725 {
726         bool scaling = format->is_yuv ? true : (src != dst);
727         uint32_t sub, pix_fmt = format->base.pixel_format;
728         uint32_t ya_filter, uv_filter;
729         bool yuv = format->is_yuv;
730
731         if (!scaling)
732                 return 0;
733
734         if (yuv) {
735                 sub = horz ? drm_format_horz_chroma_subsampling(pix_fmt) :
736                              drm_format_vert_chroma_subsampling(pix_fmt);
737                 uv_filter = ((src / sub) <= dst) ?
738                                    SCALE_FILTER_BIL : SCALE_FILTER_PCMN;
739         }
740         ya_filter = (src <= dst) ? SCALE_FILTER_BIL : SCALE_FILTER_PCMN;
741
742         if (horz)
743                 return  MDP5_PIPE_SCALE_CONFIG_SCALEX_EN |
744                         MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_0(ya_filter) |
745                         MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_3(ya_filter) |
746                         COND(yuv, MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_1_2(uv_filter));
747         else
748                 return  MDP5_PIPE_SCALE_CONFIG_SCALEY_EN |
749                         MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_0(ya_filter) |
750                         MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_3(ya_filter) |
751                         COND(yuv, MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_1_2(uv_filter));
752 }
753
754 static void calc_pixel_ext(const struct mdp_format *format,
755                 uint32_t src, uint32_t dst, uint32_t phase_step[2],
756                 int pix_ext_edge1[COMP_MAX], int pix_ext_edge2[COMP_MAX],
757                 bool horz)
758 {
759         bool scaling = format->is_yuv ? true : (src != dst);
760         int i;
761
762         /*
763          * Note:
764          * We assume here that:
765          *     1. PCMN filter is used for downscale
766          *     2. bilinear filter is used for upscale
767          *     3. we are in a single pipe configuration
768          */
769
770         for (i = 0; i < COMP_MAX; i++) {
771                 pix_ext_edge1[i] = 0;
772                 pix_ext_edge2[i] = scaling ? 1 : 0;
773         }
774 }
775
776 static void mdp5_write_pixel_ext(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe,
777         const struct mdp_format *format,
778         uint32_t src_w, int pe_left[COMP_MAX], int pe_right[COMP_MAX],
779         uint32_t src_h, int pe_top[COMP_MAX], int pe_bottom[COMP_MAX])
780 {
781         uint32_t pix_fmt = format->base.pixel_format;
782         uint32_t lr, tb, req;
783         int i;
784
785         for (i = 0; i < COMP_MAX; i++) {
786                 uint32_t roi_w = src_w;
787                 uint32_t roi_h = src_h;
788
789                 if (format->is_yuv && i == COMP_1_2) {
790                         roi_w /= drm_format_horz_chroma_subsampling(pix_fmt);
791                         roi_h /= drm_format_vert_chroma_subsampling(pix_fmt);
792                 }
793
794                 lr  = (pe_left[i] >= 0) ?
795                         MDP5_PIPE_SW_PIX_EXT_LR_LEFT_RPT(pe_left[i]) :
796                         MDP5_PIPE_SW_PIX_EXT_LR_LEFT_OVF(pe_left[i]);
797
798                 lr |= (pe_right[i] >= 0) ?
799                         MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_RPT(pe_right[i]) :
800                         MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_OVF(pe_right[i]);
801
802                 tb  = (pe_top[i] >= 0) ?
803                         MDP5_PIPE_SW_PIX_EXT_TB_TOP_RPT(pe_top[i]) :
804                         MDP5_PIPE_SW_PIX_EXT_TB_TOP_OVF(pe_top[i]);
805
806                 tb |= (pe_bottom[i] >= 0) ?
807                         MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_RPT(pe_bottom[i]) :
808                         MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_OVF(pe_bottom[i]);
809
810                 req  = MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_LEFT_RIGHT(roi_w +
811                                 pe_left[i] + pe_right[i]);
812
813                 req |= MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_TOP_BOTTOM(roi_h +
814                                 pe_top[i] + pe_bottom[i]);
815
816                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_LR(pipe, i), lr);
817                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_TB(pipe, i), tb);
818                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS(pipe, i), req);
819
820                 DBG("comp-%d (L/R): rpt=%d/%d, ovf=%d/%d, req=%d", i,
821                         FIELD(lr,  MDP5_PIPE_SW_PIX_EXT_LR_LEFT_RPT),
822                         FIELD(lr,  MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_RPT),
823                         FIELD(lr,  MDP5_PIPE_SW_PIX_EXT_LR_LEFT_OVF),
824                         FIELD(lr,  MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_OVF),
825                         FIELD(req, MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_LEFT_RIGHT));
826
827                 DBG("comp-%d (T/B): rpt=%d/%d, ovf=%d/%d, req=%d", i,
828                         FIELD(tb,  MDP5_PIPE_SW_PIX_EXT_TB_TOP_RPT),
829                         FIELD(tb,  MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_RPT),
830                         FIELD(tb,  MDP5_PIPE_SW_PIX_EXT_TB_TOP_OVF),
831                         FIELD(tb,  MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_OVF),
832                         FIELD(req, MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_TOP_BOTTOM));
833         }
834 }
835
836 struct pixel_ext {
837         int left[COMP_MAX];
838         int right[COMP_MAX];
839         int top[COMP_MAX];
840         int bottom[COMP_MAX];
841 };
842
843 struct phase_step {
844         u32 x[COMP_MAX];
845         u32 y[COMP_MAX];
846 };
847
848 static void mdp5_hwpipe_mode_set(struct mdp5_kms *mdp5_kms,
849                                  struct mdp5_hw_pipe *hwpipe,
850                                  struct drm_framebuffer *fb,
851                                  struct phase_step *step,
852                                  struct pixel_ext *pe,
853                                  u32 scale_config, u32 hdecm, u32 vdecm,
854                                  bool hflip, bool vflip,
855                                  int crtc_x, int crtc_y,
856                                  unsigned int crtc_w, unsigned int crtc_h,
857                                  u32 src_img_w, u32 src_img_h,
858                                  u32 src_x, u32 src_y,
859                                  u32 src_w, u32 src_h)
860 {
861         enum mdp5_pipe pipe = hwpipe->pipe;
862         bool has_pe = hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT;
863         const struct mdp_format *format =
864                         to_mdp_format(msm_framebuffer_format(fb));
865
866         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_IMG_SIZE(pipe),
867                         MDP5_PIPE_SRC_IMG_SIZE_WIDTH(src_img_w) |
868                         MDP5_PIPE_SRC_IMG_SIZE_HEIGHT(src_img_h));
869
870         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_SIZE(pipe),
871                         MDP5_PIPE_SRC_SIZE_WIDTH(src_w) |
872                         MDP5_PIPE_SRC_SIZE_HEIGHT(src_h));
873
874         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_XY(pipe),
875                         MDP5_PIPE_SRC_XY_X(src_x) |
876                         MDP5_PIPE_SRC_XY_Y(src_y));
877
878         mdp5_write(mdp5_kms, REG_MDP5_PIPE_OUT_SIZE(pipe),
879                         MDP5_PIPE_OUT_SIZE_WIDTH(crtc_w) |
880                         MDP5_PIPE_OUT_SIZE_HEIGHT(crtc_h));
881
882         mdp5_write(mdp5_kms, REG_MDP5_PIPE_OUT_XY(pipe),
883                         MDP5_PIPE_OUT_XY_X(crtc_x) |
884                         MDP5_PIPE_OUT_XY_Y(crtc_y));
885
886         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_FORMAT(pipe),
887                         MDP5_PIPE_SRC_FORMAT_A_BPC(format->bpc_a) |
888                         MDP5_PIPE_SRC_FORMAT_R_BPC(format->bpc_r) |
889                         MDP5_PIPE_SRC_FORMAT_G_BPC(format->bpc_g) |
890                         MDP5_PIPE_SRC_FORMAT_B_BPC(format->bpc_b) |
891                         COND(format->alpha_enable, MDP5_PIPE_SRC_FORMAT_ALPHA_ENABLE) |
892                         MDP5_PIPE_SRC_FORMAT_CPP(format->cpp - 1) |
893                         MDP5_PIPE_SRC_FORMAT_UNPACK_COUNT(format->unpack_count - 1) |
894                         COND(format->unpack_tight, MDP5_PIPE_SRC_FORMAT_UNPACK_TIGHT) |
895                         MDP5_PIPE_SRC_FORMAT_FETCH_TYPE(format->fetch_type) |
896                         MDP5_PIPE_SRC_FORMAT_CHROMA_SAMP(format->chroma_sample));
897
898         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_UNPACK(pipe),
899                         MDP5_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) |
900                         MDP5_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) |
901                         MDP5_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) |
902                         MDP5_PIPE_SRC_UNPACK_ELEM3(format->unpack[3]));
903
904         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_OP_MODE(pipe),
905                         (hflip ? MDP5_PIPE_SRC_OP_MODE_FLIP_LR : 0) |
906                         (vflip ? MDP5_PIPE_SRC_OP_MODE_FLIP_UD : 0) |
907                         COND(has_pe, MDP5_PIPE_SRC_OP_MODE_SW_PIX_EXT_OVERRIDE) |
908                         MDP5_PIPE_SRC_OP_MODE_BWC(BWC_LOSSLESS));
909
910         /* not using secure mode: */
911         mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_ADDR_SW_STATUS(pipe), 0);
912
913         if (hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT)
914                 mdp5_write_pixel_ext(mdp5_kms, pipe, format,
915                                 src_w, pe->left, pe->right,
916                                 src_h, pe->top, pe->bottom);
917
918         if (hwpipe->caps & MDP_PIPE_CAP_SCALE) {
919                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_PHASE_STEP_X(pipe),
920                                 step->x[COMP_0]);
921                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_PHASE_STEP_Y(pipe),
922                                 step->y[COMP_0]);
923                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CR_PHASE_STEP_X(pipe),
924                                 step->x[COMP_1_2]);
925                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CR_PHASE_STEP_Y(pipe),
926                                 step->y[COMP_1_2]);
927                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_DECIMATION(pipe),
928                                 MDP5_PIPE_DECIMATION_VERT(vdecm) |
929                                 MDP5_PIPE_DECIMATION_HORZ(hdecm));
930                 mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CONFIG(pipe),
931                            scale_config);
932         }
933
934         if (hwpipe->caps & MDP_PIPE_CAP_CSC) {
935                 if (MDP_FORMAT_IS_YUV(format))
936                         csc_enable(mdp5_kms, pipe,
937                                         mdp_get_default_csc_cfg(CSC_YUV2RGB));
938                 else
939                         csc_disable(mdp5_kms, pipe);
940         }
941
942         set_scanout_locked(mdp5_kms, pipe, fb);
943 }
944
945 static int mdp5_plane_mode_set(struct drm_plane *plane,
946                 struct drm_crtc *crtc, struct drm_framebuffer *fb,
947                 struct drm_rect *src, struct drm_rect *dest)
948 {
949         struct drm_plane_state *pstate = plane->state;
950         struct mdp5_hw_pipe *hwpipe = to_mdp5_plane_state(pstate)->hwpipe;
951         struct mdp5_kms *mdp5_kms = get_kms(plane);
952         enum mdp5_pipe pipe = hwpipe->pipe;
953         struct mdp5_hw_pipe *right_hwpipe;
954         const struct mdp_format *format;
955         uint32_t nplanes, config = 0;
956         struct phase_step step = { { 0 } };
957         struct pixel_ext pe = { { 0 } };
958         uint32_t hdecm = 0, vdecm = 0;
959         uint32_t pix_format;
960         unsigned int rotation;
961         bool vflip, hflip;
962         int crtc_x, crtc_y;
963         unsigned int crtc_w, crtc_h;
964         uint32_t src_x, src_y;
965         uint32_t src_w, src_h;
966         uint32_t src_img_w, src_img_h;
967         uint32_t src_x_r;
968         int crtc_x_r;
969         int ret;
970
971         nplanes = fb->format->num_planes;
972
973         /* bad formats should already be rejected: */
974         if (WARN_ON(nplanes > pipe2nclients(pipe)))
975                 return -EINVAL;
976
977         format = to_mdp_format(msm_framebuffer_format(fb));
978         pix_format = format->base.pixel_format;
979
980         src_x = src->x1;
981         src_y = src->y1;
982         src_w = drm_rect_width(src);
983         src_h = drm_rect_height(src);
984
985         crtc_x = dest->x1;
986         crtc_y = dest->y1;
987         crtc_w = drm_rect_width(dest);
988         crtc_h = drm_rect_height(dest);
989
990         /* src values are in Q16 fixed point, convert to integer: */
991         src_x = src_x >> 16;
992         src_y = src_y >> 16;
993         src_w = src_w >> 16;
994         src_h = src_h >> 16;
995
996         src_img_w = min(fb->width, src_w);
997         src_img_h = min(fb->height, src_h);
998
999         DBG("%s: FB[%u] %u,%u,%u,%u -> CRTC[%u] %d,%d,%u,%u", plane->name,
1000                         fb->base.id, src_x, src_y, src_w, src_h,
1001                         crtc->base.id, crtc_x, crtc_y, crtc_w, crtc_h);
1002
1003         right_hwpipe = to_mdp5_plane_state(pstate)->r_hwpipe;
1004         if (right_hwpipe) {
1005                 /*
1006                  * if the plane comprises of 2 hw pipes, assume that the width
1007                  * is split equally across them. The only parameters that varies
1008                  * between the 2 pipes are src_x and crtc_x
1009                  */
1010                 crtc_w /= 2;
1011                 src_w /= 2;
1012                 src_img_w /= 2;
1013
1014                 crtc_x_r = crtc_x + crtc_w;
1015                 src_x_r = src_x + src_w;
1016         }
1017
1018         ret = calc_scalex_steps(plane, pix_format, src_w, crtc_w, step.x);
1019         if (ret)
1020                 return ret;
1021
1022         ret = calc_scaley_steps(plane, pix_format, src_h, crtc_h, step.y);
1023         if (ret)
1024                 return ret;
1025
1026         if (hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT) {
1027                 calc_pixel_ext(format, src_w, crtc_w, step.x,
1028                                pe.left, pe.right, true);
1029                 calc_pixel_ext(format, src_h, crtc_h, step.y,
1030                                pe.top, pe.bottom, false);
1031         }
1032
1033         /* TODO calc hdecm, vdecm */
1034
1035         /* SCALE is used to both scale and up-sample chroma components */
1036         config |= get_scale_config(format, src_w, crtc_w, true);
1037         config |= get_scale_config(format, src_h, crtc_h, false);
1038         DBG("scale config = %x", config);
1039
1040         rotation = drm_rotation_simplify(pstate->rotation,
1041                                          DRM_MODE_ROTATE_0 |
1042                                          DRM_MODE_REFLECT_X |
1043                                          DRM_MODE_REFLECT_Y);
1044         hflip = !!(rotation & DRM_MODE_REFLECT_X);
1045         vflip = !!(rotation & DRM_MODE_REFLECT_Y);
1046
1047         mdp5_hwpipe_mode_set(mdp5_kms, hwpipe, fb, &step, &pe,
1048                              config, hdecm, vdecm, hflip, vflip,
1049                              crtc_x, crtc_y, crtc_w, crtc_h,
1050                              src_img_w, src_img_h,
1051                              src_x, src_y, src_w, src_h);
1052         if (right_hwpipe)
1053                 mdp5_hwpipe_mode_set(mdp5_kms, right_hwpipe, fb, &step, &pe,
1054                                      config, hdecm, vdecm, hflip, vflip,
1055                                      crtc_x_r, crtc_y, crtc_w, crtc_h,
1056                                      src_img_w, src_img_h,
1057                                      src_x_r, src_y, src_w, src_h);
1058
1059         plane->fb = fb;
1060
1061         return ret;
1062 }
1063
1064 /*
1065  * Use this func and the one below only after the atomic state has been
1066  * successfully swapped
1067  */
1068 enum mdp5_pipe mdp5_plane_pipe(struct drm_plane *plane)
1069 {
1070         struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
1071
1072         if (WARN_ON(!pstate->hwpipe))
1073                 return SSPP_NONE;
1074
1075         return pstate->hwpipe->pipe;
1076 }
1077
1078 enum mdp5_pipe mdp5_plane_right_pipe(struct drm_plane *plane)
1079 {
1080         struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
1081
1082         if (!pstate->r_hwpipe)
1083                 return SSPP_NONE;
1084
1085         return pstate->r_hwpipe->pipe;
1086 }
1087
1088 uint32_t mdp5_plane_get_flush(struct drm_plane *plane)
1089 {
1090         struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
1091         u32 mask;
1092
1093         if (WARN_ON(!pstate->hwpipe))
1094                 return 0;
1095
1096         mask = pstate->hwpipe->flush_mask;
1097
1098         if (pstate->r_hwpipe)
1099                 mask |= pstate->r_hwpipe->flush_mask;
1100
1101         return mask;
1102 }
1103
1104 /* initialize plane */
1105 struct drm_plane *mdp5_plane_init(struct drm_device *dev,
1106                                   enum drm_plane_type type)
1107 {
1108         struct drm_plane *plane = NULL;
1109         struct mdp5_plane *mdp5_plane;
1110         int ret;
1111
1112         mdp5_plane = kzalloc(sizeof(*mdp5_plane), GFP_KERNEL);
1113         if (!mdp5_plane) {
1114                 ret = -ENOMEM;
1115                 goto fail;
1116         }
1117
1118         plane = &mdp5_plane->base;
1119
1120         mdp5_plane->nformats = mdp_get_formats(mdp5_plane->formats,
1121                 ARRAY_SIZE(mdp5_plane->formats), false);
1122
1123         ret = drm_universal_plane_init(dev, plane, 0xff, &mdp5_plane_funcs,
1124                         mdp5_plane->formats, mdp5_plane->nformats,
1125                         NULL, type, NULL);
1126         if (ret)
1127                 goto fail;
1128
1129         drm_plane_helper_add(plane, &mdp5_plane_helper_funcs);
1130
1131         mdp5_plane_install_properties(plane, &plane->base);
1132
1133         return plane;
1134
1135 fail:
1136         if (plane)
1137                 mdp5_plane_destroy(plane);
1138
1139         return ERR_PTR(ret);
1140 }