ti,keystone-irq.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Keystone 2 IRQ controller IP
  2. On Keystone SOCs, DSP cores can send interrupts to ARM
  3. host using the IRQ controller IP. It provides 28 IRQ signals to ARM.
  4. The IRQ handler running on HOST OS can identify DSP signal source by
  5. analyzing SRCCx bits in IPCARx registers. This is one of the component
  6. used by the IPC mechanism used on Keystone SOCs.
  7. Required Properties:
  8. - compatible: should be "ti,keystone-irq"
  9. - ti,syscon-dev : phandle and offset pair. The phandle to syscon used to
  10. access device control registers and the offset inside
  11. device control registers range.
  12. - interrupt-controller : Identifies the node as an interrupt controller
  13. - #interrupt-cells : Specifies the number of cells needed to encode interrupt
  14. source should be 1.
  15. - interrupts: interrupt reference to primary interrupt controller
  16. Please refer to interrupts.txt in this directory for details of the common
  17. Interrupt Controllers bindings used by client devices.
  18. Example:
  19. kirq0: keystone_irq0@026202a0 {
  20. compatible = "ti,keystone-irq";
  21. ti,syscon-dev = <&devctrl 0x2a0>;
  22. interrupts = <GIC_SPI 4 IRQ_TYPE_EDGE_RISING>;
  23. interrupt-controller;
  24. #interrupt-cells = <1>;
  25. };
  26. dsp0: dsp0 {
  27. compatible = "linux,rproc-user";
  28. ...
  29. interrupt-parent = <&kirq0>;
  30. interrupts = <10 2>;
  31. };