Commit d5c1e00e authored by Dmitry Baryshkov's avatar Dmitry Baryshkov
Browse files

drm/msm/dpu: enable CDM_0 for DPUs 1.x - 4.x



Enable the CDM_0 block on DPU versions 1.x - 4.x as
documented in the vendor dtsi file.

Signed-off-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: default avatarAbhinav Kumar <quic_abhinavk@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/638408/
Link: https://lore.kernel.org/r/20250220-dpu-add-cdm-v2-3-77f5f0df3d9a@linaro.org
parent 15f2825d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -190,6 +190,7 @@ const struct dpu_mdss_cfg dpu_msm8937_cfg = {
	.mdss_ver = &msm8937_mdss_ver,
	.caps = &msm8937_dpu_caps,
	.mdp = msm8937_mdp,
	.cdm = &dpu_cdm_1_x_4_x,
	.ctl_count = ARRAY_SIZE(msm8937_ctl),
	.ctl = msm8937_ctl,
	.sspp_count = ARRAY_SIZE(msm8937_sspp),
+1 −0
Original line number Diff line number Diff line
@@ -167,6 +167,7 @@ const struct dpu_mdss_cfg dpu_msm8917_cfg = {
	.mdss_ver = &msm8917_mdss_ver,
	.caps = &msm8917_dpu_caps,
	.mdp = msm8917_mdp,
	.cdm = &dpu_cdm_1_x_4_x,
	.ctl_count = ARRAY_SIZE(msm8917_ctl),
	.ctl = msm8917_ctl,
	.sspp_count = ARRAY_SIZE(msm8917_sspp),
+1 −0
Original line number Diff line number Diff line
@@ -198,6 +198,7 @@ const struct dpu_mdss_cfg dpu_msm8953_cfg = {
	.mdss_ver = &msm8953_mdss_ver,
	.caps = &msm8953_dpu_caps,
	.mdp = msm8953_mdp,
	.cdm = &dpu_cdm_1_x_4_x,
	.ctl_count = ARRAY_SIZE(msm8953_ctl),
	.ctl = msm8953_ctl,
	.sspp_count = ARRAY_SIZE(msm8953_sspp),
+1 −0
Original line number Diff line number Diff line
@@ -316,6 +316,7 @@ const struct dpu_mdss_cfg dpu_msm8996_cfg = {
	.mdss_ver = &msm8996_mdss_ver,
	.caps = &msm8996_dpu_caps,
	.mdp = msm8996_mdp,
	.cdm = &dpu_cdm_1_x_4_x,
	.ctl_count = ARRAY_SIZE(msm8996_ctl),
	.ctl = msm8996_ctl,
	.sspp_count = ARRAY_SIZE(msm8996_sspp),
+1 −0
Original line number Diff line number Diff line
@@ -302,6 +302,7 @@ const struct dpu_mdss_cfg dpu_msm8998_cfg = {
	.mdss_ver = &msm8998_mdss_ver,
	.caps = &msm8998_dpu_caps,
	.mdp = &msm8998_mdp,
	.cdm = &dpu_cdm_1_x_4_x,
	.ctl_count = ARRAY_SIZE(msm8998_ctl),
	.ctl = msm8998_ctl,
	.sspp_count = ARRAY_SIZE(msm8998_sspp),
Loading