summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/timer/fsl,imxgpt.txt
blob: 9809b11f7180fa427b284d68ba484088025d1a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Freescale i.MX General Purpose Timer (GPT)

Required properties:

- compatible : should be "fsl,<soc>-gpt"
- reg : Specifies base physical address and size of the registers.
- interrupts : A list of 4 interrupts; one per timer channel.
- clocks : The clocks provided by the SoC to drive the timer.

Example:

gpt1: timer@10003000 {
	compatible = "fsl,imx27-gpt", "fsl,imx1-gpt";
	reg = <0x10003000 0x1000>;
	interrupts = <26>;
	clocks = <&clks 46>, <&clks 61>;
	clock-names = "ipg", "per";
};