Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f22c635e authored by Jon Mason's avatar Jon Mason Committed by Florian Fainelli
Browse files

ARM: dts: BCM5301X: Add TWD WD Support to DT



Add support for the ARM TWD Watchdog to the bcm5301x device tree.  The
ARM TWD timer allocated the register space for the WDT, so this patch
necessitated shrinking that.  Also, the GIC masks were added for these.

Signed-off-by: default avatarJon Mason <jonmason@broadcom.com>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 0e34079c
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -70,10 +70,19 @@
			clocks = <&periph_clk>;
		};

		local-timer@20600 {
		timer@20600 {
			compatible = "arm,cortex-a9-twd-timer";
			reg = <0x20600 0x100>;
			interrupts = <GIC_PPI 13 IRQ_TYPE_EDGE_RISING>;
			reg = <0x20600 0x20>;
			interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) |
						  IRQ_TYPE_EDGE_RISING)>;
			clocks = <&periph_clk>;
		};

		watchdog@20620 {
			compatible = "arm,cortex-a9-twd-wdt";
			reg = <0x20620 0x20>;
			interrupts = <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) |
						  IRQ_TYPE_EDGE_RISING)>;
			clocks = <&periph_clk>;
		};