0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/interrupt-controller/idt,32434-pic.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: IDT 79RC32434 Interrupt Controller Device Tree Bindings
0008
0009 maintainers:
0010 - Thomas Bogendoerfer <tsbogend@alpha.franken.de>
0011
0012 allOf:
0013 - $ref: /schemas/interrupt-controller.yaml#
0014
0015 properties:
0016 "#interrupt-cells":
0017 const: 1
0018
0019 compatible:
0020 const: idt,32434-pic
0021
0022 reg:
0023 maxItems: 1
0024
0025 interrupts:
0026 maxItems: 1
0027
0028 interrupt-controller: true
0029
0030 required:
0031 - "#interrupt-cells"
0032 - compatible
0033 - reg
0034 - interrupt-controller
0035 - interrupts
0036
0037 additionalProperties: false
0038
0039 examples:
0040 - |
0041 idtpic3: interrupt-controller@3800c {
0042 compatible = "idt,32434-pic";
0043 reg = <0x3800c 0x0c>;
0044
0045 interrupt-controller;
0046 #interrupt-cells = <1>;
0047
0048 interrupt-parent = <&cpuintc>;
0049 interrupts = <3>;
0050 };
0051
0052 ...