0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/interrupt-controller/allwinner,sun4i-a10-ic.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Allwinner A10 Interrupt Controller Device Tree Bindings
0008
0009 maintainers:
0010 - Chen-Yu Tsai <wens@csie.org>
0011 - Maxime Ripard <mripard@kernel.org>
0012
0013 allOf:
0014 - $ref: /schemas/interrupt-controller.yaml#
0015
0016 properties:
0017 "#interrupt-cells":
0018 const: 1
0019
0020 compatible:
0021 enum:
0022 - allwinner,sun4i-a10-ic
0023 - allwinner,suniv-f1c100s-ic
0024
0025 reg:
0026 maxItems: 1
0027
0028 interrupt-controller: true
0029
0030 required:
0031 - "#interrupt-cells"
0032 - compatible
0033 - reg
0034 - interrupt-controller
0035
0036 additionalProperties: false
0037
0038 examples:
0039 - |
0040 intc: interrupt-controller@1c20400 {
0041 compatible = "allwinner,sun4i-a10-ic";
0042 reg = <0x01c20400 0x400>;
0043 interrupt-controller;
0044 #interrupt-cells = <1>;
0045 };
0046
0047 ...