meson-wdt.txt 580 B

123456789101112131415161718192021
  1. Meson SoCs Watchdog timer
  2. Required properties:
  3. - compatible : depending on the SoC this should be one of:
  4. "amlogic,meson6-wdt" on Meson6 SoCs
  5. "amlogic,meson8-wdt" and "amlogic,meson6-wdt" on Meson8 SoCs
  6. "amlogic,meson8b-wdt" on Meson8b SoCs
  7. "amlogic,meson8m2-wdt" and "amlogic,meson8b-wdt" on Meson8m2 SoCs
  8. - reg : Specifies base physical address and size of the registers.
  9. Optional properties:
  10. - timeout-sec: contains the watchdog timeout in seconds.
  11. Example:
  12. wdt: watchdog@c1109900 {
  13. compatible = "amlogic,meson6-wdt";
  14. reg = <0xc1109900 0x8>;
  15. timeout-sec = <10>;
  16. };