1# SPDX-License-Identifier: GPL-2.0 2menuconfig ROCKCHIP_MULTI_RGA 3 tristate "MULTI_RGA" 4 depends on ARCH_ROCKCHIP 5 help 6 multi_rga module. 7 8if ROCKCHIP_MULTI_RGA 9 10config ROCKCHIP_RGA_ASYNC 11 bool "Enable async mode" 12 depends on SYNC_FILE 13 default y 14 help 15 Asynchronous calls will be supported. 16 17config ROCKCHIP_RGA_PROC_FS 18 bool "Enable RGA procfs" 19 select ROCKCHIP_RGA_DEBUGGER 20 depends on PROC_FS 21 help 22 Enable procfs to debug multi RGA driver. 23 24config ROCKCHIP_RGA_DEBUG_FS 25 bool "Enable RGA debugfs" 26 select ROCKCHIP_RGA_DEBUGGER 27 depends on DEBUG_FS 28 default y 29 help 30 Enable debugfs to debug multi RGA driver. 31 32config ROCKCHIP_RGA_DEBUGGER 33 bool 34 help 35 Enabling the debugger of multi RGA, you can use procfs and debugfs for debugging. 36 37endif 38