clocksource/drivers/fttmr010: Merge FTTMR010 DT bindings
[linux-2.6/btrfs-unstable.git] / Documentation / devicetree / bindings / timer / faraday,fttmr010.txt
blob6e18bd662ccb552183c89737901d5e238b7de8c3
1 Faraday Technology timer
3 This timer is a generic IP block from Faraday Technology, embedded in the
4 Cortina Systems Gemini SoCs and other designs.
6 Required properties:
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 - reg : Should contain registers location and length
14 - interrupts : Should contain the three timer interrupts usually with
15   flags for falling edge
17 Optionally required properties:
19 - clocks : a clock to provide the tick rate for "faraday,fttmr010"
20 - clock-names : should be "EXTCLK" and "PCLK" for the external tick timer
21   and peripheral clock respectively, for "faraday,fttmr010"
22 - syscon : a phandle to the global Gemini system controller if the compatible
23   type is "cortina,gemini-timer"
25 Example:
27 timer@43000000 {
28         compatible = "faraday,fttmr010";
29         reg = <0x43000000 0x1000>;
30         interrupts = <14 IRQ_TYPE_EDGE_FALLING>, /* Timer 1 */
31                    <15 IRQ_TYPE_EDGE_FALLING>, /* Timer 2 */
32                    <16 IRQ_TYPE_EDGE_FALLING>; /* Timer 3 */
33         clocks = <&extclk>, <&pclk>;
34         clock-names = "EXTCLK", "PCLK";