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