disp: msm: sde: use common naming for version/revision in catalog

Align the HW catalog to use common naming amongst the "revision"
and "version" structure members.

Change-Id: Ib6c81aee6cb49208b0699db4a75b4eb9dc79e800
Signed-off-by: Steve Cohen <quic_cohens@quicinc.com>
This commit is contained in:
Steve Cohen
2021-04-07 23:07:29 -04:00
committed by Jeykumar Sankaran
parent 7f0c843da4
commit a683fba2e8
25 changed files with 95 additions and 110 deletions

View File

@@ -2611,7 +2611,7 @@ static int _sde_plane_sspp_atomic_check_helper(struct sde_plane *psde,
dst.x, dst.y, dst.w, dst.h);
ret = -EINVAL;
} else if (SDE_FORMAT_IS_UBWC(fmt) &&
!psde->catalog->ubwc_version) {
!psde->catalog->ubwc_rev) {
SDE_ERROR_PLANE(psde, "ubwc not supported\n");
ret = -EINVAL;
}
@@ -3685,9 +3685,8 @@ static void _sde_plane_setup_capabilities_blob(struct sde_plane *psde,
sde_kms_info_stop(info);
}
if (psde->pipe_hw && catalog->qseed_hw_version)
sde_kms_info_add_keyint(info, "scaler_step_ver",
catalog->qseed_hw_version);
if (psde->pipe_hw && catalog->qseed_hw_rev)
sde_kms_info_add_keyint(info, "scaler_step_ver", catalog->qseed_hw_rev);
sde_kms_info_add_keyint(info, "max_linewidth",
psde->pipe_sblk->maxlinewidth);