drm/bridge: Fix assignment of the of_node of the parent to aux bridge
[drm/drm-misc.git] / Documentation / devicetree / bindings / interrupt-controller / loongson,ls1x-intc.yaml
blobc60125fb1cbfb79b554b119e663a280a87c445c3
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/loongson,ls1x-intc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Loongson-1 Interrupt Controller
9 maintainers:
10   - Keguang Zhang <keguang.zhang@gmail.com>
12 description:
13   Loongson-1 interrupt controller is connected to the MIPS core interrupt
14   controller, which controls several groups of interrupts.
16 properties:
17   compatible:
18     const: loongson,ls1x-intc
20   reg:
21     maxItems: 1
23   interrupt-controller: true
25   '#interrupt-cells':
26     const: 2
28   interrupts:
29     maxItems: 1
31 required:
32   - compatible
33   - reg
34   - interrupt-controller
35   - '#interrupt-cells'
36   - interrupts
38 additionalProperties: false
40 examples:
41   - |
42     intc0: interrupt-controller@1fd01040 {
43         compatible = "loongson,ls1x-intc";
44         reg = <0x1fd01040 0x18>;
46         interrupt-controller;
47         #interrupt-cells = <2>;
49         interrupt-parent = <&cpu_intc>;
50         interrupts = <2>;
51     };