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