5 - compatible : Should at least contain "qcom,msm-timer". More specific
6 properties specify which subsystem the timers are paired with.
8 "qcom,kpss-timer" - krait subsystem
9 "qcom,scss-timer" - scorpion subsystem
11 - interrupts : Interrupts for the debug timer, the first general purpose
12 timer, and optionally a second general purpose timer, and
13 optionally as well, 2 watchdog interrupts, in that order.
15 - reg : Specifies the base address of the timer registers.
17 - clocks: Reference to the parent clocks, one per output clock. The parents
18 must appear in the same order as the clock names.
20 - clock-names: The name of the clocks as free-form strings. They should be in
21 the same order as the clocks.
23 - clock-frequency : The frequency of the debug timer and the general purpose
24 timer(s) in Hz in that order.
28 - cpu-offset : per-cpu offset used when the timer is accessed without the
29 CPU remapping facilities. The offset is
30 cpu-offset + (0x10000 * cpu-nr).
35 compatible = "qcom,scss-timer", "qcom,msm-timer";
36 interrupts = <1 1 0x301>,
41 reg = <0x0200a000 0x100>;
42 clock-frequency = <19200000>,
44 clocks = <&sleep_clk>;
45 clock-names = "sleep";
46 cpu-offset = <0x40000>;