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 <robin.murphy@arm.com> Acked-by: Will Deacon <will@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://lore.kernel.org/r/20220429082243.496000-4-thierry.reding@gmail.com Signed-off-by: Will Deacon <will@kernel.org>
1 parent 95d5aea commit 5ca2161

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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)