aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/interrupt-controller/fsl,tzic.yaml
blob: 5f2c8761a31deb9e32f1a7840caeaa944218e94a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/interrupt-controller/fsl,tzic.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Freescale tzic Interrupt controller

maintainers:
  - Frank Li <Frank.Li@nxp.com>

properties:
  compatible:
    oneOf:
      - items:
          - enum:
              - fsl,imx51-tzic
              - fsl,imx53-tzic
          - const: fsl,tzic
      - items:
          - const: fsl,imx50-tzic
          - const: fsl,imx53-tzic
          - const: fsl,tzic

  reg:
    maxItems: 1

  interrupt-controller: true

  '#interrupt-cells':
    const: 1

required:
  - compatible
  - reg
  - interrupt-controller
  - '#interrupt-cells'

additionalProperties: false

examples:
  - |
    tz-interrupt-controller@fffc000 {
        compatible = "fsl,imx53-tzic", "fsl,tzic";
        reg = <0x0fffc000 0x4000>;
        interrupt-controller;
        #interrupt-cells = <1>;
    };