fsl,imxgpt.txt 493 B

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