Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 8124c8a6b35386f73523d27eacb71b5364a68c4c authored by Linus Torvalds on 30 May 2021, 21:58:25 UTC
Linux 5.13-rc4
Tip revision: 8124c8a
meson-wdt.txt
Meson SoCs Watchdog timer

Required properties:

- compatible : depending on the SoC this should be one of:
	"amlogic,meson6-wdt" on Meson6 SoCs
	"amlogic,meson8-wdt" and "amlogic,meson6-wdt" on Meson8 SoCs
	"amlogic,meson8b-wdt" on Meson8b SoCs
	"amlogic,meson8m2-wdt" and "amlogic,meson8b-wdt" on Meson8m2 SoCs
- reg : Specifies base physical address and size of the registers.

Optional properties:
- timeout-sec: contains the watchdog timeout in seconds.

Example:

wdt: watchdog@c1109900 {
	compatible = "amlogic,meson6-wdt";
	reg = <0xc1109900 0x8>;
	timeout-sec = <10>;
};
back to top