diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2019-01-28 15:37:30 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-09 07:50:50 -0500 |
commit | 8d6006f2ac8b58a936b4d6bb3a196a8f8ff39a6f (patch) | |
tree | 96b1d29ebd3d408512de6c941f1d7e3e46935eff | |
parent | 09000365612298c6ef802f5a0eb25dd9b6a9583d (diff) | |
download | u-boot-8d6006f2ac8b58a936b4d6bb3a196a8f8ff39a6f.tar.gz u-boot-8d6006f2ac8b58a936b4d6bb3a196a8f8ff39a6f.tar.bz2 u-boot-8d6006f2ac8b58a936b4d6bb3a196a8f8ff39a6f.zip |
dt: bcm6858: add watchdog
This commit add watchdog and sysreset watchdog
in the bcm6858 device tree.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
-rw-r--r-- | arch/arm/dts/bcm6858.dtsi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/dts/bcm6858.dtsi b/arch/arm/dts/bcm6858.dtsi index d78d34d213..23b80c67a6 100644 --- a/arch/arm/dts/bcm6858.dtsi +++ b/arch/arm/dts/bcm6858.dtsi @@ -81,5 +81,22 @@ status = "disabled"; }; + + wdt1: watchdog@ff802780 { + compatible = "brcm,bcm6345-wdt"; + reg = <0x0 0xff802780 0x0 0x14>; + clocks = <&periph_osc>; + }; + + wdt2: watchdog@ff8027c0 { + compatible = "brcm,bcm6345-wdt"; + reg = <0x0 0xff8027c0 0x0 0x14>; + clocks = <&periph_osc>; + }; + + wdt-reboot { + compatible = "wdt-reboot"; + wdt = <&wdt1>; + }; }; }; |