Kconfig 465 B

123456789101112131415161718
  1. menuconfig RT_USING_CLOCK_TIME
  2. bool "Clock time subsystem"
  3. default n
  4. if RT_USING_CLOCK_TIME
  5. config CLOCK_TIMER_FREQ
  6. int "Clock time timer freq"
  7. default 0
  8. depends on ARCH_RISCV64
  9. help
  10. Base frequency (Hz) for clock time counter on RISC-V.
  11. config RT_CLOCK_TIME_ARM_ARCH
  12. bool "ARM ARCH Timer"
  13. depends on RT_USING_DM
  14. depends on ARCH_ARM_CORTEX_A || ARCH_ARMV8
  15. default n
  16. endif