1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot# Copyright 2025 Eddie James 3*ae5de77eSEmmanuel Vadot%YAML 1.2 4*ae5de77eSEmmanuel Vadot--- 5*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/aspeed,ast2500-scu-ic.yaml# 6*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 7*ae5de77eSEmmanuel Vadot 8*ae5de77eSEmmanuel Vadottitle: Aspeed AST25XX and AST26XX SCU Interrupt Controller 9*ae5de77eSEmmanuel Vadot 10*ae5de77eSEmmanuel Vadotmaintainers: 11*ae5de77eSEmmanuel Vadot - Eddie James <eajames@linux.ibm.com> 12*ae5de77eSEmmanuel Vadot 13*ae5de77eSEmmanuel Vadotproperties: 14*ae5de77eSEmmanuel Vadot compatible: 15*ae5de77eSEmmanuel Vadot enum: 16*ae5de77eSEmmanuel Vadot - aspeed,ast2500-scu-ic 17*ae5de77eSEmmanuel Vadot - aspeed,ast2600-scu-ic0 18*ae5de77eSEmmanuel Vadot - aspeed,ast2600-scu-ic1 19*ae5de77eSEmmanuel Vadot 20*ae5de77eSEmmanuel Vadot reg: 21*ae5de77eSEmmanuel Vadot maxItems: 1 22*ae5de77eSEmmanuel Vadot 23*ae5de77eSEmmanuel Vadot '#interrupt-cells': 24*ae5de77eSEmmanuel Vadot const: 1 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot interrupts: 27*ae5de77eSEmmanuel Vadot maxItems: 1 28*ae5de77eSEmmanuel Vadot 29*ae5de77eSEmmanuel Vadot interrupt-controller: true 30*ae5de77eSEmmanuel Vadot 31*ae5de77eSEmmanuel Vadotrequired: 32*ae5de77eSEmmanuel Vadot - compatible 33*ae5de77eSEmmanuel Vadot - reg 34*ae5de77eSEmmanuel Vadot - '#interrupt-cells' 35*ae5de77eSEmmanuel Vadot - interrupts 36*ae5de77eSEmmanuel Vadot - interrupt-controller 37*ae5de77eSEmmanuel Vadot 38*ae5de77eSEmmanuel VadotadditionalProperties: false 39*ae5de77eSEmmanuel Vadot 40*ae5de77eSEmmanuel Vadotexamples: 41*ae5de77eSEmmanuel Vadot - | 42*ae5de77eSEmmanuel Vadot interrupt-controller@18 { 43*ae5de77eSEmmanuel Vadot compatible = "aspeed,ast2500-scu-ic"; 44*ae5de77eSEmmanuel Vadot reg = <0x18 0x4>; 45*ae5de77eSEmmanuel Vadot #interrupt-cells = <1>; 46*ae5de77eSEmmanuel Vadot interrupts = <21>; 47*ae5de77eSEmmanuel Vadot interrupt-controller; 48*ae5de77eSEmmanuel Vadot }; 49