brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 0fa952a Raw
55 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/interrupt-controller/ralink,rt2880-intc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Ralink SoCs Interrupt Controller8 9maintainers:10  - Sergio Paracuellos <sergio.paracuellos@gmail.com>11 12allOf:13  - $ref: /schemas/interrupt-controller.yaml#14 15description:16  This interrupt controller support a central point for interrupt aggregation17  for platform related blocks.18 19properties:20  compatible:21    const: ralink,rt2880-intc22 23  reg:24    maxItems: 125 26  interrupts:27    maxItems: 128 29  interrupt-controller: true30 31  '#interrupt-cells':32    const: 133 34required:35  - compatible36  - reg37  - interrupts38  - interrupt-controller39  - '#interrupt-cells'40 41additionalProperties: false42 43examples:44  - |45    interrupt-controller@200 {46      compatible = "ralink,rt2880-intc";47      reg = <0x200 0x100>;48      interrupt-controller;49      #interrupt-cells = <1>;50 51      interrupt-parent = <&cpuintc>;52      interrupts = <2>;53    };54...55