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