Merge tag 'tegra-for-4.8-i2c' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra...
[cascardo/linux.git] / Documentation / devicetree / bindings / timer / fsl,imxgpt.txt
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 };