ingenic,intc.txt 852 B

1234567891011121314151617181920212223242526272829
  1. Ingenic SoC Interrupt Controller
  2. Required properties:
  3. - compatible : should be "ingenic,<socname>-intc". Valid strings are:
  4. ingenic,jz4740-intc
  5. ingenic,jz4725b-intc
  6. ingenic,jz4770-intc
  7. ingenic,jz4775-intc
  8. ingenic,jz4780-intc
  9. - reg : Specifies base physical address and size of the registers.
  10. - interrupt-controller : Identifies the node as an interrupt controller
  11. - #interrupt-cells : Specifies the number of cells needed to encode an
  12. interrupt source. The value shall be 1.
  13. - interrupt-parent : phandle of the CPU interrupt controller.
  14. - interrupts : Specifies the CPU interrupt the controller is connected to.
  15. Example:
  16. intc: interrupt-controller@10001000 {
  17. compatible = "ingenic,jz4740-intc";
  18. reg = <0x10001000 0x14>;
  19. interrupt-controller;
  20. #interrupt-cells = <1>;
  21. interrupt-parent = <&cpuintc>;
  22. interrupts = <2>;
  23. };