xref: /freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/faraday,ftintc010.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* Faraday Technologt FTINTC010 interrupt controller
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotThis interrupt controller is a stock IP block from Faraday Technology found
4*c66ec88fSEmmanuel Vadotin the Gemini SoCs and other designs.
5*c66ec88fSEmmanuel Vadot
6*c66ec88fSEmmanuel VadotRequired properties:
7*c66ec88fSEmmanuel Vadot- compatible: must be one of
8*c66ec88fSEmmanuel Vadot  "faraday,ftintc010"
9*c66ec88fSEmmanuel Vadot  "cortina,gemini-interrupt-controller" (deprecated)
10*c66ec88fSEmmanuel Vadot- reg: The register bank for the interrupt controller.
11*c66ec88fSEmmanuel Vadot- interrupt-controller: Identifies the node as an interrupt controller
12*c66ec88fSEmmanuel Vadot- #interrupt-cells: The number of cells to define the interrupts.
13*c66ec88fSEmmanuel Vadot  Must be 2 as the controller can specify level or rising edge
14*c66ec88fSEmmanuel Vadot  IRQs. The bindings follows the standard binding for controllers
15*c66ec88fSEmmanuel Vadot  with two cells specified in
16*c66ec88fSEmmanuel Vadot  interrupt-controller/interrupts.txt
17*c66ec88fSEmmanuel Vadot
18*c66ec88fSEmmanuel VadotExample:
19*c66ec88fSEmmanuel Vadot
20*c66ec88fSEmmanuel Vadotinterrupt-controller@48000000 {
21*c66ec88fSEmmanuel Vadot	compatible = "faraday,ftintc010"
22*c66ec88fSEmmanuel Vadot	reg = <0x48000000 0x1000>;
23*c66ec88fSEmmanuel Vadot	interrupt-controller;
24*c66ec88fSEmmanuel Vadot	#interrupt-cells = <2>;
25*c66ec88fSEmmanuel Vadot};
26