1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/interrupt-controller/fsl,tzic.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale tzic Interrupt controller 8 9maintainers: 10 - Frank Li <Frank.Li@nxp.com> 11 12properties: 13 compatible: 14 oneOf: 15 - items: 16 - enum: 17 - fsl,imx51-tzic 18 - fsl,imx53-tzic 19 - const: fsl,tzic 20 - items: 21 - const: fsl,imx50-tzic 22 - const: fsl,imx53-tzic 23 - const: fsl,tzic 24 25 reg: 26 maxItems: 1 27 28 interrupt-controller: true 29 30 '#interrupt-cells': 31 const: 1 32 33required: 34 - compatible 35 - reg 36 - interrupt-controller 37 - '#interrupt-cells' 38 39additionalProperties: false 40 41examples: 42 - | 43 tz-interrupt-controller@fffc000 { 44 compatible = "fsl,imx53-tzic", "fsl,tzic"; 45 reg = <0x0fffc000 0x4000>; 46 interrupt-controller; 47 #interrupt-cells = <1>; 48 }; 49