1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot--- 3*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/interrupt-controller/marvell,orion-bridge-intc.yaml# 4*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 5*ae5de77eSEmmanuel Vadot 6*ae5de77eSEmmanuel Vadottitle: Marvell Orion SoC Bridge Interrupt Controller 7*ae5de77eSEmmanuel Vadot 8*ae5de77eSEmmanuel Vadotmaintainers: 9*ae5de77eSEmmanuel Vadot - Andrew Lunn <andrew@lunn.ch> 10*ae5de77eSEmmanuel Vadot - Gregory Clement <gregory.clement@bootlin.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot const: marvell,orion-bridge-intc 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadot reg: 17*ae5de77eSEmmanuel Vadot minItems: 1 18*ae5de77eSEmmanuel Vadot maxItems: 2 19*ae5de77eSEmmanuel Vadot 20*ae5de77eSEmmanuel Vadot interrupt-controller: true 21*ae5de77eSEmmanuel Vadot 22*ae5de77eSEmmanuel Vadot '#interrupt-cells': 23*ae5de77eSEmmanuel Vadot const: 1 24*ae5de77eSEmmanuel Vadot 25*ae5de77eSEmmanuel Vadot interrupts: 26*ae5de77eSEmmanuel Vadot description: Bridge interrupt of the main interrupt controller 27*ae5de77eSEmmanuel Vadot 28*ae5de77eSEmmanuel Vadot marvell,#interrupts: 29*ae5de77eSEmmanuel Vadot description: Number of interrupts provided by bridge interrupt controller. 30*ae5de77eSEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/uint32 31*ae5de77eSEmmanuel Vadot default: 32 32*ae5de77eSEmmanuel Vadot 33*ae5de77eSEmmanuel Vadotrequired: 34*ae5de77eSEmmanuel Vadot - compatible 35*ae5de77eSEmmanuel Vadot - reg 36*ae5de77eSEmmanuel Vadot - interrupt-controller 37*ae5de77eSEmmanuel Vadot - '#interrupt-cells' 38*ae5de77eSEmmanuel Vadot - interrupts 39*ae5de77eSEmmanuel Vadot 40*ae5de77eSEmmanuel VadotadditionalProperties: false 41*ae5de77eSEmmanuel Vadot 42*ae5de77eSEmmanuel Vadotexamples: 43*ae5de77eSEmmanuel Vadot - | 44*ae5de77eSEmmanuel Vadot interrupt-controller@20110 { 45*ae5de77eSEmmanuel Vadot compatible = "marvell,orion-bridge-intc"; 46*ae5de77eSEmmanuel Vadot reg = <0x20110 0x8>; 47*ae5de77eSEmmanuel Vadot interrupt-controller; 48*ae5de77eSEmmanuel Vadot #interrupt-cells = <1>; 49*ae5de77eSEmmanuel Vadot interrupts = <0>; 50*ae5de77eSEmmanuel Vadot /* Dove bridge provides 5 interrupts */ 51*ae5de77eSEmmanuel Vadot marvell,#interrupts = <5>; 52*ae5de77eSEmmanuel Vadot }; 53