st,stm32-timer.txt 560 B

12345678910111213141516171819202122
  1. . STMicroelectronics STM32 timer
  2. The STM32 MCUs family has several general-purpose 16 and 32 bits timers.
  3. Required properties:
  4. - compatible : Should be "st,stm32-timer"
  5. - reg : Address and length of the register set
  6. - clocks : Reference on the timer input clock
  7. - interrupts : Reference to the timer interrupt
  8. Optional properties:
  9. - resets: Reference to a reset controller asserting the timer
  10. Example:
  11. timer5: timer@40000c00 {
  12. compatible = "st,stm32-timer";
  13. reg = <0x40000c00 0x400>;
  14. interrupts = <50>;
  15. resets = <&rrc 259>;
  16. clocks = <&clk_pmtr1>;
  17. };