Skip to content

Commit fa8c0b1

Browse files
nxpfranklirobherring
authored andcommitted
dt-bindings: interrupt-controller: Add fsl,icoll.yaml
Add fsl,icoll.yaml for i.MX23 and i.MX28. Also add a generic fallback compatible string "fsl,icoll" for legacy devices, which have existed for over 15 years. Reviewed-by: Conor Dooley <[email protected]> Signed-off-by: Frank Li <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Rob Herring (Arm) <[email protected]>
1 parent 7ce3c27 commit fa8c0b1

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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,icoll.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Freescale MXS icoll Interrupt controller
8+
9+
maintainers:
10+
- Frank Li <[email protected]>
11+
12+
properties:
13+
compatible:
14+
oneOf:
15+
- items:
16+
- enum:
17+
- fsl,imx23-icoll
18+
- fsl,imx28-icoll
19+
- const: fsl,icoll
20+
21+
reg:
22+
maxItems: 1
23+
24+
interrupt-controller: true
25+
26+
'#interrupt-cells':
27+
const: 1
28+
29+
required:
30+
- compatible
31+
- reg
32+
- interrupt-controller
33+
- '#interrupt-cells'
34+
35+
additionalProperties: false
36+
37+
examples:
38+
- |
39+
interrupt-controller@80000000 {
40+
compatible = "fsl,imx28-icoll", "fsl,icoll";
41+
reg = <0x80000000 0x2000>;
42+
interrupt-controller;
43+
#interrupt-cells = <1>;
44+
};
45+

0 commit comments

Comments
 (0)