xref: /openbmc/u-boot/arch/m68k/Kconfig (revision bdde6595)
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
17# processor type
18config M5208
19	bool
20	select MCF520x
21
22config M5249
23	bool
24	select MCF52x2
25
26config M5253
27	bool
28	select MCF52x2
29
30config M5271
31	bool
32	select MCF52x2
33
34config M5272
35	bool
36	select MCF52x2
37
38config M5275
39	bool
40	select MCF52x2
41
42config M5282
43	bool
44	select MCF52x2
45
46config M5307
47	bool
48	select MCF530x
49
50choice
51	prompt "Target select"
52
53config TARGET_M52277EVB
54	bool "Support M52277EVB"
55
56config TARGET_M5235EVB
57	bool "Support M5235EVB"
58
59config TARGET_COBRA5272
60	bool "Support cobra5272"
61	select M5272
62
63config TARGET_EB_CPU5282
64	bool "Support eb_cpu5282"
65	select M5282
66
67config TARGET_M5208EVBE
68	bool "Support M5208EVBE"
69	select M5208
70
71config TARGET_M5249EVB
72	bool "Support M5249EVB"
73	select M5249
74
75config TARGET_M5253DEMO
76	bool "Support M5253DEMO"
77	select M5253
78
79config TARGET_M5253EVBE
80	bool "Support M5253EVBE"
81	select M5253
82
83config TARGET_M5272C3
84	bool "Support M5272C3"
85	select M5272
86
87config TARGET_M5275EVB
88	bool "Support M5275EVB"
89	select M5275
90
91config TARGET_M5282EVB
92	bool "Support M5282EVB"
93	select M5282
94
95config TARGET_ASTRO_MCF5373L
96	bool "Support astro_mcf5373l"
97
98config TARGET_M53017EVB
99	bool "Support M53017EVB"
100
101config TARGET_M5329EVB
102	bool "Support M5329EVB"
103
104config TARGET_M5373EVB
105	bool "Support M5373EVB"
106
107config TARGET_M54418TWR
108	bool "Support M54418TWR"
109
110config TARGET_M54451EVB
111	bool "Support M54451EVB"
112
113config TARGET_M54455EVB
114	bool "Support M54455EVB"
115
116config TARGET_M5475EVB
117	bool "Support M5475EVB"
118
119config TARGET_M5485EVB
120	bool "Support M5485EVB"
121
122config TARGET_AMCORE
123	bool "Support AMCORE"
124	select M5307
125
126endchoice
127
128source "board/BuS/eb_cpu5282/Kconfig"
129source "board/astro/mcf5373l/Kconfig"
130source "board/cobra5272/Kconfig"
131source "board/freescale/m5208evbe/Kconfig"
132source "board/freescale/m52277evb/Kconfig"
133source "board/freescale/m5235evb/Kconfig"
134source "board/freescale/m5249evb/Kconfig"
135source "board/freescale/m5253demo/Kconfig"
136source "board/freescale/m5253evbe/Kconfig"
137source "board/freescale/m5272c3/Kconfig"
138source "board/freescale/m5275evb/Kconfig"
139source "board/freescale/m5282evb/Kconfig"
140source "board/freescale/m53017evb/Kconfig"
141source "board/freescale/m5329evb/Kconfig"
142source "board/freescale/m5373evb/Kconfig"
143source "board/freescale/m54418twr/Kconfig"
144source "board/freescale/m54451evb/Kconfig"
145source "board/freescale/m54455evb/Kconfig"
146source "board/freescale/m547xevb/Kconfig"
147source "board/freescale/m548xevb/Kconfig"
148source "board/sysam/amcore/Kconfig"
149
150endmenu
151