1* Faraday Technologt FTINTC010 interrupt controller
2
3This interrupt controller is a stock IP block from Faraday Technology found
4in the Gemini SoCs and other designs.
5
6Required 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
18Example:
19
20interrupt-controller@48000000 {
21	compatible = "faraday,ftintc010"
22	reg = <0x48000000 0x1000>;
23	interrupt-controller;
24	#interrupt-cells = <2>;
25};
26