diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2018-12-19 13:34:49 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-12-19 13:34:49 +0300 |
commit | bd2bcaa565a2c07dd0492f6172f3ab6ad27c1acc (patch) | |
tree | 688af5226f342a4e1486fcc7923d236f4f0879be /Documentation/devicetree/bindings | |
parent | 615740fd6b0c44e6ba1beaa87ddbdf7ead57ecf4 (diff) | |
parent | 2e64d317e197ec390e3914773489fcade7bbbf15 (diff) | |
download | linux-bd2bcaa565a2c07dd0492f6172f3ab6ad27c1acc.tar.xz |
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/bindings')
-rw-r--r-- | Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt | 20 |
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"; + }; |