marvell,armada-370-xp-timer.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Marvell Armada 370 and Armada XP Timers
  2. ---------------------------------------
  3. Required properties:
  4. - compatible: Should be either "marvell,armada-370-timer" or
  5. "marvell,armada-xp-timer" as appropriate.
  6. - interrupts: Should contain the list of Global Timer interrupts and
  7. then local timer interrupts
  8. - reg: Should contain location and length for timers register. First
  9. pair for the Global Timer registers, second pair for the
  10. local/private timers.
  11. Clocks required for compatible = "marvell,armada-370-timer":
  12. - clocks : Must contain a single entry describing the clock input
  13. Clocks required for compatible = "marvell,armada-xp-timer":
  14. - clocks : Must contain an entry for each entry in clock-names.
  15. - clock-names : Must include the following entries:
  16. "nbclk" (L2/coherency fabric clock),
  17. "fixed" (Reference 25 MHz fixed-clock).
  18. Examples:
  19. - Armada 370:
  20. timer {
  21. compatible = "marvell,armada-370-timer";
  22. reg = <0x20300 0x30>, <0x21040 0x30>;
  23. interrupts = <37>, <38>, <39>, <40>, <5>, <6>;
  24. clocks = <&coreclk 2>;
  25. };
  26. - Armada XP:
  27. timer {
  28. compatible = "marvell,armada-xp-timer";
  29. reg = <0x20300 0x30>, <0x21040 0x30>;
  30. interrupts = <37>, <38>, <39>, <40>, <5>, <6>;
  31. clocks = <&coreclk 2>, <&refclk>;
  32. clock-names = "nbclk", "fixed";
  33. };