mirror of
https://github.com/torvalds/linux.git
synced 2026-03-07 23:24:35 +01:00
Add compatiblie string fsl,imx(1|25|27|31|35)-avic for i.MX3 SoCs (over 15 years old). Signed-off-by: Frank Li <Frank.Li@nxp.com> Link: https://patch.msgid.link/20260210221215.1575844-1-Frank.Li@nxp.com Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
# 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,imx1-aitc
|
|
- fsl,imx25-asic
|
|
- fsl,imx27-aitc
|
|
- fsl,imx31-avic
|
|
- fsl,imx35-avic
|
|
- const: fsl,avic
|
|
- 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>;
|
|
};
|