0001 * Faraday Technologt FTINTC010 interrupt controller
0002
0003 This interrupt controller is a stock IP block from Faraday Technology found
0004 in the Gemini SoCs and other designs.
0005
0006 Required properties:
0007 - compatible: must be one of
0008 "faraday,ftintc010"
0009 "cortina,gemini-interrupt-controller" (deprecated)
0010 - reg: The register bank for the interrupt controller.
0011 - interrupt-controller: Identifies the node as an interrupt controller
0012 - #interrupt-cells: The number of cells to define the interrupts.
0013 Must be 2 as the controller can specify level or rising edge
0014 IRQs. The bindings follows the standard binding for controllers
0015 with two cells specified in
0016 interrupt-controller/interrupts.txt
0017
0018 Example:
0019
0020 interrupt-controller@48000000 {
0021 compatible = "faraday,ftintc010"
0022 reg = <0x48000000 0x1000>;
0023 interrupt-controller;
0024 #interrupt-cells = <2>;
0025 };