mediatek,mtk-timer.txt 878 B

1234567891011121314151617181920212223
  1. Mediatek MT6577, MT6572 and MT6589 Timers
  2. ---------------------------------------
  3. Required properties:
  4. - compatible should contain:
  5. * "mediatek,mt6580-timer" for MT6580 compatible timers
  6. * "mediatek,mt6589-timer" for MT6589 compatible timers
  7. * "mediatek,mt8127-timer" for MT8127 compatible timers
  8. * "mediatek,mt8135-timer" for MT8135 compatible timers
  9. * "mediatek,mt8173-timer" for MT8173 compatible timers
  10. * "mediatek,mt6577-timer" for MT6577 and all above compatible timers
  11. - reg: Should contain location and length for timers register.
  12. - clocks: Clocks driving the timer hardware. This list should include two
  13. clocks. The order is system clock and as second clock the RTC clock.
  14. Examples:
  15. timer@10008000 {
  16. compatible = "mediatek,mt6577-timer";
  17. reg = <0x10008000 0x80>;
  18. interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_LOW>;
  19. clocks = <&system_clk>, <&rtc_clk>;
  20. };