• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_PROC_FS
11	bool "Enable RGA procfs"
12	select ROCKCHIP_RGA_DEBUGGER
13	depends on PROC_FS
14	help
15	  Enable procfs to debug multi RGA driver.
16
17config ROCKCHIP_RGA_DEBUG_FS
18	bool "Enable RGA debugfs"
19	select ROCKCHIP_RGA_DEBUGGER
20	depends on DEBUG_FS
21	default y
22	help
23	  Enable debugfs to debug multi RGA driver.
24
25config ROCKCHIP_RGA_DEBUGGER
26	bool
27	help
28	  Enabling the debugger of multi RGA, you can use procfs and debugfs for debugging.
29
30endif
31