forked from Minki/linux
c83c199199
This adds support for probing the COH 901 327 watchdog from the device tree and also adds associated bindings. Acked-by: Wim Van Sebroeck <wim@iguana.be> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
20 lines
488 B
Plaintext
20 lines
488 B
Plaintext
ST-Ericsson COH 901 327 Watchdog timer
|
|
|
|
Required properties:
|
|
- compatible: must be "stericsson,coh901327".
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: the interrupt used for the watchdog timeout warning.
|
|
|
|
Optional properties:
|
|
- timeout-sec: contains the watchdog timeout in seconds.
|
|
|
|
Example:
|
|
|
|
watchdog: watchdog@c0012000 {
|
|
compatible = "stericsson,coh901327";
|
|
reg = <0xc0012000 0x1000>;
|
|
interrupts = <3>;
|
|
timeout-sec = <60>;
|
|
};
|