xref: /linux/Documentation/devicetree/bindings/timer/faraday,fttmr010.txt (revision e58e871becec2d3b04ed91c0c16fe8deac9c9dfa)
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"
11- reg : Should contain registers location and length
12- interrupts : Should contain the three timer interrupts usually with
13  flags for falling edge
14
15Optionally required properties:
16
17- clocks : a clock to provide the tick rate for "faraday,fttmr010"
18- clock-names : should be "EXTCLK" and "PCLK" for the external tick timer
19  and peripheral clock respectively, for "faraday,fttmr010"
20- syscon : a phandle to the global Gemini system controller if the compatible
21  type is "cortina,gemini-timer"
22
23Example:
24
25timer@43000000 {
26	compatible = "faraday,fttmr010";
27	reg = <0x43000000 0x1000>;
28	interrupts = <14 IRQ_TYPE_EDGE_FALLING>, /* Timer 1 */
29		   <15 IRQ_TYPE_EDGE_FALLING>, /* Timer 2 */
30		   <16 IRQ_TYPE_EDGE_FALLING>; /* Timer 3 */
31	clocks = <&extclk>, <&pclk>;
32	clock-names = "EXTCLK", "PCLK";
33};
34