bfticu.txt 825 B

123456789101112131415161718192021222324
  1. KEYMILE bfticu Chassis Management FPGA
  2. The bfticu is a multifunction device that manages the whole chassis.
  3. Its main functionality is to collect IRQs from the whole chassis and signals
  4. them to a single controller.
  5. Required properties:
  6. - compatible: "keymile,bfticu"
  7. - interrupt-controller: the bfticu FPGA is an interrupt controller
  8. - interrupts: the main IRQ line to signal the collected IRQs
  9. - #interrupt-cells : is 2 and their usage is compliant to the 2 cells variant
  10. of Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
  11. - reg: access on the parent local bus (chip select, offset in chip select, size)
  12. Example:
  13. chassis-mgmt@3,0 {
  14. compatible = "keymile,bfticu";
  15. interrupt-controller;
  16. #interrupt-cells = <2>;
  17. reg = <3 0 0x100>;
  18. interrupt-parent = <&mpic>;
  19. interrupts = <6 1 0 0>;
  20. };