diff options
author | Xing Zheng <zhengxing@rock-chips.com> | 2016-08-26 09:22:30 +0300 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2016-08-26 14:38:37 +0300 |
commit | 0895b3a8fd855a448b5c37e54f0c57ece4f421fa (patch) | |
tree | 4c2e2fb081499e41443021dfc49c19ec69d4b8b3 /arch/arm64/boot/dts/rockchip | |
parent | fe996215156e56cd5c51a86aaf0e53a137a0136f (diff) | |
download | linux-0895b3a8fd855a448b5c37e54f0c57ece4f421fa.tar.xz |
arm64: dts: rockchip: fix the address map for WDT0 and WDT1
Due to incorrect description in the TRM, the WDTs base address
should be fixed and swap them like this:
WDT0 - 0xff848000
WDT1 - 0xff840000
And, it is right that only WDT0 can generate global software reset.
We will update the TRM to fix it.
Signed-off-by: Xing Zheng <zhengxing@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm64/boot/dts/rockchip')
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399.dtsi b/arch/arm64/boot/dts/rockchip/rk3399.dtsi index bc86e8c8bb46..f0f52c10cdbd 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi @@ -1002,9 +1002,9 @@ }; }; - watchdog@ff840000 { + watchdog@ff848000 { compatible = "snps,dw-wdt"; - reg = <0x0 0xff840000 0x0 0x100>; + reg = <0x0 0xff848000 0x0 0x100>; clocks = <&cru PCLK_WDT>; interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>; }; |