On 18/06/2025 16:25, Luca Weiss wrote:
This SoC doesn't have the generic compatible.
Signed-off-by: Luca Weiss <[email protected]>
---
drivers/iommu/qcom-hyp-smmu.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/iommu/qcom-hyp-smmu.c b/drivers/iommu/qcom-hyp-smmu.c
index
c1b95bc8b8ca7463399c9cb801e7a9a6d004af53..3c0db9404584a2f54f8b44b13031df40bd1c2312
100644
--- a/drivers/iommu/qcom-hyp-smmu.c
+++ b/drivers/iommu/qcom-hyp-smmu.c
@@ -387,8 +387,9 @@ static struct iommu_ops qcom_smmu_ops = {
};
static const struct udevice_id qcom_smmu500_ids[] = {
- { .compatible = "qcom,sdm845-smmu-500" },
{ .compatible = "qcom,sc7280-smmu-500" },
+ { .compatible = "qcom,sdm845-smmu-500" },
+ { .compatible = "qcom,sm6350-smmu-500" },
{ .compatible = "qcom,smmu-500", },
{ /* sentinel */ }
};
Reviewed-by: Neil Armstrong <[email protected]>