Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

soc: qcom: use no-UBWC config for MSM8956/76

Both MSM8956 and MSM8976 have MDSS 1.11 which doesn't support UBWC
(although they also have Adreno 510, which might support UBWC). Disable
UBWC support for those platforms.

Fixes: 1924272b9ce1 ("soc: qcom: Add UBWC config provider")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Patchwork: https://patchwork.freedesktop.org/patch/668503/
Signed-off-by: Rob Clark <robin.clark@oss.qualcomm.com>

authored by

Dmitry Baryshkov and committed by
Rob Clark
3cf6147f ec770bb2

+2 -2
+2 -2
drivers/soc/qcom/ubwc_config.c
··· 230 230 { .compatible = "qcom,msm8929", .data = &no_ubwc_data }, 231 231 { .compatible = "qcom,msm8939", .data = &no_ubwc_data }, 232 232 { .compatible = "qcom,msm8953", .data = &msm8937_data }, 233 - { .compatible = "qcom,msm8956", .data = &msm8937_data }, 233 + { .compatible = "qcom,msm8956", .data = &no_ubwc_data }, 234 234 { .compatible = "qcom,msm8974", .data = &no_ubwc_data }, 235 - { .compatible = "qcom,msm8976", .data = &msm8937_data }, 235 + { .compatible = "qcom,msm8976", .data = &no_ubwc_data }, 236 236 { .compatible = "qcom,msm8996", .data = &msm8998_data }, 237 237 { .compatible = "qcom,msm8998", .data = &msm8998_data }, 238 238 { .compatible = "qcom,qcm2290", .data = &qcm2290_data, },