Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # Timer driver configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # Copyright (c) 2016 Cadence Design Systems, Inc.
  4. # Copyright (c) 2019 Intel Corp.
  5. # SPDX-License-Identifier: Apache-2.0
  6. menu "Timer Drivers"
  7. DT_COMPAT_ARM_V6M_SYSTICK := arm,armv6m-systick
  8. DT_COMPAT_ARM_V7M_SYSTICK := arm,armv7m-systick
  9. DT_COMPAT_ARM_V8M_SYSTICK := arm,armv8m-systick
  10. DT_COMPAT_ARM_V8_1M_SYSTICK := arm,armv8.1m-systick
  11. config CORTEX_M_SYSTICK
  12. bool "Cortex-M SYSTICK timer"
  13. depends on CPU_CORTEX_M_HAS_SYSTICK
  14. select TICKLESS_CAPABLE
  15. help
  16. This module implements a kernel device driver for the Cortex-M processor
  17. SYSTICK timer and provides the standard "system clock driver" interfaces.
  18. source "drivers/timer/Kconfig.acts"
  19. config NPCX_ITIM_TIMER
  20. bool "Nuvoton NPCX series internal 64/32-bit timers"
  21. default y
  22. depends on SOC_FAMILY_NPCX
  23. select TICKLESS_CAPABLE
  24. help
  25. This module implements a kernel device driver for the Nuvoton NPCX
  26. series internal 64/32-bit timers and provides the standard "system
  27. clock driver" interfaces.
  28. config SYSTEM_CLOCK_DISABLE
  29. bool "API to disable system clock"
  30. help
  31. This option enables the sys_clock_disable() API in the kernel. It is
  32. needed by some subsystems (which will automatically select it), but is
  33. rarely needed by applications.
  34. config TIMER_READS_ITS_FREQUENCY_AT_RUNTIME
  35. bool "Timer queries its hardware to find its frequency at runtime"
  36. help
  37. The drivers select this option automatically when needed. Do not modify
  38. this unless you have a very good reason for it.
  39. config SYSTEM_CLOCK_SLOPPY_IDLE
  40. bool "Timer allowed to skew uptime clock during idle"
  41. help
  42. When true, the timer driver is not required to maintain a
  43. correct system uptime count when the system enters idle.
  44. Some platforms may take advantage of this to reduce the
  45. overhead from regular interrupts required to handle counter
  46. wraparound conditions.
  47. config SYSTEM_CLOCK_INIT_PRIORITY
  48. int "System clock driver initialization priority"
  49. default 0
  50. help
  51. This options can be used to set a specific initialization priority
  52. value for the system clock driver. As driver initialization might need
  53. the clock to be running already, you should let the default value as it
  54. is (0).
  55. # Hidden option to be selected by individual SoC.
  56. config TICKLESS_CAPABLE
  57. bool
  58. help
  59. Timer drivers should select this flag if they are capable of
  60. supporting tickless operation. That is, a call to
  61. sys_clock_set_timeout() with a number of ticks greater than
  62. one should be expected not to produce a call to
  63. sys_clock_announce() (really, not to produce an interrupt at
  64. all) until the specified expiration.
  65. DT_COMPAT_NXP_OS_TIMER := nxp,os-timer
  66. config MCUX_OS_TIMER
  67. bool "MCUX OS Event timer"
  68. depends on HAS_MCUX_OS_TIMER
  69. default $(dt_compat_enabled,$(DT_COMPAT_NXP_OS_TIMER))
  70. select TICKLESS_CAPABLE
  71. help
  72. This module implements a kernel device driver for the NXP OS
  73. event timer and provides the standard "system clock driver" interfaces.
  74. config MCUX_LPTMR_TIMER
  75. bool "MCUX LPTMR timer"
  76. depends on HAS_MCUX_LPTMR && !COUNTER_MCUX_LPTMR
  77. help
  78. This module implements a kernel device driver for the NXP MCUX Low
  79. Power Timer (LPTMR) and provides the standard "system clock driver"
  80. interfaces.
  81. endmenu