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