aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/timer
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2016-06-15 06:13:27 -0400
committerDaniel Lezcano <daniel.lezcano@linaro.org>2016-06-28 04:17:56 -0400
commit43e88c8a73f5896b964183d503d9bf892a551e25 (patch)
treef436f9e89037717cce1cbc20212fdc167899773b /Documentation/devicetree/bindings/timer
parent89355274e1f7f218186bb15a9f0c4b4a026a84d3 (diff)
dt-bindings: clocksource: Add Oxford Semiconductor RPS Timer bindings
Add DT bindings for the Oxford Semiconductor RPS dual Timer. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/timer')
-rw-r--r--Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt b/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt
new file mode 100644
index 000000000000..3ca89cd1caef
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/oxsemi,rps-timer.txt
@@ -0,0 +1,17 @@
1Oxford Semiconductor OXNAS SoCs Family RPS Timer
2================================================
3
4Required properties:
5- compatible: Should be "oxsemi,ox810se-rps-timer"
6- reg : Specifies base physical address and size of the registers.
7- interrupts : The interrupts of the two timers
8- clocks : The phandle of the timer clock source
9
10example:
11
12timer0: timer@200 {
13 compatible = "oxsemi,ox810se-rps-timer";
14 reg = <0x200 0x40>;
15 clocks = <&rpsclk>;
16 interrupts = <4 5>;
17};