mirror of https://gitee.com/openkylin/linux.git
ARM: dts: rockchip: add watchdog node
This adds the Designware compatible watchdog found on RK3xxx Cortex-A9 SoCs. Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
parent
23c93bc92c
commit
eb2b9d47dd
|
@ -188,3 +188,7 @@ &uart2 {
|
||||||
&uart3 {
|
&uart3 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&wdt {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
|
@ -425,3 +425,7 @@ &uart3 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart3_xfer>;
|
pinctrl-0 = <&uart3_xfer>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&wdt {
|
||||||
|
compatible = "rockchip,rk3066-wdt", "snps,dw-wdt";
|
||||||
|
};
|
||||||
|
|
|
@ -221,3 +221,7 @@ &uart2 {
|
||||||
&uart3 {
|
&uart3 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&wdt {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
|
@ -400,3 +400,7 @@ &uart3 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart3_xfer>;
|
pinctrl-0 = <&uart3_xfer>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&wdt {
|
||||||
|
compatible = "rockchip,rk3188-wdt", "snps,dw-wdt";
|
||||||
|
};
|
||||||
|
|
|
@ -174,6 +174,14 @@ pwm1: pwm@20030010 {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wdt: watchdog@2004c000 {
|
||||||
|
compatible = "snps,dw-wdt";
|
||||||
|
reg = <0x2004c000 0x100>;
|
||||||
|
clocks = <&cru PCLK_WDT>;
|
||||||
|
interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
pwm2: pwm@20050020 {
|
pwm2: pwm@20050020 {
|
||||||
compatible = "rockchip,rk2928-pwm";
|
compatible = "rockchip,rk2928-pwm";
|
||||||
reg = <0x20050020 0x10>;
|
reg = <0x20050020 0x10>;
|
||||||
|
|
Loading…
Reference in New Issue