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