allwinner,sun4i-ic.txt 600 B

123456789101112131415161718192021
  1. Allwinner Sunxi Interrupt Controller
  2. Required properties:
  3. - compatible : should be "allwinner,sun4i-ic"
  4. - reg : Specifies base physical address and size of the registers.
  5. - interrupt-controller : Identifies the node as an interrupt controller
  6. - #interrupt-cells : Specifies the number of cells needed to encode an
  7. interrupt source. The value shall be 1.
  8. For the valid interrupt sources for your SoC, see the documentation in
  9. sunxi/<soc>.txt
  10. Example:
  11. intc: interrupt-controller {
  12. compatible = "allwinner,sun4i-ic";
  13. reg = <0x01c20400 0x400>;
  14. interrupt-controller;
  15. #interrupt-cells = <2>;
  16. };