Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
# 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