Timer driver using Microchip 32KHz based RTOS timer as the kernel timer tick. The driver uses one of the 32-bit basic timers to support the kernel's k_busy_wait API which is passed a wait count in 1 us units. The 32-bit basic timer is selected by using device tree chosen rtimer-busy-wait-timer set to the handle of the desired 32-bit basic timer. If this driver is disabled, the build system will select the ARM Cortex-M4 SysTick as the kernel timer tick driver. The user should specify RTOS timer as kernel tick by adding the compatible properity and setting the status property to "okay" at the board or application level device tree. The driver implements two internal API's for use by the SoC PM. These two API's allow the SoC PM layer to disable the timer used for k_busy_wait so the PLL can be disabled in deep sleep. We used a custom API so we can disable this timer in the deep sleep path when we know k_busy_wait will not be called by other drivers or applications. Signed-off-by: Scott Worley <scott.worley@microchip.com>
105 lines
3.5 KiB
Plaintext
105 lines
3.5 KiB
Plaintext
# Timer driver configuration options
|
|
|
|
# Copyright (c) 2014-2015 Wind River Systems, Inc.
|
|
# Copyright (c) 2016 Cadence Design Systems, Inc.
|
|
# Copyright (c) 2019 Intel Corp.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SYS_CLOCK_EXISTS
|
|
|
|
menu "Timer drivers"
|
|
|
|
config TIMER_HAS_64BIT_CYCLE_COUNTER
|
|
bool
|
|
help
|
|
When this option is true, the k_cycle_get_64() call is
|
|
available to provide values from a 64-bit cycle counter.
|
|
|
|
config TIMER_READS_ITS_FREQUENCY_AT_RUNTIME
|
|
bool "Timer queries its hardware to find its frequency at runtime"
|
|
help
|
|
The drivers select this option automatically when needed. Do not modify
|
|
this unless you have a very good reason for it.
|
|
|
|
config SYSTEM_CLOCK_SLOPPY_IDLE
|
|
bool "Timer allowed to skew uptime clock during idle"
|
|
help
|
|
When true, the timer driver is not required to maintain a
|
|
correct system uptime count when the system enters idle.
|
|
Some platforms may take advantage of this to reduce the
|
|
overhead from regular interrupts required to handle counter
|
|
wraparound conditions.
|
|
|
|
config SYSTEM_CLOCK_INIT_PRIORITY
|
|
int "System clock driver initialization priority"
|
|
default 0
|
|
help
|
|
This options can be used to set a specific initialization priority
|
|
value for the system clock driver. As driver initialization might need
|
|
the clock to be running already, you should let the default value as it
|
|
is (0).
|
|
|
|
# Hidden option to be selected by individual SoC.
|
|
config TICKLESS_CAPABLE
|
|
bool
|
|
help
|
|
Timer drivers should select this flag if they are capable of
|
|
supporting tickless operation. That is, a call to
|
|
sys_clock_set_timeout() with a number of ticks greater than
|
|
one should be expected not to produce a call to
|
|
sys_clock_announce() (really, not to produce an interrupt at
|
|
all) until the specified expiration.
|
|
|
|
config SYSTEM_TIMER_HAS_DISABLE_SUPPORT
|
|
bool
|
|
help
|
|
This option should be selected by drivers implementing support for
|
|
sys_clock_disable() API.
|
|
|
|
config SYSTEM_CLOCK_LOCK_FREE_COUNT
|
|
bool
|
|
help
|
|
This option should be selected by drivers implementing a lock free
|
|
cycle count accessor. This is needed for instrumenting spin lock
|
|
hold times.
|
|
|
|
source "drivers/timer/Kconfig.altera_avalon"
|
|
source "drivers/timer/Kconfig.ambiq"
|
|
source "drivers/timer/Kconfig.x86"
|
|
source "drivers/timer/Kconfig.arcv2"
|
|
source "drivers/timer/Kconfig.arm_arch"
|
|
source "drivers/timer/Kconfig.cavs"
|
|
source "drivers/timer/Kconfig.cc13xx_cc26xx_rtc"
|
|
source "drivers/timer/Kconfig.cortex_m_systick"
|
|
source "drivers/timer/Kconfig.esp32"
|
|
source "drivers/timer/Kconfig.gecko"
|
|
source "drivers/timer/Kconfig.ite_it8xxx2"
|
|
source "drivers/timer/Kconfig.leon_gptimer"
|
|
source "drivers/timer/Kconfig.litex"
|
|
source "drivers/timer/Kconfig.mchp_xec_rtos"
|
|
source "drivers/timer/Kconfig.mcux_gpt"
|
|
source "drivers/timer/Kconfig.mcux_lptmr"
|
|
source "drivers/timer/Kconfig.mcux_os"
|
|
source "drivers/timer/Kconfig.mec5"
|
|
source "drivers/timer/Kconfig.mips_cp0"
|
|
source "drivers/timer/Kconfig.native_posix"
|
|
source "drivers/timer/Kconfig.npcx_itim"
|
|
source "drivers/timer/Kconfig.nrf_rtc"
|
|
source "drivers/timer/Kconfig.nrf_grtc"
|
|
source "drivers/timer/Kconfig.nrf_xrtc"
|
|
source "drivers/timer/Kconfig.rcar_cmt"
|
|
source "drivers/timer/Kconfig.riscv_machine"
|
|
source "drivers/timer/Kconfig.rv32m1_lptmr"
|
|
source "drivers/timer/Kconfig.sam0_rtc"
|
|
source "drivers/timer/Kconfig.smartbond"
|
|
source "drivers/timer/Kconfig.stm32_lptim"
|
|
source "drivers/timer/Kconfig.ti_dm_timer"
|
|
source "drivers/timer/Kconfig.xlnx_psttc"
|
|
source "drivers/timer/Kconfig.xtensa"
|
|
source "drivers/timer/Kconfig.mtk_adsp"
|
|
source "drivers/timer/Kconfig.sy1xx_sys_timer"
|
|
|
|
endmenu
|
|
|
|
endif # SYS_CLOCK_EXISTS
|