Merge tag 'mfd-for-linus-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
[pandora-kernel.git] / Documentation / devicetree / bindings / arm / msm / timer.txt
1 * MSM Timer
2
3 Properties:
4
5 - compatible : Should at least contain "qcom,msm-timer". More specific
6                properties specify which subsystem the timers are paired with.
7
8                "qcom,kpss-timer" - krait subsystem
9                "qcom,scss-timer" - scorpion subsystem
10
11 - interrupts : Interrupts for the debug timer, the first general purpose
12                timer, and optionally a second general purpose timer in that
13                order.
14
15 - reg : Specifies the base address of the timer registers.
16
17 - clock-frequency : The frequency of the debug timer and the general purpose
18                     timer(s) in Hz in that order.
19
20 Optional:
21
22 - cpu-offset : per-cpu offset used when the timer is accessed without the
23                CPU remapping facilities. The offset is
24                cpu-offset + (0x10000 * cpu-nr).
25
26 Example:
27
28        timer@200a000 {
29                compatible = "qcom,scss-timer", "qcom,msm-timer";
30                interrupts = <1 1 0x301>,
31                             <1 2 0x301>,
32                             <1 3 0x301>;
33                reg = <0x0200a000 0x100>;
34                clock-frequency = <19200000>,
35                                  <32768>;
36                cpu-offset = <0x40000>;
37        };