0001 * NXP LPC3220 timer
0002
0003 The NXP LPC3220 timer is used on a wide range of NXP SoCs. This
0004 includes LPC32xx, LPC178x, LPC18xx and LPC43xx parts.
0005
0006 Required properties:
0007 - compatible:
0008 Should be "nxp,lpc3220-timer".
0009 - reg:
0010 Address and length of the register set.
0011 - interrupts:
0012 Reference to the timer interrupt
0013 - clocks:
0014 Should contain a reference to timer clock.
0015 - clock-names:
0016 Should contain "timerclk".
0017
0018 Example:
0019
0020 timer1: timer@40085000 {
0021 compatible = "nxp,lpc3220-timer";
0022 reg = <0x40085000 0x1000>;
0023 interrupts = <13>;
0024 clocks = <&ccu1 CLK_CPU_TIMER1>;
0025 clock-names = "timerclk";
0026 };