Makefile 56 KB

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