Skip to content

Commit 14e9a13

Browse files
bibekpatrowilldeacon
authored andcommitted
iommu/arm-smmu-qcom: Restore ACTLR settings for MDSS on sa8775p
The ACTLR configuration for the sa8775p MDSS client was inadvertently dropped while reworking the commit f91879f ("iommu/arm-smmu-qcom: Add actlr settings for mdss on Qualcomm platforms"). Without this entry, the sa8775p MDSS block does not receive the intended default ACTLR configuration. Restore the missing compatible entry so that the platform receives the expected behavior. Fixes: f91879f ("iommu/arm-smmu-qcom: Add actlr settings for mdss on Qualcomm platforms") Signed-off-by: Bibek Kumar Patro <bibek.patro@oss.qualcomm.com> Signed-off-by: Will Deacon <will@kernel.org>
1 parent 5ac66ed commit 14e9a13

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ static const struct of_device_id qcom_smmu_actlr_client_of_match[] = {
4343
.data = (const void *) (PREFETCH_DEEP | CPRE | CMTLB) },
4444
{ .compatible = "qcom,qcm2290-mdss",
4545
.data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
46+
{ .compatible = "qcom,sa8775p-mdss",
47+
.data = (const void *) (PREFETCH_DEFAULT | CMTLB) },
4648
{ .compatible = "qcom,sc7280-mdss",
4749
.data = (const void *) (PREFETCH_SHALLOW | CPRE | CMTLB) },
4850
{ .compatible = "qcom,sc7280-venus",

0 commit comments

Comments
 (0)