allwinner,sunxi-nmi.txt 1011 B

1234567891011121314151617181920212223242526272829
  1. Allwinner Sunxi NMI Controller
  2. ==============================
  3. Required properties:
  4. - compatible : should be one of the following:
  5. - "allwinner,sun7i-a20-sc-nmi"
  6. - "allwinner,sun6i-a31-sc-nmi" (deprecated)
  7. - "allwinner,sun6i-a31-r-intc"
  8. - "allwinner,sun9i-a80-nmi"
  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 2. The first cell is the IRQ number, the
  13. second cell the trigger type as defined in interrupt.txt in this directory.
  14. - interrupts: Specifies the interrupt line (NMI) which is handled by
  15. the interrupt controller in the parent controller's notation. This value
  16. shall be the NMI.
  17. Example:
  18. sc-nmi-intc@1c00030 {
  19. compatible = "allwinner,sun7i-a20-sc-nmi";
  20. interrupt-controller;
  21. #interrupt-cells = <2>;
  22. reg = <0x01c00030 0x0c>;
  23. interrupt-parent = <&gic>;
  24. interrupts = <0 0 4>;
  25. };