xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ti,omap-intc-irq.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
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/ti,omap-intc-irq.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: TI OMAP Interrupt Controller
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Tony Lindgren <tony@atomide.com>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotdescription:
13*ae5de77eSEmmanuel Vadot  On TI omap2 and 3 the intc interrupt controller can provide 96 or 128 IRQ
14*ae5de77eSEmmanuel Vadot  signals to the ARM host depending on the SoC.
15*ae5de77eSEmmanuel Vadot
16*ae5de77eSEmmanuel Vadotproperties:
17*ae5de77eSEmmanuel Vadot  compatible:
18*ae5de77eSEmmanuel Vadot    enum:
19*ae5de77eSEmmanuel Vadot      - ti,omap2-intc
20*ae5de77eSEmmanuel Vadot      - ti,omap3-intc
21*ae5de77eSEmmanuel Vadot      - ti,dm814-intc
22*ae5de77eSEmmanuel Vadot      - ti,dm816-intc
23*ae5de77eSEmmanuel Vadot      - ti,am33xx-intc
24*ae5de77eSEmmanuel Vadot
25*ae5de77eSEmmanuel Vadot  reg:
26*ae5de77eSEmmanuel Vadot    maxItems: 1
27*ae5de77eSEmmanuel Vadot
28*ae5de77eSEmmanuel Vadot  interrupts:
29*ae5de77eSEmmanuel Vadot    maxItems: 1
30*ae5de77eSEmmanuel Vadot
31*ae5de77eSEmmanuel Vadot  interrupt-controller: true
32*ae5de77eSEmmanuel Vadot
33*ae5de77eSEmmanuel Vadot  '#interrupt-cells':
34*ae5de77eSEmmanuel Vadot    const: 1
35*ae5de77eSEmmanuel Vadot
36*ae5de77eSEmmanuel Vadotrequired:
37*ae5de77eSEmmanuel Vadot  - compatible
38*ae5de77eSEmmanuel Vadot  - reg
39*ae5de77eSEmmanuel Vadot  - interrupt-controller
40*ae5de77eSEmmanuel Vadot  - '#interrupt-cells'
41*ae5de77eSEmmanuel Vadot
42*ae5de77eSEmmanuel VadotadditionalProperties: false
43*ae5de77eSEmmanuel Vadot
44*ae5de77eSEmmanuel Vadotexamples:
45*ae5de77eSEmmanuel Vadot  - |
46*ae5de77eSEmmanuel Vadot    interrupt-controller@48200000 {
47*ae5de77eSEmmanuel Vadot        compatible = "ti,omap3-intc";
48*ae5de77eSEmmanuel Vadot        reg = <0x48200000 0x1000>;
49*ae5de77eSEmmanuel Vadot        interrupts = <32>;
50*ae5de77eSEmmanuel Vadot        interrupt-controller;
51*ae5de77eSEmmanuel Vadot        #interrupt-cells = <1>;
52*ae5de77eSEmmanuel Vadot    };
53