xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/faraday,ftintc010.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot---
3*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/faraday,ftintc010.yaml#
4*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
5*ae5de77eSEmmanuel Vadot
6*ae5de77eSEmmanuel Vadottitle: Faraday Technology FTINTC010 interrupt controller
7*ae5de77eSEmmanuel Vadot
8*ae5de77eSEmmanuel Vadotmaintainers:
9*ae5de77eSEmmanuel Vadot  - Linus Walleij <linus.walleij@linaro.org>
10*ae5de77eSEmmanuel Vadot
11*ae5de77eSEmmanuel Vadotdescription:
12*ae5de77eSEmmanuel Vadot  This interrupt controller is a stock IP block from Faraday Technology found
13*ae5de77eSEmmanuel Vadot  in the Gemini SoCs and other designs.
14*ae5de77eSEmmanuel Vadot
15*ae5de77eSEmmanuel Vadotproperties:
16*ae5de77eSEmmanuel Vadot  compatible:
17*ae5de77eSEmmanuel Vadot    oneOf:
18*ae5de77eSEmmanuel Vadot      - items:
19*ae5de77eSEmmanuel Vadot          - const: moxa,moxart-ic
20*ae5de77eSEmmanuel Vadot          - const: faraday,ftintc010
21*ae5de77eSEmmanuel Vadot      - enum:
22*ae5de77eSEmmanuel Vadot          - faraday,ftintc010
23*ae5de77eSEmmanuel Vadot          - cortina,gemini-interrupt-controller
24*ae5de77eSEmmanuel Vadot
25*ae5de77eSEmmanuel Vadot  reg:
26*ae5de77eSEmmanuel Vadot    maxItems: 1
27*ae5de77eSEmmanuel Vadot
28*ae5de77eSEmmanuel Vadot  interrupt-controller: true
29*ae5de77eSEmmanuel Vadot
30*ae5de77eSEmmanuel Vadot  '#interrupt-cells':
31*ae5de77eSEmmanuel Vadot    const: 2
32*ae5de77eSEmmanuel Vadot
33*ae5de77eSEmmanuel Vadot  resets:
34*ae5de77eSEmmanuel Vadot    maxItems: 1
35*ae5de77eSEmmanuel Vadot
36*ae5de77eSEmmanuel Vadotrequired:
37*ae5de77eSEmmanuel Vadot  - compatible
38*ae5de77eSEmmanuel Vadot  - reg
39*ae5de77eSEmmanuel Vadot  - interrupt-controller
40*ae5de77eSEmmanuel Vadot  - '#interrupt-cells'
41*ae5de77eSEmmanuel Vadot
42*ae5de77eSEmmanuel VadotadditionalProperties: false
43*ae5de77eSEmmanuel Vadot
44*ae5de77eSEmmanuel Vadotexamples:
45*ae5de77eSEmmanuel Vadot  - |
46*ae5de77eSEmmanuel Vadot    interrupt-controller@48000000 {
47*ae5de77eSEmmanuel Vadot        compatible = "faraday,ftintc010";
48*ae5de77eSEmmanuel Vadot        reg = <0x48000000 0x1000>;
49*ae5de77eSEmmanuel Vadot        interrupt-controller;
50*ae5de77eSEmmanuel Vadot        #interrupt-cells = <2>;
51*ae5de77eSEmmanuel Vadot    };
52