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