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