opencores,or1k-pic.txt 797 B

1234567891011121314151617181920212223
  1. OpenRISC 1000 Programmable Interrupt Controller
  2. Required properties:
  3. - compatible : should be "opencores,or1k-pic-level" for variants with
  4. level triggered interrupt lines, "opencores,or1k-pic-edge" for variants with
  5. edge triggered interrupt lines or "opencores,or1200-pic" for machines
  6. with the non-spec compliant or1200 type implementation.
  7. "opencores,or1k-pic" is also provided as an alias to "opencores,or1200-pic",
  8. but this is only for backwards compatibility.
  9. - interrupt-controller : Identifies the node as an interrupt controller
  10. - #interrupt-cells : Specifies the number of cells needed to encode an
  11. interrupt source. The value shall be 1.
  12. Example:
  13. intc: interrupt-controller {
  14. compatible = "opencores,or1k-pic-level";
  15. interrupt-controller;
  16. #interrupt-cells = <1>;
  17. };