aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2018-12-19 11:34:49 +0100
committerThomas Gleixner <tglx@linutronix.de>2018-12-19 11:34:49 +0100
commitbd2bcaa565a2c07dd0492f6172f3ab6ad27c1acc (patch)
tree688af5226f342a4e1486fcc7923d236f4f0879be /Documentation/devicetree
parentMerge branch 'clockevents/4.21' of http://git.linaro.org/people/daniel.lezcano/linux into timers/core (diff)
parentdt-bindings: timer: Document RDA8810PL SoC timer (diff)
downloadlinux-dev-bd2bcaa565a2c07dd0492f6172f3ab6ad27c1acc.tar.xz
linux-dev-bd2bcaa565a2c07dd0492f6172f3ab6ad27c1acc.zip
Merge branch 'clockevents/4.21' of http://git.linaro.org/people/daniel.lezcano/linux into timers/core
Pull clockevents/source update from Daniel Lezcano: - Add dt-bindings for RDA8810PL SoC (Manivannan Sadhasivam)
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt b/Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
new file mode 100644
index 000000000000..4db542c9a0fd
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
@@ -0,0 +1,20 @@
+RDA Micro RDA8810PL Timer
+
+Required properties:
+- compatible : "rda,8810pl-timer"
+- reg : Offset and length of the register set for the device.
+- interrupts : Should contain two interrupts.
+- interrupt-names : Should be "hwtimer", "ostimer".
+
+Example:
+
+ apb@20900000 {
+ compatible = "simple-bus";
+ ...
+ timer@10000 {
+ compatible = "rda,8810pl-timer";
+ reg = <0x10000 0x1000>;
+ interrupts = <16 IRQ_TYPE_LEVEL_HIGH>,
+ <17 IRQ_TYPE_LEVEL_HIGH>;
+ interrupt-names = "hwtimer", "ostimer";
+ };