]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/mx6/Kconfig
imx: hab: rework secure boot support for imx6
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / mx6 / Kconfig
CommitLineData
89ebc821
BB
1if ARCH_MX6
2
3config MX6
4 bool
5 default y
6
7config MX6D
8 bool
9
10config MX6DL
11 bool
12
13config MX6Q
14 bool
15
16config MX6QDL
17 bool
18
19config MX6S
20 bool
21
22config MX6SL
23 bool
24
25config MX6SX
26 bool
27
a2c74aaf
PF
28config MX6UL
29 select SYS_L2CACHE_OFF
30 bool
31
058d2316
BB
32choice
33 prompt "MX6 board select"
a26cd049 34 optional
058d2316 35
21782828
PF
36config TARGET_ARISTAINETOS
37 bool "aristainetos"
21782828
PF
38
39config TARGET_ARISTAINETOS2
40 bool "aristainetos2"
21782828 41
9627084c
HS
42config TARGET_ARISTAINETOS2B
43 bool "Support aristainetos2-revB"
9627084c 44
21782828
PF
45config TARGET_CGTQMX6EVAL
46 bool "cgtqmx6eval"
21782828 47
81f5598b 48config TARGET_CM_FX6
21782828 49 bool "CM-FX6"
81f5598b
NK
50 select SUPPORT_SPL
51 select DM
52 select DM_SERIAL
53 select DM_GPIO
54
21782828
PF
55config TARGET_EMBESTMX6BOARDS
56 bool "embestmx6boards"
21782828
PF
57
58config TARGET_GW_VENTANA
59 bool "gw_ventana"
21782828
PF
60 select SUPPORT_SPL
61
62config TARGET_KOSAGI_NOVENA
63 bool "Kosagi Novena"
21782828
PF
64 select SUPPORT_SPL
65
66config TARGET_MX6CUBOXI
67 bool "Solid-run mx6 boards"
21782828
PF
68 select SUPPORT_SPL
69
70config TARGET_MX6QARM2
71 bool "mx6qarm2"
21782828
PF
72
73config TARGET_MX6QSABREAUTO
74 bool "mx6qsabreauto"
21782828
PF
75 select DM
76 select DM_THERMAL
77
78config TARGET_MX6SABRESD
79 bool "mx6sabresd"
21782828
PF
80 select SUPPORT_SPL
81 select DM
82 select DM_THERMAL
83
84config TARGET_MX6SLEVK
85 bool "mx6slevk"
e7d3b21b 86 select SUPPORT_SPL
21782828
PF
87
88config TARGET_MX6SXSABRESD
89 bool "mx6sxsabresd"
21782828
PF
90 select SUPPORT_SPL
91 select DM
92 select DM_THERMAL
93
d9cbb264
PF
94config TARGET_MX6UL_9X9_EVK
95 bool "mx6ul_9x9_evk"
96 select MX6UL
d9cbb264
PF
97 select DM
98 select DM_THERMAL
99 select SUPPORT_SPL
100
21782828
PF
101config TARGET_MX6UL_14X14_EVK
102 bool "mx6ul_14x14_evk"
d5b2112e 103 select MX6UL
21782828
PF
104 select DM
105 select DM_THERMAL
106 select SUPPORT_SPL
107
108config TARGET_NITROGEN6X
109 bool "nitrogen6x"
21782828
PF
110
111config TARGET_OT1200
112 bool "Bachmann OT1200"
21782828
PF
113 select SUPPORT_SPL
114
115config TARGET_PLATINUM_PICON
116 bool "platinum-picon"
21782828
PF
117 select SUPPORT_SPL
118
119config TARGET_PLATINUM_TITANIUM
120 bool "platinum-titanium"
21782828
PF
121 select SUPPORT_SPL
122
058d2316 123config TARGET_SECOMX6
21782828
PF
124 bool "secomx6 boards"
125
126config TARGET_TBS2910
c3f871c1 127 bool "TBS2910 Matrix ARM mini PC"
21782828
PF
128
129config TARGET_TITANIUM
130 bool "titanium"
058d2316 131
51f6c428
MN
132config TARGET_TQMA6
133 bool "TQ Systems TQMa6 board"
51f6c428 134
21782828
PF
135config TARGET_UDOO
136 bool "udoo"
21782828
PF
137 select SUPPORT_SPL
138
139config TARGET_WANDBOARD
140 bool "wandboard"
21782828
PF
141 select SUPPORT_SPL
142
143config TARGET_WARP
144 bool "WaRP"
21782828 145
058d2316
BB
146endchoice
147
89ebc821
BB
148config SYS_SOC
149 default "mx6"
150
21782828
PF
151source "board/aristainetos/Kconfig"
152source "board/bachmann/ot1200/Kconfig"
153source "board/barco/platinum/Kconfig"
154source "board/barco/titanium/Kconfig"
155source "board/boundary/nitrogen6x/Kconfig"
156source "board/compulab/cm_fx6/Kconfig"
157source "board/congatec/cgtqmx6eval/Kconfig"
158source "board/embest/mx6boards/Kconfig"
159source "board/freescale/mx6qarm2/Kconfig"
160source "board/freescale/mx6qsabreauto/Kconfig"
161source "board/freescale/mx6sabresd/Kconfig"
162source "board/freescale/mx6slevk/Kconfig"
163source "board/freescale/mx6sxsabresd/Kconfig"
164source "board/freescale/mx6ul_14x14_evk/Kconfig"
165source "board/gateworks/gw_ventana/Kconfig"
166source "board/kosagi/novena/Kconfig"
058d2316 167source "board/seco/Kconfig"
21782828
PF
168source "board/solidrun/mx6cuboxi/Kconfig"
169source "board/tbs/tbs2910/Kconfig"
51f6c428 170source "board/tqc/tqma6/Kconfig"
21782828
PF
171source "board/udoo/Kconfig"
172source "board/wandboard/Kconfig"
173source "board/warp/Kconfig"
058d2316 174
89ebc821 175endif