1Faraday Technology timer
2
3This timer is a generic IP block from Faraday Technology, embedded in the
4Cortina Systems Gemini SoCs and other designs.
5
6Required properties:
7
8- compatible : Must be one of
9  "faraday,fttmr010"
10  "cortina,gemini-timer", "faraday,fttmr010"
11  "moxa,moxart-timer", "faraday,fttmr010"
12  "aspeed,ast2400-timer"
13  "aspeed,ast2500-timer"
14
15- reg : Should contain registers location and length
16- interrupts : Should contain the three timer interrupts usually with
17  flags for falling edge
18
19Optionally required properties:
20
21- clocks : a clock to provide the tick rate for "faraday,fttmr010"
22- clock-names : should be "EXTCLK" and "PCLK" for the external tick timer
23  and peripheral clock respectively, for "faraday,fttmr010"
24- syscon : a phandle to the global Gemini system controller if the compatible
25  type is "cortina,gemini-timer"
26
27Example:
28
29timer@43000000 {
30	compatible = "faraday,fttmr010";
31	reg = <0x43000000 0x1000>;
32	interrupts = <14 IRQ_TYPE_EDGE_FALLING>, /* Timer 1 */
33		   <15 IRQ_TYPE_EDGE_FALLING>, /* Timer 2 */
34		   <16 IRQ_TYPE_EDGE_FALLING>; /* Timer 3 */
35	clocks = <&extclk>, <&pclk>;
36	clock-names = "EXTCLK", "PCLK";
37};
38