VIM is a vector interrupt manager that TI devices have and is used a interrupt controller. the driver's Kconfig selection is created as "VIM" and is resulting in the confusion with a Text Editor name. Make the VIM Kconfig option to indicate the vendor TI name in it. Signed-off-by: Mihira Madhava Bollapragada <madhava@ti.com>
17 lines
423 B
VimL
17 lines
423 B
VimL
# Copyright (C) 2023 BeagleBoard.org Foundation
|
|
# Copyright (C) 2023 S Prashanth
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if CPU_CORTEX_R5
|
|
|
|
config TI_VIM
|
|
bool "TI Vectored Interrupt Manager"
|
|
default y
|
|
depends on DT_HAS_TI_VIM_ENABLED
|
|
help
|
|
The TI Vectored Interrupt Manager provides hardware assistance for prioritizing
|
|
and aggregating the interrupt sources for ARM Cortex-R5 processor cores.
|
|
|
|
endif # CPU_CORTEX_R5
|