Sascha Hauer | c21e5ca | 2013-03-14 13:08:56 +0100 | [diff] [blame] | 1 | Freescale i.MX General Purpose Timer (GPT) |
| 2 | |
| 3 | Required properties: |
| 4 | |
| 5 | - compatible : should be "fsl,<soc>-gpt" |
| 6 | - reg : Specifies base physical address and size of the registers. |
| 7 | - interrupts : A list of 4 interrupts; one per timer channel. |
| 8 | - clocks : The clocks provided by the SoC to drive the timer. |
| 9 | |
| 10 | Example: |
| 11 | |
| 12 | gpt1: timer@10003000 { |
| 13 | compatible = "fsl,imx27-gpt", "fsl,imx1-gpt"; |
| 14 | reg = <0x10003000 0x1000>; |
| 15 | interrupts = <26>; |
| 16 | clocks = <&clks 46>, <&clks 61>; |
| 17 | clock-names = "ipg", "per"; |
| 18 | }; |