30 lines
		
	
	
		
			569 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			569 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# 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
 |