Makefile 55 KB

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