Makefile 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  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. PM520_config \
  214. PM520_DDR_config \
  215. PM520_ROMBOOT_config \
  216. PM520_ROMBOOT_DDR_config: unconfig
  217. @ >include/config.h
  218. @[ -z "$(findstring DDR,$@)" ] || \
  219. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  220. echo "... DDR memory revision" ; \
  221. }
  222. @[ -z "$(findstring ROMBOOT,$@)" ] || \
  223. { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  224. echo "... booting from 8-bit flash" ; \
  225. }
  226. @./mkconfig -a PM520 ppc mpc5xxx pm520
  227. MINI5200_config \
  228. EVAL5200_config \
  229. TOP5200_config: unconfig
  230. @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
  231. @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
  232. Total5100_config \
  233. Total5200_config \
  234. Total5200_lowboot_config \
  235. Total5200_Rev2_config \
  236. Total5200_Rev2_lowboot_config: unconfig
  237. @ >include/config.h
  238. @[ -z "$(findstring 5100,$@)" ] || \
  239. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  240. echo "... with MGT5100 processor" ; \
  241. }
  242. @[ -z "$(findstring 5200,$@)" ] || \
  243. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  244. echo "... with MPC5200 processor" ; \
  245. }
  246. @[ -n "$(findstring Rev,$@)" ] || \
  247. { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
  248. echo "... revision 1 board" ; \
  249. }
  250. @[ -z "$(findstring Rev2_,$@)" ] || \
  251. { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
  252. echo "... revision 2 board" ; \
  253. }
  254. @[ -z "$(findstring lowboot_,$@)" ] || \
  255. { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
  256. echo "... with lowboot configuration" ; \
  257. }
  258. @./mkconfig -a Total5200 ppc mpc5xxx total5200
  259. TQM5200_AA_config \
  260. TQM5200_AB_config \
  261. TQM5200_AC_config \
  262. MiniFAP_config: unconfig
  263. @ >include/config.h
  264. @[ -z "$(findstring MiniFAP,$@)" ] || \
  265. { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
  266. echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
  267. echo "... TQM5200_AC on MiniFAP" ; \
  268. }
  269. @[ -z "$(findstring AA,$@)" ] || \
  270. { echo "#define CONFIG_TQM5200_AA" >>include/config.h ; \
  271. echo "... with 4 MB Flash, 16 MB SDRAM, 32 kB EEPROM" ; \
  272. }
  273. @[ -z "$(findstring AB,$@)" ] || \
  274. { echo "#define CONFIG_TQM5200_AB" >>include/config.h ; \
  275. echo "... with 64 MB Flash, 64 MB SDRAM, 32 kB EEPROM, 512 kB SRAM" ; \
  276. echo "... with Graphics Controller"; \
  277. }
  278. @[ -z "$(findstring AC,$@)" ] || \
  279. { echo "#define CONFIG_TQM5200_AC" >>include/config.h ; \
  280. echo "... with 4 MB Flash, 128 MB SDRAM" ; \
  281. echo "... with Graphics Controller"; \
  282. }
  283. @./mkconfig -a TQM5200 ppc mpc5xxx tqm5200
  284. #########################################################################
  285. ## MPC8xx Systems
  286. #########################################################################
  287. Adder_config \
  288. Adder87x_config \
  289. AdderII_config \
  290. : unconfig
  291. $(if $(findstring AdderII,$@), \
  292. @echo "#define CONFIG_MPC852T" > include/config.h)
  293. @./mkconfig -a Adder ppc mpc8xx adder
  294. ADS860_config \
  295. FADS823_config \
  296. FADS850SAR_config \
  297. MPC86xADS_config \
  298. MPC885ADS_config \
  299. FADS860T_config: unconfig
  300. @./mkconfig $(@:_config=) ppc mpc8xx fads
  301. AMX860_config : unconfig
  302. @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
  303. c2mon_config: unconfig
  304. @./mkconfig $(@:_config=) ppc mpc8xx c2mon
  305. CCM_config: unconfig
  306. @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
  307. cogent_mpc8xx_config: unconfig
  308. @./mkconfig $(@:_config=) ppc mpc8xx cogent
  309. ELPT860_config: unconfig
  310. @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
  311. ESTEEM192E_config: unconfig
  312. @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
  313. ETX094_config : unconfig
  314. @./mkconfig $(@:_config=) ppc mpc8xx etx094
  315. FLAGADM_config: unconfig
  316. @./mkconfig $(@:_config=) ppc mpc8xx flagadm
  317. xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
  318. GEN860T_SC_config \
  319. GEN860T_config: unconfig
  320. @ >include/config.h
  321. @[ -z "$(findstring _SC,$@)" ] || \
  322. { echo "#define CONFIG_SC" >>include/config.h ; \
  323. echo "With reduced H/W feature set (SC)..." ; \
  324. }
  325. @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
  326. GENIETV_config: unconfig
  327. @./mkconfig $(@:_config=) ppc mpc8xx genietv
  328. GTH_config: unconfig
  329. @./mkconfig $(@:_config=) ppc mpc8xx gth
  330. hermes_config : unconfig
  331. @./mkconfig $(@:_config=) ppc mpc8xx hermes
  332. HMI10_config : unconfig
  333. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  334. IAD210_config: unconfig
  335. @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
  336. xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
  337. ICU862_100MHz_config \
  338. ICU862_config: unconfig
  339. @ >include/config.h
  340. @[ -z "$(findstring _100MHz,$@)" ] || \
  341. { echo "#define CONFIG_100MHz" >>include/config.h ; \
  342. echo "... with 100MHz system clock" ; \
  343. }
  344. @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
  345. IP860_config : unconfig
  346. @./mkconfig $(@:_config=) ppc mpc8xx ip860
  347. IVML24_256_config \
  348. IVML24_128_config \
  349. IVML24_config: unconfig
  350. @ >include/config.h
  351. @[ -z "$(findstring IVML24_config,$@)" ] || \
  352. { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
  353. }
  354. @[ -z "$(findstring IVML24_128_config,$@)" ] || \
  355. { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
  356. }
  357. @[ -z "$(findstring IVML24_256_config,$@)" ] || \
  358. { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
  359. }
  360. @./mkconfig -a IVML24 ppc mpc8xx ivm
  361. IVMS8_256_config \
  362. IVMS8_128_config \
  363. IVMS8_config: unconfig
  364. @ >include/config.h
  365. @[ -z "$(findstring IVMS8_config,$@)" ] || \
  366. { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
  367. }
  368. @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
  369. { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
  370. }
  371. @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
  372. { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
  373. }
  374. @./mkconfig -a IVMS8 ppc mpc8xx ivm
  375. KUP4K_config : unconfig
  376. @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
  377. KUP4X_config : unconfig
  378. @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
  379. LANTEC_config : unconfig
  380. @./mkconfig $(@:_config=) ppc mpc8xx lantec
  381. lwmon_config: unconfig
  382. @./mkconfig $(@:_config=) ppc mpc8xx lwmon
  383. MBX_config \
  384. MBX860T_config: unconfig
  385. @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
  386. MHPC_config: unconfig
  387. @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
  388. MVS1_config : unconfig
  389. @./mkconfig $(@:_config=) ppc mpc8xx mvs1
  390. xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
  391. NETVIA_V2_config \
  392. NETVIA_config: unconfig
  393. @ >include/config.h
  394. @[ -z "$(findstring NETVIA_config,$@)" ] || \
  395. { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
  396. echo "... Version 1" ; \
  397. }
  398. @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
  399. { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
  400. echo "... Version 2" ; \
  401. }
  402. @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
  403. xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
  404. NETPHONE_V2_config \
  405. NETPHONE_config: unconfig
  406. @ >include/config.h
  407. @[ -z "$(findstring NETPHONE_config,$@)" ] || \
  408. { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
  409. }
  410. @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
  411. { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
  412. }
  413. @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
  414. xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
  415. NETTA_ISDN_6412_SWAPHOOK_config \
  416. NETTA_ISDN_SWAPHOOK_config \
  417. NETTA_6412_SWAPHOOK_config \
  418. NETTA_SWAPHOOK_config \
  419. NETTA_ISDN_6412_config \
  420. NETTA_ISDN_config \
  421. NETTA_6412_config \
  422. NETTA_config: unconfig
  423. @ >include/config.h
  424. @[ -z "$(findstring ISDN_,$@)" ] || \
  425. { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
  426. }
  427. @[ -n "$(findstring ISDN_,$@)" ] || \
  428. { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
  429. }
  430. @[ -z "$(findstring 6412_,$@)" ] || \
  431. { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
  432. }
  433. @[ -n "$(findstring 6412_,$@)" ] || \
  434. { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
  435. }
  436. @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
  437. { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
  438. }
  439. @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
  440. { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
  441. }
  442. @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
  443. xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
  444. NETTA2_V2_config \
  445. NETTA2_config: unconfig
  446. @ >include/config.h
  447. @[ -z "$(findstring NETTA2_config,$@)" ] || \
  448. { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
  449. }
  450. @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
  451. { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
  452. }
  453. @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
  454. NC650_config: unconfig
  455. @./mkconfig $(@:_config=) ppc mpc8xx nc650
  456. NX823_config: unconfig
  457. @./mkconfig $(@:_config=) ppc mpc8xx nx823
  458. pcu_e_config: unconfig
  459. @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
  460. QS850_config: unconfig
  461. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  462. QS823_config: unconfig
  463. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  464. QS860T_config: unconfig
  465. @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
  466. R360MPI_config: unconfig
  467. @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
  468. RBC823_config: unconfig
  469. @./mkconfig $(@:_config=) ppc mpc8xx rbc823
  470. RPXClassic_config: unconfig
  471. @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
  472. RPXlite_config: unconfig
  473. @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
  474. RPXlite_DW_64_config \
  475. RPXlite_DW_LCD_config \
  476. RPXlite_DW_64_LCD_config \
  477. RPXlite_DW_NVRAM_config \
  478. RPXlite_DW_NVRAM_64_config \
  479. RPXlite_DW_NVRAM_LCD_config \
  480. RPXlite_DW_NVRAM_64_LCD_config \
  481. RPXlite_DW_config: unconfig
  482. @ >include/config.h
  483. @[ -z "$(findstring _64,$@)" ] || \
  484. { echo "#define RPXlite_64MHz" >>include/config.h ; \
  485. echo "... with 64MHz system clock ..."; \
  486. }
  487. @[ -z "$(findstring _LCD,$@)" ] || \
  488. { echo "#define CONFIG_LCD" >>include/config.h ; \
  489. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  490. echo "... with LCD display ..."; \
  491. }
  492. @[ -z "$(findstring _NVRAM,$@)" ] || \
  493. { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
  494. echo "... with ENV in NVRAM ..."; \
  495. }
  496. @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
  497. rmu_config: unconfig
  498. @./mkconfig $(@:_config=) ppc mpc8xx rmu
  499. RRvision_config: unconfig
  500. @./mkconfig $(@:_config=) ppc mpc8xx RRvision
  501. RRvision_LCD_config: unconfig
  502. @echo "#define CONFIG_LCD" >include/config.h
  503. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  504. @./mkconfig -a RRvision ppc mpc8xx RRvision
  505. SM850_config : unconfig
  506. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  507. SPD823TS_config: unconfig
  508. @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
  509. svm_sc8xx_config: unconfig
  510. @ >include/config.h
  511. @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
  512. SXNI855T_config: unconfig
  513. @./mkconfig $(@:_config=) ppc mpc8xx sixnet
  514. # EMK MPC8xx based modules
  515. TOP860_config: unconfig
  516. @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
  517. # Play some tricks for configuration selection
  518. # Only 855 and 860 boards may come with FEC
  519. # and only 823 boards may have LCD support
  520. xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
  521. FPS850L_config \
  522. FPS860L_config \
  523. NSCU_config \
  524. TQM823L_config \
  525. TQM823L_LCD_config \
  526. TQM850L_config \
  527. TQM855L_config \
  528. TQM860L_config \
  529. TQM862L_config \
  530. TQM823M_config \
  531. TQM850M_config \
  532. TQM855M_config \
  533. TQM860M_config \
  534. TQM862M_config \
  535. TQM866M_config: unconfig
  536. @ >include/config.h
  537. @[ -z "$(findstring _LCD,$@)" ] || \
  538. { echo "#define CONFIG_LCD" >>include/config.h ; \
  539. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  540. echo "... with LCD display" ; \
  541. }
  542. @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
  543. TTTech_config: unconfig
  544. @echo "#define CONFIG_LCD" >include/config.h
  545. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  546. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  547. v37_config: unconfig
  548. @echo "#define CONFIG_LCD" >include/config.h
  549. @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
  550. @./mkconfig $(@:_config=) ppc mpc8xx v37
  551. wtk_config: unconfig
  552. @echo "#define CONFIG_LCD" >include/config.h
  553. @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
  554. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  555. #########################################################################
  556. ## PPC4xx Systems
  557. #########################################################################
  558. xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
  559. ADCIOP_config: unconfig
  560. @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
  561. AR405_config: unconfig
  562. @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
  563. ASH405_config: unconfig
  564. @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
  565. BUBINGA405EP_config: unconfig
  566. @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
  567. CANBT_config: unconfig
  568. @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
  569. CATcenter_config: unconfig
  570. @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
  571. @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
  572. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  573. CPCI405_config \
  574. CPCI4052_config \
  575. CPCI405AB_config: unconfig
  576. @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
  577. @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
  578. CPCI440_config: unconfig
  579. @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
  580. CPCIISER4_config: unconfig
  581. @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
  582. CRAYL1_config: unconfig
  583. @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
  584. csb272_config: unconfig
  585. @./mkconfig $(@:_config=) ppc ppc4xx csb272
  586. csb472_config: unconfig
  587. @./mkconfig $(@:_config=) ppc ppc4xx csb472
  588. DASA_SIM_config: unconfig
  589. @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
  590. DP405_config: unconfig
  591. @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
  592. DU405_config: unconfig
  593. @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
  594. EBONY_config: unconfig
  595. @./mkconfig $(@:_config=) ppc ppc4xx ebony
  596. ERIC_config: unconfig
  597. @./mkconfig $(@:_config=) ppc ppc4xx eric
  598. EXBITGEN_config: unconfig
  599. @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
  600. HUB405_config: unconfig
  601. @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
  602. JSE_config: unconfig
  603. @./mkconfig $(@:_config=) ppc ppc4xx jse
  604. MIP405_config: unconfig
  605. @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
  606. MIP405T_config: unconfig
  607. @echo "#define CONFIG_MIP405T" >include/config.h
  608. @echo "Enable subset config for MIP405T"
  609. @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
  610. ML2_config: unconfig
  611. @./mkconfig $(@:_config=) ppc ppc4xx ml2
  612. ml300_config: unconfig
  613. @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
  614. OCOTEA_config: unconfig
  615. @./mkconfig $(@:_config=) ppc ppc4xx ocotea
  616. OCRTC_config \
  617. ORSG_config: unconfig
  618. @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
  619. PCI405_config: unconfig
  620. @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
  621. PIP405_config: unconfig
  622. @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
  623. PLU405_config: unconfig
  624. @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
  625. PMC405_config: unconfig
  626. @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
  627. PPChameleonEVB_config \
  628. PPChameleonEVB_BA_25_config \
  629. PPChameleonEVB_ME_25_config \
  630. PPChameleonEVB_HI_25_config \
  631. PPChameleonEVB_BA_33_config \
  632. PPChameleonEVB_ME_33_config \
  633. PPChameleonEVB_HI_33_config: unconfig
  634. @ >include/config.h
  635. @[ -z "$(findstring _MODEL_BA,$@)" ] || \
  636. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
  637. echo "... BASIC model" ; \
  638. }
  639. @[ -z "$(findstring _MODEL_ME,$@)" ] || \
  640. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
  641. echo "... MEDIUM model" ; \
  642. }
  643. @[ -z "$(findstring _MODEL_HI,$@)" ] || \
  644. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
  645. echo "... HIGH-END model" ; \
  646. }
  647. @[ -z "$(findstring _25,$@)" ] || \
  648. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  649. echo " SysClk = 25MHz" ; \
  650. }
  651. @[ -z "$(findstring _33,$@)" ] || \
  652. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  653. echo " SysClk = 33MHz" ; \
  654. }
  655. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  656. VOH405_config: unconfig
  657. @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
  658. W7OLMC_config \
  659. W7OLMG_config: unconfig
  660. @./mkconfig $(@:_config=) ppc ppc4xx w7o
  661. WALNUT405_config: unconfig
  662. @./mkconfig $(@:_config=) ppc ppc4xx walnut405
  663. XPEDITE1K_config: unconfig
  664. @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
  665. #########################################################################
  666. ## MPC824x Systems
  667. #########################################################################
  668. xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
  669. A3000_config: unconfig
  670. @./mkconfig $(@:_config=) ppc mpc824x a3000
  671. BMW_config: unconfig
  672. @./mkconfig $(@:_config=) ppc mpc824x bmw
  673. CPC45_config \
  674. CPC45_ROMBOOT_config: unconfig
  675. @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
  676. @cd ./include ; \
  677. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  678. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  679. echo "... booting from 8-bit flash" ; \
  680. else \
  681. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  682. echo "... booting from 64-bit flash" ; \
  683. fi; \
  684. echo "export CONFIG_BOOT_ROM" >> config.mk;
  685. CU824_config: unconfig
  686. @./mkconfig $(@:_config=) ppc mpc824x cu824
  687. debris_config: unconfig
  688. @./mkconfig $(@:_config=) ppc mpc824x debris etin
  689. eXalion_config: unconfig
  690. @./mkconfig $(@:_config=) ppc mpc824x eXalion
  691. MOUSSE_config: unconfig
  692. @./mkconfig $(@:_config=) ppc mpc824x mousse
  693. MUSENKI_config: unconfig
  694. @./mkconfig $(@:_config=) ppc mpc824x musenki
  695. MVBLUE_config: unconfig
  696. @./mkconfig $(@:_config=) ppc mpc824x mvblue
  697. OXC_config: unconfig
  698. @./mkconfig $(@:_config=) ppc mpc824x oxc
  699. PN62_config: unconfig
  700. @./mkconfig $(@:_config=) ppc mpc824x pn62
  701. Sandpoint8240_config: unconfig
  702. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  703. Sandpoint8245_config: unconfig
  704. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  705. sbc8240_config: unconfig
  706. @./mkconfig $(@:_config=) ppc mpc824x sbc8240
  707. SL8245_config: unconfig
  708. @./mkconfig $(@:_config=) ppc mpc824x sl8245
  709. utx8245_config: unconfig
  710. @./mkconfig $(@:_config=) ppc mpc824x utx8245
  711. #########################################################################
  712. ## MPC8260 Systems
  713. #########################################################################
  714. atc_config: unconfig
  715. @./mkconfig $(@:_config=) ppc mpc8260 atc
  716. cogent_mpc8260_config: unconfig
  717. @./mkconfig $(@:_config=) ppc mpc8260 cogent
  718. CPU86_config \
  719. CPU86_ROMBOOT_config: unconfig
  720. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
  721. @cd ./include ; \
  722. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  723. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  724. echo "... booting from 8-bit flash" ; \
  725. else \
  726. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  727. echo "... booting from 64-bit flash" ; \
  728. fi; \
  729. echo "export CONFIG_BOOT_ROM" >> config.mk;
  730. ep8260_config: unconfig
  731. @./mkconfig $(@:_config=) ppc mpc8260 ep8260
  732. gw8260_config: unconfig
  733. @./mkconfig $(@:_config=) ppc mpc8260 gw8260
  734. hymod_config: unconfig
  735. @./mkconfig $(@:_config=) ppc mpc8260 hymod
  736. IPHASE4539_config: unconfig
  737. @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
  738. ISPAN_config \
  739. ISPAN_REVB_config: unconfig
  740. @if [ "$(findstring _REVB_,$@)" ] ; then \
  741. echo "#define CFG_REV_B" > include/config.h ; \
  742. fi
  743. @./mkconfig -a ISPAN ppc mpc8260 ispan
  744. MPC8260ADS_config \
  745. MPC8260ADS_33MHz_config \
  746. MPC8260ADS_40MHz_config \
  747. MPC8272ADS_config \
  748. PQ2FADS_config \
  749. PQ2FADS-VR_config \
  750. PQ2FADS-ZU_config \
  751. PQ2FADS-ZU_66MHz_config \
  752. : unconfig
  753. $(if $(findstring PQ2FADS,$@), \
  754. @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
  755. @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
  756. $(if $(findstring MHz,$@), \
  757. @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
  758. $(if $(findstring VR,$@), \
  759. @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
  760. @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
  761. MPC8266ADS_config: unconfig
  762. @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
  763. # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
  764. PM825_config \
  765. PM825_ROMBOOT_config \
  766. PM825_BIGFLASH_config \
  767. PM825_ROMBOOT_BIGFLASH_config \
  768. PM826_config \
  769. PM826_ROMBOOT_config \
  770. PM826_BIGFLASH_config \
  771. PM826_ROMBOOT_BIGFLASH_config: unconfig
  772. @if [ "$(findstring PM825_,$@)" ] ; then \
  773. echo "#define CONFIG_PCI" >include/config.h ; \
  774. else \
  775. >include/config.h ; \
  776. fi
  777. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  778. echo "... booting from 8-bit flash" ; \
  779. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  780. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  781. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  782. echo "... with 32 MB Flash" ; \
  783. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  784. fi; \
  785. else \
  786. echo "... booting from 64-bit flash" ; \
  787. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  788. echo "... with 32 MB Flash" ; \
  789. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  790. echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
  791. else \
  792. echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
  793. fi; \
  794. fi
  795. @./mkconfig -a PM826 ppc mpc8260 pm826
  796. PM828_config \
  797. PM828_PCI_config \
  798. PM828_ROMBOOT_config \
  799. PM828_ROMBOOT_PCI_config: unconfig
  800. @if [ -z "$(findstring _PCI_,$@)" ] ; then \
  801. echo "#define CONFIG_PCI" >>include/config.h ; \
  802. echo "... with PCI enabled" ; \
  803. else \
  804. >include/config.h ; \
  805. fi
  806. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  807. echo "... booting from 8-bit flash" ; \
  808. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  809. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  810. fi
  811. @./mkconfig -a PM828 ppc mpc8260 pm828
  812. ppmc8260_config: unconfig
  813. @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
  814. RPXsuper_config: unconfig
  815. @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
  816. rsdproto_config: unconfig
  817. @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
  818. sacsng_config: unconfig
  819. @./mkconfig $(@:_config=) ppc mpc8260 sacsng
  820. sbc8260_config: unconfig
  821. @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
  822. SCM_config: unconfig
  823. @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
  824. TQM8255_AA_config \
  825. TQM8260_AA_config \
  826. TQM8260_AB_config \
  827. TQM8260_AC_config \
  828. TQM8260_AD_config \
  829. TQM8260_AE_config \
  830. TQM8260_AF_config \
  831. TQM8260_AG_config \
  832. TQM8260_AH_config \
  833. TQM8265_AA_config: unconfig
  834. @case "$@" in \
  835. TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
  836. TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
  837. TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  838. TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  839. TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  840. TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
  841. TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  842. TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
  843. TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
  844. TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
  845. esac; \
  846. >include/config.h ; \
  847. if [ "$${CTYPE}" != "MPC8260" ] ; then \
  848. echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
  849. fi; \
  850. echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
  851. echo "... with $${CFREQ}MHz system clock" ; \
  852. if [ "$${CACHE}" == "yes" ] ; then \
  853. echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
  854. echo "... with L2 Cache support" ; \
  855. else \
  856. echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
  857. echo "... without L2 Cache support" ; \
  858. fi; \
  859. if [ "$${BMODE}" == "60x" ] ; then \
  860. echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
  861. echo "... with 60x Bus Mode" ; \
  862. else \
  863. echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
  864. echo "... without 60x Bus Mode" ; \
  865. fi
  866. @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
  867. ZPC1900_config: unconfig
  868. @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
  869. #========================================================================
  870. # M68K
  871. #========================================================================
  872. #########################################################################
  873. ## Coldfire
  874. #########################################################################
  875. M5272C3_config : unconfig
  876. @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
  877. M5282EVB_config : unconfig
  878. @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
  879. #########################################################################
  880. ## MPC85xx Systems
  881. #########################################################################
  882. MPC8540ADS_config: unconfig
  883. @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
  884. MPC8560ADS_config: unconfig
  885. @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
  886. stxgp3_config: unconfig
  887. @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
  888. sbc8560_config \
  889. sbc8560_33_config \
  890. sbc8560_66_config: unconfig
  891. @if [ "$(findstring _66_,$@)" ] ; then \
  892. echo "#define CONFIG_PCI_66" >>include/config.h ; \
  893. echo "... 66 MHz PCI" ; \
  894. else \
  895. >include/config.h ; \
  896. echo "... 33 MHz PCI" ; \
  897. fi
  898. @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
  899. #########################################################################
  900. ## 74xx/7xx Systems
  901. #########################################################################
  902. AmigaOneG3SE_config: unconfig
  903. @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
  904. BAB7xx_config: unconfig
  905. @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
  906. DB64360_config: unconfig
  907. @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
  908. DB64460_config: unconfig
  909. @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
  910. ELPPC_config: unconfig
  911. @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
  912. EVB64260_config \
  913. EVB64260_750CX_config: unconfig
  914. @./mkconfig EVB64260 ppc 74xx_7xx evb64260
  915. P3G4_config: unconfig
  916. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  917. PCIPPC2_config \
  918. PCIPPC6_config: unconfig
  919. @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
  920. ZUMA_config: unconfig
  921. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  922. #========================================================================
  923. # ARM
  924. #========================================================================
  925. #########################################################################
  926. ## StrongARM Systems
  927. #########################################################################
  928. assabet_config : unconfig
  929. @./mkconfig $(@:_config=) arm sa1100 assabet
  930. dnp1110_config : unconfig
  931. @./mkconfig $(@:_config=) arm sa1100 dnp1110
  932. gcplus_config : unconfig
  933. @./mkconfig $(@:_config=) arm sa1100 gcplus
  934. lart_config : unconfig
  935. @./mkconfig $(@:_config=) arm sa1100 lart
  936. shannon_config : unconfig
  937. @./mkconfig $(@:_config=) arm sa1100 shannon
  938. #########################################################################
  939. ## ARM92xT Systems
  940. #########################################################################
  941. xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
  942. xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
  943. xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
  944. integratorcp_config : unconfig
  945. @./mkconfig $(@:_config=) arm arm926ejs integratorcp
  946. integratorap_config : unconfig
  947. @./mkconfig $(@:_config=) arm arm926ejs integratorap
  948. lpd7a400_config \
  949. lpd7a404_config: unconfig
  950. @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
  951. mx1ads_config : unconfig
  952. @./mkconfig $(@:_config=) arm arm920t mx1ads
  953. mx1fs2_config : unconfig
  954. @./mkconfig $(@:_config=) arm arm920t mx1fs2
  955. omap1510inn_config : unconfig
  956. @./mkconfig $(@:_config=) arm arm925t omap1510inn
  957. omap5912osk_config : unconfig
  958. @./mkconfig $(@:_config=) arm arm926ejs omap5912osk
  959. omap1610inn_config \
  960. omap1610inn_cs0boot_config \
  961. omap1610inn_cs3boot_config \
  962. omap1610inn_cs_autoboot_config \
  963. omap1610h2_config \
  964. omap1610h2_cs0boot_config \
  965. omap1610h2_cs3boot_config \
  966. omap1610h2_cs_autoboot_config: unconfig
  967. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  968. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  969. echo "... configured for CS0 boot"; \
  970. elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
  971. echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
  972. echo "... configured for CS_AUTO boot"; \
  973. else \
  974. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  975. echo "... configured for CS3 boot"; \
  976. fi;
  977. @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
  978. omap730p2_config \
  979. omap730p2_cs0boot_config \
  980. omap730p2_cs3boot_config : unconfig
  981. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  982. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  983. echo "... configured for CS0 boot"; \
  984. else \
  985. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  986. echo "... configured for CS3 boot"; \
  987. fi;
  988. @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2
  989. scb9328_config : unconfig
  990. @./mkconfig $(@:_config=) arm arm920t scb9328
  991. smdk2400_config : unconfig
  992. @./mkconfig $(@:_config=) arm arm920t smdk2400
  993. smdk2410_config : unconfig
  994. @./mkconfig $(@:_config=) arm arm920t smdk2410
  995. SX1_config : unconfig
  996. @./mkconfig $(@:_config=) arm arm925t sx1
  997. # TRAB default configuration: 8 MB Flash, 32 MB RAM
  998. trab_config \
  999. trab_bigram_config \
  1000. trab_bigflash_config \
  1001. trab_old_config: unconfig
  1002. @ >include/config.h
  1003. @[ -z "$(findstring _bigram,$@)" ] || \
  1004. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1005. echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
  1006. echo "... with 8 MB Flash, 32 MB RAM" ; \
  1007. }
  1008. @[ -z "$(findstring _bigflash,$@)" ] || \
  1009. { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
  1010. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1011. echo "... with 16 MB Flash, 16 MB RAM" ; \
  1012. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1013. }
  1014. @[ -z "$(findstring _old,$@)" ] || \
  1015. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1016. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1017. echo "... with 8 MB Flash, 16 MB RAM" ; \
  1018. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1019. }
  1020. @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
  1021. VCMA9_config : unconfig
  1022. @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
  1023. versatile_config : unconfig
  1024. @./mkconfig $(@:_config=) arm arm926ejs versatile
  1025. #########################################################################
  1026. ## S3C44B0 Systems
  1027. #########################################################################
  1028. B2_config : unconfig
  1029. @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
  1030. #########################################################################
  1031. ## ARM720T Systems
  1032. #########################################################################
  1033. ep7312_config : unconfig
  1034. @./mkconfig $(@:_config=) arm arm720t ep7312
  1035. impa7_config : unconfig
  1036. @./mkconfig $(@:_config=) arm arm720t impa7
  1037. modnet50_config : unconfig
  1038. @./mkconfig $(@:_config=) arm arm720t modnet50
  1039. evb4510_config : unconfig
  1040. @./mkconfig $(@:_config=) arm arm720t evb4510
  1041. #########################################################################
  1042. ## AT91RM9200 Systems
  1043. #########################################################################
  1044. at91rm9200dk_config : unconfig
  1045. @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
  1046. #########################################################################
  1047. ## XScale Systems
  1048. #########################################################################
  1049. cerf250_config : unconfig
  1050. @./mkconfig $(@:_config=) arm pxa cerf250
  1051. cradle_config : unconfig
  1052. @./mkconfig $(@:_config=) arm pxa cradle
  1053. csb226_config : unconfig
  1054. @./mkconfig $(@:_config=) arm pxa csb226
  1055. innokom_config : unconfig
  1056. @./mkconfig $(@:_config=) arm pxa innokom
  1057. ixdp425_config : unconfig
  1058. @./mkconfig $(@:_config=) arm ixp ixdp425
  1059. lubbock_config : unconfig
  1060. @./mkconfig $(@:_config=) arm pxa lubbock
  1061. logodl_config : unconfig
  1062. @./mkconfig $(@:_config=) arm pxa logodl
  1063. wepep250_config : unconfig
  1064. @./mkconfig $(@:_config=) arm pxa wepep250
  1065. xm250_config : unconfig
  1066. @./mkconfig $(@:_config=) arm pxa xm250
  1067. xsengine_config : unconfig
  1068. @./mkconfig $(@:_config=) arm pxa xsengine
  1069. #========================================================================
  1070. # i386
  1071. #========================================================================
  1072. #########################################################################
  1073. ## AMD SC520 CDP
  1074. #########################################################################
  1075. sc520_cdp_config : unconfig
  1076. @./mkconfig $(@:_config=) i386 i386 sc520_cdp
  1077. sc520_spunk_config : unconfig
  1078. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1079. sc520_spunk_rel_config : unconfig
  1080. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1081. #========================================================================
  1082. # MIPS
  1083. #========================================================================
  1084. #########################################################################
  1085. ## MIPS32 4Kc
  1086. #########################################################################
  1087. xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
  1088. incaip_100MHz_config \
  1089. incaip_133MHz_config \
  1090. incaip_150MHz_config \
  1091. incaip_config: unconfig
  1092. @ >include/config.h
  1093. @[ -z "$(findstring _100MHz,$@)" ] || \
  1094. { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
  1095. echo "... with 100MHz system clock" ; \
  1096. }
  1097. @[ -z "$(findstring _133MHz,$@)" ] || \
  1098. { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
  1099. echo "... with 133MHz system clock" ; \
  1100. }
  1101. @[ -z "$(findstring _150MHz,$@)" ] || \
  1102. { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
  1103. echo "... with 150MHz system clock" ; \
  1104. }
  1105. @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
  1106. tb0229_config: unconfig
  1107. @./mkconfig $(@:_config=) mips mips tb0229
  1108. #########################################################################
  1109. ## MIPS32 AU1X00
  1110. #########################################################################
  1111. dbau1000_config : unconfig
  1112. @ >include/config.h
  1113. @echo "#define CONFIG_DBAU1000 1" >>include/config.h
  1114. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1115. dbau1100_config : unconfig
  1116. @ >include/config.h
  1117. @echo "#define CONFIG_DBAU1100 1" >>include/config.h
  1118. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1119. dbau1500_config : unconfig
  1120. @ >include/config.h
  1121. @echo "#define CONFIG_DBAU1500 1" >>include/config.h
  1122. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1123. #########################################################################
  1124. ## MIPS64 5Kc
  1125. #########################################################################
  1126. purple_config : unconfig
  1127. @./mkconfig $(@:_config=) mips mips purple
  1128. #========================================================================
  1129. # Nios
  1130. #========================================================================
  1131. #########################################################################
  1132. ## Nios32
  1133. #########################################################################
  1134. DK1C20_safe_32_config \
  1135. DK1C20_standard_32_config \
  1136. DK1C20_config: unconfig
  1137. @ >include/config.h
  1138. @[ -z "$(findstring _safe_32,$@)" ] || \
  1139. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1140. echo "... NIOS 'safe_32' configuration" ; \
  1141. }
  1142. @[ -z "$(findstring _standard_32,$@)" ] || \
  1143. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1144. echo "... NIOS 'standard_32' configuration" ; \
  1145. }
  1146. @[ -z "$(findstring DK1C20_config,$@)" ] || \
  1147. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1148. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1149. }
  1150. @./mkconfig -a DK1C20 nios nios dk1c20 altera
  1151. DK1S10_safe_32_config \
  1152. DK1S10_standard_32_config \
  1153. DK1S10_mtx_ldk_20_config \
  1154. DK1S10_config: unconfig
  1155. @ >include/config.h
  1156. @[ -z "$(findstring _safe_32,$@)" ] || \
  1157. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1158. echo "... NIOS 'safe_32' configuration" ; \
  1159. }
  1160. @[ -z "$(findstring _standard_32,$@)" ] || \
  1161. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1162. echo "... NIOS 'standard_32' configuration" ; \
  1163. }
  1164. @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
  1165. { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
  1166. echo "... NIOS 'mtx_ldk_20' configuration" ; \
  1167. }
  1168. @[ -z "$(findstring DK1S10_config,$@)" ] || \
  1169. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1170. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1171. }
  1172. @./mkconfig -a DK1S10 nios nios dk1s10 altera
  1173. ADNPESC1_DNPEVA2_base_32_config \
  1174. ADNPESC1_base_32_config \
  1175. ADNPESC1_config: unconfig
  1176. @ >include/config.h
  1177. @[ -z "$(findstring _DNPEVA2,$@)" ] || \
  1178. { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
  1179. echo "... DNP/EVA2 configuration" ; \
  1180. }
  1181. @[ -z "$(findstring _base_32,$@)" ] || \
  1182. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1183. echo "... NIOS 'base_32' configuration" ; \
  1184. }
  1185. @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
  1186. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1187. echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
  1188. }
  1189. @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
  1190. #========================================================================
  1191. # MicroBlaze
  1192. #========================================================================
  1193. #########################################################################
  1194. ## Microblaze
  1195. #########################################################################
  1196. suzaku_config: unconfig
  1197. @ >include/config.h
  1198. @echo "#define CONFIG_SUZAKU 1" >> include/config.h
  1199. @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
  1200. #########################################################################
  1201. #########################################################################
  1202. clean:
  1203. find . -type f \
  1204. \( -name 'core' -o -name '*.bak' -o -name '*~' \
  1205. -o -name '*.o' -o -name '*.a' \) -print \
  1206. | xargs rm -f
  1207. rm -f examples/hello_world examples/timer \
  1208. examples/eepro100_eeprom examples/sched \
  1209. examples/mem_to_mem_idma2intr examples/82559_eeprom
  1210. rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
  1211. rm -f tools/mpc86x_clk
  1212. rm -f tools/easylogo/easylogo tools/bmp_logo
  1213. rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
  1214. rm -f tools/env/fw_printenv tools/env/fw_setenv
  1215. rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
  1216. rm -f board/trab/trab_fkt
  1217. clobber: clean
  1218. find . -type f \( -name .depend \
  1219. -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
  1220. -print0 \
  1221. | xargs -0 rm -f
  1222. rm -f $(OBJS) *.bak tags TAGS
  1223. rm -fr *.*~
  1224. rm -f u-boot u-boot.map $(ALL)
  1225. rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
  1226. rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
  1227. rm -f include/asm/proc include/asm/arch include/asm
  1228. mrproper \
  1229. distclean: clobber unconfig
  1230. backup:
  1231. F=`basename $(TOPDIR)` ; cd .. ; \
  1232. gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  1233. #########################################################################