1# SPDX-License-Identifier: GPL-2.0 2menuconfig ROCKCHIP_RGA2 3 tristate "RGA2" 4 depends on ARCH_ROCKCHIP && !ROCKCHIP_MULTI_RGA 5 help 6 rk32 rga2 module. 7 8if ROCKCHIP_RGA2 9 10config ROCKCHIP_RGA2_PROC_FS 11 bool "Enable RGA2 procfs" 12 select ROCKCHIP_RGA2_DEBUGGER 13 depends on PROC_FS 14 help 15 Enable procfs to debug RGA driver. 16 17config ROCKCHIP_RGA2_DEBUG_FS 18 bool "Enable RGA2 debugfs" 19 select ROCKCHIP_RGA2_DEBUGGER 20 depends on DEBUG_FS 21 default y 22 help 23 Enable debugfs to debug RGA driver. 24 25config ROCKCHIP_RGA2_DEBUGGER 26 bool 27 help 28 Enabling the debugger of RGA2, you can use procfs and debugfs for debugging. 29 30endif 31