st,stm32-exti.txt 820 B

12345678910111213141516171819202122232425
  1. STM32 External Interrupt Controller
  2. Required properties:
  3. - compatible: Should be:
  4. "st,stm32-exti"
  5. "st,stm32h7-exti"
  6. "st,stm32mp1-exti"
  7. - reg: Specifies base physical address and size of the registers
  8. - interrupt-controller: Indentifies the node as an interrupt controller
  9. - #interrupt-cells: Specifies the number of cells to encode an interrupt
  10. specifier, shall be 2
  11. - interrupts: interrupts references to primary interrupt controller
  12. (only needed for exti controller with multiple exti under
  13. same parent interrupt: st,stm32-exti and st,stm32h7-exti)
  14. Example:
  15. exti: interrupt-controller@40013c00 {
  16. compatible = "st,stm32-exti";
  17. interrupt-controller;
  18. #interrupt-cells = <2>;
  19. reg = <0x40013C00 0x400>;
  20. interrupts = <1>, <2>, <3>, <6>, <7>, <8>, <9>, <10>, <23>, <40>, <41>, <42>, <62>, <76>;
  21. };