]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/m68k/Kconfig
m68k: mcf523x: move CPU type to Kconfig and refactor config.mk
[people/ms/u-boot.git] / arch / m68k / Kconfig
1 menu "M68000 architecture"
2 depends on M68K
3
4 config SYS_ARCH
5 default "m68k"
6
7 # processor family
8 config MCF520x
9 bool
10
11 config MCF52x2
12 bool
13
14 config MCF523x
15 bool
16
17 config MCF530x
18 bool
19
20 config MCF5301x
21 bool
22
23 config MCF532x
24 bool
25
26 config MCF537x
27 bool
28
29 config MCF5441x
30 bool
31
32 config MCF5445x
33 bool
34
35 config MCF5227x
36 bool
37
38 # processor type
39 config M5208
40 bool
41 select MCF520x
42
43 config M5235
44 bool
45 select MCF523x
46
47 config M5249
48 bool
49 select MCF52x2
50
51 config M5253
52 bool
53 select MCF52x2
54
55 config M5271
56 bool
57 select MCF52x2
58
59 config M5272
60 bool
61 select MCF52x2
62
63 config M5275
64 bool
65 select MCF52x2
66
67 config M5282
68 bool
69 select MCF52x2
70
71 config M5307
72 bool
73 select MCF530x
74
75 config M53015
76 bool
77 select MCF5301x
78
79 config M5329
80 bool
81 select MCF532x
82
83 config M5373
84 bool
85 select MCF532x
86 select MCF537x
87
88 config M54418
89 bool
90 select MCF5441x
91
92 config M54451
93 bool
94 select MCF5445x
95
96 config M54455
97 bool
98 select MCF5445x
99
100 config M52277
101 bool
102 select MCF5227x
103
104 choice
105 prompt "Target select"
106
107 config TARGET_M52277EVB
108 bool "Support M52277EVB"
109 select M52277
110
111 config TARGET_M5235EVB
112 bool "Support M5235EVB"
113 select M5235
114
115 config TARGET_COBRA5272
116 bool "Support cobra5272"
117 select M5272
118
119 config TARGET_EB_CPU5282
120 bool "Support eb_cpu5282"
121 select M5282
122
123 config TARGET_M5208EVBE
124 bool "Support M5208EVBE"
125 select M5208
126
127 config TARGET_M5249EVB
128 bool "Support M5249EVB"
129 select M5249
130
131 config TARGET_M5253DEMO
132 bool "Support M5253DEMO"
133 select M5253
134
135 config TARGET_M5253EVBE
136 bool "Support M5253EVBE"
137 select M5253
138
139 config TARGET_M5272C3
140 bool "Support M5272C3"
141 select M5272
142
143 config TARGET_M5275EVB
144 bool "Support M5275EVB"
145 select M5275
146
147 config TARGET_M5282EVB
148 bool "Support M5282EVB"
149 select M5282
150
151 config TARGET_ASTRO_MCF5373L
152 bool "Support astro_mcf5373l"
153 select M5373
154
155 config TARGET_M53017EVB
156 bool "Support M53017EVB"
157 select M53015
158
159 config TARGET_M5329EVB
160 bool "Support M5329EVB"
161 select M5329
162
163 config TARGET_M5373EVB
164 bool "Support M5373EVB"
165 select M5373
166
167 config TARGET_M54418TWR
168 bool "Support M54418TWR"
169 select M54418
170
171 config TARGET_M54451EVB
172 bool "Support M54451EVB"
173 select M54451
174
175 config TARGET_M54455EVB
176 bool "Support M54455EVB"
177 select M54455
178
179 config TARGET_M5475EVB
180 bool "Support M5475EVB"
181
182 config TARGET_M5485EVB
183 bool "Support M5485EVB"
184
185 config TARGET_AMCORE
186 bool "Support AMCORE"
187 select M5307
188
189 endchoice
190
191 source "board/BuS/eb_cpu5282/Kconfig"
192 source "board/astro/mcf5373l/Kconfig"
193 source "board/cobra5272/Kconfig"
194 source "board/freescale/m5208evbe/Kconfig"
195 source "board/freescale/m52277evb/Kconfig"
196 source "board/freescale/m5235evb/Kconfig"
197 source "board/freescale/m5249evb/Kconfig"
198 source "board/freescale/m5253demo/Kconfig"
199 source "board/freescale/m5253evbe/Kconfig"
200 source "board/freescale/m5272c3/Kconfig"
201 source "board/freescale/m5275evb/Kconfig"
202 source "board/freescale/m5282evb/Kconfig"
203 source "board/freescale/m53017evb/Kconfig"
204 source "board/freescale/m5329evb/Kconfig"
205 source "board/freescale/m5373evb/Kconfig"
206 source "board/freescale/m54418twr/Kconfig"
207 source "board/freescale/m54451evb/Kconfig"
208 source "board/freescale/m54455evb/Kconfig"
209 source "board/freescale/m547xevb/Kconfig"
210 source "board/freescale/m548xevb/Kconfig"
211 source "board/sysam/amcore/Kconfig"
212
213 endmenu