mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 09:32:32 +00:00
cfff96e69f
I accidently put the devicetree bindings for the MEN A21 watchdog driver in Documentation/devicetree/bindings/gpio instead of Documentation/devicetree/bindings/watchdog, this patch addresses this error. Signed-off-by: Johannes Thumshirn <johannes.thumshirn@men.de> Acked-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ian.campbell@citrix.com> Cc: Rob Landley <rob@landley.net>
26 lines
624 B
Plaintext
26 lines
624 B
Plaintext
Bindings for MEN A21 Watchdog device connected to GPIO lines
|
|
|
|
Required properties:
|
|
- compatible: "men,a021-wdt"
|
|
- gpios: Specifies the pins that control the Watchdog, order:
|
|
1: Watchdog enable
|
|
2: Watchdog fast-mode
|
|
3: Watchdog trigger
|
|
4: Watchdog reset cause bit 0
|
|
5: Watchdog reset cause bit 1
|
|
6: Watchdog reset cause bit 2
|
|
|
|
Optional properties:
|
|
- None
|
|
|
|
Example:
|
|
watchdog {
|
|
compatible ="men,a021-wdt";
|
|
gpios = <&gpio3 9 1 /* WD_EN */
|
|
&gpio3 10 1 /* WD_FAST */
|
|
&gpio3 11 1 /* WD_TRIG */
|
|
&gpio3 6 1 /* RST_CAUSE[0] */
|
|
&gpio3 7 1 /* RST_CAUSE[1] */
|
|
&gpio3 8 1>; /* RST_CAUSE[2] */
|
|
};
|