bfticu.txt 894 B

12345678910111213141516171819202122232425
  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. - interrupt-parent: the parent IRQ ctrl the main IRQ is connected to
  12. - reg: access on the parent local bus (chip select, offset in chip select, size)
  13. Example:
  14. chassis-mgmt@3,0 {
  15. compatible = "keymile,bfticu";
  16. interrupt-controller;
  17. #interrupt-cells = <2>;
  18. reg = <3 0 0x100>;
  19. interrupt-parent = <&mpic>;
  20. interrupts = <6 1 0 0>;
  21. };