xref: /openbmc/linux/drivers/gpu/drm/msm/disp/mdp4/mdp4_plane.c (revision 4f2c0a4acffbec01079c28f839422e64ddeff004)
1caab277bSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
214be3200SRob Clark /*
314be3200SRob Clark  * Copyright (C) 2013 Red Hat
414be3200SRob Clark  * Author: Rob Clark <robdclark@gmail.com>
514be3200SRob Clark  */
614be3200SRob Clark 
737418bf1SMaxime Ripard #include <drm/drm_atomic.h>
8648fdc3fSBrian Masney #include <drm/drm_damage_helper.h>
9feea39a8SSam Ravnborg #include <drm/drm_fourcc.h>
10*720cf96dSVille Syrjälä #include <drm/drm_framebuffer.h>
119e4dde28SRob Clark #include <drm/drm_gem_atomic_helper.h>
12feea39a8SSam Ravnborg 
1314be3200SRob Clark #include "mdp4_kms.h"
1414be3200SRob Clark 
1514be3200SRob Clark #define DOWN_SCALE_MAX	8
1614be3200SRob Clark #define UP_SCALE_MAX	8
1714be3200SRob Clark 
1814be3200SRob Clark struct mdp4_plane {
1914be3200SRob Clark 	struct drm_plane base;
2014be3200SRob Clark 	const char *name;
2114be3200SRob Clark 
2214be3200SRob Clark 	enum mdp4_pipe pipe;
2314be3200SRob Clark 
2414be3200SRob Clark 	uint32_t caps;
2514be3200SRob Clark 	uint32_t nformats;
2614be3200SRob Clark 	uint32_t formats[32];
2714be3200SRob Clark 
2814be3200SRob Clark 	bool enabled;
2914be3200SRob Clark };
3014be3200SRob Clark #define to_mdp4_plane(x) container_of(x, struct mdp4_plane, base)
3114be3200SRob Clark 
3214be3200SRob Clark /* MDP format helper functions */
3314be3200SRob Clark static inline
mdp4_get_frame_format(struct drm_framebuffer * fb)3414be3200SRob Clark enum mdp4_frame_format mdp4_get_frame_format(struct drm_framebuffer *fb)
3514be3200SRob Clark {
3614be3200SRob Clark 	bool is_tile = false;
3714be3200SRob Clark 
3814be3200SRob Clark 	if (fb->modifier == DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
3914be3200SRob Clark 		is_tile = true;
4014be3200SRob Clark 
4114be3200SRob Clark 	if (fb->format->format == DRM_FORMAT_NV12 && is_tile)
4214be3200SRob Clark 		return FRAME_TILE_YCBCR_420;
4314be3200SRob Clark 
4414be3200SRob Clark 	return FRAME_LINEAR;
4514be3200SRob Clark }
4614be3200SRob Clark 
4714be3200SRob Clark static void mdp4_plane_set_scanout(struct drm_plane *plane,
4814be3200SRob Clark 		struct drm_framebuffer *fb);
4914be3200SRob Clark static int mdp4_plane_mode_set(struct drm_plane *plane,
5014be3200SRob Clark 		struct drm_crtc *crtc, struct drm_framebuffer *fb,
5114be3200SRob Clark 		int crtc_x, int crtc_y,
5214be3200SRob Clark 		unsigned int crtc_w, unsigned int crtc_h,
5314be3200SRob Clark 		uint32_t src_x, uint32_t src_y,
5414be3200SRob Clark 		uint32_t src_w, uint32_t src_h);
5514be3200SRob Clark 
get_kms(struct drm_plane * plane)5614be3200SRob Clark static struct mdp4_kms *get_kms(struct drm_plane *plane)
5714be3200SRob Clark {
5814be3200SRob Clark 	struct msm_drm_private *priv = plane->dev->dev_private;
5914be3200SRob Clark 	return to_mdp4_kms(to_mdp_kms(priv->kms));
6014be3200SRob Clark }
6114be3200SRob Clark 
mdp4_plane_destroy(struct drm_plane * plane)6214be3200SRob Clark static void mdp4_plane_destroy(struct drm_plane *plane)
6314be3200SRob Clark {
6414be3200SRob Clark 	struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
6514be3200SRob Clark 
6614be3200SRob Clark 	drm_plane_cleanup(plane);
6714be3200SRob Clark 
6814be3200SRob Clark 	kfree(mdp4_plane);
6914be3200SRob Clark }
7014be3200SRob Clark 
7114be3200SRob Clark /* helper to install properties which are common to planes and crtcs */
mdp4_plane_install_properties(struct drm_plane * plane,struct drm_mode_object * obj)7214be3200SRob Clark static void mdp4_plane_install_properties(struct drm_plane *plane,
7314be3200SRob Clark 		struct drm_mode_object *obj)
7414be3200SRob Clark {
7514be3200SRob Clark 	// XXX
7614be3200SRob Clark }
7714be3200SRob Clark 
mdp4_plane_set_property(struct drm_plane * plane,struct drm_property * property,uint64_t val)7814be3200SRob Clark static int mdp4_plane_set_property(struct drm_plane *plane,
7914be3200SRob Clark 		struct drm_property *property, uint64_t val)
8014be3200SRob Clark {
8114be3200SRob Clark 	// XXX
8214be3200SRob Clark 	return -EINVAL;
8314be3200SRob Clark }
8414be3200SRob Clark 
8514be3200SRob Clark static const struct drm_plane_funcs mdp4_plane_funcs = {
8614be3200SRob Clark 		.update_plane = drm_atomic_helper_update_plane,
8714be3200SRob Clark 		.disable_plane = drm_atomic_helper_disable_plane,
8814be3200SRob Clark 		.destroy = mdp4_plane_destroy,
8914be3200SRob Clark 		.set_property = mdp4_plane_set_property,
9014be3200SRob Clark 		.reset = drm_atomic_helper_plane_reset,
9114be3200SRob Clark 		.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
9214be3200SRob Clark 		.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
9314be3200SRob Clark };
9414be3200SRob Clark 
mdp4_plane_prepare_fb(struct drm_plane * plane,struct drm_plane_state * new_state)959e4dde28SRob Clark static int mdp4_plane_prepare_fb(struct drm_plane *plane,
969e4dde28SRob Clark 				 struct drm_plane_state *new_state)
979e4dde28SRob Clark {
989e4dde28SRob Clark 	struct msm_drm_private *priv = plane->dev->dev_private;
999e4dde28SRob Clark 	struct msm_kms *kms = priv->kms;
1009e4dde28SRob Clark 
1019e4dde28SRob Clark 	if (!new_state->fb)
1029e4dde28SRob Clark 		return 0;
1039e4dde28SRob Clark 
1049e4dde28SRob Clark 	drm_gem_plane_helper_prepare_fb(plane, new_state);
1059e4dde28SRob Clark 
1069e4dde28SRob Clark 	return msm_framebuffer_prepare(new_state->fb, kms->aspace, false);
1079e4dde28SRob Clark }
1089e4dde28SRob Clark 
mdp4_plane_cleanup_fb(struct drm_plane * plane,struct drm_plane_state * old_state)10914be3200SRob Clark static void mdp4_plane_cleanup_fb(struct drm_plane *plane,
11014be3200SRob Clark 				  struct drm_plane_state *old_state)
11114be3200SRob Clark {
11214be3200SRob Clark 	struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
11314be3200SRob Clark 	struct mdp4_kms *mdp4_kms = get_kms(plane);
11414be3200SRob Clark 	struct msm_kms *kms = &mdp4_kms->base.base;
11514be3200SRob Clark 	struct drm_framebuffer *fb = old_state->fb;
11614be3200SRob Clark 
11714be3200SRob Clark 	if (!fb)
11814be3200SRob Clark 		return;
11914be3200SRob Clark 
12014be3200SRob Clark 	DBG("%s: cleanup: FB[%u]", mdp4_plane->name, fb->base.id);
1219e4dde28SRob Clark 	msm_framebuffer_cleanup(fb, kms->aspace, false);
12214be3200SRob Clark }
12314be3200SRob Clark 
12414be3200SRob Clark 
mdp4_plane_atomic_check(struct drm_plane * plane,struct drm_atomic_state * state)12514be3200SRob Clark static int mdp4_plane_atomic_check(struct drm_plane *plane,
1267c11b99aSMaxime Ripard 		struct drm_atomic_state *state)
12714be3200SRob Clark {
12814be3200SRob Clark 	return 0;
12914be3200SRob Clark }
13014be3200SRob Clark 
mdp4_plane_atomic_update(struct drm_plane * plane,struct drm_atomic_state * state)13114be3200SRob Clark static void mdp4_plane_atomic_update(struct drm_plane *plane,
132977697e2SMaxime Ripard 				     struct drm_atomic_state *state)
13314be3200SRob Clark {
13437418bf1SMaxime Ripard 	struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state,
13537418bf1SMaxime Ripard 									   plane);
13614be3200SRob Clark 	int ret;
13714be3200SRob Clark 
13814be3200SRob Clark 	ret = mdp4_plane_mode_set(plane,
13941016fe1SMaxime Ripard 			new_state->crtc, new_state->fb,
14041016fe1SMaxime Ripard 			new_state->crtc_x, new_state->crtc_y,
14141016fe1SMaxime Ripard 			new_state->crtc_w, new_state->crtc_h,
14241016fe1SMaxime Ripard 			new_state->src_x,  new_state->src_y,
14341016fe1SMaxime Ripard 			new_state->src_w, new_state->src_h);
14414be3200SRob Clark 	/* atomic_check should have ensured that this doesn't fail */
14514be3200SRob Clark 	WARN_ON(ret < 0);
14614be3200SRob Clark }
14714be3200SRob Clark 
14814be3200SRob Clark static const struct drm_plane_helper_funcs mdp4_plane_helper_funcs = {
1499e4dde28SRob Clark 		.prepare_fb = mdp4_plane_prepare_fb,
15014be3200SRob Clark 		.cleanup_fb = mdp4_plane_cleanup_fb,
15114be3200SRob Clark 		.atomic_check = mdp4_plane_atomic_check,
15214be3200SRob Clark 		.atomic_update = mdp4_plane_atomic_update,
15314be3200SRob Clark };
15414be3200SRob Clark 
mdp4_plane_set_scanout(struct drm_plane * plane,struct drm_framebuffer * fb)15514be3200SRob Clark static void mdp4_plane_set_scanout(struct drm_plane *plane,
15614be3200SRob Clark 		struct drm_framebuffer *fb)
15714be3200SRob Clark {
15814be3200SRob Clark 	struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
15914be3200SRob Clark 	struct mdp4_kms *mdp4_kms = get_kms(plane);
16014be3200SRob Clark 	struct msm_kms *kms = &mdp4_kms->base.base;
16114be3200SRob Clark 	enum mdp4_pipe pipe = mdp4_plane->pipe;
16214be3200SRob Clark 
16314be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_STRIDE_A(pipe),
16414be3200SRob Clark 			MDP4_PIPE_SRC_STRIDE_A_P0(fb->pitches[0]) |
16514be3200SRob Clark 			MDP4_PIPE_SRC_STRIDE_A_P1(fb->pitches[1]));
16614be3200SRob Clark 
16714be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_STRIDE_B(pipe),
16814be3200SRob Clark 			MDP4_PIPE_SRC_STRIDE_B_P2(fb->pitches[2]) |
16914be3200SRob Clark 			MDP4_PIPE_SRC_STRIDE_B_P3(fb->pitches[3]));
17014be3200SRob Clark 
17114be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRCP0_BASE(pipe),
17214be3200SRob Clark 			msm_framebuffer_iova(fb, kms->aspace, 0));
17314be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRCP1_BASE(pipe),
17414be3200SRob Clark 			msm_framebuffer_iova(fb, kms->aspace, 1));
17514be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRCP2_BASE(pipe),
17614be3200SRob Clark 			msm_framebuffer_iova(fb, kms->aspace, 2));
17714be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRCP3_BASE(pipe),
17814be3200SRob Clark 			msm_framebuffer_iova(fb, kms->aspace, 3));
17914be3200SRob Clark }
18014be3200SRob Clark 
mdp4_write_csc_config(struct mdp4_kms * mdp4_kms,enum mdp4_pipe pipe,struct csc_cfg * csc)18114be3200SRob Clark static void mdp4_write_csc_config(struct mdp4_kms *mdp4_kms,
18214be3200SRob Clark 		enum mdp4_pipe pipe, struct csc_cfg *csc)
18314be3200SRob Clark {
18414be3200SRob Clark 	int i;
18514be3200SRob Clark 
18614be3200SRob Clark 	for (i = 0; i < ARRAY_SIZE(csc->matrix); i++) {
18714be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_CSC_MV(pipe, i),
18814be3200SRob Clark 				csc->matrix[i]);
18914be3200SRob Clark 	}
19014be3200SRob Clark 
19114be3200SRob Clark 	for (i = 0; i < ARRAY_SIZE(csc->post_bias) ; i++) {
19214be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_CSC_PRE_BV(pipe, i),
19314be3200SRob Clark 				csc->pre_bias[i]);
19414be3200SRob Clark 
19514be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_CSC_POST_BV(pipe, i),
19614be3200SRob Clark 				csc->post_bias[i]);
19714be3200SRob Clark 	}
19814be3200SRob Clark 
19914be3200SRob Clark 	for (i = 0; i < ARRAY_SIZE(csc->post_clamp) ; i++) {
20014be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_CSC_PRE_LV(pipe, i),
20114be3200SRob Clark 				csc->pre_clamp[i]);
20214be3200SRob Clark 
20314be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_CSC_POST_LV(pipe, i),
20414be3200SRob Clark 				csc->post_clamp[i]);
20514be3200SRob Clark 	}
20614be3200SRob Clark }
20714be3200SRob Clark 
20814be3200SRob Clark #define MDP4_VG_PHASE_STEP_DEFAULT	0x20000000
20914be3200SRob Clark 
mdp4_plane_mode_set(struct drm_plane * plane,struct drm_crtc * crtc,struct drm_framebuffer * fb,int crtc_x,int crtc_y,unsigned int crtc_w,unsigned int crtc_h,uint32_t src_x,uint32_t src_y,uint32_t src_w,uint32_t src_h)21014be3200SRob Clark static int mdp4_plane_mode_set(struct drm_plane *plane,
21114be3200SRob Clark 		struct drm_crtc *crtc, struct drm_framebuffer *fb,
21214be3200SRob Clark 		int crtc_x, int crtc_y,
21314be3200SRob Clark 		unsigned int crtc_w, unsigned int crtc_h,
21414be3200SRob Clark 		uint32_t src_x, uint32_t src_y,
21514be3200SRob Clark 		uint32_t src_w, uint32_t src_h)
21614be3200SRob Clark {
21714be3200SRob Clark 	struct drm_device *dev = plane->dev;
21814be3200SRob Clark 	struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
21914be3200SRob Clark 	struct mdp4_kms *mdp4_kms = get_kms(plane);
22014be3200SRob Clark 	enum mdp4_pipe pipe = mdp4_plane->pipe;
22114be3200SRob Clark 	const struct mdp_format *format;
22214be3200SRob Clark 	uint32_t op_mode = 0;
22314be3200SRob Clark 	uint32_t phasex_step = MDP4_VG_PHASE_STEP_DEFAULT;
22414be3200SRob Clark 	uint32_t phasey_step = MDP4_VG_PHASE_STEP_DEFAULT;
22514be3200SRob Clark 	enum mdp4_frame_format frame_type;
22614be3200SRob Clark 
22714be3200SRob Clark 	if (!(crtc && fb)) {
22814be3200SRob Clark 		DBG("%s: disabled!", mdp4_plane->name);
22914be3200SRob Clark 		return 0;
23014be3200SRob Clark 	}
23114be3200SRob Clark 
23214be3200SRob Clark 	frame_type = mdp4_get_frame_format(fb);
23314be3200SRob Clark 
23414be3200SRob Clark 	/* src values are in Q16 fixed point, convert to integer: */
23514be3200SRob Clark 	src_x = src_x >> 16;
23614be3200SRob Clark 	src_y = src_y >> 16;
23714be3200SRob Clark 	src_w = src_w >> 16;
23814be3200SRob Clark 	src_h = src_h >> 16;
23914be3200SRob Clark 
24014be3200SRob Clark 	DBG("%s: FB[%u] %u,%u,%u,%u -> CRTC[%u] %d,%d,%u,%u", mdp4_plane->name,
24114be3200SRob Clark 			fb->base.id, src_x, src_y, src_w, src_h,
24214be3200SRob Clark 			crtc->base.id, crtc_x, crtc_y, crtc_w, crtc_h);
24314be3200SRob Clark 
24414be3200SRob Clark 	format = to_mdp_format(msm_framebuffer_format(fb));
24514be3200SRob Clark 
24614be3200SRob Clark 	if (src_w > (crtc_w * DOWN_SCALE_MAX)) {
2476a41da17SMamta Shukla 		DRM_DEV_ERROR(dev->dev, "Width down scaling exceeds limits!\n");
24814be3200SRob Clark 		return -ERANGE;
24914be3200SRob Clark 	}
25014be3200SRob Clark 
25114be3200SRob Clark 	if (src_h > (crtc_h * DOWN_SCALE_MAX)) {
2526a41da17SMamta Shukla 		DRM_DEV_ERROR(dev->dev, "Height down scaling exceeds limits!\n");
25314be3200SRob Clark 		return -ERANGE;
25414be3200SRob Clark 	}
25514be3200SRob Clark 
25614be3200SRob Clark 	if (crtc_w > (src_w * UP_SCALE_MAX)) {
2576a41da17SMamta Shukla 		DRM_DEV_ERROR(dev->dev, "Width up scaling exceeds limits!\n");
25814be3200SRob Clark 		return -ERANGE;
25914be3200SRob Clark 	}
26014be3200SRob Clark 
26114be3200SRob Clark 	if (crtc_h > (src_h * UP_SCALE_MAX)) {
2626a41da17SMamta Shukla 		DRM_DEV_ERROR(dev->dev, "Height up scaling exceeds limits!\n");
26314be3200SRob Clark 		return -ERANGE;
26414be3200SRob Clark 	}
26514be3200SRob Clark 
26614be3200SRob Clark 	if (src_w != crtc_w) {
26714be3200SRob Clark 		uint32_t sel_unit = SCALE_FIR;
26814be3200SRob Clark 		op_mode |= MDP4_PIPE_OP_MODE_SCALEX_EN;
26914be3200SRob Clark 
27014be3200SRob Clark 		if (MDP_FORMAT_IS_YUV(format)) {
27114be3200SRob Clark 			if (crtc_w > src_w)
27214be3200SRob Clark 				sel_unit = SCALE_PIXEL_RPT;
27314be3200SRob Clark 			else if (crtc_w <= (src_w / 4))
27414be3200SRob Clark 				sel_unit = SCALE_MN_PHASE;
27514be3200SRob Clark 
27614be3200SRob Clark 			op_mode |= MDP4_PIPE_OP_MODE_SCALEX_UNIT_SEL(sel_unit);
27714be3200SRob Clark 			phasex_step = mult_frac(MDP4_VG_PHASE_STEP_DEFAULT,
27814be3200SRob Clark 					src_w, crtc_w);
27914be3200SRob Clark 		}
28014be3200SRob Clark 	}
28114be3200SRob Clark 
28214be3200SRob Clark 	if (src_h != crtc_h) {
28314be3200SRob Clark 		uint32_t sel_unit = SCALE_FIR;
28414be3200SRob Clark 		op_mode |= MDP4_PIPE_OP_MODE_SCALEY_EN;
28514be3200SRob Clark 
28614be3200SRob Clark 		if (MDP_FORMAT_IS_YUV(format)) {
28714be3200SRob Clark 
28814be3200SRob Clark 			if (crtc_h > src_h)
28914be3200SRob Clark 				sel_unit = SCALE_PIXEL_RPT;
29014be3200SRob Clark 			else if (crtc_h <= (src_h / 4))
29114be3200SRob Clark 				sel_unit = SCALE_MN_PHASE;
29214be3200SRob Clark 
29314be3200SRob Clark 			op_mode |= MDP4_PIPE_OP_MODE_SCALEY_UNIT_SEL(sel_unit);
29414be3200SRob Clark 			phasey_step = mult_frac(MDP4_VG_PHASE_STEP_DEFAULT,
29514be3200SRob Clark 					src_h, crtc_h);
29614be3200SRob Clark 		}
29714be3200SRob Clark 	}
29814be3200SRob Clark 
29914be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_SIZE(pipe),
30014be3200SRob Clark 			MDP4_PIPE_SRC_SIZE_WIDTH(src_w) |
30114be3200SRob Clark 			MDP4_PIPE_SRC_SIZE_HEIGHT(src_h));
30214be3200SRob Clark 
30314be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_XY(pipe),
30414be3200SRob Clark 			MDP4_PIPE_SRC_XY_X(src_x) |
30514be3200SRob Clark 			MDP4_PIPE_SRC_XY_Y(src_y));
30614be3200SRob Clark 
30714be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_DST_SIZE(pipe),
30814be3200SRob Clark 			MDP4_PIPE_DST_SIZE_WIDTH(crtc_w) |
30914be3200SRob Clark 			MDP4_PIPE_DST_SIZE_HEIGHT(crtc_h));
31014be3200SRob Clark 
31114be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_DST_XY(pipe),
31214be3200SRob Clark 			MDP4_PIPE_DST_XY_X(crtc_x) |
31314be3200SRob Clark 			MDP4_PIPE_DST_XY_Y(crtc_y));
31414be3200SRob Clark 
31514be3200SRob Clark 	mdp4_plane_set_scanout(plane, fb);
31614be3200SRob Clark 
31714be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_FORMAT(pipe),
31814be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_A_BPC(format->bpc_a) |
31914be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_R_BPC(format->bpc_r) |
32014be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_G_BPC(format->bpc_g) |
32114be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_B_BPC(format->bpc_b) |
32214be3200SRob Clark 			COND(format->alpha_enable, MDP4_PIPE_SRC_FORMAT_ALPHA_ENABLE) |
32314be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_CPP(format->cpp - 1) |
32414be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_UNPACK_COUNT(format->unpack_count - 1) |
32514be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_FETCH_PLANES(format->fetch_type) |
32614be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_CHROMA_SAMP(format->chroma_sample) |
32714be3200SRob Clark 			MDP4_PIPE_SRC_FORMAT_FRAME_FORMAT(frame_type) |
32814be3200SRob Clark 			COND(format->unpack_tight, MDP4_PIPE_SRC_FORMAT_UNPACK_TIGHT));
32914be3200SRob Clark 
33014be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_SRC_UNPACK(pipe),
33114be3200SRob Clark 			MDP4_PIPE_SRC_UNPACK_ELEM0(format->unpack[0]) |
33214be3200SRob Clark 			MDP4_PIPE_SRC_UNPACK_ELEM1(format->unpack[1]) |
33314be3200SRob Clark 			MDP4_PIPE_SRC_UNPACK_ELEM2(format->unpack[2]) |
33414be3200SRob Clark 			MDP4_PIPE_SRC_UNPACK_ELEM3(format->unpack[3]));
33514be3200SRob Clark 
33614be3200SRob Clark 	if (MDP_FORMAT_IS_YUV(format)) {
33714be3200SRob Clark 		struct csc_cfg *csc = mdp_get_default_csc_cfg(CSC_YUV2RGB);
33814be3200SRob Clark 
33914be3200SRob Clark 		op_mode |= MDP4_PIPE_OP_MODE_SRC_YCBCR;
34014be3200SRob Clark 		op_mode |= MDP4_PIPE_OP_MODE_CSC_EN;
34114be3200SRob Clark 		mdp4_write_csc_config(mdp4_kms, pipe, csc);
34214be3200SRob Clark 	}
34314be3200SRob Clark 
34414be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_OP_MODE(pipe), op_mode);
34514be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_PHASEX_STEP(pipe), phasex_step);
34614be3200SRob Clark 	mdp4_write(mdp4_kms, REG_MDP4_PIPE_PHASEY_STEP(pipe), phasey_step);
34714be3200SRob Clark 
34814be3200SRob Clark 	if (frame_type != FRAME_LINEAR)
34914be3200SRob Clark 		mdp4_write(mdp4_kms, REG_MDP4_PIPE_SSTILE_FRAME_SIZE(pipe),
35014be3200SRob Clark 				MDP4_PIPE_SSTILE_FRAME_SIZE_WIDTH(src_w) |
35114be3200SRob Clark 				MDP4_PIPE_SSTILE_FRAME_SIZE_HEIGHT(src_h));
35214be3200SRob Clark 
35314be3200SRob Clark 	return 0;
35414be3200SRob Clark }
35514be3200SRob Clark 
35614be3200SRob Clark static const char *pipe_names[] = {
35714be3200SRob Clark 		"VG1", "VG2",
35814be3200SRob Clark 		"RGB1", "RGB2", "RGB3",
35914be3200SRob Clark 		"VG3", "VG4",
36014be3200SRob Clark };
36114be3200SRob Clark 
mdp4_plane_pipe(struct drm_plane * plane)36214be3200SRob Clark enum mdp4_pipe mdp4_plane_pipe(struct drm_plane *plane)
36314be3200SRob Clark {
36414be3200SRob Clark 	struct mdp4_plane *mdp4_plane = to_mdp4_plane(plane);
36514be3200SRob Clark 	return mdp4_plane->pipe;
36614be3200SRob Clark }
36714be3200SRob Clark 
36835cbb8c9SDaniel Vetter static const uint64_t supported_format_modifiers[] = {
36935cbb8c9SDaniel Vetter 	DRM_FORMAT_MOD_SAMSUNG_64_32_TILE,
37035cbb8c9SDaniel Vetter 	DRM_FORMAT_MOD_LINEAR,
37135cbb8c9SDaniel Vetter 	DRM_FORMAT_MOD_INVALID
37235cbb8c9SDaniel Vetter };
37335cbb8c9SDaniel Vetter 
37414be3200SRob Clark /* initialize plane */
mdp4_plane_init(struct drm_device * dev,enum mdp4_pipe pipe_id,bool private_plane)37514be3200SRob Clark struct drm_plane *mdp4_plane_init(struct drm_device *dev,
37614be3200SRob Clark 		enum mdp4_pipe pipe_id, bool private_plane)
37714be3200SRob Clark {
37814be3200SRob Clark 	struct drm_plane *plane = NULL;
37914be3200SRob Clark 	struct mdp4_plane *mdp4_plane;
38014be3200SRob Clark 	int ret;
38114be3200SRob Clark 	enum drm_plane_type type;
38214be3200SRob Clark 
38314be3200SRob Clark 	mdp4_plane = kzalloc(sizeof(*mdp4_plane), GFP_KERNEL);
38414be3200SRob Clark 	if (!mdp4_plane) {
38514be3200SRob Clark 		ret = -ENOMEM;
38614be3200SRob Clark 		goto fail;
38714be3200SRob Clark 	}
38814be3200SRob Clark 
38914be3200SRob Clark 	plane = &mdp4_plane->base;
39014be3200SRob Clark 
39114be3200SRob Clark 	mdp4_plane->pipe = pipe_id;
39214be3200SRob Clark 	mdp4_plane->name = pipe_names[pipe_id];
39314be3200SRob Clark 	mdp4_plane->caps = mdp4_pipe_caps(pipe_id);
39414be3200SRob Clark 
39514be3200SRob Clark 	mdp4_plane->nformats = mdp_get_formats(mdp4_plane->formats,
39614be3200SRob Clark 			ARRAY_SIZE(mdp4_plane->formats),
39714be3200SRob Clark 			!pipe_supports_yuv(mdp4_plane->caps));
39814be3200SRob Clark 
39914be3200SRob Clark 	type = private_plane ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
40014be3200SRob Clark 	ret = drm_universal_plane_init(dev, plane, 0xff, &mdp4_plane_funcs,
40114be3200SRob Clark 				 mdp4_plane->formats, mdp4_plane->nformats,
40235cbb8c9SDaniel Vetter 				 supported_format_modifiers, type, NULL);
40314be3200SRob Clark 	if (ret)
40414be3200SRob Clark 		goto fail;
40514be3200SRob Clark 
40614be3200SRob Clark 	drm_plane_helper_add(plane, &mdp4_plane_helper_funcs);
40714be3200SRob Clark 
40814be3200SRob Clark 	mdp4_plane_install_properties(plane, &plane->base);
40914be3200SRob Clark 
410648fdc3fSBrian Masney 	drm_plane_enable_fb_damage_clips(plane);
411648fdc3fSBrian Masney 
41214be3200SRob Clark 	return plane;
41314be3200SRob Clark 
41414be3200SRob Clark fail:
41514be3200SRob Clark 	if (plane)
41614be3200SRob Clark 		mdp4_plane_destroy(plane);
41714be3200SRob Clark 
41814be3200SRob Clark 	return ERR_PTR(ret);
41914be3200SRob Clark }
420