mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 12:56:00 +01:00
arm: dts: rockchip: rk3288: move dma-controller nodes
In order to better compare the Linux rk3288.dtsi version with the u-boot version move the dma-controller nodes to the DT root. Signed-off-by: Johan Jonker <jbx6244@gmail.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
e0bf010ab9
commit
6f0037f305
@ -86,47 +86,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
amba {
|
|
||||||
compatible = "arm,amba-bus";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
dmac_peri: dma-controller@ff250000 {
|
|
||||||
compatible = "arm,pl330", "arm,primecell";
|
|
||||||
broken-no-flushp;
|
|
||||||
reg = <0xff250000 0x4000>;
|
|
||||||
interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>,
|
|
||||||
<GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
#dma-cells = <1>;
|
|
||||||
clocks = <&cru ACLK_DMAC2>;
|
|
||||||
clock-names = "apb_pclk";
|
|
||||||
};
|
|
||||||
|
|
||||||
dmac_bus_ns: dma-controller@ff600000 {
|
|
||||||
compatible = "arm,pl330", "arm,primecell";
|
|
||||||
broken-no-flushp;
|
|
||||||
reg = <0xff600000 0x4000>;
|
|
||||||
interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
|
||||||
<GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
#dma-cells = <1>;
|
|
||||||
clocks = <&cru ACLK_DMAC1>;
|
|
||||||
clock-names = "apb_pclk";
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
dmac_bus_s: dma-controller@ffb20000 {
|
|
||||||
compatible = "arm,pl330", "arm,primecell";
|
|
||||||
broken-no-flushp;
|
|
||||||
reg = <0xffb20000 0x4000>;
|
|
||||||
interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
|
||||||
<GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
#dma-cells = <1>;
|
|
||||||
clocks = <&cru ACLK_DMAC1>;
|
|
||||||
clock-names = "apb_pclk";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
xin24m: oscillator {
|
xin24m: oscillator {
|
||||||
compatible = "fixed-clock";
|
compatible = "fixed-clock";
|
||||||
clock-frequency = <24000000>;
|
clock-frequency = <24000000>;
|
||||||
@ -367,6 +326,18 @@
|
|||||||
pinctrl-0 = <&uart4_xfer>;
|
pinctrl-0 = <&uart4_xfer>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dmac_peri: dma-controller@ff250000 {
|
||||||
|
compatible = "arm,pl330", "arm,primecell";
|
||||||
|
reg = <0xff250000 0x4000>;
|
||||||
|
interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#dma-cells = <1>;
|
||||||
|
broken-no-flushp;
|
||||||
|
clocks = <&cru ACLK_DMAC2>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
};
|
||||||
|
|
||||||
thermal: thermal-zones {
|
thermal: thermal-zones {
|
||||||
#include "rk3288-thermal.dtsi"
|
#include "rk3288-thermal.dtsi"
|
||||||
};
|
};
|
||||||
@ -458,6 +429,18 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dmac_bus_ns: dma-controller@ff600000 {
|
||||||
|
compatible = "arm,pl330", "arm,primecell";
|
||||||
|
reg = <0xff600000 0x4000>;
|
||||||
|
interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#dma-cells = <1>;
|
||||||
|
broken-no-flushp;
|
||||||
|
clocks = <&cru ACLK_DMAC1>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
i2c0: i2c@ff650000 {
|
i2c0: i2c@ff650000 {
|
||||||
compatible = "rockchip,rk3288-i2c";
|
compatible = "rockchip,rk3288-i2c";
|
||||||
reg = <0xff650000 0x1000>;
|
reg = <0xff650000 0x1000>;
|
||||||
@ -870,6 +853,17 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dmac_bus_s: dma-controller@ffb20000 {
|
||||||
|
compatible = "arm,pl330", "arm,primecell";
|
||||||
|
reg = <0xffb20000 0x4000>;
|
||||||
|
interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#dma-cells = <1>;
|
||||||
|
broken-no-flushp;
|
||||||
|
clocks = <&cru ACLK_DMAC1>;
|
||||||
|
clock-names = "apb_pclk";
|
||||||
|
};
|
||||||
|
|
||||||
efuse: efuse@ffb40000 {
|
efuse: efuse@ffb40000 {
|
||||||
compatible = "rockchip,rk3288-efuse";
|
compatible = "rockchip,rk3288-efuse";
|
||||||
reg = <0xffb40000 0x10000>;
|
reg = <0xffb40000 0x10000>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user