mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
938d0a840d
This adds a driver for watchdog timer hardware present on Broadcom BCM2835 SoC, used in Raspberry Pi and Roku 2 devices. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Tested-by: Stephen Warren <swarren@wwwdotorg.org> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be> Cc: linux-rpi-kernel@lists.infradead.org Cc: linux-watchdog@vger.kernel.org Cc: devicetree-discuss@lists.ozlabs.org
19 lines
351 B
Plaintext
19 lines
351 B
Plaintext
BCM2835 Watchdog timer
|
|
|
|
Required properties:
|
|
|
|
- compatible : should be "brcm,bcm2835-pm-wdt"
|
|
- reg : Specifies base physical address and size of the registers.
|
|
|
|
Optional properties:
|
|
|
|
- timeout-sec : Contains the watchdog timeout in seconds
|
|
|
|
Example:
|
|
|
|
watchdog {
|
|
compatible = "brcm,bcm2835-pm-wdt";
|
|
reg = <0x7e100000 0x28>;
|
|
timeout-sec = <10>;
|
|
};
|