summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/watchdog/armada-37xx-wdt.txt
blob: a8d00c31a1d8d85d6e6ba978ceb5fd0f67b31c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
* Armada 37xx CPU Watchdog Timer Controller

Required properties:
- compatible : must be "marvell,armada-3700-wdt"
- reg : base physical address of the controller and length of memory mapped
	region.
- clocks : the clock feeding the watchdog timer. See clock-bindings.txt
- marvell,system-controller : reference to syscon node for the CPU Miscellaneous
	Registers

Example:

	cpu_misc: system-controller@d000 {
		compatible = "marvell,armada-3700-cpu-misc", "syscon";
		reg = <0xd000 0x1000>;
	};

	wdt: watchdog@8300 {
		compatible = "marvell,armada-3700-wdt";
		reg = <0x8300 0x40>;
		marvell,system-controller = <&cpu_misc>;
		clocks = <&xtalclk>;
	};