hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
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
# SPDX-License-Identifier: GPL-2.0
menuconfig ROCKCHIP_RVE
   tristate "RVE"
   depends on ARCH_ROCKCHIP
   help
     RVE module.
 
if ROCKCHIP_RVE
 
config ROCKCHIP_RVE_PROC_FS
   bool "Enable RVE procfs"
   select ROCKCHIP_RVE_DEBUGGER
   depends on PROC_FS
   help
     Enable procfs to debug RVE driver.
 
config ROCKCHIP_RVE_DEBUG_FS
   bool "Enable RVE debugfs"
   select ROCKCHIP_RVE_DEBUGGER
   depends on DEBUG_FS
   help
     Enable debugfs to debug RVE driver.
 
config ROCKCHIP_RVE_DEBUGGER
   bool
   help
     Enabling the debugger of RVE, you can use procfs and debugfs for debugging.
 
endif