xref: /linux/Documentation/devicetree/bindings/timer/st,spear-timer.yaml (revision e78f70bad29c5ae1e1076698b690b15794e9b81e)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/timer/st,spear-timer.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: SPEAr ARM Timer
8
9maintainers:
10  - Viresh Kumar <vireshk@kernel.org>
11  - Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12
13properties:
14  compatible:
15    const: st,spear-timer
16
17  reg:
18    maxItems: 1
19
20  interrupts:
21    maxItems: 1
22
23required:
24  - compatible
25  - reg
26  - interrupts
27
28additionalProperties: false
29
30examples:
31  - |
32    timer@f0000000 {
33        compatible = "st,spear-timer";
34        reg = <0xf0000000 0x400>;
35        interrupts = <2>;
36    };
37