xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/mscc,ocelot-icpu-intr.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: "http://devicetree.org/schemas/interrupt-controller/mscc,ocelot-icpu-intr.yaml#"
5*5def4c47SEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#"
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Microsemi Ocelot SoC ICPU Interrupt Controller
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Alexandre Belloni <alexandre.belloni@bootlin.com>
11*5def4c47SEmmanuel Vadot
12*5def4c47SEmmanuel VadotallOf:
13*5def4c47SEmmanuel Vadot  - $ref: /schemas/interrupt-controller.yaml#
14*5def4c47SEmmanuel Vadot
15*5def4c47SEmmanuel Vadotdescription: |
16*5def4c47SEmmanuel Vadot  the Microsemi Ocelot interrupt controller that is part of the
17*5def4c47SEmmanuel Vadot  ICPU. It is connected directly to the MIPS core interrupt
18*5def4c47SEmmanuel Vadot  controller.
19*5def4c47SEmmanuel Vadot
20*5def4c47SEmmanuel Vadotproperties:
21*5def4c47SEmmanuel Vadot  compatible:
22*5def4c47SEmmanuel Vadot    items:
23*5def4c47SEmmanuel Vadot      - enum:
24*5def4c47SEmmanuel Vadot          - mscc,jaguar2-icpu-intr
25*5def4c47SEmmanuel Vadot          - mscc,luton-icpu-intr
26*5def4c47SEmmanuel Vadot          - mscc,ocelot-icpu-intr
27*5def4c47SEmmanuel Vadot          - mscc,serval-icpu-intr
28*5def4c47SEmmanuel Vadot
29*5def4c47SEmmanuel Vadot
30*5def4c47SEmmanuel Vadot  '#interrupt-cells':
31*5def4c47SEmmanuel Vadot    const: 1
32*5def4c47SEmmanuel Vadot
33*5def4c47SEmmanuel Vadot  '#address-cells':
34*5def4c47SEmmanuel Vadot    const: 0
35*5def4c47SEmmanuel Vadot
36*5def4c47SEmmanuel Vadot  interrupt-controller: true
37*5def4c47SEmmanuel Vadot
38*5def4c47SEmmanuel Vadot  reg:
39*5def4c47SEmmanuel Vadot    maxItems: 1
40*5def4c47SEmmanuel Vadot
41*5def4c47SEmmanuel Vadot  interrupts:
42*5def4c47SEmmanuel Vadot    maxItems: 1
43*5def4c47SEmmanuel Vadot
44*5def4c47SEmmanuel Vadotrequired:
45*5def4c47SEmmanuel Vadot  - compatible
46*5def4c47SEmmanuel Vadot  - '#interrupt-cells'
47*5def4c47SEmmanuel Vadot  - '#address-cells'
48*5def4c47SEmmanuel Vadot  - interrupt-controller
49*5def4c47SEmmanuel Vadot  - reg
50*5def4c47SEmmanuel Vadot
51*5def4c47SEmmanuel VadotadditionalProperties: false
52*5def4c47SEmmanuel Vadot
53*5def4c47SEmmanuel Vadotexamples:
54*5def4c47SEmmanuel Vadot  - |
55*5def4c47SEmmanuel Vadot    intc: interrupt-controller@70000070 {
56*5def4c47SEmmanuel Vadot        compatible = "mscc,ocelot-icpu-intr";
57*5def4c47SEmmanuel Vadot        reg = <0x70000070 0x70>;
58*5def4c47SEmmanuel Vadot        #interrupt-cells = <1>;
59*5def4c47SEmmanuel Vadot        #address-cells = <0>;
60*5def4c47SEmmanuel Vadot        interrupt-controller;
61*5def4c47SEmmanuel Vadot        interrupt-parent = <&cpuintc>;
62*5def4c47SEmmanuel Vadot        interrupts = <2>;
63*5def4c47SEmmanuel Vadot    };
64*5def4c47SEmmanuel Vadot...
65