mediatek,sysirq.txt 917 B

12345678910111213141516171819202122232425262728
  1. Mediatek 65xx/81xx sysirq
  2. Mediatek SOCs sysirq support controllable irq inverter for each GIC SPI
  3. interrupt.
  4. Required properties:
  5. - compatible: should be one of:
  6. "mediatek,mt8135-sysirq"
  7. "mediatek,mt8127-sysirq"
  8. "mediatek,mt6589-sysirq"
  9. "mediatek,mt6582-sysirq"
  10. "mediatek,mt6577-sysirq"
  11. - interrupt-controller : Identifies the node as an interrupt controller
  12. - #interrupt-cells : Use the same format as specified by GIC in
  13. Documentation/devicetree/bindings/arm/gic.txt
  14. - interrupt-parent: phandle of irq parent for sysirq. The parent must
  15. use the same interrupt-cells format as GIC.
  16. - reg: Physical base address of the intpol registers and length of memory
  17. mapped region.
  18. Example:
  19. sysirq: interrupt-controller@10200100 {
  20. compatible = "mediatek,mt6589-sysirq", "mediatek,mt6577-sysirq";
  21. interrupt-controller;
  22. #interrupt-cells = <3>;
  23. interrupt-parent = <&gic>;
  24. reg = <0 0x10200100 0 0x1c>;
  25. };