Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: watchdog: Document armada-37xx-wdt binding

This adds device tree binding documentation for the CPU watchdog found
on Armada 37xx SOCs (EspressoBin, Turris Mox).

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: devicetree@vger.kernel.org
Reviewed-by: Rob Herring <robh@kernel.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>

authored by

Marek Behún and committed by
Wim Van Sebroeck
85622055 54e3d9b5

+23
+23
Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
··· 1 + * Armada 37xx CPU Watchdog Timer Controller 2 + 3 + Required properties: 4 + - compatible : must be "marvell,armada-3700-wdt" 5 + - reg : base physical address of the controller and length of memory mapped 6 + region. 7 + - clocks : the clock feeding the watchdog timer. See clock-bindings.txt 8 + - marvell,system-controller : reference to syscon node for the CPU Miscellaneous 9 + Registers 10 + 11 + Example: 12 + 13 + cpu_misc: system-controller@d000 { 14 + compatible = "marvell,armada-3700-cpu-misc", "syscon"; 15 + reg = <0xd000 0x1000>; 16 + }; 17 + 18 + wdt: watchdog@8300 { 19 + compatible = "marvell,armada-3700-wdt"; 20 + reg = <0x8300 0x40>; 21 + marvell,system-controller = <&cpu_misc>; 22 + clocks = <&xtalclk>; 23 + };