Skip to content

Commit 5ca2161

Browse files
thierryredingwilldeacon
authored andcommitted
iommu/arm-smmu: Support Tegra234 SMMU
Allow the NVIDIA-specific ARM SMMU implementation to bind to the SMMU instances found on Tegra234. Acked-by: Robin Murphy <[email protected]> Acked-by: Will Deacon <[email protected]> Signed-off-by: Thierry Reding <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Will Deacon <[email protected]>
1 parent 95d5aea commit 5ca2161

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ struct arm_smmu_device *arm_smmu_impl_init(struct arm_smmu_device *smmu)
211211
if (of_property_read_bool(np, "calxeda,smmu-secure-config-access"))
212212
smmu->impl = &calxeda_impl;
213213

214-
if (of_device_is_compatible(np, "nvidia,tegra194-smmu") ||
214+
if (of_device_is_compatible(np, "nvidia,tegra234-smmu") ||
215+
of_device_is_compatible(np, "nvidia,tegra194-smmu") ||
215216
of_device_is_compatible(np, "nvidia,tegra186-smmu"))
216217
return nvidia_smmu_impl_init(smmu);
217218

0 commit comments

Comments
 (0)