0001 Spreadtrum timers
0002
0003 The Spreadtrum SC9860 platform provides 3 general-purpose timers.
0004 These timers can support 32bit or 64bit counter, as well as supporting
0005 period mode or one-shot mode, and they are can be wakeup source
0006 during deep sleep.
0007
0008 Required properties:
0009 - compatible: should be "sprd,sc9860-timer" for SC9860 platform.
0010 - reg: The register address of the timer device.
0011 - interrupts: Should contain the interrupt for the timer device.
0012 - clocks: The phandle to the source clock (usually a 32.768 KHz fixed clock).
0013
0014 Example:
0015 timer@40050000 {
0016 compatible = "sprd,sc9860-timer";
0017 reg = <0 0x40050000 0 0x20>;
0018 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
0019 clocks = <&ext_32k>;
0020 };