]> git.ipfire.org Git - thirdparty/u-boot.git/blob - Bindings/interrupt-controller/faraday,ftintc010.txt
Squashed 'dts/upstream/' content from commit aaba2d45dc2a
[thirdparty/u-boot.git] / Bindings / interrupt-controller / faraday,ftintc010.txt
1 * Faraday Technologt FTINTC010 interrupt controller
2
3 This interrupt controller is a stock IP block from Faraday Technology found
4 in the Gemini SoCs and other designs.
5
6 Required properties:
7 - compatible: must be one of
8 "faraday,ftintc010"
9 "cortina,gemini-interrupt-controller" (deprecated)
10 - reg: The register bank for the interrupt controller.
11 - interrupt-controller: Identifies the node as an interrupt controller
12 - #interrupt-cells: The number of cells to define the interrupts.
13 Must be 2 as the controller can specify level or rising edge
14 IRQs. The bindings follows the standard binding for controllers
15 with two cells specified in
16 interrupt-controller/interrupts.txt
17
18 Example:
19
20 interrupt-controller@48000000 {
21 compatible = "faraday,ftintc010"
22 reg = <0x48000000 0x1000>;
23 interrupt-controller;
24 #interrupt-cells = <2>;
25 };