mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 03:05:24 +07:00
![Mesih Kilinc](/assets/img/avatar_default.png)
Allwinner ARMv5 F1C100s has similar watchdog timer to sun6i A31. Add definition for it. Signed-off-by: Mesih Kilinc <mesihkilinc@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
22 lines
523 B
Plaintext
22 lines
523 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,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>;
|
|
};
|