xref: /freebsd/sys/contrib/device-tree/Bindings/timer/cnxt,cx92755-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/cnxt,cx92755-timer.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Conexant Digicolor SoCs Timer Controller
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Baruch Siach <baruch@tkos.co.il>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotproperties:
13*ae5de77eSEmmanuel Vadot  compatible:
14*ae5de77eSEmmanuel Vadot    const: cnxt,cx92755-timer
15*ae5de77eSEmmanuel Vadot
16*ae5de77eSEmmanuel Vadot  reg:
17*ae5de77eSEmmanuel Vadot    maxItems: 1
18*ae5de77eSEmmanuel Vadot
19*ae5de77eSEmmanuel Vadot  interrupts:
20*ae5de77eSEmmanuel Vadot    description: Contains 8 interrupts, one for each timer
21*ae5de77eSEmmanuel Vadot    items:
22*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 0
23*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 1
24*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 2
25*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 3
26*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 4
27*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 5
28*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 6
29*ae5de77eSEmmanuel Vadot      - description: interrupt for timer 7
30*ae5de77eSEmmanuel Vadot
31*ae5de77eSEmmanuel Vadot  clocks:
32*ae5de77eSEmmanuel Vadot    maxItems: 1
33*ae5de77eSEmmanuel Vadot
34*ae5de77eSEmmanuel Vadotrequired:
35*ae5de77eSEmmanuel Vadot  - compatible
36*ae5de77eSEmmanuel Vadot  - reg
37*ae5de77eSEmmanuel Vadot  - interrupts
38*ae5de77eSEmmanuel Vadot  - clocks
39*ae5de77eSEmmanuel Vadot
40*ae5de77eSEmmanuel VadotadditionalProperties: false
41*ae5de77eSEmmanuel Vadot
42*ae5de77eSEmmanuel Vadotexamples:
43*ae5de77eSEmmanuel Vadot  - |
44*ae5de77eSEmmanuel Vadot    timer@f0000fc0 {
45*ae5de77eSEmmanuel Vadot      compatible = "cnxt,cx92755-timer";
46*ae5de77eSEmmanuel Vadot      reg = <0xf0000fc0 0x40>;
47*ae5de77eSEmmanuel Vadot      interrupts = <19>, <31>, <34>, <35>, <52>, <53>, <54>, <55>;
48*ae5de77eSEmmanuel Vadot      clocks = <&main_clk>;
49*ae5de77eSEmmanuel Vadot    };
50