summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/timer
diff options
context:
space:
mode:
authorOliver Gaskell <[email protected]>2024-09-12 16:50:52 +0100
committerTom Rini <[email protected]>2024-10-03 09:29:22 -0600
commit3e724aab2fd4e5530c973ab1a4c944e4b3f3b547 (patch)
tree575df44c7e579b31bb8313451fd518d96cec02b2 /doc/device-tree-bindings/timer
parentcc522cc6ed31745bc4524ab32847a23be33dd5af (diff)
dt-bindings: timer: Add SC5xx Timer bindings
Add devicetree schema for the timer peripheral on Analog Devices SC5xx series SoCs. Signed-off-by: Oliver Gaskell <[email protected]>
Diffstat (limited to 'doc/device-tree-bindings/timer')
-rw-r--r--doc/device-tree-bindings/timer/adi,sc5xx-gptimer.yaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/timer/adi,sc5xx-gptimer.yaml b/doc/device-tree-bindings/timer/adi,sc5xx-gptimer.yaml
new file mode 100644
index 00000000000..5e313af6fe0
--- /dev/null
+++ b/doc/device-tree-bindings/timer/adi,sc5xx-gptimer.yaml
@@ -0,0 +1,42 @@
+# SPDX-License-Identifier: (GPL-2.0+)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/timer/adi,sc5xx-gptimer.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Analog Devices SC5XX Series SoC Timer Peripherals
+
+maintainers:
+ - Vasileios Bimpikas <[email protected]>
+ - Utsav Agarwal <[email protected]>
+ - Arturs Artamonovs <[email protected]>
+
+properties:
+ compatible:
+ const: adi,sc5xx-gptimer
+
+ reg:
+ minItems: 2
+ maxItems: 2
+
+ clocks:
+ minItems: 1
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - clocks
+
+additionalProperties: false
+
+examples:
+ - |
+ timer0: timer@31018000 {
+ compatible = "adi,sc5xx-gptimer";
+ reg = <0x31018004 0x100>,
+ <0x31018060 0x100>;
+ status = "okay";
+ bootph-all;
+ };
+