armv7m_systick.txt 647 B

123456789101112131415161718192021222324252627
  1. * ARMv7M System Timer
  2. ARMv7-M includes a system timer, known as SysTick. Current driver only
  3. implements the clocksource feature.
  4. Required properties:
  5. - compatible : Should be "arm,armv7m-systick"
  6. - reg : The address range of the timer
  7. Required clocking property, have to be one of:
  8. - clocks : The input clock of the timer
  9. - clock-frequency : The rate in HZ in input of the ARM SysTick
  10. Examples:
  11. systick: timer@e000e010 {
  12. compatible = "arm,armv7m-systick";
  13. reg = <0xe000e010 0x10>;
  14. clocks = <&clk_systick>;
  15. };
  16. systick: timer@e000e010 {
  17. compatible = "arm,armv7m-systick";
  18. reg = <0xe000e010 0x10>;
  19. clock-frequency = <90000000>;
  20. };