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