1*cb7aa33aSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2*cb7aa33aSEmmanuel Vadot%YAML 1.2 3*cb7aa33aSEmmanuel Vadot--- 4*cb7aa33aSEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/loongson,cpu-interrupt-controller.yaml# 5*cb7aa33aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*cb7aa33aSEmmanuel Vadot 7*cb7aa33aSEmmanuel Vadottitle: LoongArch CPU Interrupt Controller 8*cb7aa33aSEmmanuel Vadot 9*cb7aa33aSEmmanuel Vadotmaintainers: 10*cb7aa33aSEmmanuel Vadot - Liu Peibao <liupeibao@loongson.cn> 11*cb7aa33aSEmmanuel Vadot 12*cb7aa33aSEmmanuel Vadotproperties: 13*cb7aa33aSEmmanuel Vadot compatible: 14*cb7aa33aSEmmanuel Vadot const: loongson,cpu-interrupt-controller 15*cb7aa33aSEmmanuel Vadot 16*cb7aa33aSEmmanuel Vadot '#interrupt-cells': 17*cb7aa33aSEmmanuel Vadot const: 1 18*cb7aa33aSEmmanuel Vadot 19*cb7aa33aSEmmanuel Vadot interrupt-controller: true 20*cb7aa33aSEmmanuel Vadot 21*cb7aa33aSEmmanuel VadotadditionalProperties: false 22*cb7aa33aSEmmanuel Vadot 23*cb7aa33aSEmmanuel Vadotrequired: 24*cb7aa33aSEmmanuel Vadot - compatible 25*cb7aa33aSEmmanuel Vadot - '#interrupt-cells' 26*cb7aa33aSEmmanuel Vadot - interrupt-controller 27*cb7aa33aSEmmanuel Vadot 28*cb7aa33aSEmmanuel Vadotexamples: 29*cb7aa33aSEmmanuel Vadot - | 30*cb7aa33aSEmmanuel Vadot interrupt-controller { 31*cb7aa33aSEmmanuel Vadot compatible = "loongson,cpu-interrupt-controller"; 32*cb7aa33aSEmmanuel Vadot #interrupt-cells = <1>; 33*cb7aa33aSEmmanuel Vadot interrupt-controller; 34*cb7aa33aSEmmanuel Vadot }; 35