Skip to content

Commit 857833f

Browse files
committed
FROMLIST: 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. Link: https://lore.kernel.org/all/20260120151105.614792-1-bibek.patro@oss.qualcomm.com/ Signed-off-by: Bibek Kumar Patro <bibek.patro@oss.qualcomm.com>
1 parent 1b9b3f4 commit 857833f

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)