blob: eddaee179315be1253f3c1363a234912032694e7 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ppc4xx CPU"
2 depends on 4xx
3
4config SYS_CPU
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "ppc4xx"
6
7choice
8 prompt "Target select"
9
10config TARGET_CSB272
11 bool "Support csb272"
12
13config TARGET_CSB472
14 bool "Support csb472"
15
16config TARGET_G2000
17 bool "Support G2000"
18
19config TARGET_JSE
20 bool "Support JSE"
21
22config TARGET_KORAT
23 bool "Support korat"
24
25config TARGET_LWMON5
26 bool "Support lwmon5"
Masahiro Yamada02627352014-10-20 17:45:56 +090027 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +090028
29config TARGET_PCS440EP
30 bool "Support pcs440ep"
31
32config TARGET_SBC405
33 bool "Support sbc405"
34
35config TARGET_SC3
36 bool "Support sc3"
37
38config TARGET_T3CORP
39 bool "Support t3corp"
40
41config TARGET_W7OLMC
42 bool "Support W7OLMC"
43
44config TARGET_W7OLMG
45 bool "Support W7OLMG"
46
47config TARGET_ZEUS
48 bool "Support zeus"
49
50config TARGET_ACADIA
51 bool "Support acadia"
52
53config TARGET_BAMBOO
54 bool "Support bamboo"
55
Masahiro Yamadadd840582014-07-30 14:08:14 +090056config TARGET_BUBINGA
57 bool "Support bubinga"
58
59config TARGET_CANYONLANDS
60 bool "Support canyonlands"
61
62config TARGET_EBONY
63 bool "Support ebony"
64
65config TARGET_KATMAI
66 bool "Support katmai"
67
68config TARGET_KILAUEA
69 bool "Support kilauea"
70
71config TARGET_LUAN
72 bool "Support luan"
73
74config TARGET_MAKALU
75 bool "Support makalu"
76
77config TARGET_OCOTEA
78 bool "Support ocotea"
79
80config TARGET_REDWOOD
81 bool "Support redwood"
82
83config TARGET_SEQUOIA
84 bool "Support sequoia"
85
86config TARGET_TAIHU
87 bool "Support taihu"
88
89config TARGET_TAISHAN
90 bool "Support taishan"
91
92config TARGET_WALNUT
93 bool "Support walnut"
94
95config TARGET_YOSEMITE
96 bool "Support yosemite"
97
98config TARGET_YUCCA
99 bool "Support yucca"
100
101config TARGET_FX12MM
102 bool "Support fx12mm"
103
104config TARGET_V5FX30TEVAL
105 bool "Support v5fx30teval"
106
Masahiro Yamadadd840582014-07-30 14:08:14 +0900107config TARGET_CATCENTER
108 bool "Support CATcenter"
109
110config TARGET_PPCHAMELEONEVB
111 bool "Support PPChameleonEVB"
112
Masahiro Yamadadd840582014-07-30 14:08:14 +0900113config TARGET_CPCI2DP
114 bool "Support CPCI2DP"
115
116config TARGET_CPCI405
117 bool "Support CPCI405"
118
119config TARGET_CPCI4052
120 bool "Support CPCI4052"
121
122config TARGET_CPCI405AB
123 bool "Support CPCI405AB"
124
125config TARGET_CPCI405DT
126 bool "Support CPCI405DT"
127
Masahiro Yamadadd840582014-07-30 14:08:14 +0900128config TARGET_PLU405
129 bool "Support PLU405"
130
Masahiro Yamadadd840582014-07-30 14:08:14 +0900131config TARGET_PMC405DE
132 bool "Support PMC405DE"
133
134config TARGET_PMC440
135 bool "Support PMC440"
136
137config TARGET_VOH405
138 bool "Support VOH405"
139
140config TARGET_VOM405
141 bool "Support VOM405"
142
143config TARGET_WUH405
144 bool "Support WUH405"
145
146config TARGET_DLVISION_10G
147 bool "Support dlvision-10g"
148
149config TARGET_IO
150 bool "Support io"
151
152config TARGET_IOCON
153 bool "Support iocon"
154
155config TARGET_NEO
156 bool "Support neo"
157
158config TARGET_IO64
159 bool "Support io64"
160
161config TARGET_DLVISION
162 bool "Support dlvision"
163
164config TARGET_GDPPC440ETX
165 bool "Support gdppc440etx"
166
167config TARGET_INTIP
168 bool "Support intip"
169
170config TARGET_ICON
171 bool "Support icon"
172
173config TARGET_MIP405
174 bool "Support MIP405"
175
176config TARGET_PIP405
177 bool "Support PIP405"
178
179config TARGET_ALPR
180 bool "Support alpr"
181
182config TARGET_P3P440
183 bool "Support p3p440"
184
Masahiro Yamadadd840582014-07-30 14:08:14 +0900185config TARGET_XPEDITE1000
186 bool "Support xpedite1000"
187
188config TARGET_ML507
189 bool "Support ml507"
190
191config TARGET_XILINX_PPC405_GENERIC
192 bool "Support xilinx-ppc405-generic"
193
194config TARGET_XILINX_PPC440_GENERIC
195 bool "Support xilinx-ppc440-generic"
196
197endchoice
198
199source "board/amcc/acadia/Kconfig"
200source "board/amcc/bamboo/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900201source "board/amcc/bubinga/Kconfig"
202source "board/amcc/canyonlands/Kconfig"
203source "board/amcc/ebony/Kconfig"
204source "board/amcc/katmai/Kconfig"
205source "board/amcc/kilauea/Kconfig"
206source "board/amcc/luan/Kconfig"
207source "board/amcc/makalu/Kconfig"
208source "board/amcc/ocotea/Kconfig"
209source "board/amcc/redwood/Kconfig"
210source "board/amcc/sequoia/Kconfig"
211source "board/amcc/taihu/Kconfig"
212source "board/amcc/taishan/Kconfig"
213source "board/amcc/walnut/Kconfig"
214source "board/amcc/yosemite/Kconfig"
215source "board/amcc/yucca/Kconfig"
216source "board/avnet/fx12mm/Kconfig"
217source "board/avnet/v5fx30teval/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900218source "board/csb272/Kconfig"
219source "board/csb472/Kconfig"
220source "board/dave/PPChameleonEVB/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900221source "board/esd/cpci2dp/Kconfig"
222source "board/esd/cpci405/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900223source "board/esd/plu405/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900224source "board/esd/pmc405de/Kconfig"
225source "board/esd/pmc440/Kconfig"
226source "board/esd/voh405/Kconfig"
227source "board/esd/vom405/Kconfig"
228source "board/esd/wuh405/Kconfig"
229source "board/g2000/Kconfig"
230source "board/gdsys/405ep/Kconfig"
231source "board/gdsys/405ex/Kconfig"
232source "board/gdsys/dlvision/Kconfig"
233source "board/gdsys/gdppc440etx/Kconfig"
234source "board/gdsys/intip/Kconfig"
235source "board/jse/Kconfig"
236source "board/korat/Kconfig"
237source "board/lwmon5/Kconfig"
238source "board/mosaixtech/icon/Kconfig"
239source "board/mpl/mip405/Kconfig"
240source "board/mpl/pip405/Kconfig"
241source "board/pcs440ep/Kconfig"
242source "board/prodrive/alpr/Kconfig"
243source "board/prodrive/p3p440/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900244source "board/sbc405/Kconfig"
245source "board/sc3/Kconfig"
246source "board/t3corp/Kconfig"
247source "board/w7o/Kconfig"
248source "board/xes/xpedite1000/Kconfig"
249source "board/xilinx/ml507/Kconfig"
250source "board/xilinx/ppc405-generic/Kconfig"
251source "board/xilinx/ppc440-generic/Kconfig"
252source "board/zeus/Kconfig"
253
254endmenu