ARM: tegra: Add device tree nodes for flow controller
These nodes are required so that the flow controller driver can obtain the I/O memory region from device tree rather than hard-coding it. Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
b0da12d59d
commit
b10231344f
|
@ -157,6 +157,11 @@
|
|||
#reset-cells = <1>;
|
||||
};
|
||||
|
||||
flow-controller@60007000 {
|
||||
compatible = "nvidia,tegra114-flowctrl";
|
||||
reg = <0x60007000 0x1000>;
|
||||
};
|
||||
|
||||
apbdma: dma@6000a000 {
|
||||
compatible = "nvidia,tegra114-apbdma";
|
||||
reg = <0x6000a000 0x1400>;
|
||||
|
|
|
@ -137,6 +137,11 @@
|
|||
#reset-cells = <1>;
|
||||
};
|
||||
|
||||
flow-controller@0,60007000 {
|
||||
compatible = "nvidia,tegra124-flowctrl";
|
||||
reg = <0x0 0x60007000 0x0 0x1000>;
|
||||
};
|
||||
|
||||
gpio: gpio@0,6000d000 {
|
||||
compatible = "nvidia,tegra124-gpio", "nvidia,tegra30-gpio";
|
||||
reg = <0x0 0x6000d000 0x0 0x1000>;
|
||||
|
|
|
@ -190,6 +190,11 @@
|
|||
#reset-cells = <1>;
|
||||
};
|
||||
|
||||
flow-controller@60007000 {
|
||||
compatible = "nvidia,tegra20-flowctrl";
|
||||
reg = <0x60007000 0x1000>;
|
||||
};
|
||||
|
||||
apbdma: dma@6000a000 {
|
||||
compatible = "nvidia,tegra20-apbdma";
|
||||
reg = <0x6000a000 0x1200>;
|
||||
|
|
|
@ -272,6 +272,11 @@
|
|||
#reset-cells = <1>;
|
||||
};
|
||||
|
||||
flow-controller@60007000 {
|
||||
compatible = "nvidia,tegra30-flowctrl";
|
||||
reg = <0x60007000 0x1000>;
|
||||
};
|
||||
|
||||
apbdma: dma@6000a000 {
|
||||
compatible = "nvidia,tegra30-apbdma", "nvidia,tegra20-apbdma";
|
||||
reg = <0x6000a000 0x1400>;
|
||||
|
|
Loading…
Reference in New Issue