Makefile 44 KB

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