0001 * Cirrus Logic CLPS711X Timer Counter
0002
0003 Required properties:
0004 - compatible: Shall contain "cirrus,ep7209-timer".
0005 - reg : Address and length of the register set.
0006 - interrupts: The interrupt number of the timer.
0007 - clocks : phandle of timer reference clock.
0008
0009 Note: Each timer should have an alias correctly numbered in "aliases" node.
0010
0011 Example:
0012 aliases {
0013 timer0 = &timer1;
0014 timer1 = &timer2;
0015 };
0016
0017 timer1: timer@80000300 {
0018 compatible = "cirrus,ep7312-timer", "cirrus,ep7209-timer";
0019 reg = <0x80000300 0x4>;
0020 interrupts = <8>;
0021 clocks = <&clks 5>;
0022 };
0023
0024 timer2: timer@80000340 {
0025 compatible = "cirrus,ep7312-timer", "cirrus,ep7209-timer";
0026 reg = <0x80000340 0x4>;
0027 interrupts = <9>;
0028 clocks = <&clks 6>;
0029 };