faraday,ftintc010.txt 838 B

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