diff options
author | John Crispin <blogic@openwrt.org> | 2013-08-08 05:31:43 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2013-11-17 13:36:38 -0500 |
commit | 473cf939ff3442dc86d531f3bb152a2f129ea9d1 (patch) | |
tree | e541e4c9d82da6390841e046e13b9ca377cdeb80 /Documentation | |
parent | e14538e0db8d880291064348bda7d52ec8322675 (diff) |
watchdog: add ralink watchdog driver
Add a driver for the watchdog timer found on Ralink SoC
Signed-off-by: John Crispin <blogic@openwrt.org>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Cc: linux-watchdog@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: devicetree-discuss@lists.ozlabs.org
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/watchdog/rt2880-wdt.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/watchdog/rt2880-wdt.txt b/Documentation/devicetree/bindings/watchdog/rt2880-wdt.txt new file mode 100644 index 000000000000..d7bab3db9d1f --- /dev/null +++ b/Documentation/devicetree/bindings/watchdog/rt2880-wdt.txt | |||
@@ -0,0 +1,19 @@ | |||
1 | Ralink Watchdog Timers | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: must be "ralink,rt2880-wdt" | ||
5 | - reg: physical base address of the controller and length of the register range | ||
6 | |||
7 | Optional properties: | ||
8 | - interrupt-parent: phandle to the INTC device node | ||
9 | - interrupts: Specify the INTC interrupt number | ||
10 | |||
11 | Example: | ||
12 | |||
13 | watchdog@120 { | ||
14 | compatible = "ralink,rt2880-wdt"; | ||
15 | reg = <0x120 0x10>; | ||
16 | |||
17 | interrupt-parent = <&intc>; | ||
18 | interrupts = <1>; | ||
19 | }; | ||