-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iommu: tegra/gart: Add device tree support
This commit adds device tree support for the GART hardware available on NVIDIA Tegra 20 SoCs. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
- Loading branch information
Thierry Reding
authored and
Joerg Roedel
committed
Apr 16, 2012
1 parent
543f3f3
commit 7cffae4
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
Documentation/devicetree/bindings/iommu/nvidia,tegra20-gart.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
NVIDIA Tegra 20 GART | ||
|
||
Required properties: | ||
- compatible: "nvidia,tegra20-gart" | ||
- reg: Two pairs of cells specifying the physical address and size of | ||
the memory controller registers and the GART aperture respectively. | ||
|
||
Example: | ||
|
||
gart: gart@7000f000 { | ||
compatible = "nvidia,tegra20-gart"; | ||
reg = < 0x7000f000 0x00000100 /* controller registers */ | ||
0x58000000 0x02000000 >; /* GART aperture */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters