nxp,lpc3220-timer.txt 583 B

1234567891011121314151617181920212223242526
  1. * NXP LPC3220 timer
  2. The NXP LPC3220 timer is used on a wide range of NXP SoCs. This
  3. includes LPC32xx, LPC178x, LPC18xx and LPC43xx parts.
  4. Required properties:
  5. - compatible:
  6. Should be "nxp,lpc3220-timer".
  7. - reg:
  8. Address and length of the register set.
  9. - interrupts:
  10. Reference to the timer interrupt
  11. - clocks:
  12. Should contain a reference to timer clock.
  13. - clock-names:
  14. Should contain "timerclk".
  15. Example:
  16. timer1: timer@40085000 {
  17. compatible = "nxp,lpc3220-timer";
  18. reg = <0x40085000 0x1000>;
  19. interrupts = <13>;
  20. clocks = <&ccu1 CLK_CPU_TIMER1>;
  21. clock-names = "timerclk";
  22. };