Makefile 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052
  1. #
  2. # (C) Copyright 2000-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # See file CREDITS for list of people who contributed to this
  6. # project.
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License as
  10. # published by the Free Software Foundatio; either version 2 of
  11. # the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. # MA 02111-1307 USA
  22. #
  23. VERSION = 1
  24. PATCHLEVEL = 1
  25. SUBLEVEL = 4
  26. EXTRAVERSION =
  27. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  28. VERSION_FILE = include/version_autogenerated.h
  29. HOSTARCH := $(shell uname -m | \
  30. sed -e s/i.86/i386/ \
  31. -e s/sun4u/sparc64/ \
  32. -e s/arm.*/arm/ \
  33. -e s/sa110/arm/ \
  34. -e s/powerpc/ppc/ \
  35. -e s/macppc/ppc/)
  36. HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
  37. sed -e 's/\(cygwin\).*/cygwin/')
  38. export HOSTARCH HOSTOS
  39. # Deal with colliding definitions from tcsh etc.
  40. VENDOR=
  41. #########################################################################
  42. TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
  43. export TOPDIR
  44. ifeq (include/config.mk,$(wildcard include/config.mk))
  45. # load ARCH, BOARD, and CPU configuration
  46. include include/config.mk
  47. export ARCH CPU BOARD VENDOR SOC
  48. ifndef CROSS_COMPILE
  49. ifeq ($(HOSTARCH),ppc)
  50. CROSS_COMPILE =
  51. else
  52. ifeq ($(ARCH),ppc)
  53. CROSS_COMPILE = powerpc-linux-
  54. endif
  55. ifeq ($(ARCH),arm)
  56. CROSS_COMPILE = arm-linux-
  57. endif
  58. ifeq ($(ARCH),i386)
  59. ifeq ($(HOSTARCH),i386)
  60. CROSS_COMPILE =
  61. else
  62. CROSS_COMPILE = i386-linux-
  63. endif
  64. endif
  65. ifeq ($(ARCH),mips)
  66. CROSS_COMPILE = mips_4KC-
  67. endif
  68. ifeq ($(ARCH),nios)
  69. CROSS_COMPILE = nios-elf-
  70. endif
  71. ifeq ($(ARCH),nios2)
  72. CROSS_COMPILE = nios2-elf-
  73. endif
  74. ifeq ($(ARCH),m68k)
  75. CROSS_COMPILE = m68k-elf-
  76. endif
  77. ifeq ($(ARCH),microblaze)
  78. CROSS_COMPILE = mb-
  79. endif
  80. ifeq ($(ARCH),blackfin)
  81. CROSS_COMPILE = bfin-elf-
  82. endif
  83. endif
  84. endif
  85. export CROSS_COMPILE
  86. # load other configuration
  87. include $(TOPDIR)/config.mk
  88. #########################################################################
  89. # U-Boot objects....order is important (i.e. start must be first)
  90. OBJS = cpu/$(CPU)/start.o
  91. ifeq ($(CPU),i386)
  92. OBJS += cpu/$(CPU)/start16.o
  93. OBJS += cpu/$(CPU)/reset.o
  94. endif
  95. ifeq ($(CPU),ppc4xx)
  96. OBJS += cpu/$(CPU)/resetvec.o
  97. endif
  98. ifeq ($(CPU),mpc83xx)
  99. OBJS += cpu/$(CPU)/resetvec.o
  100. endif
  101. ifeq ($(CPU),mpc85xx)
  102. OBJS += cpu/$(CPU)/resetvec.o
  103. endif
  104. ifeq ($(CPU),bf533)
  105. OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
  106. OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
  107. endif
  108. LIBS = lib_generic/libgeneric.a
  109. LIBS += board/$(BOARDDIR)/lib$(BOARD).a
  110. LIBS += cpu/$(CPU)/lib$(CPU).a
  111. ifdef SOC
  112. LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
  113. endif
  114. LIBS += lib_$(ARCH)/lib$(ARCH).a
  115. LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
  116. fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
  117. LIBS += net/libnet.a
  118. LIBS += disk/libdisk.a
  119. LIBS += rtc/librtc.a
  120. LIBS += dtt/libdtt.a
  121. LIBS += drivers/libdrivers.a
  122. LIBS += drivers/nand/libnand.a
  123. LIBS += drivers/nand_legacy/libnand_legacy.a
  124. LIBS += drivers/sk98lin/libsk98lin.a
  125. LIBS += post/libpost.a post/cpu/libcpu.a
  126. LIBS += common/libcommon.a
  127. LIBS += $(BOARDLIBS)
  128. .PHONY : $(LIBS)
  129. # Add GCC lib
  130. PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
  131. # The "tools" are needed early, so put this first
  132. # Don't include stuff already done in $(LIBS)
  133. SUBDIRS = tools \
  134. examples \
  135. post \
  136. post/cpu
  137. .PHONY : $(SUBDIRS)
  138. #########################################################################
  139. #########################################################################
  140. ALL = u-boot.srec u-boot.bin System.map
  141. all: $(ALL)
  142. u-boot.hex: u-boot
  143. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
  144. u-boot.srec: u-boot
  145. $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
  146. u-boot.bin: u-boot
  147. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  148. u-boot.img: u-boot.bin
  149. ./tools/mkimage -A $(ARCH) -T firmware -C none \
  150. -a $(TEXT_BASE) -e 0 \
  151. -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
  152. sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
  153. -d $< $@
  154. u-boot.dis: u-boot
  155. $(OBJDUMP) -d $< > $@
  156. u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
  157. UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
  158. $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
  159. --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
  160. -Map u-boot.map -o u-boot
  161. $(LIBS):
  162. $(MAKE) -C `dirname $@`
  163. $(SUBDIRS):
  164. $(MAKE) -C $@ all
  165. version:
  166. @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
  167. echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
  168. echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
  169. $(TOPDIR)) >> $(VERSION_FILE); \
  170. echo "\"" >> $(VERSION_FILE)
  171. gdbtools:
  172. $(MAKE) -C tools/gdb || exit 1
  173. depend dep:
  174. @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
  175. tags:
  176. ctags -w `find $(SUBDIRS) include \
  177. lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
  178. fs/cramfs fs/fat fs/fdos fs/jffs2 \
  179. net disk rtc dtt drivers drivers/sk98lin common \
  180. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  181. etags:
  182. etags -a `find $(SUBDIRS) include \
  183. lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
  184. fs/cramfs fs/fat fs/fdos fs/jffs2 \
  185. net disk rtc dtt drivers drivers/sk98lin common \
  186. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  187. System.map: u-boot
  188. @$(NM) $< | \
  189. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  190. sort > System.map
  191. #########################################################################
  192. else
  193. all install u-boot u-boot.srec depend dep:
  194. @echo "System not configured - see README" >&2
  195. @ exit 1
  196. endif
  197. #########################################################################
  198. unconfig:
  199. @rm -f include/config.h include/config.mk board/*/config.tmp
  200. #========================================================================
  201. # PowerPC
  202. #========================================================================
  203. #########################################################################
  204. ## MPC5xx Systems
  205. #########################################################################
  206. canmb_config: unconfig
  207. @./mkconfig -a canmb ppc mpc5xxx canmb
  208. cmi_mpc5xx_config: unconfig
  209. @./mkconfig $(@:_config=) ppc mpc5xx cmi
  210. PATI_config: unconfig
  211. @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
  212. #########################################################################
  213. ## MPC5xxx Systems
  214. #########################################################################
  215. aev_config: unconfig
  216. @./mkconfig -a aev ppc mpc5xxx tqm5200
  217. BC3450_config: unconfig
  218. @./mkconfig -a BC3450 ppc mpc5xxx bc3450
  219. cpci5200_config: unconfig
  220. @./mkconfig -a cpci5200 ppc mpc5xxx cpci5200 esd
  221. hmi1001_config: unconfig
  222. @./mkconfig hmi1001 ppc mpc5xxx hmi1001
  223. Lite5200_config \
  224. Lite5200_LOWBOOT_config \
  225. Lite5200_LOWBOOT08_config \
  226. icecube_5200_config \
  227. icecube_5200_LOWBOOT_config \
  228. icecube_5200_LOWBOOT08_config \
  229. icecube_5200_DDR_config \
  230. icecube_5200_DDR_LOWBOOT_config \
  231. icecube_5200_DDR_LOWBOOT08_config \
  232. icecube_5100_config: unconfig
  233. @ >include/config.h
  234. @[ -z "$(findstring LOWBOOT_,$@)" ] || \
  235. { if [ "$(findstring DDR,$@)" ] ; \
  236. then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  237. else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
  238. fi ; \
  239. echo "... with LOWBOOT configuration" ; \
  240. }
  241. @[ -z "$(findstring LOWBOOT08,$@)" ] || \
  242. { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  243. echo "... with 8 MB flash only" ; \
  244. echo "... with LOWBOOT configuration" ; \
  245. }
  246. @[ -z "$(findstring DDR,$@)" ] || \
  247. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  248. echo "... DDR memory revision" ; \
  249. }
  250. @[ -z "$(findstring 5200,$@)" ] || \
  251. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  252. echo "... with MPC5200 processor" ; \
  253. }
  254. @[ -z "$(findstring 5100,$@)" ] || \
  255. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  256. echo "... with MGT5100 processor" ; \
  257. }
  258. @./mkconfig -a IceCube ppc mpc5xxx icecube
  259. inka4x0_config: unconfig
  260. @./mkconfig inka4x0 ppc mpc5xxx inka4x0
  261. lite5200b_config \
  262. lite5200b_LOWBOOT_config: unconfig
  263. @ >include/config.h
  264. @ echo "#define CONFIG_MPC5200_DDR" >>include/config.h
  265. @ echo "... DDR memory revision"
  266. @ echo "#define CONFIG_MPC5200" >>include/config.h
  267. @ echo "#define CONFIG_LITE5200B" >>include/config.h
  268. @[ -z "$(findstring LOWBOOT_,$@)" ] || \
  269. { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
  270. echo "... with LOWBOOT configuration" ; \
  271. }
  272. @ echo "... with MPC5200B processor"
  273. @./mkconfig -a IceCube ppc mpc5xxx icecube
  274. mcc200_config \
  275. mcc200_SDRAM \
  276. mcc200_highboot \
  277. mcc200_COM12 \
  278. mcc200_highboot_SDRAM: unconfig
  279. @ >include/config.h
  280. @[ -n "$(findstring highboot,$@)" ] || \
  281. { echo "... with lowboot configuration" ; \
  282. }
  283. @[ -z "$(findstring highboot,$@)" ] || \
  284. { echo "TEXT_BASE = 0xFFF00000" >board/mcc200/config.tmp ; \
  285. echo "... with highboot configuration" ; \
  286. }
  287. @[ -n "$(findstring _SDRAM,$@)" ] || \
  288. { echo "... with DDR" ; \
  289. }
  290. @[ -z "$(findstring _SDRAM,$@)" ] || \
  291. { echo "#define CONFIG_MCC200_SDRAM" >>include/config.h ; \
  292. echo "... with SDRAM" ; \
  293. }
  294. @[ -z "$(findstring COM12,$@)" ] || \
  295. { echo "#define CONFIG_CONSOLE_COM12" >>include/config.h ; \
  296. echo "... with console on COM12" ; \
  297. }
  298. @./mkconfig -a mcc200 ppc mpc5xxx mcc200
  299. o2dnt_config:
  300. @./mkconfig o2dnt ppc mpc5xxx o2dnt
  301. pf5200_config: unconfig
  302. @./mkconfig pf5200 ppc mpc5xxx pf5200 esd
  303. PM520_config \
  304. PM520_DDR_config \
  305. PM520_ROMBOOT_config \
  306. PM520_ROMBOOT_DDR_config: unconfig
  307. @ >include/config.h
  308. @[ -z "$(findstring DDR,$@)" ] || \
  309. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  310. echo "... DDR memory revision" ; \
  311. }
  312. @[ -z "$(findstring ROMBOOT,$@)" ] || \
  313. { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  314. echo "... booting from 8-bit flash" ; \
  315. }
  316. @./mkconfig -a PM520 ppc mpc5xxx pm520
  317. smmaco4_config: unconfig
  318. @./mkconfig -a smmaco4 ppc mpc5xxx tqm5200
  319. spieval_config: unconfig
  320. @./mkconfig -a spieval ppc mpc5xxx tqm5200
  321. TB5200_B_config \
  322. TB5200_config: unconfig
  323. @[ -z "$(findstring _B,$@)" ] || \
  324. { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  325. echo "... with MPC5200B processor" ; \
  326. }
  327. @./mkconfig -n $@ -a TB5200 ppc mpc5xxx tqm5200
  328. MINI5200_config \
  329. EVAL5200_config \
  330. TOP5200_config: unconfig
  331. @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
  332. @./mkconfig -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
  333. Total5100_config \
  334. Total5200_config \
  335. Total5200_lowboot_config \
  336. Total5200_Rev2_config \
  337. Total5200_Rev2_lowboot_config: unconfig
  338. @ >include/config.h
  339. @[ -z "$(findstring 5100,$@)" ] || \
  340. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  341. echo "... with MGT5100 processor" ; \
  342. }
  343. @[ -z "$(findstring 5200,$@)" ] || \
  344. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  345. echo "... with MPC5200 processor" ; \
  346. }
  347. @[ -n "$(findstring Rev,$@)" ] || \
  348. { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
  349. echo "... revision 1 board" ; \
  350. }
  351. @[ -z "$(findstring Rev2_,$@)" ] || \
  352. { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
  353. echo "... revision 2 board" ; \
  354. }
  355. @[ -z "$(findstring lowboot_,$@)" ] || \
  356. { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
  357. echo "... with lowboot configuration" ; \
  358. }
  359. @./mkconfig -a Total5200 ppc mpc5xxx total5200
  360. TQM5200_config \
  361. TQM5200_B_config \
  362. TQM5200_B_HIGHBOOT_config \
  363. TQM5200S_config \
  364. TQM5200S_HIGHBOOT_config \
  365. TQM5200_STK100_config \
  366. cam5200_config \
  367. MiniFAP_config \
  368. fo300_config: unconfig
  369. @ >include/config.h
  370. @[ -z "$(findstring fo300,$@)" ] || \
  371. { echo "#define CONFIG_FO300" >>include/config.h ; \
  372. echo "... TQM5200 on FO300" ; \
  373. }
  374. @[ -z "$(findstring MiniFAP,$@)" ] || \
  375. { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
  376. echo "... TQM5200_AC on MiniFAP" ; \
  377. }
  378. @[ -z "$(findstring cam5200,$@)" ] || \
  379. { echo "#define CONFIG_CAM5200" >>include/config.h ; \
  380. echo "#define CONFIG_TQM5200S" >>include/config.h ; \
  381. echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  382. echo "... TQM5200S on Cam5200" ; \
  383. }
  384. @[ -z "$(findstring STK100,$@)" ] || \
  385. { echo "#define CONFIG_STK52XX_REV100" >>include/config.h ; \
  386. echo "... on a STK52XX.100 base board" ; \
  387. }
  388. @[ -z "$(findstring TQM5200_B,$@)" ] || \
  389. { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  390. }
  391. @[ -z "$(findstring TQM5200S,$@)" ] || \
  392. { echo "#define CONFIG_TQM5200S" >>include/config.h ; \
  393. echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  394. }
  395. @[ -z "$(findstring HIGHBOOT,$@)" ] || \
  396. { echo "TEXT_BASE = 0xFFF00000" >board/tqm5200/config.tmp ; \
  397. }
  398. @./mkconfig -n $@ -a TQM5200 ppc mpc5xxx tqm5200
  399. #########################################################################
  400. ## MPC8xx Systems
  401. #########################################################################
  402. Adder_config \
  403. Adder87x_config \
  404. AdderII_config \
  405. : unconfig
  406. $(if $(findstring AdderII,$@), \
  407. @echo "#define CONFIG_MPC852T" > include/config.h)
  408. @./mkconfig -a Adder ppc mpc8xx adder
  409. ADS860_config \
  410. FADS823_config \
  411. FADS850SAR_config \
  412. MPC86xADS_config \
  413. MPC885ADS_config \
  414. FADS860T_config: unconfig
  415. @./mkconfig $(@:_config=) ppc mpc8xx fads
  416. AMX860_config : unconfig
  417. @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
  418. c2mon_config: unconfig
  419. @./mkconfig $(@:_config=) ppc mpc8xx c2mon
  420. CCM_config: unconfig
  421. @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
  422. cogent_mpc8xx_config: unconfig
  423. @./mkconfig $(@:_config=) ppc mpc8xx cogent
  424. ELPT860_config: unconfig
  425. @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
  426. EP88x_config: unconfig
  427. @./mkconfig $(@:_config=) ppc mpc8xx ep88x
  428. ESTEEM192E_config: unconfig
  429. @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
  430. ETX094_config : unconfig
  431. @./mkconfig $(@:_config=) ppc mpc8xx etx094
  432. FLAGADM_config: unconfig
  433. @./mkconfig $(@:_config=) ppc mpc8xx flagadm
  434. xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
  435. GEN860T_SC_config \
  436. GEN860T_config: unconfig
  437. @ >include/config.h
  438. @[ -z "$(findstring _SC,$@)" ] || \
  439. { echo "#define CONFIG_SC" >>include/config.h ; \
  440. echo "With reduced H/W feature set (SC)..." ; \
  441. }
  442. @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
  443. GENIETV_config: unconfig
  444. @./mkconfig $(@:_config=) ppc mpc8xx genietv
  445. GTH_config: unconfig
  446. @./mkconfig $(@:_config=) ppc mpc8xx gth
  447. hermes_config : unconfig
  448. @./mkconfig $(@:_config=) ppc mpc8xx hermes
  449. HMI10_config : unconfig
  450. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  451. IAD210_config: unconfig
  452. @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
  453. xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
  454. ICU862_100MHz_config \
  455. ICU862_config: unconfig
  456. @ >include/config.h
  457. @[ -z "$(findstring _100MHz,$@)" ] || \
  458. { echo "#define CONFIG_100MHz" >>include/config.h ; \
  459. echo "... with 100MHz system clock" ; \
  460. }
  461. @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
  462. IP860_config : unconfig
  463. @./mkconfig $(@:_config=) ppc mpc8xx ip860
  464. IVML24_256_config \
  465. IVML24_128_config \
  466. IVML24_config: unconfig
  467. @ >include/config.h
  468. @[ -z "$(findstring IVML24_config,$@)" ] || \
  469. { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
  470. }
  471. @[ -z "$(findstring IVML24_128_config,$@)" ] || \
  472. { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
  473. }
  474. @[ -z "$(findstring IVML24_256_config,$@)" ] || \
  475. { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
  476. }
  477. @./mkconfig -a IVML24 ppc mpc8xx ivm
  478. IVMS8_256_config \
  479. IVMS8_128_config \
  480. IVMS8_config: unconfig
  481. @ >include/config.h
  482. @[ -z "$(findstring IVMS8_config,$@)" ] || \
  483. { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
  484. }
  485. @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
  486. { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
  487. }
  488. @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
  489. { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
  490. }
  491. @./mkconfig -a IVMS8 ppc mpc8xx ivm
  492. KUP4K_config : unconfig
  493. @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
  494. KUP4X_config : unconfig
  495. @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
  496. LANTEC_config : unconfig
  497. @./mkconfig $(@:_config=) ppc mpc8xx lantec
  498. lwmon_config: unconfig
  499. @./mkconfig $(@:_config=) ppc mpc8xx lwmon
  500. MBX_config \
  501. MBX860T_config: unconfig
  502. @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
  503. MHPC_config: unconfig
  504. @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
  505. MVS1_config : unconfig
  506. @./mkconfig $(@:_config=) ppc mpc8xx mvs1
  507. xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
  508. NETVIA_V2_config \
  509. NETVIA_config: unconfig
  510. @ >include/config.h
  511. @[ -z "$(findstring NETVIA_config,$@)" ] || \
  512. { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
  513. echo "... Version 1" ; \
  514. }
  515. @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
  516. { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
  517. echo "... Version 2" ; \
  518. }
  519. @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
  520. xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
  521. NETPHONE_V2_config \
  522. NETPHONE_config: unconfig
  523. @ >include/config.h
  524. @[ -z "$(findstring NETPHONE_config,$@)" ] || \
  525. { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
  526. }
  527. @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
  528. { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
  529. }
  530. @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
  531. xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
  532. NETTA_ISDN_6412_SWAPHOOK_config \
  533. NETTA_ISDN_SWAPHOOK_config \
  534. NETTA_6412_SWAPHOOK_config \
  535. NETTA_SWAPHOOK_config \
  536. NETTA_ISDN_6412_config \
  537. NETTA_ISDN_config \
  538. NETTA_6412_config \
  539. NETTA_config: unconfig
  540. @ >include/config.h
  541. @[ -z "$(findstring ISDN_,$@)" ] || \
  542. { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
  543. }
  544. @[ -n "$(findstring ISDN_,$@)" ] || \
  545. { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
  546. }
  547. @[ -z "$(findstring 6412_,$@)" ] || \
  548. { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
  549. }
  550. @[ -n "$(findstring 6412_,$@)" ] || \
  551. { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
  552. }
  553. @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
  554. { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
  555. }
  556. @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
  557. { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
  558. }
  559. @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
  560. xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
  561. NETTA2_V2_config \
  562. NETTA2_config: unconfig
  563. @ >include/config.h
  564. @[ -z "$(findstring NETTA2_config,$@)" ] || \
  565. { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
  566. }
  567. @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
  568. { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
  569. }
  570. @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
  571. NC650_Rev1_config \
  572. NC650_Rev2_config \
  573. CP850_config: unconfig
  574. @ >include/config.h
  575. @[ -z "$(findstring CP850,$@)" ] || \
  576. { echo "#define CONFIG_CP850 1" >>include/config.h ; \
  577. echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
  578. }
  579. @[ -z "$(findstring Rev1,$@)" ] || \
  580. { echo "#define CONFIG_IDS852_REV1 1" >>include/config.h ; \
  581. }
  582. @[ -z "$(findstring Rev2,$@)" ] || \
  583. { echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
  584. }
  585. @./mkconfig -a NC650 ppc mpc8xx nc650
  586. NX823_config: unconfig
  587. @./mkconfig $(@:_config=) ppc mpc8xx nx823
  588. pcu_e_config: unconfig
  589. @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
  590. QS850_config: unconfig
  591. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  592. QS823_config: unconfig
  593. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  594. QS860T_config: unconfig
  595. @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
  596. quantum_config: unconfig
  597. @./mkconfig $(@:_config=) ppc mpc8xx quantum
  598. R360MPI_config: unconfig
  599. @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
  600. RBC823_config: unconfig
  601. @./mkconfig $(@:_config=) ppc mpc8xx rbc823
  602. RPXClassic_config: unconfig
  603. @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
  604. RPXlite_config: unconfig
  605. @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
  606. RPXlite_DW_64_config \
  607. RPXlite_DW_LCD_config \
  608. RPXlite_DW_64_LCD_config \
  609. RPXlite_DW_NVRAM_config \
  610. RPXlite_DW_NVRAM_64_config \
  611. RPXlite_DW_NVRAM_LCD_config \
  612. RPXlite_DW_NVRAM_64_LCD_config \
  613. RPXlite_DW_config: unconfig
  614. @ >include/config.h
  615. @[ -z "$(findstring _64,$@)" ] || \
  616. { echo "#define RPXlite_64MHz" >>include/config.h ; \
  617. echo "... with 64MHz system clock ..."; \
  618. }
  619. @[ -z "$(findstring _LCD,$@)" ] || \
  620. { echo "#define CONFIG_LCD" >>include/config.h ; \
  621. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  622. echo "... with LCD display ..."; \
  623. }
  624. @[ -z "$(findstring _NVRAM,$@)" ] || \
  625. { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
  626. echo "... with ENV in NVRAM ..."; \
  627. }
  628. @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
  629. rmu_config: unconfig
  630. @./mkconfig $(@:_config=) ppc mpc8xx rmu
  631. RRvision_config: unconfig
  632. @./mkconfig $(@:_config=) ppc mpc8xx RRvision
  633. RRvision_LCD_config: unconfig
  634. @echo "#define CONFIG_LCD" >include/config.h
  635. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  636. @./mkconfig -a RRvision ppc mpc8xx RRvision
  637. SM850_config : unconfig
  638. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  639. spc1920_config:
  640. @./mkconfig $(@:_config=) ppc mpc8xx spc1920
  641. SPD823TS_config: unconfig
  642. @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
  643. stxxtc_config: unconfig
  644. @./mkconfig $(@:_config=) ppc mpc8xx stxxtc
  645. svm_sc8xx_config: unconfig
  646. @ >include/config.h
  647. @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
  648. SXNI855T_config: unconfig
  649. @./mkconfig $(@:_config=) ppc mpc8xx sixnet
  650. # EMK MPC8xx based modules
  651. TOP860_config: unconfig
  652. @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
  653. # Play some tricks for configuration selection
  654. # Only 855 and 860 boards may come with FEC
  655. # and only 823 boards may have LCD support
  656. xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
  657. FPS850L_config \
  658. FPS860L_config \
  659. NSCU_config \
  660. TQM823L_config \
  661. TQM823L_LCD_config \
  662. TQM850L_config \
  663. TQM855L_config \
  664. TQM860L_config \
  665. TQM862L_config \
  666. TQM823M_config \
  667. TQM850M_config \
  668. TQM855M_config \
  669. TQM860M_config \
  670. TQM862M_config \
  671. TQM866M_config \
  672. TQM885D_config \
  673. virtlab2_config: unconfig
  674. @ >include/config.h
  675. @[ -z "$(findstring _LCD,$@)" ] || \
  676. { echo "#define CONFIG_LCD" >>include/config.h ; \
  677. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  678. echo "... with LCD display" ; \
  679. }
  680. @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
  681. TTTech_config: unconfig
  682. @echo "#define CONFIG_LCD" >include/config.h
  683. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  684. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  685. uc100_config : unconfig
  686. @./mkconfig $(@:_config=) ppc mpc8xx uc100
  687. v37_config: unconfig
  688. @echo "#define CONFIG_LCD" >include/config.h
  689. @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
  690. @./mkconfig $(@:_config=) ppc mpc8xx v37
  691. wtk_config: unconfig
  692. @echo "#define CONFIG_LCD" >include/config.h
  693. @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
  694. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  695. #########################################################################
  696. ## PPC4xx Systems
  697. #########################################################################
  698. xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
  699. ADCIOP_config: unconfig
  700. @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
  701. AP1000_config:unconfig
  702. @./mkconfig $(@:_config=) ppc ppc4xx ap1000 amirix
  703. APC405_config: unconfig
  704. @./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
  705. AR405_config: unconfig
  706. @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
  707. ASH405_config: unconfig
  708. @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
  709. bamboo_config: unconfig
  710. @./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
  711. bubinga_config: unconfig
  712. @./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
  713. CANBT_config: unconfig
  714. @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
  715. CATcenter_config \
  716. CATcenter_25_config \
  717. CATcenter_33_config: unconfig
  718. @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
  719. @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
  720. @[ -z "$(findstring _25,$@)" ] || \
  721. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  722. echo "SysClk = 25MHz" ; \
  723. }
  724. @[ -z "$(findstring _33,$@)" ] || \
  725. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  726. echo "SysClk = 33MHz" ; \
  727. }
  728. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  729. CPCI2DP_config: unconfig
  730. @./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
  731. CPCI405_config \
  732. CPCI4052_config \
  733. CPCI405DT_config \
  734. CPCI405AB_config: unconfig
  735. @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
  736. @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
  737. CPCI440_config: unconfig
  738. @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
  739. CPCIISER4_config: unconfig
  740. @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
  741. CRAYL1_config: unconfig
  742. @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
  743. csb272_config: unconfig
  744. @./mkconfig $(@:_config=) ppc ppc4xx csb272
  745. csb472_config: unconfig
  746. @./mkconfig $(@:_config=) ppc ppc4xx csb472
  747. DASA_SIM_config: unconfig
  748. @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
  749. DP405_config: unconfig
  750. @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
  751. DU405_config: unconfig
  752. @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
  753. ebony_config: unconfig
  754. @./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
  755. ERIC_config: unconfig
  756. @./mkconfig $(@:_config=) ppc ppc4xx eric
  757. EXBITGEN_config: unconfig
  758. @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
  759. G2000_config: unconfig
  760. @./mkconfig $(@:_config=) ppc ppc4xx g2000
  761. HH405_config: unconfig
  762. @./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
  763. HUB405_config: unconfig
  764. @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
  765. JSE_config: unconfig
  766. @./mkconfig $(@:_config=) ppc ppc4xx jse
  767. KAREF_config: unconfig
  768. @./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
  769. luan_config: unconfig
  770. @./mkconfig $(@:_config=) ppc ppc4xx luan amcc
  771. METROBOX_config: unconfig
  772. @./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
  773. MIP405_config: unconfig
  774. @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
  775. MIP405T_config: unconfig
  776. @echo "#define CONFIG_MIP405T" >include/config.h
  777. @echo "Enable subset config for MIP405T"
  778. @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
  779. ML2_config: unconfig
  780. @./mkconfig $(@:_config=) ppc ppc4xx ml2
  781. ml300_config: unconfig
  782. @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
  783. ocotea_config: unconfig
  784. @./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
  785. OCRTC_config \
  786. ORSG_config: unconfig
  787. @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
  788. p3p440_config: unconfig
  789. @./mkconfig $(@:_config=) ppc ppc4xx p3p440 prodrive
  790. PCI405_config: unconfig
  791. @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
  792. pcs440ep_config: unconfig
  793. @./mkconfig $(@:_config=) ppc ppc4xx pcs440ep
  794. PIP405_config: unconfig
  795. @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
  796. PLU405_config: unconfig
  797. @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
  798. PMC405_config: unconfig
  799. @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
  800. PPChameleonEVB_config \
  801. PPChameleonEVB_BA_25_config \
  802. PPChameleonEVB_ME_25_config \
  803. PPChameleonEVB_HI_25_config \
  804. PPChameleonEVB_BA_33_config \
  805. PPChameleonEVB_ME_33_config \
  806. PPChameleonEVB_HI_33_config: unconfig
  807. @ >include/config.h
  808. @[ -z "$(findstring EVB_BA,$@)" ] || \
  809. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
  810. echo "... BASIC model" ; \
  811. }
  812. @[ -z "$(findstring EVB_ME,$@)" ] || \
  813. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
  814. echo "... MEDIUM model" ; \
  815. }
  816. @[ -z "$(findstring EVB_HI,$@)" ] || \
  817. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
  818. echo "... HIGH-END model" ; \
  819. }
  820. @[ -z "$(findstring _25,$@)" ] || \
  821. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  822. echo "SysClk = 25MHz" ; \
  823. }
  824. @[ -z "$(findstring _33,$@)" ] || \
  825. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  826. echo "SysClk = 33MHz" ; \
  827. }
  828. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  829. sbc405_config: unconfig
  830. @./mkconfig $(@:_config=) ppc ppc4xx sbc405
  831. sycamore_config: unconfig
  832. @echo "Configuring for sycamore board as subset of walnut..."
  833. @./mkconfig -a walnut ppc ppc4xx walnut amcc
  834. VOH405_config: unconfig
  835. @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
  836. VOM405_config: unconfig
  837. @./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
  838. CMS700_config: unconfig
  839. @./mkconfig $(@:_config=) ppc ppc4xx cms700 esd
  840. W7OLMC_config \
  841. W7OLMG_config: unconfig
  842. @./mkconfig $(@:_config=) ppc ppc4xx w7o
  843. walnut_config: unconfig
  844. @./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
  845. WUH405_config: unconfig
  846. @./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
  847. XPEDITE1K_config: unconfig
  848. @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
  849. yosemite_config: unconfig
  850. @./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
  851. yellowstone_config: unconfig
  852. @./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
  853. yucca_config: unconfig
  854. @./mkconfig $(@:_config=) ppc ppc4xx yucca amcc
  855. #########################################################################
  856. ## MPC8220 Systems
  857. #########################################################################
  858. Alaska8220_config \
  859. Yukon8220_config: unconfig
  860. @./mkconfig $(@:_config=) ppc mpc8220 alaska
  861. sorcery_config: unconfig
  862. @./mkconfig $(@:_config=) ppc mpc8220 sorcery
  863. #########################################################################
  864. ## MPC824x Systems
  865. #########################################################################
  866. xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
  867. A3000_config: unconfig
  868. @./mkconfig $(@:_config=) ppc mpc824x a3000
  869. barco_config: unconfig
  870. @./mkconfig $(@:_config=) ppc mpc824x barco
  871. BMW_config: unconfig
  872. @./mkconfig $(@:_config=) ppc mpc824x bmw
  873. CPC45_config \
  874. CPC45_ROMBOOT_config: unconfig
  875. @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
  876. @cd ./include ; \
  877. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  878. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  879. echo "... booting from 8-bit flash" ; \
  880. else \
  881. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  882. echo "... booting from 64-bit flash" ; \
  883. fi; \
  884. echo "export CONFIG_BOOT_ROM" >> config.mk;
  885. CU824_config: unconfig
  886. @./mkconfig $(@:_config=) ppc mpc824x cu824
  887. debris_config: unconfig
  888. @./mkconfig $(@:_config=) ppc mpc824x debris etin
  889. eXalion_config: unconfig
  890. @./mkconfig $(@:_config=) ppc mpc824x eXalion
  891. HIDDEN_DRAGON_config: unconfig
  892. @./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
  893. kvme080_config: unconfig
  894. @./mkconfig $(@:_config=) ppc mpc824x kvme080 etin
  895. MOUSSE_config: unconfig
  896. @./mkconfig $(@:_config=) ppc mpc824x mousse
  897. MUSENKI_config: unconfig
  898. @./mkconfig $(@:_config=) ppc mpc824x musenki
  899. MVBLUE_config: unconfig
  900. @./mkconfig $(@:_config=) ppc mpc824x mvblue
  901. OXC_config: unconfig
  902. @./mkconfig $(@:_config=) ppc mpc824x oxc
  903. PN62_config: unconfig
  904. @./mkconfig $(@:_config=) ppc mpc824x pn62
  905. Sandpoint8240_config: unconfig
  906. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  907. Sandpoint8245_config: unconfig
  908. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  909. sbc8240_config: unconfig
  910. @./mkconfig $(@:_config=) ppc mpc824x sbc8240
  911. SL8245_config: unconfig
  912. @./mkconfig $(@:_config=) ppc mpc824x sl8245
  913. utx8245_config: unconfig
  914. @./mkconfig $(@:_config=) ppc mpc824x utx8245
  915. #########################################################################
  916. ## MPC8260 Systems
  917. #########################################################################
  918. atc_config: unconfig
  919. @./mkconfig $(@:_config=) ppc mpc8260 atc
  920. cogent_mpc8260_config: unconfig
  921. @./mkconfig $(@:_config=) ppc mpc8260 cogent
  922. CPU86_config \
  923. CPU86_ROMBOOT_config: unconfig
  924. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
  925. @cd ./include ; \
  926. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  927. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  928. echo "... booting from 8-bit flash" ; \
  929. else \
  930. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  931. echo "... booting from 64-bit flash" ; \
  932. fi; \
  933. echo "export CONFIG_BOOT_ROM" >> config.mk;
  934. CPU87_config \
  935. CPU87_ROMBOOT_config: unconfig
  936. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
  937. @cd ./include ; \
  938. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  939. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  940. echo "... booting from 8-bit flash" ; \
  941. else \
  942. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  943. echo "... booting from 64-bit flash" ; \
  944. fi; \
  945. echo "export CONFIG_BOOT_ROM" >> config.mk;
  946. ep8248_config \
  947. ep8248E_config : unconfig
  948. @./mkconfig ep8248 ppc mpc8260 ep8248
  949. ep8260_config: unconfig
  950. @./mkconfig $(@:_config=) ppc mpc8260 ep8260
  951. gw8260_config: unconfig
  952. @./mkconfig $(@:_config=) ppc mpc8260 gw8260
  953. hymod_config: unconfig
  954. @./mkconfig $(@:_config=) ppc mpc8260 hymod
  955. IDS8247_config: unconfig
  956. @./mkconfig $(@:_config=) ppc mpc8260 ids8247
  957. IPHASE4539_config: unconfig
  958. @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
  959. ISPAN_config \
  960. ISPAN_REVB_config: unconfig
  961. @if [ "$(findstring _REVB_,$@)" ] ; then \
  962. echo "#define CFG_REV_B" > include/config.h ; \
  963. fi
  964. @./mkconfig -a ISPAN ppc mpc8260 ispan
  965. MPC8260ADS_config \
  966. MPC8260ADS_lowboot_config \
  967. MPC8260ADS_33MHz_config \
  968. MPC8260ADS_33MHz_lowboot_config \
  969. MPC8260ADS_40MHz_config \
  970. MPC8260ADS_40MHz_lowboot_config \
  971. MPC8272ADS_config \
  972. MPC8272ADS_lowboot_config \
  973. PQ2FADS_config \
  974. PQ2FADS_lowboot_config \
  975. PQ2FADS-VR_config \
  976. PQ2FADS-VR_lowboot_config \
  977. PQ2FADS-ZU_config \
  978. PQ2FADS-ZU_lowboot_config \
  979. PQ2FADS-ZU_66MHz_config \
  980. PQ2FADS-ZU_66MHz_lowboot_config \
  981. : unconfig
  982. $(if $(findstring PQ2FADS,$@), \
  983. @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
  984. @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
  985. $(if $(findstring MHz,$@), \
  986. @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
  987. $(if $(findstring VR,$@), \
  988. @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
  989. @[ -z "$(findstring lowboot_,$@)" ] || \
  990. { echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
  991. echo "... with lowboot configuration" ; \
  992. }
  993. @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
  994. MPC8266ADS_config: unconfig
  995. @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
  996. # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
  997. PM825_config \
  998. PM825_ROMBOOT_config \
  999. PM825_BIGFLASH_config \
  1000. PM825_ROMBOOT_BIGFLASH_config \
  1001. PM826_config \
  1002. PM826_ROMBOOT_config \
  1003. PM826_BIGFLASH_config \
  1004. PM826_ROMBOOT_BIGFLASH_config: unconfig
  1005. @if [ "$(findstring PM825_,$@)" ] ; then \
  1006. echo "#define CONFIG_PCI" >include/config.h ; \
  1007. else \
  1008. >include/config.h ; \
  1009. fi
  1010. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  1011. echo "... booting from 8-bit flash" ; \
  1012. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  1013. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  1014. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  1015. echo "... with 32 MB Flash" ; \
  1016. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  1017. fi; \
  1018. else \
  1019. echo "... booting from 64-bit flash" ; \
  1020. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  1021. echo "... with 32 MB Flash" ; \
  1022. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  1023. echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
  1024. else \
  1025. echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
  1026. fi; \
  1027. fi
  1028. @./mkconfig -a PM826 ppc mpc8260 pm826
  1029. PM828_config \
  1030. PM828_PCI_config \
  1031. PM828_ROMBOOT_config \
  1032. PM828_ROMBOOT_PCI_config: unconfig
  1033. @if [ "$(findstring _PCI_,$@)" ] ; then \
  1034. echo "#define CONFIG_PCI" >>include/config.h ; \
  1035. echo "... with PCI enabled" ; \
  1036. else \
  1037. >include/config.h ; \
  1038. fi
  1039. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  1040. echo "... booting from 8-bit flash" ; \
  1041. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  1042. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  1043. fi
  1044. @./mkconfig -a PM828 ppc mpc8260 pm828
  1045. ppmc8260_config: unconfig
  1046. @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
  1047. Rattler8248_config \
  1048. Rattler_config: unconfig
  1049. $(if $(findstring 8248,$@), \
  1050. @echo "#define CONFIG_MPC8248" > include/config.h)
  1051. @./mkconfig -a Rattler ppc mpc8260 rattler
  1052. RPXsuper_config: unconfig
  1053. @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
  1054. rsdproto_config: unconfig
  1055. @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
  1056. sacsng_config: unconfig
  1057. @./mkconfig $(@:_config=) ppc mpc8260 sacsng
  1058. sbc8260_config: unconfig
  1059. @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
  1060. SCM_config: unconfig
  1061. @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
  1062. TQM8255_AA_config \
  1063. TQM8260_AA_config \
  1064. TQM8260_AB_config \
  1065. TQM8260_AC_config \
  1066. TQM8260_AD_config \
  1067. TQM8260_AE_config \
  1068. TQM8260_AF_config \
  1069. TQM8260_AG_config \
  1070. TQM8260_AH_config \
  1071. TQM8260_AI_config \
  1072. TQM8265_AA_config: unconfig
  1073. @case "$@" in \
  1074. TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
  1075. TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
  1076. TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  1077. TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  1078. TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1079. TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
  1080. TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1081. TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
  1082. TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
  1083. TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1084. TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
  1085. esac; \
  1086. >include/config.h ; \
  1087. if [ "$${CTYPE}" != "MPC8260" ] ; then \
  1088. echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
  1089. fi; \
  1090. echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
  1091. echo "... with $${CFREQ}MHz system clock" ; \
  1092. if [ "$${CACHE}" == "yes" ] ; then \
  1093. echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
  1094. echo "... with L2 Cache support" ; \
  1095. else \
  1096. echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
  1097. echo "... without L2 Cache support" ; \
  1098. fi; \
  1099. if [ "$${BMODE}" == "60x" ] ; then \
  1100. echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
  1101. echo "... with 60x Bus Mode" ; \
  1102. else \
  1103. echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
  1104. echo "... without 60x Bus Mode" ; \
  1105. fi
  1106. @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
  1107. VoVPN-GW_66MHz_config \
  1108. VoVPN-GW_100MHz_config: unconfig
  1109. @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
  1110. @./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
  1111. ZPC1900_config: unconfig
  1112. @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
  1113. #########################################################################
  1114. ## Coldfire
  1115. #########################################################################
  1116. cobra5272_config : unconfig
  1117. @./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
  1118. EB+MCF-EV123_config : unconfig
  1119. @ >include/config.h
  1120. @echo "TEXT_BASE = 0xFFE00000"|tee board/BuS/EB+MCF-EV123/textbase.mk
  1121. @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
  1122. EB+MCF-EV123_internal_config : unconfig
  1123. @ >include/config.h
  1124. @echo "TEXT_BASE = 0xF0000000"|tee board/BuS/EB+MCF-EV123/textbase.mk
  1125. @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
  1126. M5271EVB_config : unconfig
  1127. @./mkconfig $(@:_config=) m68k mcf52x2 m5271evb
  1128. M5272C3_config : unconfig
  1129. @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
  1130. M5282EVB_config : unconfig
  1131. @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
  1132. TASREG_config : unconfig
  1133. @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
  1134. r5200_config : unconfig
  1135. @./mkconfig $(@:_config=) m68k mcf52x2 r5200
  1136. #########################################################################
  1137. ## MPC83xx Systems
  1138. #########################################################################
  1139. MPC8349ADS_config: unconfig
  1140. @./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
  1141. TQM834x_config: unconfig
  1142. @./mkconfig $(@:_config=) ppc mpc83xx tqm834x
  1143. MPC8349EMDS_config: unconfig
  1144. @./mkconfig $(@:_config=) ppc mpc83xx mpc8349emds
  1145. #########################################################################
  1146. ## MPC85xx Systems
  1147. #########################################################################
  1148. MPC8540ADS_config: unconfig
  1149. @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
  1150. MPC8540EVAL_config \
  1151. MPC8540EVAL_33_config \
  1152. MPC8540EVAL_66_config \
  1153. MPC8540EVAL_33_slave_config \
  1154. MPC8540EVAL_66_slave_config: unconfig
  1155. @echo "" >include/config.h ; \
  1156. if [ "$(findstring _33_,$@)" ] ; then \
  1157. echo -n "... 33 MHz PCI" ; \
  1158. else \
  1159. echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
  1160. echo -n "... 66 MHz PCI" ; \
  1161. fi ; \
  1162. if [ "$(findstring _slave_,$@)" ] ; then \
  1163. echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
  1164. echo " slave" ; \
  1165. else \
  1166. echo " host" ; \
  1167. fi
  1168. @./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
  1169. MPC8560ADS_config: unconfig
  1170. @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
  1171. MPC8541CDS_config: unconfig
  1172. @./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
  1173. MPC8548CDS_config: unconfig
  1174. @./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
  1175. MPC8555CDS_config: unconfig
  1176. @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
  1177. PM854_config: unconfig
  1178. @./mkconfig $(@:_config=) ppc mpc85xx pm854
  1179. PM856_config: unconfig
  1180. @./mkconfig $(@:_config=) ppc mpc85xx pm856
  1181. sbc8540_config \
  1182. sbc8540_33_config \
  1183. sbc8540_66_config: unconfig
  1184. @if [ "$(findstring _66_,$@)" ] ; then \
  1185. echo "#define CONFIG_PCI_66" >>include/config.h ; \
  1186. echo "... 66 MHz PCI" ; \
  1187. else \
  1188. >include/config.h ; \
  1189. echo "... 33 MHz PCI" ; \
  1190. fi
  1191. @./mkconfig -a SBC8540 ppc mpc85xx sbc8560
  1192. sbc8560_config \
  1193. sbc8560_33_config \
  1194. sbc8560_66_config: unconfig
  1195. @if [ "$(findstring _66_,$@)" ] ; then \
  1196. echo "#define CONFIG_PCI_66" >>include/config.h ; \
  1197. echo "... 66 MHz PCI" ; \
  1198. else \
  1199. >include/config.h ; \
  1200. echo "... 33 MHz PCI" ; \
  1201. fi
  1202. @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
  1203. stxgp3_config: unconfig
  1204. @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
  1205. TQM8540_config \
  1206. TQM8541_config \
  1207. TQM8555_config \
  1208. TQM8560_config: unconfig
  1209. @CTYPE=$(subst TQM,,$(@:_config=)); \
  1210. >include/config.h ; \
  1211. echo "... TQM"$${CTYPE}; \
  1212. echo "#define CONFIG_MPC$${CTYPE}">>include/config.h; \
  1213. echo "#define CONFIG_TQM$${CTYPE}">>include/config.h; \
  1214. echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>include/config.h; \
  1215. echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>include/config.h; \
  1216. echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>include/config.h
  1217. @./mkconfig -a TQM85xx ppc mpc85xx tqm85xx
  1218. #########################################################################
  1219. ## 74xx/7xx Systems
  1220. #########################################################################
  1221. AmigaOneG3SE_config: unconfig
  1222. @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
  1223. BAB7xx_config: unconfig
  1224. @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
  1225. CPCI750_config: unconfig
  1226. @./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
  1227. DB64360_config: unconfig
  1228. @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
  1229. DB64460_config: unconfig
  1230. @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
  1231. ELPPC_config: unconfig
  1232. @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
  1233. EVB64260_config \
  1234. EVB64260_750CX_config: unconfig
  1235. @./mkconfig EVB64260 ppc 74xx_7xx evb64260
  1236. P3G4_config: unconfig
  1237. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  1238. PCIPPC2_config \
  1239. PCIPPC6_config: unconfig
  1240. @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
  1241. ZUMA_config: unconfig
  1242. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  1243. ppmc7xx_config: unconfig
  1244. @./mkconfig $(@:_config=) ppc 74xx_7xx ppmc7xx
  1245. #========================================================================
  1246. # ARM
  1247. #========================================================================
  1248. #########################################################################
  1249. ## StrongARM Systems
  1250. #########################################################################
  1251. assabet_config : unconfig
  1252. @./mkconfig $(@:_config=) arm sa1100 assabet
  1253. dnp1110_config : unconfig
  1254. @./mkconfig $(@:_config=) arm sa1100 dnp1110
  1255. gcplus_config : unconfig
  1256. @./mkconfig $(@:_config=) arm sa1100 gcplus
  1257. lart_config : unconfig
  1258. @./mkconfig $(@:_config=) arm sa1100 lart
  1259. shannon_config : unconfig
  1260. @./mkconfig $(@:_config=) arm sa1100 shannon
  1261. #########################################################################
  1262. ## ARM92xT Systems
  1263. #########################################################################
  1264. xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
  1265. xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
  1266. xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
  1267. at91rm9200dk_config : unconfig
  1268. @./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
  1269. cmc_pu2_config : unconfig
  1270. @./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
  1271. csb637_config : unconfig
  1272. @./mkconfig $(@:_config=) arm arm920t csb637 NULL at91rm9200
  1273. mp2usb_config : unconfig
  1274. @./mkconfig $(@:_config=) arm arm920t mp2usb NULL at91rm9200
  1275. ########################################################################
  1276. ## ARM Integrator boards - see doc/README-integrator for more info.
  1277. integratorap_config \
  1278. ap_config \
  1279. ap966_config \
  1280. ap922_config \
  1281. ap922_XA10_config \
  1282. ap7_config \
  1283. ap720t_config \
  1284. ap920t_config \
  1285. ap926ejs_config \
  1286. ap946es_config: unconfig
  1287. @board/integratorap/split_by_variant.sh $@
  1288. integratorcp_config \
  1289. cp_config \
  1290. cp920t_config \
  1291. cp926ejs_config \
  1292. cp946es_config \
  1293. cp1136_config \
  1294. cp966_config \
  1295. cp922_config \
  1296. cp922_XA10_config \
  1297. cp1026_config: unconfig
  1298. @board/integratorcp/split_by_variant.sh $@
  1299. kb9202_config : unconfig
  1300. @./mkconfig $(@:_config=) arm arm920t kb9202 NULL at91rm9200
  1301. lpd7a400_config \
  1302. lpd7a404_config: unconfig
  1303. @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
  1304. mx1ads_config : unconfig
  1305. @./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
  1306. mx1fs2_config : unconfig
  1307. @./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
  1308. netstar_32_config \
  1309. netstar_config: unconfig
  1310. @if [ "$(findstring _32_,$@)" ] ; then \
  1311. echo "... 32MB SDRAM" ; \
  1312. echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>include/config.h ; \
  1313. else \
  1314. echo "... 64MB SDRAM" ; \
  1315. echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>include/config.h ; \
  1316. fi
  1317. @./mkconfig -a netstar arm arm925t netstar
  1318. omap1510inn_config : unconfig
  1319. @./mkconfig $(@:_config=) arm arm925t omap1510inn
  1320. omap5912osk_config : unconfig
  1321. @./mkconfig $(@:_config=) arm arm926ejs omap5912osk NULL omap
  1322. omap1610inn_config \
  1323. omap1610inn_cs0boot_config \
  1324. omap1610inn_cs3boot_config \
  1325. omap1610inn_cs_autoboot_config \
  1326. omap1610h2_config \
  1327. omap1610h2_cs0boot_config \
  1328. omap1610h2_cs3boot_config \
  1329. omap1610h2_cs_autoboot_config: unconfig
  1330. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  1331. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  1332. echo "... configured for CS0 boot"; \
  1333. elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
  1334. echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
  1335. echo "... configured for CS_AUTO boot"; \
  1336. else \
  1337. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  1338. echo "... configured for CS3 boot"; \
  1339. fi;
  1340. @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
  1341. omap730p2_config \
  1342. omap730p2_cs0boot_config \
  1343. omap730p2_cs3boot_config : unconfig
  1344. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  1345. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  1346. echo "... configured for CS0 boot"; \
  1347. else \
  1348. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  1349. echo "... configured for CS3 boot"; \
  1350. fi;
  1351. @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
  1352. sbc2410x_config: unconfig
  1353. @./mkconfig $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
  1354. scb9328_config : unconfig
  1355. @./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
  1356. smdk2400_config : unconfig
  1357. @./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
  1358. smdk2410_config : unconfig
  1359. @./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
  1360. SX1_config : unconfig
  1361. @./mkconfig $(@:_config=) arm arm925t sx1
  1362. # TRAB default configuration: 8 MB Flash, 32 MB RAM
  1363. trab_config \
  1364. trab_bigram_config \
  1365. trab_bigflash_config \
  1366. trab_old_config: unconfig
  1367. @ >include/config.h
  1368. @[ -z "$(findstring _bigram,$@)" ] || \
  1369. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1370. echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
  1371. echo "... with 8 MB Flash, 32 MB RAM" ; \
  1372. }
  1373. @[ -z "$(findstring _bigflash,$@)" ] || \
  1374. { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
  1375. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1376. echo "... with 16 MB Flash, 16 MB RAM" ; \
  1377. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1378. }
  1379. @[ -z "$(findstring _old,$@)" ] || \
  1380. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1381. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1382. echo "... with 8 MB Flash, 16 MB RAM" ; \
  1383. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1384. }
  1385. @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
  1386. VCMA9_config : unconfig
  1387. @./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
  1388. #========================================================================
  1389. # ARM supplied Versatile development boards
  1390. #========================================================================
  1391. versatile_config \
  1392. versatileab_config \
  1393. versatilepb_config : unconfig
  1394. @board/versatile/split_by_variant.sh $@
  1395. voiceblue_smallflash_config \
  1396. voiceblue_config: unconfig
  1397. @if [ "$(findstring _smallflash_,$@)" ] ; then \
  1398. echo "... boot from lower flash bank" ; \
  1399. echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
  1400. echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
  1401. else \
  1402. echo "... boot from upper flash bank" ; \
  1403. >include/config.h ; \
  1404. echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
  1405. fi
  1406. @./mkconfig -a voiceblue arm arm925t voiceblue
  1407. cm4008_config : unconfig
  1408. @./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
  1409. cm41xx_config : unconfig
  1410. @./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
  1411. gth2_config : unconfig
  1412. @ >include/config.h
  1413. @echo "#define CONFIG_GTH2 1" >>include/config.h
  1414. @./mkconfig -a gth2 mips mips gth2
  1415. #########################################################################
  1416. ## S3C44B0 Systems
  1417. #########################################################################
  1418. B2_config : unconfig
  1419. @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
  1420. #########################################################################
  1421. ## ARM720T Systems
  1422. #########################################################################
  1423. armadillo_config: unconfig
  1424. @./mkconfig $(@:_config=) arm arm720t armadillo
  1425. ep7312_config : unconfig
  1426. @./mkconfig $(@:_config=) arm arm720t ep7312
  1427. impa7_config : unconfig
  1428. @./mkconfig $(@:_config=) arm arm720t impa7
  1429. modnet50_config : unconfig
  1430. @./mkconfig $(@:_config=) arm arm720t modnet50
  1431. evb4510_config : unconfig
  1432. @./mkconfig $(@:_config=) arm arm720t evb4510
  1433. #########################################################################
  1434. ## XScale Systems
  1435. #########################################################################
  1436. adsvix_config : unconfig
  1437. @./mkconfig $(@:_config=) arm pxa adsvix
  1438. cerf250_config : unconfig
  1439. @./mkconfig $(@:_config=) arm pxa cerf250
  1440. cradle_config : unconfig
  1441. @./mkconfig $(@:_config=) arm pxa cradle
  1442. csb226_config : unconfig
  1443. @./mkconfig $(@:_config=) arm pxa csb226
  1444. delta_config :
  1445. @./mkconfig $(@:_config=) arm pxa delta
  1446. innokom_config : unconfig
  1447. @./mkconfig $(@:_config=) arm pxa innokom
  1448. ixdp425_config : unconfig
  1449. @./mkconfig $(@:_config=) arm ixp ixdp425
  1450. ixdpg425_config : unconfig
  1451. @./mkconfig $(@:_config=) arm ixp ixdp425
  1452. lubbock_config : unconfig
  1453. @./mkconfig $(@:_config=) arm pxa lubbock
  1454. pleb2_config : unconfig
  1455. @./mkconfig $(@:_config=) arm pxa pleb2
  1456. logodl_config : unconfig
  1457. @./mkconfig $(@:_config=) arm pxa logodl
  1458. pdnb3_config : unconfig
  1459. @./mkconfig $(@:_config=) arm ixp pdnb3 prodrive
  1460. pxa255_idp_config: unconfig
  1461. @./mkconfig $(@:_config=) arm pxa pxa255_idp
  1462. wepep250_config : unconfig
  1463. @./mkconfig $(@:_config=) arm pxa wepep250
  1464. xaeniax_config : unconfig
  1465. @./mkconfig $(@:_config=) arm pxa xaeniax
  1466. xm250_config : unconfig
  1467. @./mkconfig $(@:_config=) arm pxa xm250
  1468. xsengine_config : unconfig
  1469. @./mkconfig $(@:_config=) arm pxa xsengine
  1470. zylonite_config :
  1471. @./mkconfig $(@:_config=) arm pxa zylonite
  1472. #########################################################################
  1473. ## ARM1136 Systems
  1474. #########################################################################
  1475. omap2420h4_config : unconfig
  1476. @./mkconfig $(@:_config=) arm arm1136 omap2420h4
  1477. #========================================================================
  1478. # i386
  1479. #========================================================================
  1480. #########################################################################
  1481. ## AMD SC520 CDP
  1482. #########################################################################
  1483. sc520_cdp_config : unconfig
  1484. @./mkconfig $(@:_config=) i386 i386 sc520_cdp
  1485. sc520_spunk_config : unconfig
  1486. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1487. sc520_spunk_rel_config : unconfig
  1488. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1489. #========================================================================
  1490. # MIPS
  1491. #========================================================================
  1492. #########################################################################
  1493. ## MIPS32 4Kc
  1494. #########################################################################
  1495. xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
  1496. incaip_100MHz_config \
  1497. incaip_133MHz_config \
  1498. incaip_150MHz_config \
  1499. incaip_config: unconfig
  1500. @ >include/config.h
  1501. @[ -z "$(findstring _100MHz,$@)" ] || \
  1502. { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
  1503. echo "... with 100MHz system clock" ; \
  1504. }
  1505. @[ -z "$(findstring _133MHz,$@)" ] || \
  1506. { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
  1507. echo "... with 133MHz system clock" ; \
  1508. }
  1509. @[ -z "$(findstring _150MHz,$@)" ] || \
  1510. { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
  1511. echo "... with 150MHz system clock" ; \
  1512. }
  1513. @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
  1514. tb0229_config: unconfig
  1515. @./mkconfig $(@:_config=) mips mips tb0229
  1516. #########################################################################
  1517. ## MIPS32 AU1X00
  1518. #########################################################################
  1519. dbau1000_config : unconfig
  1520. @ >include/config.h
  1521. @echo "#define CONFIG_DBAU1000 1" >>include/config.h
  1522. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1523. dbau1100_config : unconfig
  1524. @ >include/config.h
  1525. @echo "#define CONFIG_DBAU1100 1" >>include/config.h
  1526. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1527. dbau1500_config : unconfig
  1528. @ >include/config.h
  1529. @echo "#define CONFIG_DBAU1500 1" >>include/config.h
  1530. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1531. dbau1550_config : unconfig
  1532. @ >include/config.h
  1533. @echo "#define CONFIG_DBAU1550 1" >>include/config.h
  1534. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1535. dbau1550_el_config : unconfig
  1536. @ >include/config.h
  1537. @echo "#define CONFIG_DBAU1550 1" >>include/config.h
  1538. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1539. pb1000_config : unconfig
  1540. @ >include/config.h
  1541. @echo "#define CONFIG_PB1000 1" >>include/config.h
  1542. @./mkconfig -a pb1x00 mips mips pb1x00
  1543. #########################################################################
  1544. ## MIPS64 5Kc
  1545. #########################################################################
  1546. purple_config : unconfig
  1547. @./mkconfig $(@:_config=) mips mips purple
  1548. #========================================================================
  1549. # Nios
  1550. #========================================================================
  1551. #########################################################################
  1552. ## Nios32
  1553. #########################################################################
  1554. DK1C20_safe_32_config \
  1555. DK1C20_standard_32_config \
  1556. DK1C20_config: unconfig
  1557. @ >include/config.h
  1558. @[ -z "$(findstring _safe_32,$@)" ] || \
  1559. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1560. echo "... NIOS 'safe_32' configuration" ; \
  1561. }
  1562. @[ -z "$(findstring _standard_32,$@)" ] || \
  1563. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1564. echo "... NIOS 'standard_32' configuration" ; \
  1565. }
  1566. @[ -z "$(findstring DK1C20_config,$@)" ] || \
  1567. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1568. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1569. }
  1570. @./mkconfig -a DK1C20 nios nios dk1c20 altera
  1571. DK1S10_safe_32_config \
  1572. DK1S10_standard_32_config \
  1573. DK1S10_mtx_ldk_20_config \
  1574. DK1S10_config: unconfig
  1575. @ >include/config.h
  1576. @[ -z "$(findstring _safe_32,$@)" ] || \
  1577. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1578. echo "... NIOS 'safe_32' configuration" ; \
  1579. }
  1580. @[ -z "$(findstring _standard_32,$@)" ] || \
  1581. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1582. echo "... NIOS 'standard_32' configuration" ; \
  1583. }
  1584. @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
  1585. { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
  1586. echo "... NIOS 'mtx_ldk_20' configuration" ; \
  1587. }
  1588. @[ -z "$(findstring DK1S10_config,$@)" ] || \
  1589. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1590. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1591. }
  1592. @./mkconfig -a DK1S10 nios nios dk1s10 altera
  1593. ADNPESC1_DNPEVA2_base_32_config \
  1594. ADNPESC1_base_32_config \
  1595. ADNPESC1_config: unconfig
  1596. @ >include/config.h
  1597. @[ -z "$(findstring _DNPEVA2,$@)" ] || \
  1598. { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
  1599. echo "... DNP/EVA2 configuration" ; \
  1600. }
  1601. @[ -z "$(findstring _base_32,$@)" ] || \
  1602. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1603. echo "... NIOS 'base_32' configuration" ; \
  1604. }
  1605. @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
  1606. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1607. echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
  1608. }
  1609. @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
  1610. #########################################################################
  1611. ## Nios-II
  1612. #########################################################################
  1613. EP1C20_config : unconfig
  1614. @./mkconfig EP1C20 nios2 nios2 ep1c20 altera
  1615. EP1S10_config : unconfig
  1616. @./mkconfig EP1S10 nios2 nios2 ep1s10 altera
  1617. EP1S40_config : unconfig
  1618. @./mkconfig EP1S40 nios2 nios2 ep1s40 altera
  1619. PK1C20_config : unconfig
  1620. @./mkconfig PK1C20 nios2 nios2 pk1c20 psyent
  1621. PCI5441_config : unconfig
  1622. @./mkconfig PCI5441 nios2 nios2 pci5441 psyent
  1623. #========================================================================
  1624. # MicroBlaze
  1625. #========================================================================
  1626. #########################################################################
  1627. ## Microblaze
  1628. #########################################################################
  1629. suzaku_config: unconfig
  1630. @ >include/config.h
  1631. @echo "#define CONFIG_SUZAKU 1" >> include/config.h
  1632. @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
  1633. #########################################################################
  1634. ## Blackfin
  1635. #########################################################################
  1636. ezkit533_config : unconfig
  1637. @./mkconfig $(@:_config=) blackfin bf533 ezkit533
  1638. stamp_config : unconfig
  1639. @./mkconfig $(@:_config=) blackfin bf533 stamp
  1640. dspstamp_config : unconfig
  1641. @./mkconfig $(@:_config=) blackfin bf533 dsp_stamp
  1642. #########################################################################
  1643. #########################################################################
  1644. #########################################################################
  1645. clean:
  1646. find . -type f \
  1647. \( -name 'core' -o -name '*.bak' -o -name '*~' \
  1648. -o -name '*.o' -o -name '*.a' \) -print \
  1649. | xargs rm -f
  1650. rm -f examples/hello_world examples/timer \
  1651. examples/eepro100_eeprom examples/sched \
  1652. examples/mem_to_mem_idma2intr examples/82559_eeprom \
  1653. examples/smc91111_eeprom \
  1654. examples/test_burst
  1655. rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
  1656. rm -f tools/mpc86x_clk tools/ncb
  1657. rm -f tools/easylogo/easylogo tools/bmp_logo
  1658. rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
  1659. rm -f tools/env/fw_printenv tools/env/fw_setenv
  1660. rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
  1661. rm -f board/netstar/eeprom board/netstar/crcek
  1662. rm -f board/netstar/*.srec board/netstar/*.bin
  1663. rm -f board/trab/trab_fkt board/voiceblue/eeprom
  1664. rm -f board/integratorap/u-boot.lds board/integratorcp/u-boot.lds
  1665. rm -f include/bmp_logo.h
  1666. clobber: clean
  1667. find . -type f \( -name .depend \
  1668. -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
  1669. -print0 \
  1670. | xargs -0 rm -f
  1671. rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h
  1672. rm -fr *.*~
  1673. rm -f u-boot u-boot.map u-boot.hex $(ALL)
  1674. rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
  1675. rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
  1676. rm -f include/asm/proc include/asm/arch include/asm
  1677. mrproper \
  1678. distclean: clobber unconfig
  1679. backup:
  1680. F=`basename $(TOPDIR)` ; cd .. ; \
  1681. gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  1682. #########################################################################