summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/timer/arm,global_timer.txt
diff options
context:
space:
mode:
authorRob Herring2018-05-15 01:42:37 +0200
committerRob Herring2018-12-13 16:41:50 +0100
commit4d2bb3e65035954dce7c666616906004f2c049f8 (patch)
treed8312a9db531deb3dabbeef6856628ed73cbd734 /Documentation/devicetree/bindings/timer/arm,global_timer.txt
parentdt-bindings: i2c: Convert i2c-gpio binding to json-schema (diff)
downloadkernel-qcow2-linux-4d2bb3e65035954dce7c666616906004f2c049f8.tar.gz
kernel-qcow2-linux-4d2bb3e65035954dce7c666616906004f2c049f8.tar.xz
kernel-qcow2-linux-4d2bb3e65035954dce7c666616906004f2c049f8.zip
dt-bindings: timer: Convert ARM timer bindings to json-schema
Convert ARM timers to DT schema format using json-schema. Cc: Daniel Lezcano <daniel.lezcano@linaro.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/timer/arm,global_timer.txt')
-rw-r--r--Documentation/devicetree/bindings/timer/arm,global_timer.txt27
1 files changed, 0 insertions, 27 deletions
diff --git a/Documentation/devicetree/bindings/timer/arm,global_timer.txt b/Documentation/devicetree/bindings/timer/arm,global_timer.txt
deleted file mode 100644
index bdae3a818793..000000000000
--- a/Documentation/devicetree/bindings/timer/arm,global_timer.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-
-* ARM Global Timer
- Cortex-A9 are often associated with a per-core Global timer.
-
-** Timer node required properties:
-
-- compatible : should contain
- * "arm,cortex-a5-global-timer" for Cortex-A5 global timers.
- * "arm,cortex-a9-global-timer" for Cortex-A9 global
- timers or any compatible implementation. Note: 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>;
- };