1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | # Kconfig - counter and timer configuration options
#
#
# Copyright (c) 2016 Linaro Limited
#
# SPDX-License-Identifier: Apache-2.0
#
if SOC_FAMILY_ARM
config TIMER_TMR_CMSDK_APB
bool
prompt "ARM CMSDK (Cortex-M System Design Kit) Timer driver"
default n
help
The timers (TMR) present in the platform are used as timers.
This option enables the support for the timers.
if TIMER_TMR_CMSDK_APB
# ---------- Timer 0 ----------
config TIMER_TMR_CMSDK_APB_0
bool
prompt "Timer 0 driver"
default n
help
Enable support for Timer 0.
config TIMER_TMR_CMSDK_APB_0_DEV_NAME
string "Timer 0 Device Name"
depends on TIMER_TMR_CMSDK_APB_0
default "TIMER_0"
help
Specify the device name for Timer 0 driver.
config TIMER_TMR_CMSDK_APB_0_IRQ_PRI
int "Interrupt Priority for Timer 0"
depends on TIMER_TMR_CMSDK_APB_0
default 3
help
Interrupt priority for Timer 0.
# ---------- Timer 1 ----------
config TIMER_TMR_CMSDK_APB_1
bool
prompt "Timer 1 driver"
default n
help
Enable support for Timer 1.
config TIMER_TMR_CMSDK_APB_1_DEV_NAME
string "Timer 1 Device Name"
depends on TIMER_TMR_CMSDK_APB_1
default "TIMER_1"
help
Specify the device name for Timer 1 driver.
config TIMER_TMR_CMSDK_APB_1_IRQ_PRI
int "Interrupt Priority for Timer 1"
depends on TIMER_TMR_CMSDK_APB_1
default 3
help
Interrupt priority for Timer 1.
endif # TIMER_TMR_CMSDK_APB
config COUNTER_TMR_CMSDK_APB
bool
prompt "ARM CMSDK (Cortex-M System Design Kit) Counter driver"
default n
help
The timers (TMR) present in the platform are used as counters.
This option enables the support for the counters.
if COUNTER_TMR_CMSDK_APB
# ---------- Counter 0 ----------
config COUNTER_TMR_CMSDK_APB_0
bool
prompt "Counter 0 driver"
depends on !TIMER_TMR_CMSDK_APB_0
default n
help
Enable support for Counter 0.
config COUNTER_TMR_CMSDK_APB_0_DEV_NAME
string "Counter 0 Device Name"
depends on COUNTER_TMR_CMSDK_APB_0
default "COUNTER_0"
help
Specify the device name for Counter 0 driver.
# ---------- Counter 1 ----------
config COUNTER_TMR_CMSDK_APB_1
bool
prompt "Counter 1 driver"
depends on !TIMER_TMR_CMSDK_APB_1
default n
help
Enable support for Counter 1.
config COUNTER_TMR_CMSDK_APB_1_DEV_NAME
string "Counter 1 Device Name"
depends on COUNTER_TMR_CMSDK_APB_1
default "COUNTER_1"
help
Specify the device name for Counter 1 driver.
endif # COUNTER_TMR_CMSDK_APB
endif # SOC_FAMILY_ARM
|