]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/mx6/Kconfig
arm: Add SYS_L2CACHE_OFF Kconfig entry
[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"
38 select CPU_V7
39
40config TARGET_ARISTAINETOS2
41 bool "aristainetos2"
42 select CPU_V7
43
44config TARGET_CGTQMX6EVAL
45 bool "cgtqmx6eval"
46 select CPU_V7
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"
57 select CPU_V7
58
59config TARGET_GW_VENTANA
60 bool "gw_ventana"
61 select CPU_V7
62 select SUPPORT_SPL
63
64config TARGET_KOSAGI_NOVENA
65 bool "Kosagi Novena"
66 select CPU_V7
67 select SUPPORT_SPL
68
69config TARGET_MX6CUBOXI
70 bool "Solid-run mx6 boards"
71 select CPU_V7
72 select SUPPORT_SPL
73
74config TARGET_MX6QARM2
75 bool "mx6qarm2"
76 select CPU_V7
77
78config TARGET_MX6QSABREAUTO
79 bool "mx6qsabreauto"
80 select CPU_V7
81 select DM
82 select DM_THERMAL
83
84config TARGET_MX6SABRESD
85 bool "mx6sabresd"
86 select CPU_V7
87 select SUPPORT_SPL
88 select DM
89 select DM_THERMAL
90
91config TARGET_MX6SLEVK
92 bool "mx6slevk"
93 select CPU_V7
e7d3b21b 94 select SUPPORT_SPL
21782828
PF
95
96config TARGET_MX6SXSABRESD
97 bool "mx6sxsabresd"
98 select CPU_V7
99 select SUPPORT_SPL
100 select DM
101 select DM_THERMAL
102
103config TARGET_MX6UL_14X14_EVK
104 bool "mx6ul_14x14_evk"
105 select CPU_V7
106 select DM
107 select DM_THERMAL
108 select SUPPORT_SPL
109
110config TARGET_NITROGEN6X
111 bool "nitrogen6x"
112 select CPU_V7
113
114config TARGET_OT1200
115 bool "Bachmann OT1200"
116 select CPU_V7
117 select SUPPORT_SPL
118
119config TARGET_PLATINUM_PICON
120 bool "platinum-picon"
121 select CPU_V7
122 select SUPPORT_SPL
123
124config TARGET_PLATINUM_TITANIUM
125 bool "platinum-titanium"
126 select CPU_V7
127 select SUPPORT_SPL
128
058d2316 129config TARGET_SECOMX6
21782828
PF
130 bool "secomx6 boards"
131
132config TARGET_TBS2910
c3f871c1 133 bool "TBS2910 Matrix ARM mini PC"
21782828
PF
134 select CPU_V7
135
136config TARGET_TITANIUM
137 bool "titanium"
138 select CPU_V7
058d2316 139
51f6c428
MN
140config TARGET_TQMA6
141 bool "TQ Systems TQMa6 board"
51f6c428 142
21782828
PF
143config TARGET_UDOO
144 bool "udoo"
145 select CPU_V7
146 select SUPPORT_SPL
147
148config TARGET_WANDBOARD
149 bool "wandboard"
150 select CPU_V7
151 select SUPPORT_SPL
152
153config TARGET_WARP
154 bool "WaRP"
155 select CPU_V7
156
058d2316
BB
157endchoice
158
89ebc821
BB
159config SYS_SOC
160 default "mx6"
161
21782828
PF
162source "board/aristainetos/Kconfig"
163source "board/bachmann/ot1200/Kconfig"
164source "board/barco/platinum/Kconfig"
165source "board/barco/titanium/Kconfig"
166source "board/boundary/nitrogen6x/Kconfig"
167source "board/compulab/cm_fx6/Kconfig"
168source "board/congatec/cgtqmx6eval/Kconfig"
169source "board/embest/mx6boards/Kconfig"
170source "board/freescale/mx6qarm2/Kconfig"
171source "board/freescale/mx6qsabreauto/Kconfig"
172source "board/freescale/mx6sabresd/Kconfig"
173source "board/freescale/mx6slevk/Kconfig"
174source "board/freescale/mx6sxsabresd/Kconfig"
175source "board/freescale/mx6ul_14x14_evk/Kconfig"
176source "board/gateworks/gw_ventana/Kconfig"
177source "board/kosagi/novena/Kconfig"
058d2316 178source "board/seco/Kconfig"
21782828
PF
179source "board/solidrun/mx6cuboxi/Kconfig"
180source "board/tbs/tbs2910/Kconfig"
51f6c428 181source "board/tqc/tqma6/Kconfig"
21782828
PF
182source "board/udoo/Kconfig"
183source "board/wandboard/Kconfig"
184source "board/warp/Kconfig"
058d2316 185
89ebc821 186endif