diff options
| author | Philippe Reynes <[email protected]> | 2019-01-31 18:57:38 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-09 07:51:00 -0500 |
| commit | 2f4a686f217756d99556fef1e7756946d7566deb (patch) | |
| tree | 2b1540779e7873a2228dc5f48129c0003f1cf3be | |
| parent | dcae39e55f1e6987b4bd4732c17350a1f10eaa09 (diff) | |
dt: bcm63158: add watchdog
This commit add watchdog and sysreset watchdog
in the bcm63158 device tree.
Signed-off-by: Philippe Reynes <[email protected]>
| -rw-r--r-- | arch/arm/dts/bcm63158.dtsi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/dts/bcm63158.dtsi b/arch/arm/dts/bcm63158.dtsi index be68205dc6d..6a3fbc90939 100644 --- a/arch/arm/dts/bcm63158.dtsi +++ b/arch/arm/dts/bcm63158.dtsi @@ -81,5 +81,22 @@ status = "disabled"; }; + + wdt1: watchdog@ff800480 { + compatible = "brcm,bcm6345-wdt"; + reg = <0x0 0xff800480 0x0 0x14>; + clocks = <&periph_osc>; + }; + + wdt2: watchdog@ff8004c0 { + compatible = "brcm,bcm6345-wdt"; + reg = <0x0 0xff8004c0 0x0 0x14>; + clocks = <&periph_osc>; + }; + + wdt-reboot { + compatible = "wdt-reboot"; + wdt = <&wdt1>; + }; }; }; |
