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

watchdog: lantiq: add device tree binding documentation

The binding was not documented before, add the documentation now.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Acked-by: Rob Herring <robh@kernel.org>
Cc: martin.blumenstingl@googlemail.com
Cc: john@phrozen.org
Cc: andy.shevchenko@gmail.com
Cc: p.zabel@pengutronix.de
Cc: kishon@ti.com
Cc: mark.rutland@arm.com
Cc: linux-mips@linux-mips.org
Cc: linux-mtd@lists.infradead.org
Cc: linux-watchdog@vger.kernel.org
Cc: devicetree@vger.kernel.org
Cc: linux-spi@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/17119/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by

Hauke Mehrtens and committed by
Ralf Baechle
1814809e 710322ba

+24
+24
Documentation/devicetree/bindings/watchdog/lantiq-wdt.txt
··· 1 + Lantiq WTD watchdog binding 2 + ============================ 3 + 4 + This describes the binding of the Lantiq watchdog driver. 5 + 6 + ------------------------------------------------------------------------------- 7 + Required properties: 8 + - compatible : Should be one of 9 + "lantiq,wdt" 10 + "lantiq,xrx100-wdt" 11 + "lantiq,xrx200-wdt", "lantiq,xrx100-wdt" 12 + "lantiq,falcon-wdt" 13 + - reg : Address of the watchdog block 14 + - lantiq,rcu : A phandle to the RCU syscon (required for 15 + "lantiq,falcon-wdt" and "lantiq,xrx100-wdt") 16 + 17 + ------------------------------------------------------------------------------- 18 + Example for the watchdog on the xRX200 SoCs: 19 + watchdog@803f0 { 20 + compatible = "lantiq,xrx200-wdt", "lantiq,xrx100-wdt"; 21 + reg = <0x803f0 0x10>; 22 + 23 + lantiq,rcu = <&rcu0>; 24 + };