brintos

brintos / linux-shallow public Read only

0
0
Text · 838 B · 24428d4 Raw
26 lines · plain
1* Faraday Technologt FTINTC010 interrupt controller2 3This interrupt controller is a stock IP block from Faraday Technology found4in the Gemini SoCs and other designs.5 6Required properties:7- compatible: must be one of8  "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 controller12- #interrupt-cells: The number of cells to define the interrupts.13  Must be 2 as the controller can specify level or rising edge14  IRQs. The bindings follows the standard binding for controllers15  with two cells specified in16  interrupt-controller/interrupts.txt17 18Example:19 20interrupt-controller@48000000 {21	compatible = "faraday,ftintc010"22	reg = <0x48000000 0x1000>;23	interrupt-controller;24	#interrupt-cells = <2>;25};26