summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/arm/global_timer.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/arm/global_timer.txt')
-rw-r--r--dts/Bindings/arm/global_timer.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/dts/Bindings/arm/global_timer.txt b/dts/Bindings/arm/global_timer.txt
new file mode 100644
index 0000000000..1e548981ed
--- /dev/null
+++ b/dts/Bindings/arm/global_timer.txt
@@ -0,0 +1,24 @@
+
+* ARM Global Timer
+ Cortex-A9 are often associated with a per-core Global timer.
+
+** Timer node required properties:
+
+- compatible : Should be "arm,cortex-a9-global-timer"
+ Driver supports versions r2p0 and above.
+
+- interrupts : One interrupt to each core
+
+- reg : Specify the base address and the size of the GT timer
+ register window.
+
+- clocks : Should be phandle to a clock.
+
+Example:
+
+ timer@2c000600 {
+ compatible = "arm,cortex-a9-global-timer";
+ reg = <0x2c000600 0x20>;
+ interrupts = <1 13 0xf01>;
+ clocks = <&arm_periph_clk>;
+ };