2012-05-10 10:42:30 +03:00
NVIDIA Tegra20 MC(Memory Controller)
Required properties:
2018-12-12 23:38:49 +03:00
- compatible : "nvidia,tegra20-mc-gart"
- reg : Should contain 2 register ranges: physical base address and length of
the controller's registers and the GART aperture respectively.
- clocks: Must contain an entry for each entry in clock-names.
See ../clocks/clock-bindings.txt for details.
- clock-names: Must include the following entries:
- mc: the module's clock input
2012-05-10 10:42:30 +03:00
- interrupts : Should contain MC General interrupt.
2018-04-09 22:28:25 +03:00
- #reset-cells : Should be 1. This cell represents memory client module ID.
The assignments may be found in header file <dt-bindings/memory/tegra20-mc.h>
or in the TRM documentation.
2018-12-12 23:38:49 +03:00
- #iommu-cells: Should be 0. This cell represents the number of cells in an
IOMMU specifier needed to encode an address. GART supports only a single
address space that is shared by all devices, therefore no additional
information needed for the address encoding.
2012-05-10 10:42:30 +03:00
Example:
2018-04-09 22:28:25 +03:00
mc: memory-controller@7000f000 {
2018-12-12 23:38:49 +03:00
compatible = "nvidia,tegra20-mc-gart";
reg = <0x7000f000 0x400 /* controller registers */
0x58000000 0x02000000>; /* GART aperture */
clocks = <&tegra_car TEGRA20_CLK_MC>;
clock-names = "mc";
interrupts = <GIC_SPI 77 0x04>;
2018-04-09 22:28:25 +03:00
#reset-cells = <1>;
2018-12-12 23:38:49 +03:00
#iommu-cells = <0>;
2018-04-09 22:28:25 +03:00
};
video-codec@6001a000 {
compatible = "nvidia,tegra20-vde";
...
resets = <&mc TEGRA20_MC_RESET_VDE>;
2018-12-12 23:38:49 +03:00
iommus = <&mc>;
2012-05-10 10:42:30 +03:00
};