aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2014-02-25 11:50:08 -0500
committerArnd Bergmann <arnd@arndb.de>2014-02-25 11:50:14 -0500
commit1e7bdf82abf210577228d36a098588b49e46b9a9 (patch)
tree4c5f490622a806be8d8677d272e2c7ee4c1c7a2b /Documentation/devicetree
parent96f9d40db89fbf59f0f115877ab90d94bb66f503 (diff)
parent59416745bb8cbe32daf805f768418353168b0664 (diff)
Merge tag 'mvebu-watchdog-3.15' of git://git.infradead.org/linux-mvebu into next/drivers
mvebu watchdog driver changes for v3.15 - orion watchdog - cleanup and extend driver to support Armada 370 and Armada XP Depends: - tags/irqchip-mvebu-fixes-3.14 (already pulled by tglx) - both are based on v3.14-rc1 * tag 'mvebu-watchdog-3.15' of git://git.infradead.org/linux-mvebu: watchdog: orion: Enable the build on ARCH_MVEBU watchdog: orion: Add support for Armada 370 and Armada XP SoC watchdog: orion: Add per-compatible watchdog start implementation watchdog: orion: Add per-compatible clock initialization watchdog: orion: Introduce per-compatible of_device_id data watchdog: orion: Introduce an orion_watchdog device structure watchdog: orion: Remove unneeded BRIDGE_CAUSE clear watchdog: orion: Make RSTOUT register a separate resource watchdog: orion: Handle the interrupt so it's properly acked watchdog: orion: Make sure the watchdog is initially stopped watchdog: orion: Remove unused macros watchdog: orion: Use atomic access for shared registers watchdog: orion: Add clock error handling Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/watchdog/marvel.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/watchdog/marvel.txt b/Documentation/devicetree/bindings/watchdog/marvel.txt
index 5dc8d30061ce..de11eb4c121f 100644
--- a/Documentation/devicetree/bindings/watchdog/marvel.txt
+++ b/Documentation/devicetree/bindings/watchdog/marvel.txt
@@ -3,17 +3,24 @@
3Required Properties: 3Required Properties:
4 4
5- Compatibility : "marvell,orion-wdt" 5- Compatibility : "marvell,orion-wdt"
6- reg : Address of the timer registers 6 "marvell,armada-370-wdt"
7 "marvell,armada-xp-wdt"
8
9- reg : Should contain two entries: first one with the
10 timer control address, second one with the
11 rstout enable address.
7 12
8Optional properties: 13Optional properties:
9 14
15- interrupts : Contains the IRQ for watchdog expiration
10- timeout-sec : Contains the watchdog timeout in seconds 16- timeout-sec : Contains the watchdog timeout in seconds
11 17
12Example: 18Example:
13 19
14 wdt@20300 { 20 wdt@20300 {
15 compatible = "marvell,orion-wdt"; 21 compatible = "marvell,orion-wdt";
16 reg = <0x20300 0x28>; 22 reg = <0x20300 0x28>, <0x20108 0x4>;
23 interrupts = <3>;
17 timeout-sec = <10>; 24 timeout-sec = <10>;
18 status = "okay"; 25 status = "okay";
19 }; 26 };