mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
473cf939ff
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
20 lines
429 B
Plaintext
20 lines
429 B
Plaintext
Ralink Watchdog Timers
|
|
|
|
Required properties:
|
|
- compatible: must be "ralink,rt2880-wdt"
|
|
- reg: physical base address of the controller and length of the register range
|
|
|
|
Optional properties:
|
|
- interrupt-parent: phandle to the INTC device node
|
|
- interrupts: Specify the INTC interrupt number
|
|
|
|
Example:
|
|
|
|
watchdog@120 {
|
|
compatible = "ralink,rt2880-wdt";
|
|
reg = <0x120 0x10>;
|
|
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <1>;
|
|
};
|