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