marvel.txt 810 B

123456789101112131415161718192021222324252627282930313233
  1. * Marvell Orion Watchdog Time
  2. Required Properties:
  3. - Compatibility : "marvell,orion-wdt"
  4. "marvell,armada-370-wdt"
  5. "marvell,armada-xp-wdt"
  6. "marvell,armada-375-wdt"
  7. "marvell,armada-380-wdt"
  8. - reg : Should contain two entries: first one with the
  9. timer control address, second one with the
  10. rstout enable address.
  11. For "marvell,armada-375-wdt" and "marvell,armada-380-wdt":
  12. - reg : A third entry is mandatory and should contain the
  13. shared mask/unmask RSTOUT address.
  14. Optional properties:
  15. - interrupts : Contains the IRQ for watchdog expiration
  16. - timeout-sec : Contains the watchdog timeout in seconds
  17. Example:
  18. wdt@20300 {
  19. compatible = "marvell,orion-wdt";
  20. reg = <0x20300 0x28>, <0x20108 0x4>;
  21. interrupts = <3>;
  22. timeout-sec = <10>;
  23. status = "okay";
  24. };