xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/fsl,tzic.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/interrupt-controller/fsl,tzic.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Freescale tzic Interrupt controller
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Frank Li <Frank.Li@nxp.com>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotproperties:
13*ae5de77eSEmmanuel Vadot  compatible:
14*ae5de77eSEmmanuel Vadot    oneOf:
15*ae5de77eSEmmanuel Vadot      - items:
16*ae5de77eSEmmanuel Vadot          - enum:
17*ae5de77eSEmmanuel Vadot              - fsl,imx51-tzic
18*ae5de77eSEmmanuel Vadot              - fsl,imx53-tzic
19*ae5de77eSEmmanuel Vadot          - const: fsl,tzic
20*ae5de77eSEmmanuel Vadot      - items:
21*ae5de77eSEmmanuel Vadot          - const: fsl,imx50-tzic
22*ae5de77eSEmmanuel Vadot          - const: fsl,imx53-tzic
23*ae5de77eSEmmanuel Vadot          - const: fsl,tzic
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: 1
32*ae5de77eSEmmanuel Vadot
33*ae5de77eSEmmanuel Vadotrequired:
34*ae5de77eSEmmanuel Vadot  - compatible
35*ae5de77eSEmmanuel Vadot  - reg
36*ae5de77eSEmmanuel Vadot  - interrupt-controller
37*ae5de77eSEmmanuel Vadot  - '#interrupt-cells'
38*ae5de77eSEmmanuel Vadot
39*ae5de77eSEmmanuel VadotadditionalProperties: false
40*ae5de77eSEmmanuel Vadot
41*ae5de77eSEmmanuel Vadotexamples:
42*ae5de77eSEmmanuel Vadot  - |
43*ae5de77eSEmmanuel Vadot    tz-interrupt-controller@fffc000 {
44*ae5de77eSEmmanuel Vadot        compatible = "fsl,imx53-tzic", "fsl,tzic";
45*ae5de77eSEmmanuel Vadot        reg = <0x0fffc000 0x4000>;
46*ae5de77eSEmmanuel Vadot        interrupt-controller;
47*ae5de77eSEmmanuel Vadot        #interrupt-cells = <1>;
48*ae5de77eSEmmanuel Vadot    };
49