• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1menu "G2D Drivers"
2	depends on AW_BSP
3
4config AW_G2D
5	tristate "G2D Support for Allwinner SoCs"
6	default n
7	help
8	  Enable sunxi platform 2D Graphics engine
9choice
10	prompt "G2D driver version"
11	depends on AW_G2D
12
13config G2D_LEGACY
14	bool "legacy version"
15
16config G2D_RCQ
17	bool "RCQ version"
18
19config G2D_MIXER
20	depends on G2D_RCQ
21	bool "sunxi g2d mixer module"
22	default y
23	help
24	  Choose Y to enable mixer module of g2d
25
26config G2D_ROTATE
27	depends on G2D_RCQ
28	bool "sunxi g2d rotate module"
29	default y
30	help
31	  Choose Y to enable rotate module of g2d
32
33
34endchoice
35
36config G2D_SYNCFENCE
37	depends on AW_G2D
38	select SYNC_FILE
39	bool "sunxi sync fence implement for rotate jobs synchronous"
40	default n
41	help
42	  Choose Y to enable sync fence implement for sunxi G2D
43endmenu
44