Commit c6f70a4d authored by Thierry Reding's avatar Thierry Reding

ARM: tegra: Add memory controller support for Tegra114

Add the device tree node for the memory controller found on Tegra114
SoCs. The memory controller integrates an IOMMU (called SMMU) as well as
various knobs to tweak memory accesses by the various clients.

The old IOMMU device tree node is collapsed into the memory controller
node to more accurately describe the hardware. While this change is
incompatible, the IOMMU driver has never had any users so the change is
not going to cause any breakage.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent a9fe468f
...@@ -505,15 +505,15 @@ fuse@7000f800 { ...@@ -505,15 +505,15 @@ fuse@7000f800 {
reset-names = "fuse"; reset-names = "fuse";
}; };
iommu@70019010 { mc: memory-controller@70019000 {
compatible = "nvidia,tegra114-smmu", "nvidia,tegra30-smmu"; compatible = "nvidia,tegra114-mc";
reg = <0x70019010 0x02c reg = <0x70019000 0x1000>;
0x700191f0 0x010 clocks = <&tegra_car TEGRA114_CLK_MC>;
0x70019228 0x074>; clock-names = "mc";
nvidia,#asids = <4>;
dma-window = <0 0x40000000>; interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
nvidia,swgroups = <0x18659fe>;
nvidia,ahb = <&ahb>; #iommu-cells = <1>;
}; };
ahub@70080000 { ahub@70080000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment