diff options
author | Lubomir Rintel <[email protected]> | 2018-11-28 18:53:05 +0100 |
---|---|---|
committer | Olof Johansson <[email protected]> | 2018-11-30 15:10:36 -0800 |
commit | ca40d2bd813efcee058760c63c9eae043d2939d9 (patch) | |
tree | 77be8914c37d0908fd13c20834369501ed3595a3 | |
parent | 4abc79424f3e44ccfbbca88d02544142110763e5 (diff) |
dt-bindings: mrvl,mmp-timer: add clock
The timer needs the timer clock to be enabled, otherwise it stops
ticking.
Signed-off-by: Lubomir Rintel <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Acked-by: Pavel Machek <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/timer/mrvl,mmp-timer.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/timer/mrvl,mmp-timer.txt b/Documentation/devicetree/bindings/timer/mrvl,mmp-timer.txt index 9a6e251462e7..b8f02c663521 100644 --- a/Documentation/devicetree/bindings/timer/mrvl,mmp-timer.txt +++ b/Documentation/devicetree/bindings/timer/mrvl,mmp-timer.txt @@ -5,9 +5,13 @@ Required properties: - reg : Address and length of the register set of timer controller. - interrupts : Should be the interrupt number. +Optional properties: +- clocks : Should contain a single entry describing the clock input. + Example: timer0: timer@d4014000 { compatible = "mrvl,mmp-timer"; reg = <0xd4014000 0x100>; interrupts = <13>; + clocks = <&coreclk 2>; }; |