marvel.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. Clocks required for compatibles = "marvell,orion-wdt",
  15. "marvell,armada-370-wdt":
  16. - clocks : Must contain a single entry describing the clock input
  17. Clocks required for compatibles = "marvell,armada-xp-wdt"
  18. "marvell,armada-375-wdt"
  19. "marvell,armada-380-wdt":
  20. - clocks : Must contain an entry for each entry in clock-names.
  21. - clock-names : Must include the following entries:
  22. "nbclk" (L2/coherency fabric clock),
  23. "fixed" (Reference 25 MHz fixed-clock).
  24. Optional properties:
  25. - interrupts : Contains the IRQ for watchdog expiration
  26. - timeout-sec : Contains the watchdog timeout in seconds
  27. Example:
  28. wdt@20300 {
  29. compatible = "marvell,orion-wdt";
  30. reg = <0x20300 0x28>, <0x20108 0x4>;
  31. interrupts = <3>;
  32. timeout-sec = <10>;
  33. status = "okay";
  34. clocks = <&gate_clk 7>;
  35. };