Message ID | 20231202214016.1257621-3-dmitry.baryshkov@linaro.org |
---|---|
State | New |
Headers | show |
Series | drm/msm: fold dpu_format into mdp_formats database | expand |
On 12/2/2023 1:40 PM, Dmitry Baryshkov wrote: > Pull in new enum from the mesa registers. This commit should be replaced > with the registers sync with Mesa instead. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > drivers/gpu/drm/msm/disp/mdp_common.xml.h | 6 ++++++ > 1 file changed, 6 insertions(+) > Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
diff --git a/drivers/gpu/drm/msm/disp/mdp_common.xml.h b/drivers/gpu/drm/msm/disp/mdp_common.xml.h index 5220688727e4..2fa333bab3d2 100644 --- a/drivers/gpu/drm/msm/disp/mdp_common.xml.h +++ b/drivers/gpu/drm/msm/disp/mdp_common.xml.h @@ -107,5 +107,11 @@ enum mdp_bpc_alpha { BPC8A = 3, }; +enum mdp_fetch_mode { + MDP_FETCH_LINEAR = 0, + MDP_FETCH_TILE = 1, + MDP_FETCH_UBWC = 2, +}; + #endif /* MDP_COMMON_XML */
Pull in new enum from the mesa registers. This commit should be replaced with the registers sync with Mesa instead. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/gpu/drm/msm/disp/mdp_common.xml.h | 6 ++++++ 1 file changed, 6 insertions(+)