Makefile 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424
  1. #
  2. # (C) Copyright 2000-2004
  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. HOSTARCH := $(shell uname -m | \
  24. sed -e s/i.86/i386/ \
  25. -e s/sun4u/sparc64/ \
  26. -e s/arm.*/arm/ \
  27. -e s/sa110/arm/ \
  28. -e s/powerpc/ppc/ \
  29. -e s/macppc/ppc/)
  30. HOSTOS := $(shell uname -s | tr A-Z a-z | \
  31. sed -e 's/\(cygwin\).*/cygwin/')
  32. export HOSTARCH
  33. # Deal with colliding definitions from tcsh etc.
  34. VENDOR=
  35. #########################################################################
  36. TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
  37. export TOPDIR
  38. ifeq (include/config.mk,$(wildcard include/config.mk))
  39. # load ARCH, BOARD, and CPU configuration
  40. include include/config.mk
  41. export ARCH CPU BOARD VENDOR
  42. # load other configuration
  43. include $(TOPDIR)/config.mk
  44. ifndef CROSS_COMPILE
  45. ifeq ($(HOSTARCH),ppc)
  46. CROSS_COMPILE =
  47. else
  48. ifeq ($(ARCH),ppc)
  49. CROSS_COMPILE = ppc_8xx-
  50. endif
  51. ifeq ($(ARCH),arm)
  52. CROSS_COMPILE = arm-linux-
  53. endif
  54. ifeq ($(ARCH),i386)
  55. ifeq ($(HOSTARCH),i386)
  56. CROSS_COMPILE =
  57. else
  58. CROSS_COMPILE = i386-linux-
  59. endif
  60. endif
  61. ifeq ($(ARCH),mips)
  62. CROSS_COMPILE = mips_4KC-
  63. endif
  64. ifeq ($(ARCH),nios)
  65. CROSS_COMPILE = nios-elf-
  66. endif
  67. ifeq ($(ARCH),m68k)
  68. CROSS_COMPILE = m68k-elf-
  69. endif
  70. ifeq ($(ARCH),microblaze)
  71. CROSS_COMPILE = mb-
  72. endif
  73. endif
  74. endif
  75. export CROSS_COMPILE
  76. #########################################################################
  77. # U-Boot objects....order is important (i.e. start must be first)
  78. OBJS = cpu/$(CPU)/start.o
  79. ifeq ($(CPU),i386)
  80. OBJS += cpu/$(CPU)/start16.o
  81. OBJS += cpu/$(CPU)/reset.o
  82. endif
  83. ifeq ($(CPU),ppc4xx)
  84. OBJS += cpu/$(CPU)/resetvec.o
  85. endif
  86. ifeq ($(CPU),mpc85xx)
  87. OBJS += cpu/$(CPU)/resetvec.o
  88. endif
  89. LIBS = lib_generic/libgeneric.a
  90. LIBS += board/$(BOARDDIR)/lib$(BOARD).a
  91. LIBS += cpu/$(CPU)/lib$(CPU).a
  92. LIBS += lib_$(ARCH)/lib$(ARCH).a
  93. LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
  94. fs/reiserfs/libreiserfs.a
  95. LIBS += net/libnet.a
  96. LIBS += disk/libdisk.a
  97. LIBS += rtc/librtc.a
  98. LIBS += dtt/libdtt.a
  99. LIBS += drivers/libdrivers.a
  100. LIBS += drivers/sk98lin/libsk98lin.a
  101. LIBS += post/libpost.a post/cpu/libcpu.a
  102. LIBS += common/libcommon.a
  103. .PHONY : $(LIBS)
  104. # Add GCC lib
  105. PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
  106. # The "tools" are needed early, so put this first
  107. # Don't include stuff already done in $(LIBS)
  108. SUBDIRS = tools \
  109. examples \
  110. post \
  111. post/cpu
  112. .PHONY : $(SUBDIRS)
  113. #########################################################################
  114. #########################################################################
  115. ALL = u-boot.srec u-boot.bin System.map
  116. all: $(ALL)
  117. u-boot.srec: u-boot
  118. $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
  119. u-boot.bin: u-boot
  120. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  121. u-boot.img: u-boot.bin
  122. ./tools/mkimage -A $(ARCH) -T firmware -C none \
  123. -a $(TEXT_BASE) -e 0 \
  124. -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
  125. sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
  126. -d $< $@
  127. u-boot.dis: u-boot
  128. $(OBJDUMP) -d $< > $@
  129. u-boot: depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
  130. UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
  131. $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
  132. --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \
  133. -Map u-boot.map -o u-boot
  134. $(LIBS):
  135. $(MAKE) -C `dirname $@`
  136. $(SUBDIRS):
  137. $(MAKE) -C $@ all
  138. gdbtools:
  139. $(MAKE) -C tools/gdb || exit 1
  140. depend dep:
  141. @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
  142. tags:
  143. ctags -w `find $(SUBDIRS) include \
  144. lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
  145. fs/cramfs fs/fat fs/fdos fs/jffs2 \
  146. net disk rtc dtt drivers drivers/sk98lin common \
  147. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  148. etags:
  149. etags -a `find $(SUBDIRS) include \
  150. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  151. System.map: u-boot
  152. @$(NM) $< | \
  153. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  154. sort > System.map
  155. #########################################################################
  156. else
  157. all install u-boot u-boot.srec depend dep:
  158. @echo "System not configured - see README" >&2
  159. @ exit 1
  160. endif
  161. #########################################################################
  162. unconfig:
  163. @rm -f include/config.h include/config.mk board/*/config.tmp
  164. #========================================================================
  165. # PowerPC
  166. #========================================================================
  167. #########################################################################
  168. ## MPC5xx Systems
  169. #########################################################################
  170. cmi_mpc5xx_config: unconfig
  171. @./mkconfig $(@:_config=) ppc mpc5xx cmi
  172. PATI_config: unconfig
  173. @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
  174. #########################################################################
  175. ## MPC5xxx Systems
  176. #########################################################################
  177. Lite5200_config \
  178. Lite5200_LOWBOOT_config \
  179. Lite5200_LOWBOOT08_config \
  180. icecube_5200_config \
  181. icecube_5200_LOWBOOT_config \
  182. icecube_5200_LOWBOOT08_config \
  183. icecube_5200_DDR_config \
  184. icecube_5200_DDR_LOWBOOT_config \
  185. icecube_5200_DDR_LOWBOOT08_config \
  186. icecube_5100_config: unconfig
  187. @ >include/config.h
  188. @[ -z "$(findstring LOWBOOT_,$@)" ] || \
  189. { if [ "$(findstring DDR,$@)" ] ; \
  190. then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  191. else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
  192. fi ; \
  193. echo "... with LOWBOOT configuration" ; \
  194. }
  195. @[ -z "$(findstring LOWBOOT08,$@)" ] || \
  196. { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  197. echo "... with 8 MB flash only" ; \
  198. echo "... with LOWBOOT configuration" ; \
  199. }
  200. @[ -z "$(findstring DDR,$@)" ] || \
  201. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  202. echo "... DDR memory revision" ; \
  203. }
  204. @[ -z "$(findstring 5200,$@)" ] || \
  205. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  206. echo "... with MPC5200 processor" ; \
  207. }
  208. @[ -z "$(findstring 5100,$@)" ] || \
  209. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  210. echo "... with MGT5100 processor" ; \
  211. }
  212. @./mkconfig -a IceCube ppc mpc5xxx icecube
  213. MINI5200_config \
  214. EVAL5200_config \
  215. TOP5200_config: unconfig
  216. @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
  217. @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
  218. PM520_config \
  219. PM520_DDR_config \
  220. PM520_ROMBOOT_config \
  221. PM520_ROMBOOT_DDR_config: unconfig
  222. @ >include/config.h
  223. @[ -z "$(findstring DDR,$@)" ] || \
  224. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  225. echo "... DDR memory revision" ; \
  226. }
  227. @[ -z "$(findstring ROMBOOT,$@)" ] || \
  228. { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  229. echo "... booting from 8-bit flash" ; \
  230. }
  231. @./mkconfig -a PM520 ppc mpc5xxx pm520
  232. #########################################################################
  233. ## MPC8xx Systems
  234. #########################################################################
  235. Adder_config \
  236. Adder87x_config \
  237. Adder852_config \
  238. : unconfig
  239. $(if $(findstring 852,$@), \
  240. @echo "#define CONFIG_MPC852T" > include/config.h)
  241. @./mkconfig -a Adder ppc mpc8xx adder
  242. AdderII_config: unconfig
  243. @./mkconfig $(@:_config=) ppc mpc8xx adderII
  244. ADS860_config \
  245. FADS823_config \
  246. FADS850SAR_config \
  247. MPC86xADS_config \
  248. MPC885ADS_config \
  249. FADS860T_config: unconfig
  250. @./mkconfig $(@:_config=) ppc mpc8xx fads
  251. AMX860_config : unconfig
  252. @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
  253. c2mon_config: unconfig
  254. @./mkconfig $(@:_config=) ppc mpc8xx c2mon
  255. CCM_config: unconfig
  256. @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
  257. cogent_mpc8xx_config: unconfig
  258. @./mkconfig $(@:_config=) ppc mpc8xx cogent
  259. ELPT860_config: unconfig
  260. @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
  261. ESTEEM192E_config: unconfig
  262. @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
  263. ETX094_config : unconfig
  264. @./mkconfig $(@:_config=) ppc mpc8xx etx094
  265. FLAGADM_config: unconfig
  266. @./mkconfig $(@:_config=) ppc mpc8xx flagadm
  267. xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
  268. GEN860T_SC_config \
  269. GEN860T_config: unconfig
  270. @ >include/config.h
  271. @[ -z "$(findstring _SC,$@)" ] || \
  272. { echo "#define CONFIG_SC" >>include/config.h ; \
  273. echo "With reduced H/W feature set (SC)..." ; \
  274. }
  275. @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
  276. GENIETV_config: unconfig
  277. @./mkconfig $(@:_config=) ppc mpc8xx genietv
  278. GTH_config: unconfig
  279. @./mkconfig $(@:_config=) ppc mpc8xx gth
  280. hermes_config : unconfig
  281. @./mkconfig $(@:_config=) ppc mpc8xx hermes
  282. HMI10_config : unconfig
  283. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  284. IAD210_config: unconfig
  285. @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
  286. xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
  287. ICU862_100MHz_config \
  288. ICU862_config: unconfig
  289. @ >include/config.h
  290. @[ -z "$(findstring _100MHz,$@)" ] || \
  291. { echo "#define CONFIG_100MHz" >>include/config.h ; \
  292. echo "... with 100MHz system clock" ; \
  293. }
  294. @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
  295. IP860_config : unconfig
  296. @./mkconfig $(@:_config=) ppc mpc8xx ip860
  297. IVML24_256_config \
  298. IVML24_128_config \
  299. IVML24_config: unconfig
  300. @ >include/config.h
  301. @[ -z "$(findstring IVML24_config,$@)" ] || \
  302. { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
  303. }
  304. @[ -z "$(findstring IVML24_128_config,$@)" ] || \
  305. { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
  306. }
  307. @[ -z "$(findstring IVML24_256_config,$@)" ] || \
  308. { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
  309. }
  310. @./mkconfig -a IVML24 ppc mpc8xx ivm
  311. IVMS8_256_config \
  312. IVMS8_128_config \
  313. IVMS8_config: unconfig
  314. @ >include/config.h
  315. @[ -z "$(findstring IVMS8_config,$@)" ] || \
  316. { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
  317. }
  318. @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
  319. { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
  320. }
  321. @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
  322. { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
  323. }
  324. @./mkconfig -a IVMS8 ppc mpc8xx ivm
  325. KUP4K_config : unconfig
  326. @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
  327. KUP4X_config : unconfig
  328. @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
  329. LANTEC_config : unconfig
  330. @./mkconfig $(@:_config=) ppc mpc8xx lantec
  331. lwmon_config: unconfig
  332. @./mkconfig $(@:_config=) ppc mpc8xx lwmon
  333. MBX_config \
  334. MBX860T_config: unconfig
  335. @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
  336. MHPC_config: unconfig
  337. @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
  338. MVS1_config : unconfig
  339. @./mkconfig $(@:_config=) ppc mpc8xx mvs1
  340. xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
  341. NETVIA_V2_config \
  342. NETVIA_config: unconfig
  343. @ >include/config.h
  344. @[ -z "$(findstring NETVIA_config,$@)" ] || \
  345. { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
  346. echo "... Version 1" ; \
  347. }
  348. @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
  349. { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
  350. echo "... Version 2" ; \
  351. }
  352. @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
  353. xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
  354. NETPHONE_V2_config \
  355. NETPHONE_config: unconfig
  356. @ >include/config.h
  357. @[ -z "$(findstring NETPHONE_config,$@)" ] || \
  358. { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
  359. }
  360. @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
  361. { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
  362. }
  363. @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
  364. xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
  365. NETTA_ISDN_6412_SWAPHOOK_config \
  366. NETTA_ISDN_SWAPHOOK_config \
  367. NETTA_6412_SWAPHOOK_config \
  368. NETTA_SWAPHOOK_config \
  369. NETTA_ISDN_6412_config \
  370. NETTA_ISDN_config \
  371. NETTA_6412_config \
  372. NETTA_config: unconfig
  373. @ >include/config.h
  374. @[ -z "$(findstring ISDN_,$@)" ] || \
  375. { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
  376. }
  377. @[ -n "$(findstring ISDN_,$@)" ] || \
  378. { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
  379. }
  380. @[ -z "$(findstring 6412_,$@)" ] || \
  381. { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
  382. }
  383. @[ -n "$(findstring 6412_,$@)" ] || \
  384. { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
  385. }
  386. @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
  387. { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
  388. }
  389. @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
  390. { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
  391. }
  392. @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
  393. xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
  394. NETTA2_V2_config \
  395. NETTA2_config: unconfig
  396. @ >include/config.h
  397. @[ -z "$(findstring NETTA2_config,$@)" ] || \
  398. { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
  399. }
  400. @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
  401. { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
  402. }
  403. @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
  404. NX823_config: unconfig
  405. @./mkconfig $(@:_config=) ppc mpc8xx nx823
  406. pcu_e_config: unconfig
  407. @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
  408. QS850_config: unconfig
  409. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  410. QS823_config: unconfig
  411. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  412. QS860T_config: unconfig
  413. @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
  414. R360MPI_config: unconfig
  415. @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
  416. RBC823_config: unconfig
  417. @./mkconfig $(@:_config=) ppc mpc8xx rbc823
  418. RPXClassic_config: unconfig
  419. @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
  420. RPXlite_config: unconfig
  421. @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
  422. RPXlite_DW_64_config \
  423. RPXlite_DW_LCD_config \
  424. RPXlite_DW_64_LCD_config \
  425. RPXlite_DW_NVRAM_config \
  426. RPXlite_DW_NVRAM_64_config \
  427. RPXlite_DW_NVRAM_LCD_config \
  428. RPXlite_DW_NVRAM_64_LCD_config \
  429. RPXlite_DW_config: unconfig
  430. @ >include/config.h
  431. @[ -z "$(findstring _64,$@)" ] || \
  432. { echo "#define RPXlite_64MHz" >>include/config.h ; \
  433. echo "... with 64MHz system clock ..."; \
  434. }
  435. @[ -z "$(findstring _LCD,$@)" ] || \
  436. { echo "#define CONFIG_LCD" >>include/config.h ; \
  437. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  438. echo "... with LCD display ..."; \
  439. }
  440. @[ -z "$(findstring _NVRAM,$@)" ] || \
  441. { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
  442. echo "... with ENV in NVRAM ..."; \
  443. }
  444. @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
  445. rmu_config: unconfig
  446. @./mkconfig $(@:_config=) ppc mpc8xx rmu
  447. RRvision_config: unconfig
  448. @./mkconfig $(@:_config=) ppc mpc8xx RRvision
  449. RRvision_LCD_config: unconfig
  450. @echo "#define CONFIG_LCD" >include/config.h
  451. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  452. @./mkconfig -a RRvision ppc mpc8xx RRvision
  453. SM850_config : unconfig
  454. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  455. SPD823TS_config: unconfig
  456. @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
  457. svm_sc8xx_config: unconfig
  458. @ >include/config.h
  459. @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
  460. SXNI855T_config: unconfig
  461. @./mkconfig $(@:_config=) ppc mpc8xx sixnet
  462. # EMK MPC8xx based modules
  463. TOP860_config: unconfig
  464. @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
  465. # Play some tricks for configuration selection
  466. # Only 855 and 860 boards may come with FEC
  467. # and only 823 boards may have LCD support
  468. xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
  469. FPS850L_config \
  470. FPS860L_config \
  471. NSCU_config \
  472. TQM823L_config \
  473. TQM823L_LCD_config \
  474. TQM850L_config \
  475. TQM855L_config \
  476. TQM860L_config \
  477. TQM862L_config \
  478. TQM823M_config \
  479. TQM850M_config \
  480. TQM855M_config \
  481. TQM860M_config \
  482. TQM862M_config \
  483. TQM866M_config: unconfig
  484. @ >include/config.h
  485. @[ -z "$(findstring _LCD,$@)" ] || \
  486. { echo "#define CONFIG_LCD" >>include/config.h ; \
  487. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  488. echo "... with LCD display" ; \
  489. }
  490. @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
  491. TTTech_config: unconfig
  492. @echo "#define CONFIG_LCD" >include/config.h
  493. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  494. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  495. v37_config: unconfig
  496. @echo "#define CONFIG_LCD" >include/config.h
  497. @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
  498. @./mkconfig $(@:_config=) ppc mpc8xx v37
  499. wtk_config: unconfig
  500. @echo "#define CONFIG_LCD" >include/config.h
  501. @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
  502. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  503. #########################################################################
  504. ## PPC4xx Systems
  505. #########################################################################
  506. xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
  507. ADCIOP_config: unconfig
  508. @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
  509. AR405_config: unconfig
  510. @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
  511. ASH405_config: unconfig
  512. @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
  513. BUBINGA405EP_config: unconfig
  514. @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
  515. CANBT_config: unconfig
  516. @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
  517. CATcenter_config: unconfig
  518. @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
  519. @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
  520. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  521. CPCI405_config \
  522. CPCI4052_config \
  523. CPCI405AB_config: unconfig
  524. @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
  525. @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
  526. CPCI440_config: unconfig
  527. @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
  528. CPCIISER4_config: unconfig
  529. @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
  530. CRAYL1_config: unconfig
  531. @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
  532. csb272_config: unconfig
  533. @./mkconfig $(@:_config=) ppc ppc4xx csb272
  534. csb472_config: unconfig
  535. @./mkconfig $(@:_config=) ppc ppc4xx csb472
  536. DASA_SIM_config: unconfig
  537. @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
  538. DP405_config: unconfig
  539. @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
  540. DU405_config: unconfig
  541. @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
  542. EBONY_config: unconfig
  543. @./mkconfig $(@:_config=) ppc ppc4xx ebony
  544. ERIC_config: unconfig
  545. @./mkconfig $(@:_config=) ppc ppc4xx eric
  546. EXBITGEN_config: unconfig
  547. @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
  548. HUB405_config: unconfig
  549. @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
  550. JSE_config: unconfig
  551. @./mkconfig $(@:_config=) ppc ppc4xx jse
  552. MIP405_config: unconfig
  553. @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
  554. MIP405T_config: unconfig
  555. @echo "#define CONFIG_MIP405T" >include/config.h
  556. @echo "Enable subset config for MIP405T"
  557. @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
  558. ML2_config: unconfig
  559. @./mkconfig $(@:_config=) ppc ppc4xx ml2
  560. ml300_config: unconfig
  561. @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
  562. OCOTEA_config: unconfig
  563. @./mkconfig $(@:_config=) ppc ppc4xx ocotea
  564. OCRTC_config \
  565. ORSG_config: unconfig
  566. @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
  567. PCI405_config: unconfig
  568. @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
  569. PIP405_config: unconfig
  570. @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
  571. PLU405_config: unconfig
  572. @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
  573. PMC405_config: unconfig
  574. @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
  575. PPChameleonEVB_BA_25_config \
  576. PPChameleonEVB_ME_25_config \
  577. PPChameleonEVB_HI_25_config \
  578. PPChameleonEVB_BA_33_config \
  579. PPChameleonEVB_ME_33_config \
  580. PPChameleonEVB_HI_33_config: unconfig
  581. @ >include/config.h
  582. @[ -z "$(findstring _MODEL_BA,$@)" ] || \
  583. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
  584. echo "... BASIC model" ; \
  585. }
  586. @[ -z "$(findstring _MODEL_ME,$@)" ] || \
  587. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
  588. echo "... MEDIUM model" ; \
  589. }
  590. @[ -z "$(findstring _MODEL_HI,$@)" ] || \
  591. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
  592. echo "... HIGH-END model" ; \
  593. }
  594. @[ -z "$(findstring _25,$@)" ] || \
  595. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  596. echo " SysClk = 25MHz" ; \
  597. }
  598. @[ -z "$(findstring _33,$@)" ] || \
  599. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  600. echo " SysClk = 33MHz" ; \
  601. }
  602. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  603. VOH405_config: unconfig
  604. @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
  605. W7OLMC_config \
  606. W7OLMG_config: unconfig
  607. @./mkconfig $(@:_config=) ppc ppc4xx w7o
  608. WALNUT405_config: unconfig
  609. @./mkconfig $(@:_config=) ppc ppc4xx walnut405
  610. XPEDITE1K_config: unconfig
  611. @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
  612. #########################################################################
  613. ## MPC824x Systems
  614. #########################################################################
  615. xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
  616. A3000_config: unconfig
  617. @./mkconfig $(@:_config=) ppc mpc824x a3000
  618. BMW_config: unconfig
  619. @./mkconfig $(@:_config=) ppc mpc824x bmw
  620. CPC45_config \
  621. CPC45_ROMBOOT_config: unconfig
  622. @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
  623. @cd ./include ; \
  624. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  625. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  626. echo "... booting from 8-bit flash" ; \
  627. else \
  628. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  629. echo "... booting from 64-bit flash" ; \
  630. fi; \
  631. echo "export CONFIG_BOOT_ROM" >> config.mk;
  632. CU824_config: unconfig
  633. @./mkconfig $(@:_config=) ppc mpc824x cu824
  634. debris_config: unconfig
  635. @./mkconfig $(@:_config=) ppc mpc824x debris etin
  636. eXalion_config: unconfig
  637. @./mkconfig $(@:_config=) ppc mpc824x eXalion
  638. MOUSSE_config: unconfig
  639. @./mkconfig $(@:_config=) ppc mpc824x mousse
  640. MUSENKI_config: unconfig
  641. @./mkconfig $(@:_config=) ppc mpc824x musenki
  642. MVBLUE_config: unconfig
  643. @./mkconfig $(@:_config=) ppc mpc824x mvblue
  644. OXC_config: unconfig
  645. @./mkconfig $(@:_config=) ppc mpc824x oxc
  646. PN62_config: unconfig
  647. @./mkconfig $(@:_config=) ppc mpc824x pn62
  648. Sandpoint8240_config: unconfig
  649. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  650. Sandpoint8245_config: unconfig
  651. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  652. SL8245_config: unconfig
  653. @./mkconfig $(@:_config=) ppc mpc824x sl8245
  654. utx8245_config: unconfig
  655. @./mkconfig $(@:_config=) ppc mpc824x utx8245
  656. #########################################################################
  657. ## MPC8260 Systems
  658. #########################################################################
  659. atc_config: unconfig
  660. @./mkconfig $(@:_config=) ppc mpc8260 atc
  661. cogent_mpc8260_config: unconfig
  662. @./mkconfig $(@:_config=) ppc mpc8260 cogent
  663. CPU86_config \
  664. CPU86_ROMBOOT_config: unconfig
  665. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
  666. @cd ./include ; \
  667. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  668. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  669. echo "... booting from 8-bit flash" ; \
  670. else \
  671. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  672. echo "... booting from 64-bit flash" ; \
  673. fi; \
  674. echo "export CONFIG_BOOT_ROM" >> config.mk;
  675. ep8260_config: unconfig
  676. @./mkconfig $(@:_config=) ppc mpc8260 ep8260
  677. gw8260_config: unconfig
  678. @./mkconfig $(@:_config=) ppc mpc8260 gw8260
  679. hymod_config: unconfig
  680. @./mkconfig $(@:_config=) ppc mpc8260 hymod
  681. IPHASE4539_config: unconfig
  682. @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
  683. ISPAN_config \
  684. ISPAN_REVB_config: unconfig
  685. @if [ "$(findstring _REVB_,$@)" ] ; then \
  686. echo "#define CFG_REV_B" > include/config.h ; \
  687. fi
  688. @./mkconfig -a ISPAN ppc mpc8260 ispan
  689. MPC8260ADS_config \
  690. MPC8260ADS_33MHz_config \
  691. MPC8260ADS_40MHz_config \
  692. MPC8272ADS_config \
  693. PQ2FADS_config \
  694. PQ2FADS-VR_config \
  695. PQ2FADS-ZU_config \
  696. PQ2FADS-ZU_66MHz_config \
  697. : unconfig
  698. $(if $(findstring PQ2FADS,$@), \
  699. @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
  700. @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
  701. $(if $(findstring MHz,$@), \
  702. @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
  703. $(if $(findstring VR,$@), \
  704. @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
  705. @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
  706. MPC8266ADS_config: unconfig
  707. @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
  708. # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
  709. PM825_config \
  710. PM825_ROMBOOT_config \
  711. PM825_BIGFLASH_config \
  712. PM825_ROMBOOT_BIGFLASH_config \
  713. PM826_config \
  714. PM826_ROMBOOT_config \
  715. PM826_BIGFLASH_config \
  716. PM826_ROMBOOT_BIGFLASH_config: unconfig
  717. @if [ "$(findstring PM825_,$@)" ] ; then \
  718. echo "#define CONFIG_PCI" >include/config.h ; \
  719. else \
  720. >include/config.h ; \
  721. fi
  722. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  723. echo "... booting from 8-bit flash" ; \
  724. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  725. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  726. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  727. echo "... with 32 MB Flash" ; \
  728. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  729. fi; \
  730. else \
  731. echo "... booting from 64-bit flash" ; \
  732. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  733. echo "... with 32 MB Flash" ; \
  734. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  735. echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
  736. else \
  737. echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
  738. fi; \
  739. fi
  740. @./mkconfig -a PM826 ppc mpc8260 pm826
  741. PM828_config \
  742. PM828_PCI_config \
  743. PM828_ROMBOOT_config \
  744. PM828_ROMBOOT_PCI_config: unconfig
  745. @if [ -z "$(findstring _PCI_,$@)" ] ; then \
  746. echo "#define CONFIG_PCI" >>include/config.h ; \
  747. echo "... with PCI enabled" ; \
  748. else \
  749. >include/config.h ; \
  750. fi
  751. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  752. echo "... booting from 8-bit flash" ; \
  753. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  754. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  755. fi
  756. @./mkconfig -a PM828 ppc mpc8260 pm828
  757. ppmc8260_config: unconfig
  758. @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
  759. RPXsuper_config: unconfig
  760. @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
  761. rsdproto_config: unconfig
  762. @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
  763. sacsng_config: unconfig
  764. @./mkconfig $(@:_config=) ppc mpc8260 sacsng
  765. sbc8260_config: unconfig
  766. @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
  767. SCM_config: unconfig
  768. @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
  769. TQM8255_AA_config \
  770. TQM8260_AA_config \
  771. TQM8260_AB_config \
  772. TQM8260_AC_config \
  773. TQM8260_AD_config \
  774. TQM8260_AE_config \
  775. TQM8260_AF_config \
  776. TQM8260_AG_config \
  777. TQM8260_AH_config \
  778. TQM8265_AA_config: unconfig
  779. @case "$@" in \
  780. TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
  781. TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
  782. TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  783. TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  784. TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  785. TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
  786. TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  787. TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
  788. TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
  789. TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
  790. esac; \
  791. >include/config.h ; \
  792. if [ "$${CTYPE}" != "MPC8260" ] ; then \
  793. echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
  794. fi; \
  795. echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
  796. echo "... with $${CFREQ}MHz system clock" ; \
  797. if [ "$${CACHE}" == "yes" ] ; then \
  798. echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
  799. echo "... with L2 Cache support" ; \
  800. else \
  801. echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
  802. echo "... without L2 Cache support" ; \
  803. fi; \
  804. if [ "$${BMODE}" == "60x" ] ; then \
  805. echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
  806. echo "... with 60x Bus Mode" ; \
  807. else \
  808. echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
  809. echo "... without 60x Bus Mode" ; \
  810. fi
  811. @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
  812. ZPC1900_config: unconfig
  813. @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
  814. #========================================================================
  815. # M68K
  816. #========================================================================
  817. #########################################################################
  818. ## Coldfire
  819. #########################################################################
  820. M5272C3_config : unconfig
  821. @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
  822. M5282EVB_config : unconfig
  823. @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
  824. #########################################################################
  825. ## MPC85xx Systems
  826. #########################################################################
  827. MPC8540ADS_config: unconfig
  828. @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
  829. MPC8560ADS_config: unconfig
  830. @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
  831. stxgp3_config: unconfig
  832. @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
  833. #########################################################################
  834. ## 74xx/7xx Systems
  835. #########################################################################
  836. AmigaOneG3SE_config: unconfig
  837. @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
  838. BAB7xx_config: unconfig
  839. @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
  840. DB64360_config: unconfig
  841. @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
  842. DB64460_config: unconfig
  843. @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
  844. ELPPC_config: unconfig
  845. @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
  846. EVB64260_config \
  847. EVB64260_750CX_config: unconfig
  848. @./mkconfig EVB64260 ppc 74xx_7xx evb64260
  849. P3G4_config: unconfig
  850. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  851. PCIPPC2_config \
  852. PCIPPC6_config: unconfig
  853. @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
  854. ZUMA_config: unconfig
  855. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  856. #========================================================================
  857. # ARM
  858. #========================================================================
  859. #########################################################################
  860. ## StrongARM Systems
  861. #########################################################################
  862. assabet_config : unconfig
  863. @./mkconfig $(@:_config=) arm sa1100 assabet
  864. dnp1110_config : unconfig
  865. @./mkconfig $(@:_config=) arm sa1100 dnp1110
  866. gcplus_config : unconfig
  867. @./mkconfig $(@:_config=) arm sa1100 gcplus
  868. lart_config : unconfig
  869. @./mkconfig $(@:_config=) arm sa1100 lart
  870. shannon_config : unconfig
  871. @./mkconfig $(@:_config=) arm sa1100 shannon
  872. #########################################################################
  873. ## ARM92xT Systems
  874. #########################################################################
  875. xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
  876. xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
  877. xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
  878. integratorcp_config : unconfig
  879. @./mkconfig $(@:_config=) arm arm926ejs integratorcp
  880. integratorap_config : unconfig
  881. @./mkconfig $(@:_config=) arm arm926ejs integratorap
  882. lpd7a400_config \
  883. lpd7a404_config: unconfig
  884. @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
  885. omap1510inn_config : unconfig
  886. @./mkconfig $(@:_config=) arm arm925t omap1510inn
  887. omap5912osk_config : unconfig
  888. @./mkconfig $(@:_config=) arm arm926ejs omap5912osk
  889. omap1610inn_config \
  890. omap1610inn_cs0boot_config \
  891. omap1610inn_cs3boot_config \
  892. omap1610inn_cs_autoboot_config \
  893. omap1610h2_config \
  894. omap1610h2_cs0boot_config \
  895. omap1610h2_cs3boot_config \
  896. omap1610h2_cs_autoboot_config: unconfig
  897. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  898. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  899. echo "... configured for CS0 boot"; \
  900. elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
  901. echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
  902. echo "... configured for CS_AUTO boot"; \
  903. else \
  904. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  905. echo "... configured for CS3 boot"; \
  906. fi;
  907. @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
  908. omap730p2_config \
  909. omap730p2_cs0boot_config \
  910. omap730p2_cs3boot_config : unconfig
  911. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  912. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  913. echo "... configured for CS0 boot"; \
  914. else \
  915. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  916. echo "... configured for CS3 boot"; \
  917. fi;
  918. @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2
  919. smdk2400_config : unconfig
  920. @./mkconfig $(@:_config=) arm arm920t smdk2400
  921. smdk2410_config : unconfig
  922. @./mkconfig $(@:_config=) arm arm920t smdk2410
  923. SX1_config : unconfig
  924. @./mkconfig $(@:_config=) arm arm925t sx1
  925. # TRAB default configuration: 8 MB Flash, 32 MB RAM
  926. trab_config \
  927. trab_bigram_config \
  928. trab_bigflash_config \
  929. trab_old_config: unconfig
  930. @ >include/config.h
  931. @[ -z "$(findstring _bigram,$@)" ] || \
  932. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  933. echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
  934. echo "... with 8 MB Flash, 32 MB RAM" ; \
  935. }
  936. @[ -z "$(findstring _bigflash,$@)" ] || \
  937. { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
  938. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  939. echo "... with 16 MB Flash, 16 MB RAM" ; \
  940. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  941. }
  942. @[ -z "$(findstring _old,$@)" ] || \
  943. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  944. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  945. echo "... with 8 MB Flash, 16 MB RAM" ; \
  946. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  947. }
  948. @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
  949. VCMA9_config : unconfig
  950. @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
  951. versatile_config : unconfig
  952. @./mkconfig $(@:_config=) arm arm926ejs versatile
  953. #########################################################################
  954. ## S3C44B0 Systems
  955. #########################################################################
  956. B2_config : unconfig
  957. @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
  958. #########################################################################
  959. ## MC9328 (Dragonball) Systems
  960. #########################################################################
  961. mx1ads_config : unconfig
  962. @./mkconfig $(@:_config=) arm mc9328 mx1ads
  963. #########################################################################
  964. ## ARM720T Systems
  965. #########################################################################
  966. ep7312_config : unconfig
  967. @./mkconfig $(@:_config=) arm arm720t ep7312
  968. impa7_config : unconfig
  969. @./mkconfig $(@:_config=) arm arm720t impa7
  970. modnet50_config : unconfig
  971. @./mkconfig $(@:_config=) arm arm720t modnet50
  972. evb4510_config : unconfig
  973. @./mkconfig $(@:_config=) arm arm720t evb4510
  974. #########################################################################
  975. ## AT91RM9200 Systems
  976. #########################################################################
  977. at91rm9200dk_config : unconfig
  978. @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
  979. #########################################################################
  980. ## XScale Systems
  981. #########################################################################
  982. cradle_config : unconfig
  983. @./mkconfig $(@:_config=) arm pxa cradle
  984. csb226_config : unconfig
  985. @./mkconfig $(@:_config=) arm pxa csb226
  986. innokom_config : unconfig
  987. @./mkconfig $(@:_config=) arm pxa innokom
  988. ixdp425_config : unconfig
  989. @./mkconfig $(@:_config=) arm ixp ixdp425
  990. lubbock_config : unconfig
  991. @./mkconfig $(@:_config=) arm pxa lubbock
  992. logodl_config : unconfig
  993. @./mkconfig $(@:_config=) arm pxa logodl
  994. wepep250_config : unconfig
  995. @./mkconfig $(@:_config=) arm pxa wepep250
  996. xm250_config : unconfig
  997. @./mkconfig $(@:_config=) arm pxa xm250
  998. xsengine_config : unconfig
  999. @./mkconfig $(@:_config=) arm pxa xsengine
  1000. #========================================================================
  1001. # i386
  1002. #========================================================================
  1003. #########################################################################
  1004. ## AMD SC520 CDP
  1005. #########################################################################
  1006. sc520_cdp_config : unconfig
  1007. @./mkconfig $(@:_config=) i386 i386 sc520_cdp
  1008. sc520_spunk_config : unconfig
  1009. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1010. sc520_spunk_rel_config : unconfig
  1011. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1012. #========================================================================
  1013. # MIPS
  1014. #========================================================================
  1015. #########################################################################
  1016. ## MIPS32 4Kc
  1017. #########################################################################
  1018. xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
  1019. incaip_100MHz_config \
  1020. incaip_133MHz_config \
  1021. incaip_150MHz_config \
  1022. incaip_config: unconfig
  1023. @ >include/config.h
  1024. @[ -z "$(findstring _100MHz,$@)" ] || \
  1025. { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
  1026. echo "... with 100MHz system clock" ; \
  1027. }
  1028. @[ -z "$(findstring _133MHz,$@)" ] || \
  1029. { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
  1030. echo "... with 133MHz system clock" ; \
  1031. }
  1032. @[ -z "$(findstring _150MHz,$@)" ] || \
  1033. { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
  1034. echo "... with 150MHz system clock" ; \
  1035. }
  1036. @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
  1037. tb0229_config: unconfig
  1038. @./mkconfig $(@:_config=) mips mips tb0229
  1039. #########################################################################
  1040. ## MIPS32 AU1X00
  1041. #########################################################################
  1042. dbau1000_config : unconfig
  1043. @ >include/config.h
  1044. @echo "#define CONFIG_DBAU1000 1" >>include/config.h
  1045. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1046. dbau1100_config : unconfig
  1047. @ >include/config.h
  1048. @echo "#define CONFIG_DBAU1100 1" >>include/config.h
  1049. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1050. dbau1500_config : unconfig
  1051. @ >include/config.h
  1052. @echo "#define CONFIG_DBAU1500 1" >>include/config.h
  1053. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1054. #########################################################################
  1055. ## MIPS64 5Kc
  1056. #########################################################################
  1057. purple_config : unconfig
  1058. @./mkconfig $(@:_config=) mips mips purple
  1059. #========================================================================
  1060. # Nios
  1061. #========================================================================
  1062. #########################################################################
  1063. ## Nios32
  1064. #########################################################################
  1065. DK1C20_safe_32_config \
  1066. DK1C20_standard_32_config \
  1067. DK1C20_config: unconfig
  1068. @ >include/config.h
  1069. @[ -z "$(findstring _safe_32,$@)" ] || \
  1070. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1071. echo "... NIOS 'safe_32' configuration" ; \
  1072. }
  1073. @[ -z "$(findstring _standard_32,$@)" ] || \
  1074. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1075. echo "... NIOS 'standard_32' configuration" ; \
  1076. }
  1077. @[ -z "$(findstring DK1C20_config,$@)" ] || \
  1078. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1079. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1080. }
  1081. @./mkconfig -a DK1C20 nios nios dk1c20 altera
  1082. DK1S10_safe_32_config \
  1083. DK1S10_standard_32_config \
  1084. DK1S10_mtx_ldk_20_config \
  1085. DK1S10_config: unconfig
  1086. @ >include/config.h
  1087. @[ -z "$(findstring _safe_32,$@)" ] || \
  1088. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1089. echo "... NIOS 'safe_32' configuration" ; \
  1090. }
  1091. @[ -z "$(findstring _standard_32,$@)" ] || \
  1092. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1093. echo "... NIOS 'standard_32' configuration" ; \
  1094. }
  1095. @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
  1096. { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
  1097. echo "... NIOS 'mtx_ldk_20' configuration" ; \
  1098. }
  1099. @[ -z "$(findstring DK1S10_config,$@)" ] || \
  1100. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1101. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1102. }
  1103. @./mkconfig -a DK1S10 nios nios dk1s10 altera
  1104. ADNPESC1_DNPEVA2_base_32_config \
  1105. ADNPESC1_base_32_config \
  1106. ADNPESC1_config: unconfig
  1107. @ >include/config.h
  1108. @[ -z "$(findstring _DNPEVA2,$@)" ] || \
  1109. { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
  1110. echo "... DNP/EVA2 configuration" ; \
  1111. }
  1112. @[ -z "$(findstring _base_32,$@)" ] || \
  1113. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1114. echo "... NIOS 'base_32' configuration" ; \
  1115. }
  1116. @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
  1117. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1118. echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
  1119. }
  1120. @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
  1121. #========================================================================
  1122. # MicroBlaze
  1123. #========================================================================
  1124. #########################################################################
  1125. ## Microblaze
  1126. #########################################################################
  1127. suzaku_config: unconfig
  1128. @ >include/config.h
  1129. @echo "#define CONFIG_SUZAKU 1" >> include/config.h
  1130. @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
  1131. #########################################################################
  1132. #########################################################################
  1133. clean:
  1134. find . -type f \
  1135. \( -name 'core' -o -name '*.bak' -o -name '*~' \
  1136. -o -name '*.o' -o -name '*.a' \) -print \
  1137. | xargs rm -f
  1138. rm -f examples/hello_world examples/timer \
  1139. examples/eepro100_eeprom examples/sched \
  1140. examples/mem_to_mem_idma2intr examples/82559_eeprom
  1141. rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
  1142. rm -f tools/mpc86x_clk
  1143. rm -f tools/easylogo/easylogo tools/bmp_logo
  1144. rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
  1145. rm -f tools/env/fw_printenv tools/env/fw_setenv
  1146. rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
  1147. rm -f board/trab/trab_fkt
  1148. clobber: clean
  1149. find . -type f \( -name .depend \
  1150. -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
  1151. -print0 \
  1152. | xargs -0 rm -f
  1153. rm -f $(OBJS) *.bak tags TAGS
  1154. rm -fr *.*~
  1155. rm -f u-boot u-boot.map $(ALL)
  1156. rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
  1157. rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
  1158. rm -f include/asm/proc include/asm/arch include/asm
  1159. mrproper \
  1160. distclean: clobber unconfig
  1161. backup:
  1162. F=`basename $(TOPDIR)` ; cd .. ; \
  1163. gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  1164. #########################################################################