-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathConfig.in.sam
More file actions
91 lines (72 loc) · 2.01 KB
/
Config.in.sam
File metadata and controls
91 lines (72 loc) · 2.01 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
config BR2_MCHP_SAM_HAS_GPU
bool
default n
config BR2_MCHP_SAM_HAS_GPU2D
bool
select BR2_MCHP_SAM_HAS_GPU
default n
config BR2_MCHP_SAM_HAS_SAM9X60_GFX2D
bool
select BR2_MCHP_SAM_HAS_GPU2D
default n
config BR2_MCHP_SAM_HAS_SAM9X7_GFX2D
bool
select BR2_MCHP_SAM_HAS_GPU2D
default n
config BR2_MCHP_SAM_HAS_GC520UL
bool
select BR2_MCHP_SAM_HAS_GPU2D
default n
choice
prompt "SAM series"
config BR2_MCHP_SAM_9X5
bool "SAM9X5 Series"
config BR2_MCHP_SAM_9X6
bool "SAM9X6 Series"
select BR2_MCHP_SAM_HAS_SAM9X6_GFX2D
config BR2_MCHP_SAM_9X7
bool "SAM9X7 Series"
select BR2_MCHP_SAM_HAS_SAM9X7_GFX2D
config BR2_MCHP_SAM_A5D2
bool "SAMA5D2 Series"
config BR2_MCHP_SAM_A5D3
bool "SAMA5D3 Series"
config BR2_MCHP_SAM_A5D4
bool "SAMA5D4 Series"
config BR2_MCHP_SAM_A7D6
bool "SAMA7D6 Series"
select BR2_MCHP_SAM_HAS_GC520UL
config BR2_MCHP_SAM_A7G5
bool "SAMA7G5 Series"
endchoice
choice
prompt "GPU strategy"
default BR2_MCHP_SAM_SAM9X6_GFX2D if BR2_MCHP_SAM_HAS_SAM9X6_GFX2D
default BR2_MCHP_SAM_SAM9X7_GFX2D if BR2_MCHP_SAM_HAS_SAM9X7_GFX2D
default BR2_MCHP_SAM_GC520UL_NANO2D if BR2_MCHP_SAM_HAS_GC520UL
default BR2_MCHP_SAM_NO_GPU if !BR2_MCHP_SAM_HAS_GPU
config BR2_MCHP_SAM_SAM9X6_GFX2D
bool "GFX2D on SAM9X6 series"
depends on BR2_MCHP_SAM_HAS_SAM9X6_GFX2D
help
This option allows to use the GFX2D accelerator on SAM9X6 series.
config BR2_MCHP_SAM_SAM9X7_GFX2D
bool "GFX2D on SAM9X7 series"
depends on BR2_MCHP_SAM_HAS_SAM9X7_GFX2D
help
This option allows to use the GFX2D accelerator on SAM9X7 series.
config BR2_MCHP_SAM_GC520UL_NANO2D
bool "GC520UL with Nano2D driver"
depends on BR2_MCHP_SAM_HAS_GC520UL
help
This option allows to use the GC520UL accelerator with the Nano2D driver.
config BR2_MCHP_SAM_GC520UL_ETNAVIV
bool "GC520UL with Etnaviv driver"
depends on BR2_MCHP_SAM_HAS_GC520UL
help
This option allows to use the GC520UL accelerator with the Etnaviv driver.
config BR2_MCHP_SAM_NO_GPU
bool "No GPU"
help
This option allows to use software rendering only.
endchoice