aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/timer/brcm,kona-timer.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/devicetree/bindings/timer/brcm,kona-timer.txt')
-rw-r--r--Documentation/devicetree/bindings/timer/brcm,kona-timer.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/timer/brcm,kona-timer.txt b/Documentation/devicetree/bindings/timer/brcm,kona-timer.txt
new file mode 100644
index 000000000000..39adf54b4388
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/brcm,kona-timer.txt
@@ -0,0 +1,25 @@
1Broadcom Kona Family timer
2-----------------------------------------------------
3This timer is used in the following Broadcom SoCs:
4 BCM11130, BCM11140, BCM11351, BCM28145, BCM28155
5
6Required properties:
7- compatible : "brcm,kona-timer"
8- DEPRECATED: compatible : "bcm,kona-timer"
9- reg : Register range for the timer
10- interrupts : interrupt for the timer
11- clocks: phandle + clock specifier pair of the external clock
12- clock-frequency: frequency that the clock operates
13
14Only one of clocks or clock-frequency should be specified.
15
16Refer to clocks/clock-bindings.txt for generic clock consumer properties.
17
18Example:
19 timer@35006000 {
20 compatible = "brcm,kona-timer";
21 reg = <0x35006000 0x1000>;
22 interrupts = <0x0 7 0x4>;
23 clocks = <&hub_timer_clk>;
24 };
25