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/cnxt,cx92755-ic.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Conexant Digicolor Interrupt Controller 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Baruch Siach <baruch@tkos.co.il> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotdescription: Conexant Digicolor Interrupt Controller 13*ae5de77eSEmmanuel Vadot 14*ae5de77eSEmmanuel Vadotproperties: 15*ae5de77eSEmmanuel Vadot compatible: 16*ae5de77eSEmmanuel Vadot const: cnxt,cx92755-ic 17*ae5de77eSEmmanuel Vadot 18*ae5de77eSEmmanuel Vadot reg: 19*ae5de77eSEmmanuel Vadot maxItems: 1 20*ae5de77eSEmmanuel Vadot 21*ae5de77eSEmmanuel Vadot interrupt-controller: true 22*ae5de77eSEmmanuel Vadot 23*ae5de77eSEmmanuel Vadot '#interrupt-cells': 24*ae5de77eSEmmanuel Vadot const: 1 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot syscon: 27*ae5de77eSEmmanuel Vadot description: A phandle to the syscon node describing UC registers 28*ae5de77eSEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/phandle 29*ae5de77eSEmmanuel Vadot 30*ae5de77eSEmmanuel Vadotrequired: 31*ae5de77eSEmmanuel Vadot - compatible 32*ae5de77eSEmmanuel Vadot - reg 33*ae5de77eSEmmanuel Vadot - interrupt-controller 34*ae5de77eSEmmanuel Vadot - '#interrupt-cells' 35*ae5de77eSEmmanuel Vadot - syscon 36*ae5de77eSEmmanuel Vadot 37*ae5de77eSEmmanuel VadotadditionalProperties: false 38*ae5de77eSEmmanuel Vadot 39*ae5de77eSEmmanuel Vadotexamples: 40*ae5de77eSEmmanuel Vadot - | 41*ae5de77eSEmmanuel Vadot interrupt-controller@f0000040 { 42*ae5de77eSEmmanuel Vadot compatible = "cnxt,cx92755-ic"; 43*ae5de77eSEmmanuel Vadot interrupt-controller; 44*ae5de77eSEmmanuel Vadot #interrupt-cells = <1>; 45*ae5de77eSEmmanuel Vadot reg = <0xf0000040 0x40>; 46*ae5de77eSEmmanuel Vadot syscon = <&uc_regs>; 47*ae5de77eSEmmanuel Vadot }; 48