mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-21 15:17:28 +07:00
dfc01e2c83
Allwinner H6 has a similar watchdog as the A64 which is already a compatible of the A31. This commit add the H6 compatible. Signed-off-by: Clément Péron <peron.clem@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
23 lines
576 B
Plaintext
23 lines
576 B
Plaintext
Allwinner SoCs Watchdog timer
|
|
|
|
Required properties:
|
|
|
|
- compatible : should be one of
|
|
"allwinner,sun4i-a10-wdt"
|
|
"allwinner,sun6i-a31-wdt"
|
|
"allwinner,sun50i-a64-wdt","allwinner,sun6i-a31-wdt"
|
|
"allwinner,sun50i-h6-wdt","allwinner,sun6i-a31-wdt"
|
|
"allwinner,suniv-f1c100s-wdt", "allwinner,sun4i-a10-wdt"
|
|
- reg : Specifies base physical address and size of the registers.
|
|
|
|
Optional properties:
|
|
- timeout-sec : Contains the watchdog timeout in seconds
|
|
|
|
Example:
|
|
|
|
wdt: watchdog@1c20c90 {
|
|
compatible = "allwinner,sun4i-a10-wdt";
|
|
reg = <0x01c20c90 0x10>;
|
|
timeout-sec = <10>;
|
|
};
|