1# SPDX-License-Identifier: GPL-2.0 2menuconfig ROCKCHIP_RVE 3 tristate "RVE" 4 depends on ARCH_ROCKCHIP 5 help 6 RVE module. 7 8if ROCKCHIP_RVE 9 10config ROCKCHIP_RVE_PROC_FS 11 bool "Enable RVE procfs" 12 select ROCKCHIP_RVE_DEBUGGER 13 depends on PROC_FS 14 help 15 Enable procfs to debug RVE driver. 16 17config ROCKCHIP_RVE_DEBUG_FS 18 bool "Enable RVE debugfs" 19 select ROCKCHIP_RVE_DEBUGGER 20 depends on DEBUG_FS 21 help 22 Enable debugfs to debug RVE driver. 23 24config ROCKCHIP_RVE_DEBUGGER 25 bool 26 help 27 Enabling the debugger of RVE, you can use procfs and debugfs for debugging. 28 29endif 30