xref: /freebsd/sys/contrib/device-tree/Bindings/timer/ezchip,nps400-timer.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot%YAML 1.2
3*ae5de77eSEmmanuel Vadot---
4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/ezchip,nps400-timer.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: EZChip NPS400 Timers
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Noam Camus <noamca@mellanox.com>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotproperties:
13*ae5de77eSEmmanuel Vadot  compatible:
14*ae5de77eSEmmanuel Vadot    enum:
15*ae5de77eSEmmanuel Vadot      - ezchip,nps400-timer0
16*ae5de77eSEmmanuel Vadot      - ezchip,nps400-timer1
17*ae5de77eSEmmanuel Vadot
18*ae5de77eSEmmanuel Vadot  interrupts:
19*ae5de77eSEmmanuel Vadot    maxItems: 1
20*ae5de77eSEmmanuel Vadot
21*ae5de77eSEmmanuel Vadot  clocks:
22*ae5de77eSEmmanuel Vadot    maxItems: 1
23*ae5de77eSEmmanuel Vadot
24*ae5de77eSEmmanuel Vadotrequired:
25*ae5de77eSEmmanuel Vadot  - compatible
26*ae5de77eSEmmanuel Vadot  - clocks
27*ae5de77eSEmmanuel Vadot
28*ae5de77eSEmmanuel VadotadditionalProperties: false
29*ae5de77eSEmmanuel Vadot
30*ae5de77eSEmmanuel VadotallOf:
31*ae5de77eSEmmanuel Vadot  - if:
32*ae5de77eSEmmanuel Vadot      properties:
33*ae5de77eSEmmanuel Vadot        compatible:
34*ae5de77eSEmmanuel Vadot          contains:
35*ae5de77eSEmmanuel Vadot            const: ezchip,nps400-timer0
36*ae5de77eSEmmanuel Vadot    then:
37*ae5de77eSEmmanuel Vadot      required: [ interrupts ]
38*ae5de77eSEmmanuel Vadot
39*ae5de77eSEmmanuel Vadotexamples:
40*ae5de77eSEmmanuel Vadot  - |
41*ae5de77eSEmmanuel Vadot    timer {
42*ae5de77eSEmmanuel Vadot        compatible = "ezchip,nps400-timer0";
43*ae5de77eSEmmanuel Vadot        interrupts = <3>;
44*ae5de77eSEmmanuel Vadot        clocks = <&sysclk>;
45*ae5de77eSEmmanuel Vadot    };
46