axis,crisv32-intc.txt 597 B

1234567891011121314151617181920212223
  1. * CRISv32 Interrupt Controller
  2. Interrupt controller for the CRISv32 SoCs.
  3. Main node required properties:
  4. - compatible : should be:
  5. "axis,crisv32-intc"
  6. - interrupt-controller : Identifies the node as an interrupt controller
  7. - #interrupt-cells : Specifies the number of cells needed to encode an
  8. interrupt source. The type shall be a <u32> and the value shall be 1.
  9. - reg: physical base address and size of the intc registers map.
  10. Example:
  11. intc: interrupt-controller {
  12. compatible = "axis,crisv32-intc";
  13. reg = <0xb001c000 0x1000>;
  14. interrupt-controller;
  15. #interrupt-cells = <1>;
  16. };