1caab277bSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
214be3200SRob Clark /*
314be3200SRob Clark * Copyright (C) 2014-2015 The Linux Foundation. All rights reserved.
414be3200SRob Clark * Copyright (C) 2013 Red Hat
514be3200SRob Clark * Author: Rob Clark <robdclark@gmail.com>
614be3200SRob Clark */
714be3200SRob Clark
85ddb0bd4SMaxime Ripard #include <drm/drm_atomic.h>
990bb087fSVille Syrjälä #include <drm/drm_blend.h>
10648fdc3fSBrian Masney #include <drm/drm_damage_helper.h>
11feea39a8SSam Ravnborg #include <drm/drm_fourcc.h>
12720cf96dSVille Syrjälä #include <drm/drm_framebuffer.h>
139e4dde28SRob Clark #include <drm/drm_gem_atomic_helper.h>
1414be3200SRob Clark #include <drm/drm_print.h>
15feea39a8SSam Ravnborg
1614be3200SRob Clark #include "mdp5_kms.h"
1714be3200SRob Clark
1814be3200SRob Clark struct mdp5_plane {
1914be3200SRob Clark struct drm_plane base;
2014be3200SRob Clark
2114be3200SRob Clark uint32_t nformats;
2214be3200SRob Clark uint32_t formats[32];
2314be3200SRob Clark };
2414be3200SRob Clark #define to_mdp5_plane(x) container_of(x, struct mdp5_plane, base)
2514be3200SRob Clark
2614be3200SRob Clark static int mdp5_plane_mode_set(struct drm_plane *plane,
2714be3200SRob Clark struct drm_crtc *crtc, struct drm_framebuffer *fb,
2814be3200SRob Clark struct drm_rect *src, struct drm_rect *dest);
2914be3200SRob Clark
get_kms(struct drm_plane * plane)3014be3200SRob Clark static struct mdp5_kms *get_kms(struct drm_plane *plane)
3114be3200SRob Clark {
3214be3200SRob Clark struct msm_drm_private *priv = plane->dev->dev_private;
3314be3200SRob Clark return to_mdp5_kms(to_mdp_kms(priv->kms));
3414be3200SRob Clark }
3514be3200SRob Clark
plane_enabled(struct drm_plane_state * state)3614be3200SRob Clark static bool plane_enabled(struct drm_plane_state *state)
3714be3200SRob Clark {
3814be3200SRob Clark return state->visible;
3914be3200SRob Clark }
4014be3200SRob Clark
mdp5_plane_destroy(struct drm_plane * plane)4114be3200SRob Clark static void mdp5_plane_destroy(struct drm_plane *plane)
4214be3200SRob Clark {
4314be3200SRob Clark struct mdp5_plane *mdp5_plane = to_mdp5_plane(plane);
4414be3200SRob Clark
4514be3200SRob Clark drm_plane_cleanup(plane);
4614be3200SRob Clark
4714be3200SRob Clark kfree(mdp5_plane);
4814be3200SRob Clark }
4914be3200SRob Clark
507d36db0bSDmitry Baryshkov /* helper to install properties which are common to planes and crtcs */
mdp5_plane_install_properties(struct drm_plane * plane,struct drm_mode_object * obj)517d36db0bSDmitry Baryshkov static void mdp5_plane_install_properties(struct drm_plane *plane,
527d36db0bSDmitry Baryshkov struct drm_mode_object *obj)
5314be3200SRob Clark {
54c228cb34SMaxime Ripard unsigned int zpos;
55c228cb34SMaxime Ripard
5614be3200SRob Clark drm_plane_create_rotation_property(plane,
5714be3200SRob Clark DRM_MODE_ROTATE_0,
5814be3200SRob Clark DRM_MODE_ROTATE_0 |
5914be3200SRob Clark DRM_MODE_ROTATE_180 |
6014be3200SRob Clark DRM_MODE_REFLECT_X |
6114be3200SRob Clark DRM_MODE_REFLECT_Y);
62ed6b97e5SDmitry Baryshkov drm_plane_create_alpha_property(plane);
63ed6b97e5SDmitry Baryshkov drm_plane_create_blend_mode_property(plane,
64ed6b97e5SDmitry Baryshkov BIT(DRM_MODE_BLEND_PIXEL_NONE) |
65ed6b97e5SDmitry Baryshkov BIT(DRM_MODE_BLEND_PREMULTI) |
66ed6b97e5SDmitry Baryshkov BIT(DRM_MODE_BLEND_COVERAGE));
67c228cb34SMaxime Ripard
68c228cb34SMaxime Ripard if (plane->type == DRM_PLANE_TYPE_PRIMARY)
69c228cb34SMaxime Ripard zpos = STAGE_BASE;
70c228cb34SMaxime Ripard else
71c228cb34SMaxime Ripard zpos = STAGE0 + drm_plane_index(plane);
72c228cb34SMaxime Ripard drm_plane_create_zpos_property(plane, zpos, 1, 255);
7314be3200SRob Clark }
7414be3200SRob Clark
7514be3200SRob Clark static void
mdp5_plane_atomic_print_state(struct drm_printer * p,const struct drm_plane_state * state)7614be3200SRob Clark mdp5_plane_atomic_print_state(struct drm_printer *p,
7714be3200SRob Clark const struct drm_plane_state *state)
7814be3200SRob Clark {
7914be3200SRob Clark struct mdp5_plane_state *pstate = to_mdp5_plane_state(state);
8014be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(state->plane);
8114be3200SRob Clark
8214be3200SRob Clark drm_printf(p, "\thwpipe=%s\n", pstate->hwpipe ?
8314be3200SRob Clark pstate->hwpipe->name : "(null)");
8414be3200SRob Clark if (mdp5_kms->caps & MDP_CAP_SRC_SPLIT)
8514be3200SRob Clark drm_printf(p, "\tright-hwpipe=%s\n",
8614be3200SRob Clark pstate->r_hwpipe ? pstate->r_hwpipe->name :
8714be3200SRob Clark "(null)");
88a4fdc260SDmitry Baryshkov drm_printf(p, "\tblend_mode=%u\n", pstate->base.pixel_blend_mode);
897d36db0bSDmitry Baryshkov drm_printf(p, "\tzpos=%u\n", pstate->base.zpos);
907d36db0bSDmitry Baryshkov drm_printf(p, "\tnormalized_zpos=%u\n", pstate->base.normalized_zpos);
9121ab7e8dSDmitry Baryshkov drm_printf(p, "\talpha=%u\n", pstate->base.alpha);
9214be3200SRob Clark drm_printf(p, "\tstage=%s\n", stage2name(pstate->stage));
9314be3200SRob Clark }
9414be3200SRob Clark
mdp5_plane_reset(struct drm_plane * plane)9514be3200SRob Clark static void mdp5_plane_reset(struct drm_plane *plane)
9614be3200SRob Clark {
9714be3200SRob Clark struct mdp5_plane_state *mdp5_state;
9814be3200SRob Clark
999074b67bSDmitry Baryshkov if (plane->state)
1009074b67bSDmitry Baryshkov __drm_atomic_helper_plane_destroy_state(plane->state);
10114be3200SRob Clark
10214be3200SRob Clark kfree(to_mdp5_plane_state(plane->state));
103047ae665SXiaoke Wang plane->state = NULL;
10414be3200SRob Clark mdp5_state = kzalloc(sizeof(*mdp5_state), GFP_KERNEL);
105047ae665SXiaoke Wang if (!mdp5_state)
106047ae665SXiaoke Wang return;
1079074b67bSDmitry Baryshkov __drm_atomic_helper_plane_reset(plane, &mdp5_state->base);
10814be3200SRob Clark }
10914be3200SRob Clark
11014be3200SRob Clark static struct drm_plane_state *
mdp5_plane_duplicate_state(struct drm_plane * plane)11114be3200SRob Clark mdp5_plane_duplicate_state(struct drm_plane *plane)
11214be3200SRob Clark {
11314be3200SRob Clark struct mdp5_plane_state *mdp5_state;
11414be3200SRob Clark
11514be3200SRob Clark if (WARN_ON(!plane->state))
11614be3200SRob Clark return NULL;
11714be3200SRob Clark
11814be3200SRob Clark mdp5_state = kmemdup(to_mdp5_plane_state(plane->state),
11914be3200SRob Clark sizeof(*mdp5_state), GFP_KERNEL);
12014be3200SRob Clark if (!mdp5_state)
12114be3200SRob Clark return NULL;
12214be3200SRob Clark
12314be3200SRob Clark __drm_atomic_helper_plane_duplicate_state(plane, &mdp5_state->base);
12414be3200SRob Clark
12514be3200SRob Clark return &mdp5_state->base;
12614be3200SRob Clark }
12714be3200SRob Clark
mdp5_plane_destroy_state(struct drm_plane * plane,struct drm_plane_state * state)12814be3200SRob Clark static void mdp5_plane_destroy_state(struct drm_plane *plane,
12914be3200SRob Clark struct drm_plane_state *state)
13014be3200SRob Clark {
13114be3200SRob Clark struct mdp5_plane_state *pstate = to_mdp5_plane_state(state);
13214be3200SRob Clark
133*fd0ad3b2SDaniel Vetter __drm_atomic_helper_plane_destroy_state(state);
13414be3200SRob Clark
13514be3200SRob Clark kfree(pstate);
13614be3200SRob Clark }
13714be3200SRob Clark
13814be3200SRob Clark static const struct drm_plane_funcs mdp5_plane_funcs = {
13914be3200SRob Clark .update_plane = drm_atomic_helper_update_plane,
14014be3200SRob Clark .disable_plane = drm_atomic_helper_disable_plane,
14114be3200SRob Clark .destroy = mdp5_plane_destroy,
14214be3200SRob Clark .reset = mdp5_plane_reset,
14314be3200SRob Clark .atomic_duplicate_state = mdp5_plane_duplicate_state,
14414be3200SRob Clark .atomic_destroy_state = mdp5_plane_destroy_state,
14514be3200SRob Clark .atomic_print_state = mdp5_plane_atomic_print_state,
14614be3200SRob Clark };
14714be3200SRob Clark
mdp5_plane_prepare_fb(struct drm_plane * plane,struct drm_plane_state * new_state)1489e4dde28SRob Clark static int mdp5_plane_prepare_fb(struct drm_plane *plane,
1499e4dde28SRob Clark struct drm_plane_state *new_state)
1509e4dde28SRob Clark {
1519e4dde28SRob Clark struct msm_drm_private *priv = plane->dev->dev_private;
1529e4dde28SRob Clark struct msm_kms *kms = priv->kms;
1539e4dde28SRob Clark bool needs_dirtyfb = to_mdp5_plane_state(new_state)->needs_dirtyfb;
1549e4dde28SRob Clark
1559e4dde28SRob Clark if (!new_state->fb)
1569e4dde28SRob Clark return 0;
1579e4dde28SRob Clark
1589e4dde28SRob Clark drm_gem_plane_helper_prepare_fb(plane, new_state);
1599e4dde28SRob Clark
1609e4dde28SRob Clark return msm_framebuffer_prepare(new_state->fb, kms->aspace, needs_dirtyfb);
1619e4dde28SRob Clark }
1629e4dde28SRob Clark
mdp5_plane_cleanup_fb(struct drm_plane * plane,struct drm_plane_state * old_state)16314be3200SRob Clark static void mdp5_plane_cleanup_fb(struct drm_plane *plane,
16414be3200SRob Clark struct drm_plane_state *old_state)
16514be3200SRob Clark {
16614be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(plane);
16714be3200SRob Clark struct msm_kms *kms = &mdp5_kms->base.base;
16814be3200SRob Clark struct drm_framebuffer *fb = old_state->fb;
1699e4dde28SRob Clark bool needed_dirtyfb = to_mdp5_plane_state(old_state)->needs_dirtyfb;
17014be3200SRob Clark
17114be3200SRob Clark if (!fb)
17214be3200SRob Clark return;
17314be3200SRob Clark
17414be3200SRob Clark DBG("%s: cleanup: FB[%u]", plane->name, fb->base.id);
1759e4dde28SRob Clark msm_framebuffer_cleanup(fb, kms->aspace, needed_dirtyfb);
17614be3200SRob Clark }
17714be3200SRob Clark
mdp5_plane_atomic_check_with_state(struct drm_crtc_state * crtc_state,struct drm_plane_state * state)17814be3200SRob Clark static int mdp5_plane_atomic_check_with_state(struct drm_crtc_state *crtc_state,
17914be3200SRob Clark struct drm_plane_state *state)
18014be3200SRob Clark {
18114be3200SRob Clark struct mdp5_plane_state *mdp5_state = to_mdp5_plane_state(state);
18214be3200SRob Clark struct drm_plane *plane = state->plane;
18314be3200SRob Clark struct drm_plane_state *old_state = plane->state;
18414be3200SRob Clark struct mdp5_cfg *config = mdp5_cfg_get_config(get_kms(plane)->cfg);
18514be3200SRob Clark bool new_hwpipe = false;
18614be3200SRob Clark bool need_right_hwpipe = false;
18714be3200SRob Clark uint32_t max_width, max_height;
18814be3200SRob Clark bool out_of_bounds = false;
18914be3200SRob Clark uint32_t caps = 0;
19014be3200SRob Clark int min_scale, max_scale;
19114be3200SRob Clark int ret;
19214be3200SRob Clark
19314be3200SRob Clark DBG("%s: check (%d -> %d)", plane->name,
19414be3200SRob Clark plane_enabled(old_state), plane_enabled(state));
19514be3200SRob Clark
19614be3200SRob Clark max_width = config->hw->lm.max_width << 16;
19714be3200SRob Clark max_height = config->hw->lm.max_height << 16;
19814be3200SRob Clark
19914be3200SRob Clark /* Make sure source dimensions are within bounds. */
20014be3200SRob Clark if (state->src_h > max_height)
20114be3200SRob Clark out_of_bounds = true;
20214be3200SRob Clark
20314be3200SRob Clark if (state->src_w > max_width) {
20414be3200SRob Clark /* If source split is supported, we can go up to 2x
20514be3200SRob Clark * the max LM width, but we'd need to stage another
20614be3200SRob Clark * hwpipe to the right LM. So, the drm_plane would
20714be3200SRob Clark * consist of 2 hwpipes.
20814be3200SRob Clark */
20914be3200SRob Clark if (config->hw->mdp.caps & MDP_CAP_SRC_SPLIT &&
21014be3200SRob Clark (state->src_w <= 2 * max_width))
21114be3200SRob Clark need_right_hwpipe = true;
21214be3200SRob Clark else
21314be3200SRob Clark out_of_bounds = true;
21414be3200SRob Clark }
21514be3200SRob Clark
21614be3200SRob Clark if (out_of_bounds) {
21714be3200SRob Clark struct drm_rect src = drm_plane_state_src(state);
21814be3200SRob Clark DBG("Invalid source size "DRM_RECT_FP_FMT,
21914be3200SRob Clark DRM_RECT_FP_ARG(&src));
22014be3200SRob Clark return -ERANGE;
22114be3200SRob Clark }
22214be3200SRob Clark
22314be3200SRob Clark min_scale = FRAC_16_16(1, 8);
22414be3200SRob Clark max_scale = FRAC_16_16(8, 1);
22514be3200SRob Clark
226b65bd403SDave Airlie ret = drm_atomic_helper_check_plane_state(state, crtc_state,
22714be3200SRob Clark min_scale, max_scale,
22814be3200SRob Clark true, true);
22914be3200SRob Clark if (ret)
23014be3200SRob Clark return ret;
23114be3200SRob Clark
23214be3200SRob Clark if (plane_enabled(state)) {
23314be3200SRob Clark unsigned int rotation;
23414be3200SRob Clark const struct mdp_format *format;
23514be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(plane);
23614be3200SRob Clark uint32_t blkcfg = 0;
23714be3200SRob Clark
23814be3200SRob Clark format = to_mdp_format(msm_framebuffer_format(state->fb));
23914be3200SRob Clark if (MDP_FORMAT_IS_YUV(format))
24014be3200SRob Clark caps |= MDP_PIPE_CAP_SCALE | MDP_PIPE_CAP_CSC;
24114be3200SRob Clark
24214be3200SRob Clark if (((state->src_w >> 16) != state->crtc_w) ||
24314be3200SRob Clark ((state->src_h >> 16) != state->crtc_h))
24414be3200SRob Clark caps |= MDP_PIPE_CAP_SCALE;
24514be3200SRob Clark
24614be3200SRob Clark rotation = drm_rotation_simplify(state->rotation,
24714be3200SRob Clark DRM_MODE_ROTATE_0 |
24814be3200SRob Clark DRM_MODE_REFLECT_X |
24914be3200SRob Clark DRM_MODE_REFLECT_Y);
25014be3200SRob Clark
25114be3200SRob Clark if (rotation & DRM_MODE_REFLECT_X)
25214be3200SRob Clark caps |= MDP_PIPE_CAP_HFLIP;
25314be3200SRob Clark
25414be3200SRob Clark if (rotation & DRM_MODE_REFLECT_Y)
25514be3200SRob Clark caps |= MDP_PIPE_CAP_VFLIP;
25614be3200SRob Clark
25714be3200SRob Clark if (plane->type == DRM_PLANE_TYPE_CURSOR)
25814be3200SRob Clark caps |= MDP_PIPE_CAP_CURSOR;
25914be3200SRob Clark
26014be3200SRob Clark /* (re)allocate hw pipe if we don't have one or caps-mismatch: */
26114be3200SRob Clark if (!mdp5_state->hwpipe || (caps & ~mdp5_state->hwpipe->caps))
26214be3200SRob Clark new_hwpipe = true;
26314be3200SRob Clark
26414be3200SRob Clark /*
26514be3200SRob Clark * (re)allocte hw pipe if we're either requesting for 2 hw pipes
26614be3200SRob Clark * or we're switching from 2 hw pipes to 1 hw pipe because the
26714be3200SRob Clark * new src_w can be supported by 1 hw pipe itself.
26814be3200SRob Clark */
26914be3200SRob Clark if ((need_right_hwpipe && !mdp5_state->r_hwpipe) ||
27014be3200SRob Clark (!need_right_hwpipe && mdp5_state->r_hwpipe))
27114be3200SRob Clark new_hwpipe = true;
27214be3200SRob Clark
27314be3200SRob Clark if (mdp5_kms->smp) {
27414be3200SRob Clark const struct mdp_format *format =
27514be3200SRob Clark to_mdp_format(msm_framebuffer_format(state->fb));
27614be3200SRob Clark
27714be3200SRob Clark blkcfg = mdp5_smp_calculate(mdp5_kms->smp, format,
27814be3200SRob Clark state->src_w >> 16, false);
27914be3200SRob Clark
28014be3200SRob Clark if (mdp5_state->hwpipe && (mdp5_state->hwpipe->blkcfg != blkcfg))
28114be3200SRob Clark new_hwpipe = true;
28214be3200SRob Clark }
28314be3200SRob Clark
28414be3200SRob Clark /* (re)assign hwpipe if needed, otherwise keep old one: */
28514be3200SRob Clark if (new_hwpipe) {
28614be3200SRob Clark /* TODO maybe we want to re-assign hwpipe sometimes
28714be3200SRob Clark * in cases when we no-longer need some caps to make
28814be3200SRob Clark * it available for other planes?
28914be3200SRob Clark */
29014be3200SRob Clark struct mdp5_hw_pipe *old_hwpipe = mdp5_state->hwpipe;
29114be3200SRob Clark struct mdp5_hw_pipe *old_right_hwpipe =
29214be3200SRob Clark mdp5_state->r_hwpipe;
29314be3200SRob Clark struct mdp5_hw_pipe *new_hwpipe = NULL;
29414be3200SRob Clark struct mdp5_hw_pipe *new_right_hwpipe = NULL;
29514be3200SRob Clark
29614be3200SRob Clark ret = mdp5_pipe_assign(state->state, plane, caps,
29714be3200SRob Clark blkcfg, &new_hwpipe,
29814be3200SRob Clark need_right_hwpipe ?
29914be3200SRob Clark &new_right_hwpipe : NULL);
30014be3200SRob Clark if (ret) {
30114be3200SRob Clark DBG("%s: failed to assign hwpipe(s)!",
30214be3200SRob Clark plane->name);
30314be3200SRob Clark return ret;
30414be3200SRob Clark }
30514be3200SRob Clark
30614be3200SRob Clark mdp5_state->hwpipe = new_hwpipe;
30714be3200SRob Clark if (need_right_hwpipe)
30814be3200SRob Clark mdp5_state->r_hwpipe = new_right_hwpipe;
30914be3200SRob Clark else
31014be3200SRob Clark /*
31114be3200SRob Clark * set it to NULL so that the driver knows we
31214be3200SRob Clark * don't have a right hwpipe when committing a
31314be3200SRob Clark * new state
31414be3200SRob Clark */
31514be3200SRob Clark mdp5_state->r_hwpipe = NULL;
31614be3200SRob Clark
31714be3200SRob Clark
318d59be579SJessica Zhang ret = mdp5_pipe_release(state->state, old_hwpipe);
319d59be579SJessica Zhang if (ret)
320d59be579SJessica Zhang return ret;
321d59be579SJessica Zhang
322d59be579SJessica Zhang ret = mdp5_pipe_release(state->state, old_right_hwpipe);
323d59be579SJessica Zhang if (ret)
324d59be579SJessica Zhang return ret;
325d59be579SJessica Zhang
32614be3200SRob Clark }
32714be3200SRob Clark } else {
328d59be579SJessica Zhang ret = mdp5_pipe_release(state->state, mdp5_state->hwpipe);
329d59be579SJessica Zhang if (ret)
330d59be579SJessica Zhang return ret;
331d59be579SJessica Zhang
332d59be579SJessica Zhang ret = mdp5_pipe_release(state->state, mdp5_state->r_hwpipe);
333d59be579SJessica Zhang if (ret)
334d59be579SJessica Zhang return ret;
335d59be579SJessica Zhang
33614be3200SRob Clark mdp5_state->hwpipe = mdp5_state->r_hwpipe = NULL;
33714be3200SRob Clark }
33814be3200SRob Clark
33914be3200SRob Clark return 0;
34014be3200SRob Clark }
34114be3200SRob Clark
mdp5_plane_atomic_check(struct drm_plane * plane,struct drm_atomic_state * state)34214be3200SRob Clark static int mdp5_plane_atomic_check(struct drm_plane *plane,
3437c11b99aSMaxime Ripard struct drm_atomic_state *state)
34414be3200SRob Clark {
3450b6aaf9dSMaxime Ripard struct drm_plane_state *old_plane_state = drm_atomic_get_old_plane_state(state,
3460b6aaf9dSMaxime Ripard plane);
3477c11b99aSMaxime Ripard struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
3487c11b99aSMaxime Ripard plane);
34914be3200SRob Clark struct drm_crtc *crtc;
35014be3200SRob Clark struct drm_crtc_state *crtc_state;
35114be3200SRob Clark
3520b6aaf9dSMaxime Ripard crtc = new_plane_state->crtc ? new_plane_state->crtc : old_plane_state->crtc;
35314be3200SRob Clark if (!crtc)
35414be3200SRob Clark return 0;
35514be3200SRob Clark
356dec92020SMaxime Ripard crtc_state = drm_atomic_get_existing_crtc_state(state,
357ba5c1649SMaxime Ripard crtc);
35814be3200SRob Clark if (WARN_ON(!crtc_state))
35914be3200SRob Clark return -EINVAL;
36014be3200SRob Clark
361ba5c1649SMaxime Ripard return mdp5_plane_atomic_check_with_state(crtc_state, new_plane_state);
36214be3200SRob Clark }
36314be3200SRob Clark
mdp5_plane_atomic_update(struct drm_plane * plane,struct drm_atomic_state * state)36414be3200SRob Clark static void mdp5_plane_atomic_update(struct drm_plane *plane,
365977697e2SMaxime Ripard struct drm_atomic_state *state)
36614be3200SRob Clark {
36737418bf1SMaxime Ripard struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
36837418bf1SMaxime Ripard plane);
36914be3200SRob Clark
37014be3200SRob Clark DBG("%s: update", plane->name);
37114be3200SRob Clark
37241016fe1SMaxime Ripard if (plane_enabled(new_state)) {
37314be3200SRob Clark int ret;
37414be3200SRob Clark
37514be3200SRob Clark ret = mdp5_plane_mode_set(plane,
37641016fe1SMaxime Ripard new_state->crtc, new_state->fb,
37741016fe1SMaxime Ripard &new_state->src, &new_state->dst);
37814be3200SRob Clark /* atomic_check should have ensured that this doesn't fail */
37914be3200SRob Clark WARN_ON(ret < 0);
38014be3200SRob Clark }
38114be3200SRob Clark }
38214be3200SRob Clark
mdp5_plane_atomic_async_check(struct drm_plane * plane,struct drm_atomic_state * state)38314be3200SRob Clark static int mdp5_plane_atomic_async_check(struct drm_plane *plane,
3845ddb0bd4SMaxime Ripard struct drm_atomic_state *state)
38514be3200SRob Clark {
3865ddb0bd4SMaxime Ripard struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state,
3875ddb0bd4SMaxime Ripard plane);
3885ddb0bd4SMaxime Ripard struct mdp5_plane_state *mdp5_state = to_mdp5_plane_state(new_plane_state);
38914be3200SRob Clark struct drm_crtc_state *crtc_state;
39014be3200SRob Clark int min_scale, max_scale;
39114be3200SRob Clark int ret;
39214be3200SRob Clark
3935ddb0bd4SMaxime Ripard crtc_state = drm_atomic_get_existing_crtc_state(state,
3945ddb0bd4SMaxime Ripard new_plane_state->crtc);
39514be3200SRob Clark if (WARN_ON(!crtc_state))
39614be3200SRob Clark return -EINVAL;
39714be3200SRob Clark
39814be3200SRob Clark if (!crtc_state->active)
39914be3200SRob Clark return -EINVAL;
40014be3200SRob Clark
40114be3200SRob Clark /* don't use fast path if we don't have a hwpipe allocated yet */
40214be3200SRob Clark if (!mdp5_state->hwpipe)
40314be3200SRob Clark return -EINVAL;
40414be3200SRob Clark
40514be3200SRob Clark /* only allow changing of position(crtc x/y or src x/y) in fast path */
4065ddb0bd4SMaxime Ripard if (plane->state->crtc != new_plane_state->crtc ||
4075ddb0bd4SMaxime Ripard plane->state->src_w != new_plane_state->src_w ||
4085ddb0bd4SMaxime Ripard plane->state->src_h != new_plane_state->src_h ||
4095ddb0bd4SMaxime Ripard plane->state->crtc_w != new_plane_state->crtc_w ||
4105ddb0bd4SMaxime Ripard plane->state->crtc_h != new_plane_state->crtc_h ||
41114be3200SRob Clark !plane->state->fb ||
4125ddb0bd4SMaxime Ripard plane->state->fb != new_plane_state->fb)
41314be3200SRob Clark return -EINVAL;
41414be3200SRob Clark
41514be3200SRob Clark min_scale = FRAC_16_16(1, 8);
41614be3200SRob Clark max_scale = FRAC_16_16(8, 1);
41714be3200SRob Clark
4185ddb0bd4SMaxime Ripard ret = drm_atomic_helper_check_plane_state(new_plane_state, crtc_state,
41914be3200SRob Clark min_scale, max_scale,
42014be3200SRob Clark true, true);
42114be3200SRob Clark if (ret)
42214be3200SRob Clark return ret;
42314be3200SRob Clark
42414be3200SRob Clark /*
42514be3200SRob Clark * if the visibility of the plane changes (i.e, if the cursor is
42614be3200SRob Clark * clipped out completely, we can't take the async path because
42714be3200SRob Clark * we need to stage/unstage the plane from the Layer Mixer(s). We
42814be3200SRob Clark * also assign/unassign the hwpipe(s) tied to the plane. We avoid
42914be3200SRob Clark * taking the fast path for both these reasons.
43014be3200SRob Clark */
4315ddb0bd4SMaxime Ripard if (new_plane_state->visible != plane->state->visible)
43214be3200SRob Clark return -EINVAL;
43314be3200SRob Clark
43414be3200SRob Clark return 0;
43514be3200SRob Clark }
43614be3200SRob Clark
mdp5_plane_atomic_async_update(struct drm_plane * plane,struct drm_atomic_state * state)43714be3200SRob Clark static void mdp5_plane_atomic_async_update(struct drm_plane *plane,
4385ddb0bd4SMaxime Ripard struct drm_atomic_state *state)
43914be3200SRob Clark {
4405ddb0bd4SMaxime Ripard struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
4415ddb0bd4SMaxime Ripard plane);
442474d952bSHelen Koike struct drm_framebuffer *old_fb = plane->state->fb;
443474d952bSHelen Koike
44414be3200SRob Clark plane->state->src_x = new_state->src_x;
44514be3200SRob Clark plane->state->src_y = new_state->src_y;
44614be3200SRob Clark plane->state->crtc_x = new_state->crtc_x;
44714be3200SRob Clark plane->state->crtc_y = new_state->crtc_y;
44814be3200SRob Clark
44914be3200SRob Clark if (plane_enabled(new_state)) {
45014be3200SRob Clark struct mdp5_ctl *ctl;
45114be3200SRob Clark struct mdp5_pipeline *pipeline =
45242eb2f72SVille Syrjälä mdp5_crtc_get_pipeline(new_state->crtc);
45314be3200SRob Clark int ret;
45414be3200SRob Clark
45514be3200SRob Clark ret = mdp5_plane_mode_set(plane, new_state->crtc, new_state->fb,
45614be3200SRob Clark &new_state->src, &new_state->dst);
45714be3200SRob Clark WARN_ON(ret < 0);
45814be3200SRob Clark
45914be3200SRob Clark ctl = mdp5_crtc_get_ctl(new_state->crtc);
46014be3200SRob Clark
461f9cb8d8dSRob Clark mdp5_ctl_commit(ctl, pipeline, mdp5_plane_get_flush(plane), true);
46214be3200SRob Clark }
46314be3200SRob Clark
46414be3200SRob Clark *to_mdp5_plane_state(plane->state) =
46514be3200SRob Clark *to_mdp5_plane_state(new_state);
466474d952bSHelen Koike
467474d952bSHelen Koike new_state->fb = old_fb;
46814be3200SRob Clark }
46914be3200SRob Clark
47014be3200SRob Clark static const struct drm_plane_helper_funcs mdp5_plane_helper_funcs = {
4719e4dde28SRob Clark .prepare_fb = mdp5_plane_prepare_fb,
47214be3200SRob Clark .cleanup_fb = mdp5_plane_cleanup_fb,
47314be3200SRob Clark .atomic_check = mdp5_plane_atomic_check,
47414be3200SRob Clark .atomic_update = mdp5_plane_atomic_update,
47514be3200SRob Clark .atomic_async_check = mdp5_plane_atomic_async_check,
47614be3200SRob Clark .atomic_async_update = mdp5_plane_atomic_async_update,
47714be3200SRob Clark };
47814be3200SRob Clark
set_scanout_locked(struct mdp5_kms * mdp5_kms,enum mdp5_pipe pipe,struct drm_framebuffer * fb)47914be3200SRob Clark static void set_scanout_locked(struct mdp5_kms *mdp5_kms,
48014be3200SRob Clark enum mdp5_pipe pipe,
48114be3200SRob Clark struct drm_framebuffer *fb)
48214be3200SRob Clark {
48314be3200SRob Clark struct msm_kms *kms = &mdp5_kms->base.base;
48414be3200SRob Clark
48514be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_STRIDE_A(pipe),
48614be3200SRob Clark MDP5_PIPE_SRC_STRIDE_A_P0(fb->pitches[0]) |
48714be3200SRob Clark MDP5_PIPE_SRC_STRIDE_A_P1(fb->pitches[1]));
48814be3200SRob Clark
48914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_STRIDE_B(pipe),
49014be3200SRob Clark MDP5_PIPE_SRC_STRIDE_B_P2(fb->pitches[2]) |
49114be3200SRob Clark MDP5_PIPE_SRC_STRIDE_B_P3(fb->pitches[3]));
49214be3200SRob Clark
49314be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC0_ADDR(pipe),
49414be3200SRob Clark msm_framebuffer_iova(fb, kms->aspace, 0));
49514be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC1_ADDR(pipe),
49614be3200SRob Clark msm_framebuffer_iova(fb, kms->aspace, 1));
49714be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC2_ADDR(pipe),
49814be3200SRob Clark msm_framebuffer_iova(fb, kms->aspace, 2));
49914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC3_ADDR(pipe),
50014be3200SRob Clark msm_framebuffer_iova(fb, kms->aspace, 3));
50114be3200SRob Clark }
50214be3200SRob Clark
50314be3200SRob Clark /* Note: mdp5_plane->pipe_lock must be locked */
csc_disable(struct mdp5_kms * mdp5_kms,enum mdp5_pipe pipe)50414be3200SRob Clark static void csc_disable(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe)
50514be3200SRob Clark {
50614be3200SRob Clark uint32_t value = mdp5_read(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe)) &
50714be3200SRob Clark ~MDP5_PIPE_OP_MODE_CSC_1_EN;
50814be3200SRob Clark
50914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe), value);
51014be3200SRob Clark }
51114be3200SRob Clark
51214be3200SRob Clark /* Note: mdp5_plane->pipe_lock must be locked */
csc_enable(struct mdp5_kms * mdp5_kms,enum mdp5_pipe pipe,struct csc_cfg * csc)51314be3200SRob Clark static void csc_enable(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe,
51414be3200SRob Clark struct csc_cfg *csc)
51514be3200SRob Clark {
51614be3200SRob Clark uint32_t i, mode = 0; /* RGB, no CSC */
51714be3200SRob Clark uint32_t *matrix;
51814be3200SRob Clark
51914be3200SRob Clark if (unlikely(!csc))
52014be3200SRob Clark return;
52114be3200SRob Clark
52214be3200SRob Clark if ((csc->type == CSC_YUV2RGB) || (CSC_YUV2YUV == csc->type))
52314be3200SRob Clark mode |= MDP5_PIPE_OP_MODE_CSC_SRC_DATA_FORMAT(DATA_FORMAT_YUV);
52414be3200SRob Clark if ((csc->type == CSC_RGB2YUV) || (CSC_YUV2YUV == csc->type))
52514be3200SRob Clark mode |= MDP5_PIPE_OP_MODE_CSC_DST_DATA_FORMAT(DATA_FORMAT_YUV);
52614be3200SRob Clark mode |= MDP5_PIPE_OP_MODE_CSC_1_EN;
52714be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_OP_MODE(pipe), mode);
52814be3200SRob Clark
52914be3200SRob Clark matrix = csc->matrix;
53014be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_0(pipe),
53114be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_0_COEFF_11(matrix[0]) |
53214be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_0_COEFF_12(matrix[1]));
53314be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_1(pipe),
53414be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_1_COEFF_13(matrix[2]) |
53514be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_1_COEFF_21(matrix[3]));
53614be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_2(pipe),
53714be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_2_COEFF_22(matrix[4]) |
53814be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_2_COEFF_23(matrix[5]));
53914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_3(pipe),
54014be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_3_COEFF_31(matrix[6]) |
54114be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_3_COEFF_32(matrix[7]));
54214be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_MATRIX_COEFF_4(pipe),
54314be3200SRob Clark MDP5_PIPE_CSC_1_MATRIX_COEFF_4_COEFF_33(matrix[8]));
54414be3200SRob Clark
54514be3200SRob Clark for (i = 0; i < ARRAY_SIZE(csc->pre_bias); i++) {
54614be3200SRob Clark uint32_t *pre_clamp = csc->pre_clamp;
54714be3200SRob Clark uint32_t *post_clamp = csc->post_clamp;
54814be3200SRob Clark
54914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_PRE_CLAMP(pipe, i),
55014be3200SRob Clark MDP5_PIPE_CSC_1_PRE_CLAMP_REG_HIGH(pre_clamp[2*i+1]) |
55114be3200SRob Clark MDP5_PIPE_CSC_1_PRE_CLAMP_REG_LOW(pre_clamp[2*i]));
55214be3200SRob Clark
55314be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_POST_CLAMP(pipe, i),
55414be3200SRob Clark MDP5_PIPE_CSC_1_POST_CLAMP_REG_HIGH(post_clamp[2*i+1]) |
55514be3200SRob Clark MDP5_PIPE_CSC_1_POST_CLAMP_REG_LOW(post_clamp[2*i]));
55614be3200SRob Clark
55714be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_PRE_BIAS(pipe, i),
55814be3200SRob Clark MDP5_PIPE_CSC_1_PRE_BIAS_REG_VALUE(csc->pre_bias[i]));
55914be3200SRob Clark
56014be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_CSC_1_POST_BIAS(pipe, i),
56114be3200SRob Clark MDP5_PIPE_CSC_1_POST_BIAS_REG_VALUE(csc->post_bias[i]));
56214be3200SRob Clark }
56314be3200SRob Clark }
56414be3200SRob Clark
56514be3200SRob Clark #define PHASE_STEP_SHIFT 21
56614be3200SRob Clark #define DOWN_SCALE_RATIO_MAX 32 /* 2^(26-21) */
56714be3200SRob Clark
calc_phase_step(uint32_t src,uint32_t dst,uint32_t * out_phase)56814be3200SRob Clark static int calc_phase_step(uint32_t src, uint32_t dst, uint32_t *out_phase)
56914be3200SRob Clark {
57014be3200SRob Clark uint32_t unit;
57114be3200SRob Clark
57214be3200SRob Clark if (src == 0 || dst == 0)
57314be3200SRob Clark return -EINVAL;
57414be3200SRob Clark
57514be3200SRob Clark /*
57614be3200SRob Clark * PHASE_STEP_X/Y is coded on 26 bits (25:0),
57714be3200SRob Clark * where 2^21 represents the unity "1" in fixed-point hardware design.
57814be3200SRob Clark * This leaves 5 bits for the integer part (downscale case):
57914be3200SRob Clark * -> maximum downscale ratio = 0b1_1111 = 31
58014be3200SRob Clark */
58114be3200SRob Clark if (src > (dst * DOWN_SCALE_RATIO_MAX))
58214be3200SRob Clark return -EOVERFLOW;
58314be3200SRob Clark
58414be3200SRob Clark unit = 1 << PHASE_STEP_SHIFT;
58514be3200SRob Clark *out_phase = mult_frac(unit, src, dst);
58614be3200SRob Clark
58714be3200SRob Clark return 0;
58814be3200SRob Clark }
58914be3200SRob Clark
calc_scalex_steps(struct drm_plane * plane,uint32_t pixel_format,uint32_t src,uint32_t dest,uint32_t phasex_steps[COMP_MAX])59014be3200SRob Clark static int calc_scalex_steps(struct drm_plane *plane,
59114be3200SRob Clark uint32_t pixel_format, uint32_t src, uint32_t dest,
59214be3200SRob Clark uint32_t phasex_steps[COMP_MAX])
59314be3200SRob Clark {
594f3e9632cSMaxime Ripard const struct drm_format_info *info = drm_format_info(pixel_format);
59514be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(plane);
59614be3200SRob Clark struct device *dev = mdp5_kms->dev->dev;
59714be3200SRob Clark uint32_t phasex_step;
59814be3200SRob Clark int ret;
59914be3200SRob Clark
60014be3200SRob Clark ret = calc_phase_step(src, dest, &phasex_step);
60114be3200SRob Clark if (ret) {
6026a41da17SMamta Shukla DRM_DEV_ERROR(dev, "X scaling (%d->%d) failed: %d\n", src, dest, ret);
60314be3200SRob Clark return ret;
60414be3200SRob Clark }
60514be3200SRob Clark
60614be3200SRob Clark phasex_steps[COMP_0] = phasex_step;
60714be3200SRob Clark phasex_steps[COMP_3] = phasex_step;
608f3e9632cSMaxime Ripard phasex_steps[COMP_1_2] = phasex_step / info->hsub;
60914be3200SRob Clark
61014be3200SRob Clark return 0;
61114be3200SRob Clark }
61214be3200SRob Clark
calc_scaley_steps(struct drm_plane * plane,uint32_t pixel_format,uint32_t src,uint32_t dest,uint32_t phasey_steps[COMP_MAX])61314be3200SRob Clark static int calc_scaley_steps(struct drm_plane *plane,
61414be3200SRob Clark uint32_t pixel_format, uint32_t src, uint32_t dest,
61514be3200SRob Clark uint32_t phasey_steps[COMP_MAX])
61614be3200SRob Clark {
617f3e9632cSMaxime Ripard const struct drm_format_info *info = drm_format_info(pixel_format);
61814be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(plane);
61914be3200SRob Clark struct device *dev = mdp5_kms->dev->dev;
62014be3200SRob Clark uint32_t phasey_step;
62114be3200SRob Clark int ret;
62214be3200SRob Clark
62314be3200SRob Clark ret = calc_phase_step(src, dest, &phasey_step);
62414be3200SRob Clark if (ret) {
6256a41da17SMamta Shukla DRM_DEV_ERROR(dev, "Y scaling (%d->%d) failed: %d\n", src, dest, ret);
62614be3200SRob Clark return ret;
62714be3200SRob Clark }
62814be3200SRob Clark
62914be3200SRob Clark phasey_steps[COMP_0] = phasey_step;
63014be3200SRob Clark phasey_steps[COMP_3] = phasey_step;
631f3e9632cSMaxime Ripard phasey_steps[COMP_1_2] = phasey_step / info->vsub;
63214be3200SRob Clark
63314be3200SRob Clark return 0;
63414be3200SRob Clark }
63514be3200SRob Clark
get_scale_config(const struct mdp_format * format,uint32_t src,uint32_t dst,bool horz)63614be3200SRob Clark static uint32_t get_scale_config(const struct mdp_format *format,
63714be3200SRob Clark uint32_t src, uint32_t dst, bool horz)
63814be3200SRob Clark {
639f3e9632cSMaxime Ripard const struct drm_format_info *info = drm_format_info(format->base.pixel_format);
64014be3200SRob Clark bool scaling = format->is_yuv ? true : (src != dst);
641f3e9632cSMaxime Ripard uint32_t sub;
64214be3200SRob Clark uint32_t ya_filter, uv_filter;
64314be3200SRob Clark bool yuv = format->is_yuv;
64414be3200SRob Clark
64514be3200SRob Clark if (!scaling)
64614be3200SRob Clark return 0;
64714be3200SRob Clark
64814be3200SRob Clark if (yuv) {
649f3e9632cSMaxime Ripard sub = horz ? info->hsub : info->vsub;
65014be3200SRob Clark uv_filter = ((src / sub) <= dst) ?
65114be3200SRob Clark SCALE_FILTER_BIL : SCALE_FILTER_PCMN;
65214be3200SRob Clark }
65314be3200SRob Clark ya_filter = (src <= dst) ? SCALE_FILTER_BIL : SCALE_FILTER_PCMN;
65414be3200SRob Clark
65514be3200SRob Clark if (horz)
65614be3200SRob Clark return MDP5_PIPE_SCALE_CONFIG_SCALEX_EN |
65714be3200SRob Clark MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_0(ya_filter) |
65814be3200SRob Clark MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_3(ya_filter) |
65914be3200SRob Clark COND(yuv, MDP5_PIPE_SCALE_CONFIG_SCALEX_FILTER_COMP_1_2(uv_filter));
66014be3200SRob Clark else
66114be3200SRob Clark return MDP5_PIPE_SCALE_CONFIG_SCALEY_EN |
66214be3200SRob Clark MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_0(ya_filter) |
66314be3200SRob Clark MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_3(ya_filter) |
66414be3200SRob Clark COND(yuv, MDP5_PIPE_SCALE_CONFIG_SCALEY_FILTER_COMP_1_2(uv_filter));
66514be3200SRob Clark }
66614be3200SRob Clark
calc_pixel_ext(const struct mdp_format * format,uint32_t src,uint32_t dst,uint32_t phase_step[2],int pix_ext_edge1[COMP_MAX],int pix_ext_edge2[COMP_MAX],bool horz)66714be3200SRob Clark static void calc_pixel_ext(const struct mdp_format *format,
66814be3200SRob Clark uint32_t src, uint32_t dst, uint32_t phase_step[2],
66914be3200SRob Clark int pix_ext_edge1[COMP_MAX], int pix_ext_edge2[COMP_MAX],
67014be3200SRob Clark bool horz)
67114be3200SRob Clark {
67214be3200SRob Clark bool scaling = format->is_yuv ? true : (src != dst);
67314be3200SRob Clark int i;
67414be3200SRob Clark
67514be3200SRob Clark /*
67614be3200SRob Clark * Note:
67714be3200SRob Clark * We assume here that:
67814be3200SRob Clark * 1. PCMN filter is used for downscale
67914be3200SRob Clark * 2. bilinear filter is used for upscale
68014be3200SRob Clark * 3. we are in a single pipe configuration
68114be3200SRob Clark */
68214be3200SRob Clark
68314be3200SRob Clark for (i = 0; i < COMP_MAX; i++) {
68414be3200SRob Clark pix_ext_edge1[i] = 0;
68514be3200SRob Clark pix_ext_edge2[i] = scaling ? 1 : 0;
68614be3200SRob Clark }
68714be3200SRob Clark }
68814be3200SRob Clark
mdp5_write_pixel_ext(struct mdp5_kms * mdp5_kms,enum mdp5_pipe pipe,const struct mdp_format * format,uint32_t src_w,int pe_left[COMP_MAX],int pe_right[COMP_MAX],uint32_t src_h,int pe_top[COMP_MAX],int pe_bottom[COMP_MAX])68914be3200SRob Clark static void mdp5_write_pixel_ext(struct mdp5_kms *mdp5_kms, enum mdp5_pipe pipe,
69014be3200SRob Clark const struct mdp_format *format,
69114be3200SRob Clark uint32_t src_w, int pe_left[COMP_MAX], int pe_right[COMP_MAX],
69214be3200SRob Clark uint32_t src_h, int pe_top[COMP_MAX], int pe_bottom[COMP_MAX])
69314be3200SRob Clark {
694f3e9632cSMaxime Ripard const struct drm_format_info *info = drm_format_info(format->base.pixel_format);
69514be3200SRob Clark uint32_t lr, tb, req;
69614be3200SRob Clark int i;
69714be3200SRob Clark
69814be3200SRob Clark for (i = 0; i < COMP_MAX; i++) {
69914be3200SRob Clark uint32_t roi_w = src_w;
70014be3200SRob Clark uint32_t roi_h = src_h;
70114be3200SRob Clark
70214be3200SRob Clark if (format->is_yuv && i == COMP_1_2) {
703f3e9632cSMaxime Ripard roi_w /= info->hsub;
704f3e9632cSMaxime Ripard roi_h /= info->vsub;
70514be3200SRob Clark }
70614be3200SRob Clark
70714be3200SRob Clark lr = (pe_left[i] >= 0) ?
70814be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_LR_LEFT_RPT(pe_left[i]) :
70914be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_LR_LEFT_OVF(pe_left[i]);
71014be3200SRob Clark
71114be3200SRob Clark lr |= (pe_right[i] >= 0) ?
71214be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_RPT(pe_right[i]) :
71314be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_OVF(pe_right[i]);
71414be3200SRob Clark
71514be3200SRob Clark tb = (pe_top[i] >= 0) ?
71614be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_TB_TOP_RPT(pe_top[i]) :
71714be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_TB_TOP_OVF(pe_top[i]);
71814be3200SRob Clark
71914be3200SRob Clark tb |= (pe_bottom[i] >= 0) ?
72014be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_RPT(pe_bottom[i]) :
72114be3200SRob Clark MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_OVF(pe_bottom[i]);
72214be3200SRob Clark
72314be3200SRob Clark req = MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_LEFT_RIGHT(roi_w +
72414be3200SRob Clark pe_left[i] + pe_right[i]);
72514be3200SRob Clark
72614be3200SRob Clark req |= MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_TOP_BOTTOM(roi_h +
72714be3200SRob Clark pe_top[i] + pe_bottom[i]);
72814be3200SRob Clark
72914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_LR(pipe, i), lr);
73014be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_TB(pipe, i), tb);
73114be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS(pipe, i), req);
73214be3200SRob Clark
73314be3200SRob Clark DBG("comp-%d (L/R): rpt=%d/%d, ovf=%d/%d, req=%d", i,
73414be3200SRob Clark FIELD(lr, MDP5_PIPE_SW_PIX_EXT_LR_LEFT_RPT),
73514be3200SRob Clark FIELD(lr, MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_RPT),
73614be3200SRob Clark FIELD(lr, MDP5_PIPE_SW_PIX_EXT_LR_LEFT_OVF),
73714be3200SRob Clark FIELD(lr, MDP5_PIPE_SW_PIX_EXT_LR_RIGHT_OVF),
73814be3200SRob Clark FIELD(req, MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_LEFT_RIGHT));
73914be3200SRob Clark
74014be3200SRob Clark DBG("comp-%d (T/B): rpt=%d/%d, ovf=%d/%d, req=%d", i,
74114be3200SRob Clark FIELD(tb, MDP5_PIPE_SW_PIX_EXT_TB_TOP_RPT),
74214be3200SRob Clark FIELD(tb, MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_RPT),
74314be3200SRob Clark FIELD(tb, MDP5_PIPE_SW_PIX_EXT_TB_TOP_OVF),
74414be3200SRob Clark FIELD(tb, MDP5_PIPE_SW_PIX_EXT_TB_BOTTOM_OVF),
74514be3200SRob Clark FIELD(req, MDP5_PIPE_SW_PIX_EXT_REQ_PIXELS_TOP_BOTTOM));
74614be3200SRob Clark }
74714be3200SRob Clark }
74814be3200SRob Clark
74914be3200SRob Clark struct pixel_ext {
75014be3200SRob Clark int left[COMP_MAX];
75114be3200SRob Clark int right[COMP_MAX];
75214be3200SRob Clark int top[COMP_MAX];
75314be3200SRob Clark int bottom[COMP_MAX];
75414be3200SRob Clark };
75514be3200SRob Clark
75614be3200SRob Clark struct phase_step {
75714be3200SRob Clark u32 x[COMP_MAX];
75814be3200SRob Clark u32 y[COMP_MAX];
75914be3200SRob Clark };
76014be3200SRob Clark
mdp5_hwpipe_mode_set(struct mdp5_kms * mdp5_kms,struct mdp5_hw_pipe * hwpipe,struct drm_framebuffer * fb,struct phase_step * step,struct pixel_ext * pe,u32 scale_config,u32 hdecm,u32 vdecm,bool hflip,bool vflip,int crtc_x,int crtc_y,unsigned int crtc_w,unsigned int crtc_h,u32 src_img_w,u32 src_img_h,u32 src_x,u32 src_y,u32 src_w,u32 src_h)76114be3200SRob Clark static void mdp5_hwpipe_mode_set(struct mdp5_kms *mdp5_kms,
76214be3200SRob Clark struct mdp5_hw_pipe *hwpipe,
76314be3200SRob Clark struct drm_framebuffer *fb,
76414be3200SRob Clark struct phase_step *step,
76514be3200SRob Clark struct pixel_ext *pe,
76614be3200SRob Clark u32 scale_config, u32 hdecm, u32 vdecm,
76714be3200SRob Clark bool hflip, bool vflip,
76814be3200SRob Clark int crtc_x, int crtc_y,
76914be3200SRob Clark unsigned int crtc_w, unsigned int crtc_h,
77014be3200SRob Clark u32 src_img_w, u32 src_img_h,
77114be3200SRob Clark u32 src_x, u32 src_y,
77214be3200SRob Clark u32 src_w, u32 src_h)
77314be3200SRob Clark {
77414be3200SRob Clark enum mdp5_pipe pipe = hwpipe->pipe;
77514be3200SRob Clark bool has_pe = hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT;
77614be3200SRob Clark const struct mdp_format *format =
77714be3200SRob Clark to_mdp_format(msm_framebuffer_format(fb));
77814be3200SRob Clark
77914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_IMG_SIZE(pipe),
78014be3200SRob Clark MDP5_PIPE_SRC_IMG_SIZE_WIDTH(src_img_w) |
78114be3200SRob Clark MDP5_PIPE_SRC_IMG_SIZE_HEIGHT(src_img_h));
78214be3200SRob Clark
78314be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_SIZE(pipe),
78414be3200SRob Clark MDP5_PIPE_SRC_SIZE_WIDTH(src_w) |
78514be3200SRob Clark MDP5_PIPE_SRC_SIZE_HEIGHT(src_h));
78614be3200SRob Clark
78714be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_XY(pipe),
78814be3200SRob Clark MDP5_PIPE_SRC_XY_X(src_x) |
78914be3200SRob Clark MDP5_PIPE_SRC_XY_Y(src_y));
79014be3200SRob Clark
79114be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_OUT_SIZE(pipe),
79214be3200SRob Clark MDP5_PIPE_OUT_SIZE_WIDTH(crtc_w) |
79314be3200SRob Clark MDP5_PIPE_OUT_SIZE_HEIGHT(crtc_h));
79414be3200SRob Clark
79514be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_OUT_XY(pipe),
79614be3200SRob Clark MDP5_PIPE_OUT_XY_X(crtc_x) |
79714be3200SRob Clark MDP5_PIPE_OUT_XY_Y(crtc_y));
79814be3200SRob Clark
79914be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_FORMAT(pipe),
80014be3200SRob Clark MDP5_PIPE_SRC_FORMAT_A_BPC(format->bpc_a) |
80114be3200SRob Clark MDP5_PIPE_SRC_FORMAT_R_BPC(format->bpc_r) |
80214be3200SRob Clark MDP5_PIPE_SRC_FORMAT_G_BPC(format->bpc_g) |
80314be3200SRob Clark MDP5_PIPE_SRC_FORMAT_B_BPC(format->bpc_b) |
80414be3200SRob Clark COND(format->alpha_enable, MDP5_PIPE_SRC_FORMAT_ALPHA_ENABLE) |
80514be3200SRob Clark MDP5_PIPE_SRC_FORMAT_CPP(format->cpp - 1) |
80614be3200SRob Clark MDP5_PIPE_SRC_FORMAT_UNPACK_COUNT(format->unpack_count - 1) |
80714be3200SRob Clark COND(format->unpack_tight, MDP5_PIPE_SRC_FORMAT_UNPACK_TIGHT) |
80814be3200SRob Clark MDP5_PIPE_SRC_FORMAT_FETCH_TYPE(format->fetch_type) |
80914be3200SRob Clark MDP5_PIPE_SRC_FORMAT_CHROMA_SAMP(format->chroma_sample));
81014be3200SRob Clark
81114be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_UNPACK(pipe),
81214be3200SRob Clark MDP5_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) |
81314be3200SRob Clark MDP5_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) |
81414be3200SRob Clark MDP5_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) |
81514be3200SRob Clark MDP5_PIPE_SRC_UNPACK_ELEM3(format->unpack[3]));
81614be3200SRob Clark
81714be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_OP_MODE(pipe),
81814be3200SRob Clark (hflip ? MDP5_PIPE_SRC_OP_MODE_FLIP_LR : 0) |
81914be3200SRob Clark (vflip ? MDP5_PIPE_SRC_OP_MODE_FLIP_UD : 0) |
82014be3200SRob Clark COND(has_pe, MDP5_PIPE_SRC_OP_MODE_SW_PIX_EXT_OVERRIDE) |
82114be3200SRob Clark MDP5_PIPE_SRC_OP_MODE_BWC(BWC_LOSSLESS));
82214be3200SRob Clark
82314be3200SRob Clark /* not using secure mode: */
82414be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SRC_ADDR_SW_STATUS(pipe), 0);
82514be3200SRob Clark
82614be3200SRob Clark if (hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT)
82714be3200SRob Clark mdp5_write_pixel_ext(mdp5_kms, pipe, format,
82814be3200SRob Clark src_w, pe->left, pe->right,
82914be3200SRob Clark src_h, pe->top, pe->bottom);
83014be3200SRob Clark
83114be3200SRob Clark if (hwpipe->caps & MDP_PIPE_CAP_SCALE) {
83214be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_PHASE_STEP_X(pipe),
83314be3200SRob Clark step->x[COMP_0]);
83414be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_PHASE_STEP_Y(pipe),
83514be3200SRob Clark step->y[COMP_0]);
83614be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CR_PHASE_STEP_X(pipe),
83714be3200SRob Clark step->x[COMP_1_2]);
83814be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CR_PHASE_STEP_Y(pipe),
83914be3200SRob Clark step->y[COMP_1_2]);
84014be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_DECIMATION(pipe),
84114be3200SRob Clark MDP5_PIPE_DECIMATION_VERT(vdecm) |
84214be3200SRob Clark MDP5_PIPE_DECIMATION_HORZ(hdecm));
84314be3200SRob Clark mdp5_write(mdp5_kms, REG_MDP5_PIPE_SCALE_CONFIG(pipe),
84414be3200SRob Clark scale_config);
84514be3200SRob Clark }
84614be3200SRob Clark
84714be3200SRob Clark if (hwpipe->caps & MDP_PIPE_CAP_CSC) {
84814be3200SRob Clark if (MDP_FORMAT_IS_YUV(format))
84914be3200SRob Clark csc_enable(mdp5_kms, pipe,
85014be3200SRob Clark mdp_get_default_csc_cfg(CSC_YUV2RGB));
85114be3200SRob Clark else
85214be3200SRob Clark csc_disable(mdp5_kms, pipe);
85314be3200SRob Clark }
85414be3200SRob Clark
85514be3200SRob Clark set_scanout_locked(mdp5_kms, pipe, fb);
85614be3200SRob Clark }
85714be3200SRob Clark
mdp5_plane_mode_set(struct drm_plane * plane,struct drm_crtc * crtc,struct drm_framebuffer * fb,struct drm_rect * src,struct drm_rect * dest)85814be3200SRob Clark static int mdp5_plane_mode_set(struct drm_plane *plane,
85914be3200SRob Clark struct drm_crtc *crtc, struct drm_framebuffer *fb,
86014be3200SRob Clark struct drm_rect *src, struct drm_rect *dest)
86114be3200SRob Clark {
86214be3200SRob Clark struct drm_plane_state *pstate = plane->state;
86314be3200SRob Clark struct mdp5_hw_pipe *hwpipe = to_mdp5_plane_state(pstate)->hwpipe;
86414be3200SRob Clark struct mdp5_kms *mdp5_kms = get_kms(plane);
86514be3200SRob Clark enum mdp5_pipe pipe = hwpipe->pipe;
86614be3200SRob Clark struct mdp5_hw_pipe *right_hwpipe;
86714be3200SRob Clark const struct mdp_format *format;
86814be3200SRob Clark uint32_t nplanes, config = 0;
86914be3200SRob Clark struct phase_step step = { { 0 } };
87014be3200SRob Clark struct pixel_ext pe = { { 0 } };
87114be3200SRob Clark uint32_t hdecm = 0, vdecm = 0;
87214be3200SRob Clark uint32_t pix_format;
87314be3200SRob Clark unsigned int rotation;
87414be3200SRob Clark bool vflip, hflip;
87514be3200SRob Clark int crtc_x, crtc_y;
87614be3200SRob Clark unsigned int crtc_w, crtc_h;
87714be3200SRob Clark uint32_t src_x, src_y;
87814be3200SRob Clark uint32_t src_w, src_h;
87914be3200SRob Clark uint32_t src_img_w, src_img_h;
88014be3200SRob Clark int ret;
88114be3200SRob Clark
88214be3200SRob Clark nplanes = fb->format->num_planes;
88314be3200SRob Clark
88414be3200SRob Clark /* bad formats should already be rejected: */
88514be3200SRob Clark if (WARN_ON(nplanes > pipe2nclients(pipe)))
88614be3200SRob Clark return -EINVAL;
88714be3200SRob Clark
88814be3200SRob Clark format = to_mdp_format(msm_framebuffer_format(fb));
88914be3200SRob Clark pix_format = format->base.pixel_format;
89014be3200SRob Clark
89114be3200SRob Clark src_x = src->x1;
89214be3200SRob Clark src_y = src->y1;
89314be3200SRob Clark src_w = drm_rect_width(src);
89414be3200SRob Clark src_h = drm_rect_height(src);
89514be3200SRob Clark
89614be3200SRob Clark crtc_x = dest->x1;
89714be3200SRob Clark crtc_y = dest->y1;
89814be3200SRob Clark crtc_w = drm_rect_width(dest);
89914be3200SRob Clark crtc_h = drm_rect_height(dest);
90014be3200SRob Clark
90114be3200SRob Clark /* src values are in Q16 fixed point, convert to integer: */
90214be3200SRob Clark src_x = src_x >> 16;
90314be3200SRob Clark src_y = src_y >> 16;
90414be3200SRob Clark src_w = src_w >> 16;
90514be3200SRob Clark src_h = src_h >> 16;
90614be3200SRob Clark
90714be3200SRob Clark src_img_w = min(fb->width, src_w);
90814be3200SRob Clark src_img_h = min(fb->height, src_h);
90914be3200SRob Clark
91014be3200SRob Clark DBG("%s: FB[%u] %u,%u,%u,%u -> CRTC[%u] %d,%d,%u,%u", plane->name,
91114be3200SRob Clark fb->base.id, src_x, src_y, src_w, src_h,
91214be3200SRob Clark crtc->base.id, crtc_x, crtc_y, crtc_w, crtc_h);
91314be3200SRob Clark
91414be3200SRob Clark right_hwpipe = to_mdp5_plane_state(pstate)->r_hwpipe;
91514be3200SRob Clark if (right_hwpipe) {
91614be3200SRob Clark /*
91714be3200SRob Clark * if the plane comprises of 2 hw pipes, assume that the width
91814be3200SRob Clark * is split equally across them. The only parameters that varies
91914be3200SRob Clark * between the 2 pipes are src_x and crtc_x
92014be3200SRob Clark */
92114be3200SRob Clark crtc_w /= 2;
92214be3200SRob Clark src_w /= 2;
92314be3200SRob Clark src_img_w /= 2;
92414be3200SRob Clark }
92514be3200SRob Clark
92614be3200SRob Clark ret = calc_scalex_steps(plane, pix_format, src_w, crtc_w, step.x);
92714be3200SRob Clark if (ret)
92814be3200SRob Clark return ret;
92914be3200SRob Clark
93014be3200SRob Clark ret = calc_scaley_steps(plane, pix_format, src_h, crtc_h, step.y);
93114be3200SRob Clark if (ret)
93214be3200SRob Clark return ret;
93314be3200SRob Clark
93414be3200SRob Clark if (hwpipe->caps & MDP_PIPE_CAP_SW_PIX_EXT) {
93514be3200SRob Clark calc_pixel_ext(format, src_w, crtc_w, step.x,
93614be3200SRob Clark pe.left, pe.right, true);
93714be3200SRob Clark calc_pixel_ext(format, src_h, crtc_h, step.y,
93814be3200SRob Clark pe.top, pe.bottom, false);
93914be3200SRob Clark }
94014be3200SRob Clark
94114be3200SRob Clark /* TODO calc hdecm, vdecm */
94214be3200SRob Clark
94314be3200SRob Clark /* SCALE is used to both scale and up-sample chroma components */
94414be3200SRob Clark config |= get_scale_config(format, src_w, crtc_w, true);
94514be3200SRob Clark config |= get_scale_config(format, src_h, crtc_h, false);
94614be3200SRob Clark DBG("scale config = %x", config);
94714be3200SRob Clark
94814be3200SRob Clark rotation = drm_rotation_simplify(pstate->rotation,
94914be3200SRob Clark DRM_MODE_ROTATE_0 |
95014be3200SRob Clark DRM_MODE_REFLECT_X |
95114be3200SRob Clark DRM_MODE_REFLECT_Y);
95214be3200SRob Clark hflip = !!(rotation & DRM_MODE_REFLECT_X);
95314be3200SRob Clark vflip = !!(rotation & DRM_MODE_REFLECT_Y);
95414be3200SRob Clark
95514be3200SRob Clark mdp5_hwpipe_mode_set(mdp5_kms, hwpipe, fb, &step, &pe,
95614be3200SRob Clark config, hdecm, vdecm, hflip, vflip,
95714be3200SRob Clark crtc_x, crtc_y, crtc_w, crtc_h,
95814be3200SRob Clark src_img_w, src_img_h,
95914be3200SRob Clark src_x, src_y, src_w, src_h);
96014be3200SRob Clark if (right_hwpipe)
96114be3200SRob Clark mdp5_hwpipe_mode_set(mdp5_kms, right_hwpipe, fb, &step, &pe,
96214be3200SRob Clark config, hdecm, vdecm, hflip, vflip,
96314be3200SRob Clark crtc_x + crtc_w, crtc_y, crtc_w, crtc_h,
96414be3200SRob Clark src_img_w, src_img_h,
96514be3200SRob Clark src_x + src_w, src_y, src_w, src_h);
96614be3200SRob Clark
96714be3200SRob Clark return ret;
96814be3200SRob Clark }
96914be3200SRob Clark
97014be3200SRob Clark /*
97114be3200SRob Clark * Use this func and the one below only after the atomic state has been
97214be3200SRob Clark * successfully swapped
97314be3200SRob Clark */
mdp5_plane_pipe(struct drm_plane * plane)97414be3200SRob Clark enum mdp5_pipe mdp5_plane_pipe(struct drm_plane *plane)
97514be3200SRob Clark {
97614be3200SRob Clark struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
97714be3200SRob Clark
97814be3200SRob Clark if (WARN_ON(!pstate->hwpipe))
97914be3200SRob Clark return SSPP_NONE;
98014be3200SRob Clark
98114be3200SRob Clark return pstate->hwpipe->pipe;
98214be3200SRob Clark }
98314be3200SRob Clark
mdp5_plane_right_pipe(struct drm_plane * plane)98414be3200SRob Clark enum mdp5_pipe mdp5_plane_right_pipe(struct drm_plane *plane)
98514be3200SRob Clark {
98614be3200SRob Clark struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
98714be3200SRob Clark
98814be3200SRob Clark if (!pstate->r_hwpipe)
98914be3200SRob Clark return SSPP_NONE;
99014be3200SRob Clark
99114be3200SRob Clark return pstate->r_hwpipe->pipe;
99214be3200SRob Clark }
99314be3200SRob Clark
mdp5_plane_get_flush(struct drm_plane * plane)99414be3200SRob Clark uint32_t mdp5_plane_get_flush(struct drm_plane *plane)
99514be3200SRob Clark {
99614be3200SRob Clark struct mdp5_plane_state *pstate = to_mdp5_plane_state(plane->state);
99714be3200SRob Clark u32 mask;
99814be3200SRob Clark
99914be3200SRob Clark if (WARN_ON(!pstate->hwpipe))
100014be3200SRob Clark return 0;
100114be3200SRob Clark
100214be3200SRob Clark mask = pstate->hwpipe->flush_mask;
100314be3200SRob Clark
100414be3200SRob Clark if (pstate->r_hwpipe)
100514be3200SRob Clark mask |= pstate->r_hwpipe->flush_mask;
100614be3200SRob Clark
100714be3200SRob Clark return mask;
100814be3200SRob Clark }
100914be3200SRob Clark
101014be3200SRob Clark /* initialize plane */
mdp5_plane_init(struct drm_device * dev,enum drm_plane_type type)101114be3200SRob Clark struct drm_plane *mdp5_plane_init(struct drm_device *dev,
101214be3200SRob Clark enum drm_plane_type type)
101314be3200SRob Clark {
101414be3200SRob Clark struct drm_plane *plane = NULL;
101514be3200SRob Clark struct mdp5_plane *mdp5_plane;
101614be3200SRob Clark int ret;
101714be3200SRob Clark
101814be3200SRob Clark mdp5_plane = kzalloc(sizeof(*mdp5_plane), GFP_KERNEL);
101914be3200SRob Clark if (!mdp5_plane) {
102014be3200SRob Clark ret = -ENOMEM;
102114be3200SRob Clark goto fail;
102214be3200SRob Clark }
102314be3200SRob Clark
102414be3200SRob Clark plane = &mdp5_plane->base;
102514be3200SRob Clark
102614be3200SRob Clark mdp5_plane->nformats = mdp_get_formats(mdp5_plane->formats,
102714be3200SRob Clark ARRAY_SIZE(mdp5_plane->formats), false);
102814be3200SRob Clark
102914be3200SRob Clark ret = drm_universal_plane_init(dev, plane, 0xff, &mdp5_plane_funcs,
103014be3200SRob Clark mdp5_plane->formats, mdp5_plane->nformats,
103114be3200SRob Clark NULL, type, NULL);
103214be3200SRob Clark if (ret)
103314be3200SRob Clark goto fail;
103414be3200SRob Clark
103514be3200SRob Clark drm_plane_helper_add(plane, &mdp5_plane_helper_funcs);
103614be3200SRob Clark
103714be3200SRob Clark mdp5_plane_install_properties(plane, &plane->base);
103814be3200SRob Clark
1039648fdc3fSBrian Masney drm_plane_enable_fb_damage_clips(plane);
1040648fdc3fSBrian Masney
104114be3200SRob Clark return plane;
104214be3200SRob Clark
104314be3200SRob Clark fail:
104414be3200SRob Clark if (plane)
104514be3200SRob Clark mdp5_plane_destroy(plane);
104614be3200SRob Clark
104714be3200SRob Clark return ERR_PTR(ret);
104814be3200SRob Clark }
1049