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