README 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742
  1. #
  2. # (C) Copyright 2000 - 2002
  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. Summary:
  24. ========
  25. This directory contains the source code for U-Boot, a boot loader for
  26. Embedded boards based on PowerPC and ARM processors, which can be
  27. installed in a boot ROM and used to initialize and test the hardware
  28. or to download and run application code.
  29. The development of U-Boot is closely related to Linux: some parts of
  30. the source code originate in the Linux source tree, we have some
  31. header files in common, and special provision has been made to
  32. support booting of Linux images.
  33. Some attention has been paid to make this software easily
  34. configurable and extendable. For instance, all monitor commands are
  35. implemented with the same call interface, so that it's very easy to
  36. add new commands. Also, instead of permanently adding rarely used
  37. code (for instance hardware test utilities) to the monitor, you can
  38. load and run it dynamically.
  39. Status:
  40. =======
  41. In general, all boards for which a configuration option exists in the
  42. Makefile have been tested to some extent and can be considered
  43. "working". In fact, many of them are used in production systems.
  44. In case of problems see the CHANGELOG and CREDITS files to find out
  45. who contributed the specific port.
  46. Where to get help:
  47. ==================
  48. In case you have questions about, problems with or contributions for
  49. U-Boot you should send a message to the U-Boot mailing list at
  50. <u-boot-users@lists.sourceforge.net>. There is also an archive of
  51. previous traffic on the mailing list - please search the archive
  52. before asking FAQ's. Please see
  53. http://lists.sourceforge.net/lists/listinfo/u-boot-users/
  54. Where we come from:
  55. ===================
  56. - start from 8xxrom sources
  57. - create PPCBoot project (http://sourceforge.net/projects/ppcboot)
  58. - clean up code
  59. - make it easier to add custom boards
  60. - make it possible to add other [PowerPC] CPUs
  61. - extend functions, especially:
  62. * Provide extended interface to Linux boot loader
  63. * S-Record download
  64. * network boot
  65. * PCMCIA / CompactFLash / ATA disk / SCSI ... boot
  66. - create ARMBoot project (http://sourceforge.net/projects/armboot)
  67. - add other CPU families (starting with ARM)
  68. - create U-Boot project (http://sourceforge.net/projects/u-boot)
  69. Names and Spelling:
  70. ===================
  71. The "official" name of this project is "Das U-Boot". The spelling
  72. "U-Boot" shall be used in all written text (documentation, comments
  73. in source files etc.). Example:
  74. This is the README file for the U-Boot project.
  75. File names etc. shall be based on the string "u-boot". Examples:
  76. include/asm-ppc/u-boot.h
  77. #include <asm/u-boot.h>
  78. Variable names, preprocessor constants etc. shall be either based on
  79. the string "u_boot" or on "U_BOOT". Example:
  80. U_BOOT_VERSION u_boot_logo
  81. IH_OS_U_BOOT u_boot_hush_start
  82. Directory Hierarchy:
  83. ====================
  84. - board Board dependend files
  85. - common Misc architecture independend functions
  86. - cpu CPU specific files
  87. - disk Code for disk drive partition handling
  88. - doc Documentation (don't expect too much)
  89. - drivers Common used device drivers
  90. - dtt Digital Thermometer and Thermostat drivers
  91. - examples Example code for standalone applications, etc.
  92. - include Header Files
  93. - disk Harddisk interface code
  94. - net Networking code
  95. - ppc Files generic to PowerPC architecture
  96. - post Power On Self Test
  97. - post/arch Symlink to architecture specific Power On Self Test
  98. - post/arch-ppc PowerPC architecture specific Power On Self Test
  99. - post/cpu/mpc8260 MPC8260 CPU specific Power On Self Test
  100. - post/cpu/mpc8xx MPC8xx CPU specific Power On Self Test
  101. - rtc Real Time Clock drivers
  102. - tools Tools to build S-Record or U-Boot images, etc.
  103. - cpu/74xx_7xx Files specific to Motorola MPC74xx and 7xx CPUs
  104. - cpu/mpc8xx Files specific to Motorola MPC8xx CPUs
  105. - cpu/mpc824x Files specific to Motorola MPC824x CPUs
  106. - cpu/mpc8260 Files specific to Motorola MPC8260 CPU
  107. - cpu/ppc4xx Files specific to IBM 4xx CPUs
  108. - board/RPXClassic
  109. Files specific to RPXClassic boards
  110. - board/RPXlite Files specific to RPXlite boards
  111. - board/c2mon Files specific to c2mon boards
  112. - board/cogent Files specific to Cogent boards
  113. (need further configuration)
  114. Files specific to CPCIISER4 boards
  115. - board/cpu86 Files specific to CPU86 boards
  116. - board/cray/ Files specific to boards manufactured by Cray
  117. - board/cray/L1 Files specific to L1 boards
  118. - board/cu824 Files specific to CU824 boards
  119. - board/ebony Files specific to IBM Ebony board
  120. - board/eric Files specific to ERIC boards
  121. - board/esd/ Files specific to boards manufactured by ESD
  122. - board/esd/adciop Files specific to ADCIOP boards
  123. - board/esd/ar405 Files specific to AR405 boards
  124. - board/esd/canbt Files specific to CANBT boards
  125. - board/esd/cpci405 Files specific to CPCI405 boards
  126. - board/esd/cpciiser4 Files specific to CPCIISER4 boards
  127. - board/esd/common Common files for ESD boards
  128. - board/esd/dasa_sim Files specific to DASA_SIM boards
  129. - board/esd/du405 Files specific to DU405 boards
  130. - board/esd/ocrtc Files specific to OCRTC boards
  131. - board/esd/pci405 Files specific to PCI405 boards
  132. - board/esteem192e
  133. Files specific to ESTEEM192E boards
  134. - board/etx094 Files specific to ETX_094 boards
  135. - board/evb64260
  136. Files specific to EVB64260 boards
  137. - board/fads Files specific to FADS boards
  138. - board/flagadm Files specific to FLAGADM boards
  139. - board/gen860t Files specific to GEN860T boards
  140. - board/genietv Files specific to GENIETV boards
  141. - board/gth Files specific to GTH boards
  142. - board/hermes Files specific to HERMES boards
  143. - board/hymod Files specific to HYMOD boards
  144. - board/icu862 Files specific to ICU862 boards
  145. - board/ip860 Files specific to IP860 boards
  146. - board/iphase4539
  147. Files specific to Interphase4539 boards
  148. - board/ivm Files specific to IVMS8/IVML24 boards
  149. - board/lantec Files specific to LANTEC boards
  150. - board/lwmon Files specific to LWMON boards
  151. - board/mbx8xx Files specific to MBX boards
  152. - board/mpc8260ads
  153. Files specific to MMPC8260ADS boards
  154. - board/mpl/ Files specific to boards manufactured by MPL
  155. - board/mpl/common Common files for MPL boards
  156. - board/mpl/pip405 Files specific to PIP405 boards
  157. - board/mpl/mip405 Files specific to MIP405 boards
  158. - board/musenki Files specific to MUSEKNI boards
  159. - board/mvs1 Files specific to MVS1 boards
  160. - board/nx823 Files specific to NX823 boards
  161. - board/oxc Files specific to OXC boards
  162. - board/pcippc2 Files specific to PCIPPC2/PCIPPC6 boards
  163. - board/pm826 Files specific to PM826 boards
  164. - board/ppmc8260
  165. Files specific to PPMC8260 boards
  166. - board/rpxsuper
  167. Files specific to RPXsuper boards
  168. - board/rsdproto
  169. Files specific to RSDproto boards
  170. - board/sandpoint
  171. Files specific to Sandpoint boards
  172. - board/sbc8260 Files specific to SBC8260 boards
  173. - board/sacsng Files specific to SACSng boards
  174. - board/siemens Files specific to boards manufactured by Siemens AG
  175. - board/siemens/CCM Files specific to CCM boards
  176. - board/siemens/IAD210 Files specific to IAD210 boards
  177. - board/siemens/SCM Files specific to SCM boards
  178. - board/siemens/pcu_e Files specific to PCU_E boards
  179. - board/sixnet Files specific to SIXNET boards
  180. - board/spd8xx Files specific to SPD8xxTS boards
  181. - board/tqm8260 Files specific to TQM8260 boards
  182. - board/tqm8xx Files specific to TQM8xxL boards
  183. - board/w7o Files specific to W7O boards
  184. - board/walnut405
  185. Files specific to Walnut405 boards
  186. - board/westel/ Files specific to boards manufactured by Westel Wireless
  187. - board/westel/amx860 Files specific to AMX860 boards
  188. - board/utx8245 Files specific to UTX8245 boards
  189. Software Configuration:
  190. =======================
  191. Configuration is usually done using C preprocessor defines; the
  192. rationale behind that is to avoid dead code whenever possible.
  193. There are two classes of configuration variables:
  194. * Configuration _OPTIONS_:
  195. These are selectable by the user and have names beginning with
  196. "CONFIG_".
  197. * Configuration _SETTINGS_:
  198. These depend on the hardware etc. and should not be meddled with if
  199. you don't know what you're doing; they have names beginning with
  200. "CFG_".
  201. Later we will add a configuration tool - probably similar to or even
  202. identical to what's used for the Linux kernel. Right now, we have to
  203. do the configuration by hand, which means creating some symbolic
  204. links and editing some configuration files. We use the TQM8xxL boards
  205. as an example here.
  206. Selection of Processor Architecture and Board Type:
  207. ---------------------------------------------------
  208. For all supported boards there are ready-to-use default
  209. configurations available; just type "make <board_name>_config".
  210. Example: For a TQM823L module type:
  211. cd u-boot
  212. make TQM823L_config
  213. For the Cogent platform, you need to specify the cpu type as well;
  214. e.g. "make cogent_mpc8xx_config". And also configure the cogent
  215. directory according to the instructions in cogent/README.
  216. Configuration Options:
  217. ----------------------
  218. Configuration depends on the combination of board and CPU type; all
  219. such information is kept in a configuration file
  220. "include/configs/<board_name>.h".
  221. Example: For a TQM823L module, all configuration settings are in
  222. "include/configs/TQM823L.h".
  223. Many of the options are named exactly as the corresponding Linux
  224. kernel configuration options. The intention is to make it easier to
  225. build a config tool - later.
  226. The following options need to be configured:
  227. - CPU Type: Define exactly one of
  228. PowerPC based CPUs:
  229. -------------------
  230. CONFIG_MPC823, CONFIG_MPC850, CONFIG_MPC855, CONFIG_MPC860
  231. or CONFIG_MPC824X, CONFIG_MPC8260
  232. or CONFIG_IOP480
  233. or CONFIG_405GP
  234. or CONFIG_440
  235. or CONFIG_MPC74xx
  236. ARM based CPUs:
  237. ---------------
  238. CONFIG_SA1110
  239. CONFIG_ARM7
  240. CONFIG_PXA250
  241. - Board Type: Define exactly one of
  242. PowerPC based boards:
  243. ---------------------
  244. CONFIG_ADCIOP, CONFIG_ICU862 CONFIG_RPXsuper,
  245. CONFIG_ADS860, CONFIG_IP860, CONFIG_SM850,
  246. CONFIG_AMX860, CONFIG_IPHASE4539, CONFIG_SPD823TS,
  247. CONFIG_AR405, CONFIG_IVML24, CONFIG_SXNI855T,
  248. CONFIG_BAB7xx, CONFIG_IVML24_128, CONFIG_Sandpoint8240,
  249. CONFIG_CANBT, CONFIG_IVML24_256, CONFIG_Sandpoint8245,
  250. CONFIG_CCM, CONFIG_IVMS8, CONFIG_TQM823L,
  251. CONFIG_CPCI405, CONFIG_IVMS8_128, CONFIG_TQM850L,
  252. CONFIG_CPCI4052, CONFIG_IVMS8_256, CONFIG_TQM855L,
  253. CONFIG_CPCIISER4, CONFIG_LANTEC, CONFIG_TQM860L,
  254. CONFIG_CPU86, CONFIG_MBX, CONFIG_TQM8260,
  255. CONFIG_CRAYL1, CONFIG_MBX860T, CONFIG_TTTech,
  256. CONFIG_CU824, CONFIG_MHPC, CONFIG_UTX8245,
  257. CONFIG_DASA_SIM, CONFIG_MIP405, CONFIG_W7OLMC,
  258. CONFIG_DU405, CONFIG_MOUSSE, CONFIG_W7OLMG,
  259. CONFIG_ELPPC, CONFIG_MPC8260ADS, CONFIG_WALNUT405,
  260. CONFIG_ERIC, CONFIG_MUSENKI, CONFIG_ZUMA,
  261. CONFIG_ESTEEM192E, CONFIG_MVS1, CONFIG_c2mon,
  262. CONFIG_ETX094, CONFIG_NX823, CONFIG_cogent_mpc8260,
  263. CONFIG_EVB64260, CONFIG_OCRTC, CONFIG_cogent_mpc8xx,
  264. CONFIG_FADS823, CONFIG_ORSG, CONFIG_ep8260,
  265. CONFIG_FADS850SAR, CONFIG_OXC, CONFIG_gw8260,
  266. CONFIG_FADS860T, CONFIG_PCI405, CONFIG_hermes,
  267. CONFIG_FLAGADM, CONFIG_PCIPPC2, CONFIG_hymod,
  268. CONFIG_FPS850L, CONFIG_PCIPPC6, CONFIG_lwmon,
  269. CONFIG_GEN860T, CONFIG_PIP405, CONFIG_pcu_e,
  270. CONFIG_GENIETV, CONFIG_PM826, CONFIG_ppmc8260,
  271. CONFIG_GTH, CONFIG_RPXClassic, CONFIG_rsdproto,
  272. CONFIG_IAD210, CONFIG_RPXlite, CONFIG_sbc8260,
  273. CONFIG_EBONY, CONFIG_sacsng, CONFIG_FPS860L
  274. ARM based boards:
  275. -----------------
  276. CONFIG_HHP_CRADLE, CONFIG_DNP1110, CONFIG_EP7312,
  277. CONFIG_IMPA7, CONFIG_LART, CONFIG_LUBBOCK,
  278. CONFIG_SHANNON, CONFIG_SMDK2400, CONFIG_SMDK2410,
  279. CONFIG_TRAB
  280. - CPU Module Type: (if CONFIG_COGENT is defined)
  281. Define exactly one of
  282. CONFIG_CMA286_60_OLD
  283. --- FIXME --- not tested yet:
  284. CONFIG_CMA286_60, CONFIG_CMA286_21, CONFIG_CMA286_60P,
  285. CONFIG_CMA287_23, CONFIG_CMA287_50
  286. - Motherboard Type: (if CONFIG_COGENT is defined)
  287. Define exactly one of
  288. CONFIG_CMA101, CONFIG_CMA102
  289. - Motherboard I/O Modules: (if CONFIG_COGENT is defined)
  290. Define one or more of
  291. CONFIG_CMA302
  292. - Motherboard Options: (if CONFIG_CMA101 or CONFIG_CMA102 are defined)
  293. Define one or more of
  294. CONFIG_LCD_HEARTBEAT - update a character position on
  295. the lcd display every second with
  296. a "rotator" |\-/|\-/
  297. - MPC824X Family Member (if CONFIG_MPC824X is defined)
  298. Define exactly one of
  299. CONFIG_MPC8240, CONFIG_MPC8245
  300. - 8xx CPU Options: (if using an 8xx cpu)
  301. Define one or more of
  302. CONFIG_8xx_GCLK_FREQ - if get_gclk_freq() can not work e.g.
  303. no 32KHz reference PIT/RTC clock
  304. - Clock Interface:
  305. CONFIG_CLOCKS_IN_MHZ
  306. U-Boot stores all clock information in Hz
  307. internally. For binary compatibility with older Linux
  308. kernels (which expect the clocks passed in the
  309. bd_info data to be in MHz) the environment variable
  310. "clocks_in_mhz" can be defined so that U-Boot
  311. converts clock data to MHZ before passing it to the
  312. Linux kernel.
  313. When CONFIG_CLOCKS_IN_MHZ is defined, a definition of
  314. "clocks_in_mhz=1" is automatically included in the
  315. default environment.
  316. - Console Interface:
  317. Depending on board, define exactly one serial port
  318. (like CONFIG_8xx_CONS_SMC1, CONFIG_8xx_CONS_SMC2,
  319. CONFIG_8xx_CONS_SCC1, ...), or switch off the serial
  320. console by defining CONFIG_8xx_CONS_NONE
  321. Note: if CONFIG_8xx_CONS_NONE is defined, the serial
  322. port routines must be defined elsewhere
  323. (i.e. serial_init(), serial_getc(), ...)
  324. CONFIG_CFB_CONSOLE
  325. Enables console device for a color framebuffer. Needs following
  326. defines (cf. smiLynxEM, i8042, board/eltec/bab7xx)
  327. VIDEO_FB_LITTLE_ENDIAN graphic memory organisation
  328. (default big endian)
  329. VIDEO_HW_RECTFILL graphic chip supports
  330. rectangle fill
  331. (cf. smiLynxEM)
  332. VIDEO_HW_BITBLT graphic chip supports
  333. bit-blit (cf. smiLynxEM)
  334. VIDEO_VISIBLE_COLS visible pixel columns
  335. (cols=pitch)
  336. VIDEO_VISIBLE_ROWS visible pixel rows
  337. VIDEO_PIXEL_SIZE bytes per pixel
  338. VIDEO_DATA_FORMAT graphic data format
  339. (0-5, cf. cfb_console.c)
  340. VIDEO_FB_ADRS framebuffer address
  341. VIDEO_KBD_INIT_FCT keyboard int fct
  342. (i.e. i8042_kbd_init())
  343. VIDEO_TSTC_FCT test char fct
  344. (i.e. i8042_tstc)
  345. VIDEO_GETC_FCT get char fct
  346. (i.e. i8042_getc)
  347. CONFIG_CONSOLE_CURSOR cursor drawing on/off
  348. (requires blink timer
  349. cf. i8042.c)
  350. CFG_CONSOLE_BLINK_COUNT blink interval (cf. i8042.c)
  351. CONFIG_CONSOLE_TIME display time/date info in
  352. upper right corner
  353. (requires CFG_CMD_DATE)
  354. CONFIG_VIDEO_LOGO display Linux logo in
  355. upper left corner
  356. CONFIG_CONSOLE_EXTRA_INFO
  357. addional board info beside
  358. the logo
  359. When CONFIG_CFB_CONSOLE is defined, video console is
  360. default i/o. Serial console can be forced with
  361. environment 'console=serial'.
  362. - Console Baudrate:
  363. CONFIG_BAUDRATE - in bps
  364. Select one of the baudrates listed in
  365. CFG_BAUDRATE_TABLE, see below.
  366. - Interrupt driven serial port input:
  367. CONFIG_SERIAL_SOFTWARE_FIFO
  368. PPC405GP only.
  369. Use an interrupt handler for receiving data on the
  370. serial port. It also enables using hardware handshake
  371. (RTS/CTS) and UART's built-in FIFO. Set the number of
  372. bytes the interrupt driven input buffer should have.
  373. Set to 0 to disable this feature (this is the default).
  374. This will also disable hardware handshake.
  375. - Boot Delay: CONFIG_BOOTDELAY - in seconds
  376. Delay before automatically booting the default image;
  377. set to -1 to disable autoboot.
  378. See doc/README.autoboot for these options that
  379. work with CONFIG_BOOTDELAY. None are required.
  380. CONFIG_BOOT_RETRY_TIME
  381. CONFIG_BOOT_RETRY_MIN
  382. CONFIG_AUTOBOOT_KEYED
  383. CONFIG_AUTOBOOT_PROMPT
  384. CONFIG_AUTOBOOT_DELAY_STR
  385. CONFIG_AUTOBOOT_STOP_STR
  386. CONFIG_AUTOBOOT_DELAY_STR2
  387. CONFIG_AUTOBOOT_STOP_STR2
  388. CONFIG_ZERO_BOOTDELAY_CHECK
  389. CONFIG_RESET_TO_RETRY
  390. - Autoboot Command:
  391. CONFIG_BOOTCOMMAND
  392. Only needed when CONFIG_BOOTDELAY is enabled;
  393. define a command string that is automatically executed
  394. when no character is read on the console interface
  395. within "Boot Delay" after reset.
  396. CONFIG_BOOTARGS
  397. This can be used to pass arguments to the bootm
  398. command. The value of CONFIG_BOOTARGS goes into the
  399. environment value "bootargs".
  400. CONFIG_RAMBOOT and CONFIG_NFSBOOT
  401. The value of these goes into the environment as
  402. "ramboot" and "nfsboot" respectively, and can be used
  403. as a convenience, when switching between booting from
  404. ram and nfs.
  405. - Pre-Boot Commands:
  406. CONFIG_PREBOOT
  407. When this option is #defined, the existence of the
  408. environment variable "preboot" will be checked
  409. immediately before starting the CONFIG_BOOTDELAY
  410. countdown and/or running the auto-boot command resp.
  411. entering interactive mode.
  412. This feature is especially useful when "preboot" is
  413. automatically generated or modified. For an example
  414. see the LWMON board specific code: here "preboot" is
  415. modified when the user holds down a certain
  416. combination of keys on the (special) keyboard when
  417. booting the systems
  418. - Serial Download Echo Mode:
  419. CONFIG_LOADS_ECHO
  420. If defined to 1, all characters received during a
  421. serial download (using the "loads" command) are
  422. echoed back. This might be needed by some terminal
  423. emulations (like "cu"), but may as well just take
  424. time on others. This setting #define's the initial
  425. value of the "loads_echo" environment variable.
  426. - Kgdb Serial Baudrate: (if CFG_CMD_KGDB is defined)
  427. CONFIG_KGDB_BAUDRATE
  428. Select one of the baudrates listed in
  429. CFG_BAUDRATE_TABLE, see below.
  430. - Monitor Functions:
  431. CONFIG_COMMANDS
  432. Most monitor functions can be selected (or
  433. de-selected) by adjusting the definition of
  434. CONFIG_COMMANDS; to select individual functions,
  435. #define CONFIG_COMMANDS by "OR"ing any of the
  436. following values:
  437. #define enables commands:
  438. -------------------------
  439. CFG_CMD_ASKENV * ask for env variable
  440. CFG_CMD_BDI bdinfo
  441. CFG_CMD_BEDBUG Include BedBug Debugger
  442. CFG_CMD_BOOTD bootd
  443. CFG_CMD_CACHE icache, dcache
  444. CFG_CMD_CONSOLE coninfo
  445. CFG_CMD_DATE * support for RTC, date/time...
  446. CFG_CMD_DHCP DHCP support
  447. CFG_CMD_ECHO * echo arguments
  448. CFG_CMD_EEPROM * EEPROM read/write support
  449. CFG_CMD_ELF bootelf, bootvx
  450. CFG_CMD_ENV saveenv
  451. CFG_CMD_FDC * Floppy Disk Support
  452. CFG_CMD_FDOS * Dos diskette Support
  453. CFG_CMD_FLASH flinfo, erase, protect
  454. CFG_CMD_FPGA FPGA device initialization support
  455. CFG_CMD_I2C * I2C serial bus support
  456. CFG_CMD_IDE * IDE harddisk support
  457. CFG_CMD_IMI iminfo
  458. CFG_CMD_IMMAP * IMMR dump support
  459. CFG_CMD_IRQ * irqinfo
  460. CFG_CMD_KGDB * kgdb
  461. CFG_CMD_LOADB loadb
  462. CFG_CMD_LOADS loads
  463. CFG_CMD_MEMORY md, mm, nm, mw, cp, cmp, crc, base,
  464. loop, mtest
  465. CFG_CMD_MII MII utility commands
  466. CFG_CMD_NET bootp, tftpboot, rarpboot
  467. CFG_CMD_PCI * pciinfo
  468. CFG_CMD_PCMCIA * PCMCIA support
  469. CFG_CMD_REGINFO * Register dump
  470. CFG_CMD_RUN run command in env variable
  471. CFG_CMD_SCSI * SCSI Support
  472. CFG_CMD_SETGETDCR Support for DCR Register access (4xx only)
  473. CFG_CMD_SPI * SPI serial bus support
  474. CFG_CMD_USB * USB support
  475. CFG_CMD_BSP * Board SPecific functions
  476. -----------------------------------------------
  477. CFG_CMD_ALL all
  478. CFG_CMD_DFL Default configuration; at the moment
  479. this is includes all commands, except
  480. the ones marked with "*" in the list
  481. above.
  482. If you don't define CONFIG_COMMANDS it defaults to
  483. CFG_CMD_DFL in include/cmd_confdefs.h. A board can
  484. override the default settings in the respective
  485. include file.
  486. EXAMPLE: If you want all functions except of network
  487. support you can write:
  488. #define CONFIG_COMMANDS (CFG_CMD_ALL & ~CFG_CMD_NET)
  489. Note: Don't enable the "icache" and "dcache" commands
  490. (configuration option CFG_CMD_CACHE) unless you know
  491. what you (and your U-Boot users) are doing. Data
  492. cache cannot be enabled on systems like the 8xx or
  493. 8260 (where accesses to the IMMR region must be
  494. uncached), and it cannot be disabled on all other
  495. systems where we (mis-) use the data cache to hold an
  496. initial stack and some data.
  497. XXX - this list needs to get updated!
  498. - Watchdog:
  499. CONFIG_WATCHDOG
  500. If this variable is defined, it enables watchdog
  501. support. There must support in the platform specific
  502. code for a watchdog. For the 8xx and 8260 CPUs, the
  503. SIU Watchdog feature is enabled in the SYPCR
  504. register.
  505. - Real-Time Clock:
  506. When CFG_CMD_DATE is selected, the type of the RTC
  507. has to be selected, too. Define exactly one of the
  508. following options:
  509. CONFIG_RTC_MPC8xx - use internal RTC of MPC8xx
  510. CONFIG_RTC_PCF8563 - use Philips PCF8563 RTC
  511. CONFIG_RTC_MC146818 - use MC146818 RTC
  512. CONFIG_RTC_DS1337 - use Maxim, Inc. DS1337 RTC
  513. - Timestamp Support:
  514. When CONFIG_TIMESTAMP is selected, the timestamp
  515. (date and time) of an image is printed by image
  516. commands like bootm or iminfo. This option is
  517. automatically enabled when you select CFG_CMD_DATE .
  518. - Partition Support:
  519. CONFIG_MAC_PARTITION and/or CONFIG_DOS_PARTITION
  520. and/or CONFIG_ISO_PARTITION
  521. If IDE or SCSI support is enabled (CFG_CMD_IDE or
  522. CFG_CMD_SCSI) you must configure support for at least
  523. one partition type as well.
  524. - IDE Reset method:
  525. CONFIG_IDE_RESET_ROUTINE
  526. Set this to define that instead of a reset Pin, the
  527. routine ide_set_reset(int idereset) will be used.
  528. - ATAPI Support:
  529. CONFIG_ATAPI
  530. Set this to enable ATAPI support.
  531. - SCSI Support:
  532. At the moment only there is only support for the
  533. SYM53C8XX SCSI controller; define
  534. CONFIG_SCSI_SYM53C8XX to enable it.
  535. CFG_SCSI_MAX_LUN [8], CFG_SCSI_MAX_SCSI_ID [7] and
  536. CFG_SCSI_MAX_DEVICE [CFG_SCSI_MAX_SCSI_ID *
  537. CFG_SCSI_MAX_LUN] can be adjusted to define the
  538. maximum numbers of LUNs, SCSI ID's and target
  539. devices.
  540. CFG_SCSI_SYM53C8XX_CCF to fix clock timing (80Mhz)
  541. - NETWORK Support (PCI):
  542. CONFIG_EEPRO100
  543. Support for Intel 82557/82559/82559ER chips.
  544. Optional CONFIG_EEPRO100_SROM_WRITE enables eeprom
  545. write routine for first time initialisation.
  546. CONFIG_TULIP
  547. Support for Digital 2114x chips.
  548. Optional CONFIG_TULIP_SELECT_MEDIA for board specific
  549. modem chip initialisation (KS8761/QS6611).
  550. CONFIG_NATSEMI
  551. Support for National dp83815 chips.
  552. CONFIG_NS8382X
  553. Support for National dp8382[01] gigabit chips.
  554. - USB Support:
  555. At the moment only the UHCI host controller is
  556. supported (PIP405, MIP405); define
  557. CONFIG_USB_UHCI to enable it.
  558. define CONFIG_USB_KEYBOARD to enable the USB Keyboard
  559. end define CONFIG_USB_STORAGE to enable the USB
  560. storage devices.
  561. Note:
  562. Supported are USB Keyboards and USB Floppy drives
  563. (TEAC FD-05PUB).
  564. - Keyboard Support:
  565. CONFIG_ISA_KEYBOARD
  566. Define this to enable standard (PC-Style) keyboard
  567. support
  568. CONFIG_I8042_KBD
  569. Standard PC keyboard driver with US (is default) and
  570. GERMAN key layout (switch via environment 'keymap=de') support.
  571. Export function i8042_kbd_init, i8042_tstc and i8042_getc
  572. for cfb_console. Supports cursor blinking.
  573. - Video support:
  574. CONFIG_VIDEO
  575. Define this to enable video support (for output to
  576. video).
  577. CONFIG_VIDEO_CT69000
  578. Enable Chips & Technologies 69000 Video chip
  579. CONFIG_VIDEO_SMI_LYNXEM
  580. Enable Silicon Motion SMI 712/710/810 Video chip
  581. Videomode are selected via environment 'videomode' with
  582. standard LiLo mode numbers.
  583. Following modes are supported (* is default):
  584. 800x600 1024x768 1280x1024
  585. 256 (8bit) 303* 305 307
  586. 65536 (16bit) 314 317 31a
  587. 16,7 Mill (24bit) 315 318 31b
  588. (i.e. setenv videomode 317; saveenv; reset;)
  589. - LCD Support: CONFIG_LCD
  590. Define this to enable LCD support (for output to LCD
  591. display); also select one of the supported displays
  592. by defining one of these:
  593. CONFIG_NEC_NL6648AC33:
  594. NEC NL6648AC33-18. Active, color, single scan.
  595. CONFIG_NEC_NL6648BC20
  596. NEC NL6648BC20-08. 6.5", 640x480.
  597. Active, color, single scan.
  598. CONFIG_SHARP_16x9
  599. Sharp 320x240. Active, color, single scan.
  600. It isn't 16x9, and I am not sure what it is.
  601. CONFIG_SHARP_LQ64D341
  602. Sharp LQ64D341 display, 640x480.
  603. Active, color, single scan.
  604. CONFIG_HLD1045
  605. HLD1045 display, 640x480.
  606. Active, color, single scan.
  607. CONFIG_OPTREX_BW
  608. Optrex CBL50840-2 NF-FW 99 22 M5
  609. or
  610. Hitachi LMG6912RPFC-00T
  611. or
  612. Hitachi SP14Q002
  613. 320x240. Black & white.
  614. Normally display is black on white background; define
  615. CFG_WHITE_ON_BLACK to get it inverted.
  616. - Ethernet address:
  617. CONFIG_ETHADDR
  618. CONFIG_ETH2ADDR
  619. CONFIG_ETH3ADDR
  620. Define a default value for ethernet address to use
  621. for the respective ethernet interface, in case this
  622. is not determined automatically.
  623. - IP address:
  624. CONFIG_IPADDR
  625. Define a default value for the IP address to use for
  626. the default ethernet interface, in case this is not
  627. determined through e.g. bootp.
  628. - Server IP address:
  629. CONFIG_SERVERIP
  630. Defines a default value for theIP address of a TFTP
  631. server to contact when using the "tftboot" command.
  632. - BOOTP Recovery Mode:
  633. CONFIG_BOOTP_RANDOM_DELAY
  634. If you have many targets in a network that try to
  635. boot using BOOTP, you may want to avoid that all
  636. systems send out BOOTP requests at precisely the same
  637. moment (which would happen for instance at recovery
  638. from a power failure, when all systems will try to
  639. boot, thus flooding the BOOTP server. Defining
  640. CONFIG_BOOTP_RANDOM_DELAY causes a random delay to be
  641. inserted before sending out BOOTP requests. The
  642. following delays are insterted then:
  643. 1st BOOTP request: delay 0 ... 1 sec
  644. 2nd BOOTP request: delay 0 ... 2 sec
  645. 3rd BOOTP request: delay 0 ... 4 sec
  646. 4th and following
  647. BOOTP requests: delay 0 ... 8 sec
  648. - Status LED: CONFIG_STATUS_LED
  649. Several configurations allow to display the current
  650. status using a LED. For instance, the LED will blink
  651. fast while running U-Boot code, stop blinking as
  652. soon as a reply to a BOOTP request was received, and
  653. start blinking slow once the Linux kernel is running
  654. (supported by a status LED driver in the Linux
  655. kernel). Defining CONFIG_STATUS_LED enables this
  656. feature in U-Boot.
  657. - CAN Support: CONFIG_CAN_DRIVER
  658. Defining CONFIG_CAN_DRIVER enables CAN driver support
  659. on those systems that support this (optional)
  660. feature, like the TQM8xxL modules.
  661. - I2C Support: CONFIG_HARD_I2C | CONFIG_SOFT_I2C
  662. Enables I2C serial bus commands. If this is selected,
  663. either CONFIG_HARD_I2C or CONFIG_SOFT_I2C must be defined
  664. to include the appropriate I2C driver.
  665. See also: common/cmd_i2c.c for a description of the
  666. command line interface.
  667. CONFIG_HARD_I2C
  668. Selects the CPM hardware driver for I2C.
  669. CONFIG_SOFT_I2C
  670. Use software (aka bit-banging) driver instead of CPM
  671. or similar hardware support for I2C. This is configured
  672. via the following defines.
  673. I2C_INIT
  674. (Optional). Any commands necessary to enable I2C
  675. controller or configure ports.
  676. I2C_PORT
  677. (Only for MPC8260 CPU). The I/O port to use (the code
  678. assumes both bits are on the same port). Valid values
  679. are 0..3 for ports A..D.
  680. I2C_ACTIVE
  681. The code necessary to make the I2C data line active
  682. (driven). If the data line is open collector, this
  683. define can be null.
  684. I2C_TRISTATE
  685. The code necessary to make the I2C data line tri-stated
  686. (inactive). If the data line is open collector, this
  687. define can be null.
  688. I2C_READ
  689. Code that returns TRUE if the I2C data line is high,
  690. FALSE if it is low.
  691. I2C_SDA(bit)
  692. If <bit> is TRUE, sets the I2C data line high. If it
  693. is FALSE, it clears it (low).
  694. I2C_SCL(bit)
  695. If <bit> is TRUE, sets the I2C clock line high. If it
  696. is FALSE, it clears it (low).
  697. I2C_DELAY
  698. This delay is invoked four times per clock cycle so this
  699. controls the rate of data transfer. The data rate thus
  700. is 1 / (I2C_DELAY * 4).
  701. - SPI Support: CONFIG_SPI
  702. Enables SPI driver (so far only tested with
  703. SPI EEPROM, also an instance works with Crystal A/D and
  704. D/As on the SACSng board)
  705. CONFIG_SPI_X
  706. Enables extended (16-bit) SPI EEPROM addressing.
  707. (symmetrical to CONFIG_I2C_X)
  708. CONFIG_SOFT_SPI
  709. Enables a software (bit-bang) SPI driver rather than
  710. using hardware support. This is a general purpose
  711. driver that only requires three general I/O port pins
  712. (two outputs, one input) to function. If this is
  713. defined, the board configuration must define several
  714. SPI configuration items (port pins to use, etc). For
  715. an example, see include/configs/sacsng.h.
  716. - FPGA Support: CONFIG_FPGA_COUNT
  717. Specify the number of FPGA devices to support.
  718. CONFIG_FPGA
  719. Used to specify the types of FPGA devices. For
  720. example,
  721. #define CONFIG_FPGA CFG_XILINX_VIRTEX2
  722. CFG_FPGA_PROG_FEEDBACK
  723. Enable printing of hash marks during FPGA
  724. configuration.
  725. CFG_FPGA_CHECK_BUSY
  726. Enable checks on FPGA configuration interface busy
  727. status by the configuration function. This option
  728. will require a board or device specific function to
  729. be written.
  730. CONFIG_FPGA_DELAY
  731. If defined, a function that provides delays in the
  732. FPGA configuration driver.
  733. CFG_FPGA_CHECK_CTRLC
  734. Allow Control-C to interrupt FPGA configuration
  735. CFG_FPGA_CHECK_ERROR
  736. Check for configuration errors during FPGA bitfile
  737. loading. For example, abort during Virtex II
  738. configuration if the INIT_B line goes low (which
  739. indicated a CRC error).
  740. CFG_FPGA_WAIT_INIT
  741. Maximum time to wait for the INIT_B line to deassert
  742. after PROB_B has been deasserted during a Virtex II
  743. FPGA configuration sequence. The default time is 500 mS.
  744. CFG_FPGA_WAIT_BUSY
  745. Maximum time to wait for BUSY to deassert during
  746. Virtex II FPGA configuration. The default is 5 mS.
  747. CFG_FPGA_WAIT_CONFIG
  748. Time to wait after FPGA configuration. The default is
  749. 200 mS.
  750. - FPGA Support: CONFIG_FPGA_COUNT
  751. Specify the number of FPGA devices to support.
  752. CONFIG_FPGA
  753. Used to specify the types of FPGA devices. For example,
  754. #define CONFIG_FPGA CFG_XILINX_VIRTEX2
  755. CFG_FPGA_PROG_FEEDBACK
  756. Enable printing of hash marks during FPGA configuration.
  757. CFG_FPGA_CHECK_BUSY
  758. Enable checks on FPGA configuration interface busy
  759. status by the configuration function. This option
  760. will require a board or device specific function to
  761. be written.
  762. CONFIG_FPGA_DELAY
  763. If defined, a function that provides delays in the FPGA
  764. configuration driver.
  765. CFG_FPGA_CHECK_CTRLC
  766. Allow Control-C to interrupt FPGA configuration
  767. CFG_FPGA_CHECK_ERROR
  768. Check for configuration errors during FPGA bitfile
  769. loading. For example, abort during Virtex II
  770. configuration if the INIT_B line goes low (which
  771. indicated a CRC error).
  772. CFG_FPGA_WAIT_INIT
  773. Maximum time to wait for the INIT_B line to deassert
  774. after PROB_B has been deasserted during a Virtex II
  775. FPGA configuration sequence. The default time is 500
  776. mS.
  777. CFG_FPGA_WAIT_BUSY
  778. Maximum time to wait for BUSY to deassert during
  779. Virtex II FPGA configuration. The default is 5 mS.
  780. CFG_FPGA_WAIT_CONFIG
  781. Time to wait after FPGA configuration. The default is
  782. 200 mS.
  783. - Configuration Management:
  784. CONFIG_IDENT_STRING
  785. If defined, this string will be added to the U-Boot
  786. version information (U_BOOT_VERSION)
  787. - Vendor Parameter Protection:
  788. U-Boot considers the values of the environment
  789. variables "serial#" (Board Serial Number) and
  790. "ethaddr" (Ethernet Address) to bb parameters that
  791. are set once by the board vendor / manufacturer, and
  792. protects these variables from casual modification by
  793. the user. Once set, these variables are read-only,
  794. and write or delete attempts are rejected. You can
  795. change this behviour:
  796. If CONFIG_ENV_OVERWRITE is #defined in your config
  797. file, the write protection for vendor parameters is
  798. completely disabled. Anybody can change or delte
  799. these parameters.
  800. Alternatively, if you #define _both_ CONFIG_ETHADDR
  801. _and_ CONFIG_OVERWRITE_ETHADDR_ONCE, a default
  802. ethernet address is installed in the environment,
  803. which can be changed exactly ONCE by the user. [The
  804. serial# is unaffected by this, i. e. it remains
  805. read-only.]
  806. - Protected RAM:
  807. CONFIG_PRAM
  808. Define this variable to enable the reservation of
  809. "protected RAM", i. e. RAM which is not overwritten
  810. by U-Boot. Define CONFIG_PRAM to hold the number of
  811. kB you want to reserve for pRAM. You can overwrite
  812. this default value by defining an environment
  813. variable "pram" to the number of kB you want to
  814. reserve. Note that the board info structure will
  815. still show the full amount of RAM. If pRAM is
  816. reserved, a new environment variable "mem" will
  817. automatically be defined to hold the amount of
  818. remaining RAM in a form that can be passed as boot
  819. argument to Linux, for instance like that:
  820. setenv bootargs ... mem=\$(mem)
  821. saveenv
  822. This way you can tell Linux not to use this memory,
  823. either, which results in a memory region that will
  824. not be affected by reboots.
  825. *WARNING* If your board configuration uses automatic
  826. detection of the RAM size, you must make sure that
  827. this memory test is non-destructive. So far, the
  828. following board configurations are known to be
  829. "pRAM-clean":
  830. ETX094, IVMS8, IVML24, SPD8xx, TQM8xxL,
  831. HERMES, IP860, RPXlite, LWMON, LANTEC,
  832. PCU_E, FLAGADM, TQM8260
  833. - Error Recovery:
  834. CONFIG_PANIC_HANG
  835. Define this variable to stop the system in case of a
  836. fatal error, so that you have to reset it manually.
  837. This is probably NOT a good idea for an embedded
  838. system where you want to system to reboot
  839. automatically as fast as possible, but it may be
  840. useful during development since you can try to debug
  841. the conditions that lead to the situation.
  842. CONFIG_NET_RETRY_COUNT
  843. This variable defines the number of retries for
  844. network operations like ARP, RARP, TFTP, or BOOTP
  845. before giving up the operation. If not defined, a
  846. default value of 5 is used.
  847. - Command Interpreter:
  848. CFG_HUSH_PARSER
  849. Define this variable to enable the "hush" shell (from
  850. Busybox) as command line interpreter, thus enabling
  851. powerful command line syntax like
  852. if...then...else...fi conditionals or `&&' and '||'
  853. constructs ("shell scripts").
  854. If undefined, you get the old, much simpler behaviour
  855. with a somewhat smaller memory footprint.
  856. CFG_PROMPT_HUSH_PS2
  857. This defines the secondary prompt string, which is
  858. printed when the command interpreter needs more input
  859. to complete a command. Usually "> ".
  860. Note:
  861. In the current implementation, the local variables
  862. space and global environment variables space are
  863. separated. Local variables are those you define by
  864. simply typing like `name=value'. To access a local
  865. variable later on, you have write `$name' or
  866. `${name}'; variable directly by typing say `$name' at
  867. the command prompt.
  868. Global environment variables are those you use
  869. setenv/printenv to work with. To run a command stored
  870. in such a variable, you need to use the run command,
  871. and you must not use the '$' sign to access them.
  872. To store commands and special characters in a
  873. variable, please use double quotation marks
  874. surrounding the whole text of the variable, instead
  875. of the backslashes before semicolons and special
  876. symbols.
  877. - Default Environment
  878. CONFIG_EXTRA_ENV_SETTINGS
  879. Define this to contain any number of null terminated
  880. strings (variable = value pairs) that will be part of
  881. the default enviroment compiled into the boot image.
  882. For example, place something like this in your
  883. board's config file:
  884. #define CONFIG_EXTRA_ENV_SETTINGS \
  885. "myvar1=value1\0" \
  886. "myvar2=value2\0"
  887. Warning: This method is based on knowledge about the
  888. internal format how the environment is stored by the
  889. U-Boot code. This is NOT an official, exported
  890. interface! Although it is unlikely that this format
  891. will change soon, but there is no guarantee either.
  892. You better know what you are doing here.
  893. Note: overly (ab)use of the default environment is
  894. discouraged. Make sure to check other ways to preset
  895. the environment like the autoscript function or the
  896. boot command first.
  897. - Show boot progress
  898. CONFIG_SHOW_BOOT_PROGRESS
  899. Defining this option allows to add some board-
  900. specific code (calling a user-provided function
  901. "show_boot_progress(int)") that enables you to show
  902. the system's boot progress on some display (for
  903. example, some LED's) on your board. At the moment,
  904. the following checkpoints are implemented:
  905. Arg Where When
  906. 1 common/cmd_bootm.c before attempting to boot an image
  907. -1 common/cmd_bootm.c Image header has bad magic number
  908. 2 common/cmd_bootm.c Image header has correct magic number
  909. -2 common/cmd_bootm.c Image header has bad checksum
  910. 3 common/cmd_bootm.c Image header has correct checksum
  911. -3 common/cmd_bootm.c Image data has bad checksum
  912. 4 common/cmd_bootm.c Image data has correct checksum
  913. -4 common/cmd_bootm.c Image is for unsupported architecture
  914. 5 common/cmd_bootm.c Architecture check OK
  915. -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi, standalone)
  916. 6 common/cmd_bootm.c Image Type check OK
  917. -6 common/cmd_bootm.c gunzip uncompression error
  918. -7 common/cmd_bootm.c Unimplemented compression type
  919. 7 common/cmd_bootm.c Uncompression OK
  920. -8 common/cmd_bootm.c Wrong Image Type (not kernel, multi, standalone)
  921. 8 common/cmd_bootm.c Image Type check OK
  922. -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX)
  923. 9 common/cmd_bootm.c Start initial ramdisk verification
  924. -10 common/cmd_bootm.c Ramdisk header has bad magic number
  925. -11 common/cmd_bootm.c Ramdisk header has bad checksum
  926. 10 common/cmd_bootm.c Ramdisk header is OK
  927. -12 common/cmd_bootm.c Ramdisk data has bad checksum
  928. 11 common/cmd_bootm.c Ramdisk data has correct checksum
  929. 12 common/cmd_bootm.c Ramdisk verification complete, start loading
  930. -13 common/cmd_bootm.c Wrong Image Type (not PPC Linux Ramdisk)
  931. 13 common/cmd_bootm.c Start multifile image verification
  932. 14 common/cmd_bootm.c No initial ramdisk, no multifile, continue.
  933. 15 common/cmd_bootm.c All preparation done, transferring control to OS
  934. -1 common/cmd_doc.c Bad usage of "doc" command
  935. -1 common/cmd_doc.c No boot device
  936. -1 common/cmd_doc.c Unknown Chip ID on boot device
  937. -1 common/cmd_doc.c Read Error on boot device
  938. -1 common/cmd_doc.c Image header has bad magic number
  939. -1 common/cmd_ide.c Bad usage of "ide" command
  940. -1 common/cmd_ide.c No boot device
  941. -1 common/cmd_ide.c Unknown boot device
  942. -1 common/cmd_ide.c Unknown partition table
  943. -1 common/cmd_ide.c Invalid partition type
  944. -1 common/cmd_ide.c Read Error on boot device
  945. -1 common/cmd_ide.c Image header has bad magic number
  946. -1 common/cmd_nvedit.c Environment not changable, but has bad CRC
  947. Modem Support:
  948. --------------
  949. [so far only for SMDK2400 board]
  950. - Modem support endable:
  951. CONFIG_MODEM_SUPPORT
  952. - RTS/CTS Flow control enable:
  953. CONFIG_HWFLOW
  954. - Modem debug support:
  955. CONFIG_MODEM_SUPPORT_DEBUG
  956. Enables debugging stuff (char screen[1024], dbg())
  957. for modem support. Useful only with BDI2000.
  958. - General:
  959. In the target system modem support is enabled when a
  960. specific key (key combination) is pressed during
  961. power-on. Otherwise U-Boot will boot normally
  962. (autoboot). The key_pressed() fuction is called from
  963. board_init(). Currently key_pressed() is a dummy
  964. function, returning 1 and thus enabling modem
  965. initialization.
  966. If there are no modem init strings in the
  967. environment, U-Boot proceed to autoboot; the
  968. previous output (banner, info printfs) will be
  969. supressed, though.
  970. See also: doc/README.Modem
  971. Configuration Settings:
  972. -----------------------
  973. - CFG_LONGHELP: Defined when you want long help messages included;
  974. undefine this when you're short of memory.
  975. - CFG_PROMPT: This is what U-Boot prints on the console to
  976. prompt for user input.
  977. - CFG_CBSIZE: Buffer size for input from the Console
  978. - CFG_PBSIZE: Buffer size for Console output
  979. - CFG_MAXARGS: max. Number of arguments accepted for monitor commands
  980. - CFG_BARGSIZE: Buffer size for Boot Arguments which are passed to
  981. the application (usually a Linux kernel) when it is
  982. booted
  983. - CFG_BAUDRATE_TABLE:
  984. List of legal baudrate settings for this board.
  985. - CFG_CONSOLE_INFO_QUIET
  986. Suppress display of console information at boot.
  987. - CFG_CONSOLE_IS_IN_ENV
  988. If the board specific function
  989. extern int overwrite_console (void);
  990. returns 1, the stdin, stderr and stdout are switched to the
  991. serial port, else the settings in the environment are used.
  992. - CFG_CONSOLE_OVERWRITE_ROUTINE
  993. Enable the call to overwrite_console().
  994. - CFG_CONSOLE_ENV_OVERWRITE
  995. Enable overwrite of previous console environment settings.
  996. - CFG_MEMTEST_START, CFG_MEMTEST_END:
  997. Begin and End addresses of the area used by the
  998. simple memory test.
  999. - CFG_ALT_MEMTEST:
  1000. Enable an alternate, more extensive memory test.
  1001. - CFG_TFTP_LOADADDR:
  1002. Default load address for network file downloads
  1003. - CFG_LOADS_BAUD_CHANGE:
  1004. Enable temporary baudrate change while serial download
  1005. - CFG_SDRAM_BASE:
  1006. Physical start address of SDRAM. _Must_ be 0 here.
  1007. - CFG_MBIO_BASE:
  1008. Physical start address of Motherboard I/O (if using a
  1009. Cogent motherboard)
  1010. - CFG_FLASH_BASE:
  1011. Physical start address of Flash memory.
  1012. - CFG_MONITOR_BASE:
  1013. Physical start address of boot monitor code (set by
  1014. make config files to be same as the text base address
  1015. (TEXT_BASE) used when linking) - same as
  1016. CFG_FLASH_BASE when booting from flash.
  1017. - CFG_MONITOR_LEN:
  1018. Size of memory reserved for monitor code
  1019. - CFG_MALLOC_LEN:
  1020. Size of DRAM reserved for malloc() use.
  1021. - CFG_BOOTMAPSZ:
  1022. Maximum size of memory mapped by the startup code of
  1023. the Linux kernel; all data that must be processed by
  1024. the Linux kernel (bd_info, boot arguments, eventually
  1025. initrd image) must be put below this limit.
  1026. - CFG_MAX_FLASH_BANKS:
  1027. Max number of Flash memory banks
  1028. - CFG_MAX_FLASH_SECT:
  1029. Max number of sectors on a Flash chip
  1030. - CFG_FLASH_ERASE_TOUT:
  1031. Timeout for Flash erase operations (in ms)
  1032. - CFG_FLASH_WRITE_TOUT:
  1033. Timeout for Flash write operations (in ms)
  1034. - CFG_DIRECT_FLASH_TFTP:
  1035. Enable TFTP transfers directly to flash memory;
  1036. without this option such a download has to be
  1037. performed in two steps: (1) download to RAM, and (2)
  1038. copy from RAM to flash.
  1039. The two-step approach is usually more reliable, since
  1040. you can check if the download worked before you erase
  1041. the flash, but in some situations (when sytem RAM is
  1042. too limited to allow for a tempory copy of the
  1043. downloaded image) this option may be very useful.
  1044. - CFG_FLASH_CFI:
  1045. Define if the flash driver uses extra elements in the
  1046. common flash structure for storing flash geometry
  1047. The following definitions that deal with the placement and management
  1048. of environment data (variable area); in general, we support the
  1049. following configurations:
  1050. - CFG_ENV_IS_IN_FLASH:
  1051. Define this if the environment is in flash memory.
  1052. a) The environment occupies one whole flash sector, which is
  1053. "embedded" in the text segment with the U-Boot code. This
  1054. happens usually with "bottom boot sector" or "top boot
  1055. sector" type flash chips, which have several smaller
  1056. sectors at the start or the end. For instance, such a
  1057. layout can have sector sizes of 8, 2x4, 16, Nx32 kB. In
  1058. such a case you would place the environment in one of the
  1059. 4 kB sectors - with U-Boot code before and after it. With
  1060. "top boot sector" type flash chips, you would put the
  1061. environment in one of the last sectors, leaving a gap
  1062. between U-Boot and the environment.
  1063. - CFG_ENV_OFFSET:
  1064. Offset of environment data (variable area) to the
  1065. beginning of flash memory; for instance, with bottom boot
  1066. type flash chips the second sector can be used: the offset
  1067. for this sector is given here.
  1068. CFG_ENV_OFFSET is used relative to CFG_FLASH_BASE.
  1069. - CFG_ENV_ADDR:
  1070. This is just another way to specify the start address of
  1071. the flash sector containing the environment (instead of
  1072. CFG_ENV_OFFSET).
  1073. - CFG_ENV_SECT_SIZE:
  1074. Size of the sector containing the environment.
  1075. b) Sometimes flash chips have few, equal sized, BIG sectors.
  1076. In such a case you don't want to spend a whole sector for
  1077. the environment.
  1078. - CFG_ENV_SIZE:
  1079. If you use this in combination with CFG_ENV_IS_IN_FLASH
  1080. and CFG_ENV_SECT_SIZE, you can specify to use only a part
  1081. of this flash sector for the environment. This saves
  1082. memory for the RAM copy of the environment.
  1083. It may also save flash memory if you decide to use this
  1084. when your environment is "embedded" within U-Boot code,
  1085. since then the remainder of the flash sector could be used
  1086. for U-Boot code. It should be pointed out that this is
  1087. STRONGLY DISCOURAGED from a robustness point of view:
  1088. updating the environment in flash makes it always
  1089. necessary to erase the WHOLE sector. If something goes
  1090. wrong before the contents has been restored from a copy in
  1091. RAM, your target system will be dead.
  1092. - CFG_ENV_ADDR_REDUND
  1093. CFG_ENV_SIZE_REDUND
  1094. These settings describe a second storage area used to hold
  1095. a redundand copy of the environment data, so that there is
  1096. a valid backup copy in case there is a power failur during
  1097. a "saveenv" operation.
  1098. BE CAREFUL! Any changes to the flash layout, and some changes to the
  1099. source code will make it necessary to adapt <board>/u-boot.lds*
  1100. accordingly!
  1101. - CFG_ENV_IS_IN_NVRAM:
  1102. Define this if you have some non-volatile memory device
  1103. (NVRAM, battery buffered SRAM) which you want to use for the
  1104. environment.
  1105. - CFG_ENV_ADDR:
  1106. - CFG_ENV_SIZE:
  1107. These two #defines are used to determin the memory area you
  1108. want to use for environment. It is assumed that this memory
  1109. can just be read and written to, without any special
  1110. provision.
  1111. BE CAREFUL! The first access to the environment happens quite early
  1112. in U-Boot initalization (when we try to get the setting of for the
  1113. console baudrate). You *MUST* have mappend your NVRAM area then, or
  1114. U-Boot will hang.
  1115. Please note that even with NVRAM we still use a copy of the
  1116. environment in RAM: we could work on NVRAM directly, but we want to
  1117. keep settings there always unmodified except somebody uses "saveenv"
  1118. to save the current settings.
  1119. - CFG_ENV_IS_IN_EEPROM:
  1120. Use this if you have an EEPROM or similar serial access
  1121. device and a driver for it.
  1122. - CFG_ENV_OFFSET:
  1123. - CFG_ENV_SIZE:
  1124. These two #defines specify the offset and size of the
  1125. environment area within the total memory of your EEPROM.
  1126. - CFG_I2C_EEPROM_ADDR:
  1127. If defined, specified the chip address of the EEPROM device.
  1128. The default address is zero.
  1129. - CFG_EEPROM_PAGE_WRITE_BITS:
  1130. If defined, the number of bits used to address bytes in a
  1131. single page in the EEPROM device. A 64 byte page, for example
  1132. would require six bits.
  1133. - CFG_EEPROM_PAGE_WRITE_DELAY_MS:
  1134. If defined, the number of milliseconds to delay between
  1135. page writes. The default is zero milliseconds.
  1136. - CFG_I2C_EEPROM_ADDR_LEN:
  1137. The length in bytes of the EEPROM memory array address. Note
  1138. that this is NOT the chip address length!
  1139. - CFG_EEPROM_SIZE:
  1140. The size in bytes of the EEPROM device.
  1141. - CFG_I2C_EEPROM_ADDR:
  1142. If defined, specified the chip address of the EEPROM device.
  1143. The default address is zero.
  1144. - CFG_EEPROM_PAGE_WRITE_BITS:
  1145. If defined, the number of bits used to address bytes in a
  1146. single page in the EEPROM device. A 64 byte page, for example
  1147. would require six bits.
  1148. - CFG_EEPROM_PAGE_WRITE_DELAY_MS:
  1149. If defined, the number of milliseconds to delay between
  1150. page writes. The default is zero milliseconds.
  1151. - CFG_I2C_EEPROM_ADDR_LEN:
  1152. The length in bytes of the EEPROM memory array address. Note
  1153. that this is NOT the chip address length!
  1154. - CFG_EEPROM_SIZE:
  1155. The size in bytes of the EEPROM device.
  1156. - CFG_SPI_INIT_OFFSET
  1157. Defines offset to the initial SPI buffer area in DPRAM. The
  1158. area is used at an early stage (ROM part) if the environment
  1159. is configured to reside in the SPI EEPROM: We need a 520 byte
  1160. scratch DPRAM area. It is used between the two initialization
  1161. calls (spi_init_f() and spi_init_r()). A value of 0xB00 seems
  1162. to be a good choice since it makes it far enough from the
  1163. start of the data area as well as from the stack pointer.
  1164. Please note that the environment is read-only as long as the monitor
  1165. has been relocated to RAM and a RAM copy of the environment has been
  1166. created; also, when using EEPROM you will have to use getenv_r()
  1167. until then to read environment variables.
  1168. The environment is now protected by a CRC32 checksum. Before the
  1169. monitor is relocated into RAM, as a result of a bad CRC you will be
  1170. working with the compiled-in default environment - *silently*!!!
  1171. [This is necessary, because the first environment variable we need is
  1172. the "baudrate" setting for the console - if we have a bad CRC, we
  1173. don't have any device yet where we could complain.]
  1174. Note: once the monitor has been relocated, then it will complain if
  1175. the default environment is used; a new CRC is computed as soon as you
  1176. use the "setenv" command to modify / delete / add any environment
  1177. variable [even when you try to delete a non-existing variable!].
  1178. Note2: you must edit your u-boot.lds file to reflect this
  1179. configuration.
  1180. Low Level (hardware related) configuration options:
  1181. - CFG_CACHELINE_SIZE:
  1182. Cache Line Size of the CPU.
  1183. - CFG_DEFAULT_IMMR:
  1184. Default address of the IMMR after system reset.
  1185. Needed on some 8260 systems (MPC8260ADS and RPXsuper)
  1186. to be able to adjust the position of the IMMR
  1187. register after a reset.
  1188. - Floppy Disk Support:
  1189. CFG_FDC_DRIVE_NUMBER
  1190. the default drive number (default value 0)
  1191. CFG_ISA_IO_STRIDE
  1192. defines the spacing between fdc chipset registers
  1193. (default value 1)
  1194. CFG_ISA_IO_OFFSET
  1195. defines the offset of register from address. It
  1196. depends on which part of the data bus is connected to
  1197. the fdc chipset. (default value 0)
  1198. If CFG_ISA_IO_STRIDE CFG_ISA_IO_OFFSET and
  1199. CFG_FDC_DRIVE_NUMBER are undefined, they take their
  1200. default value.
  1201. if CFG_FDC_HW_INIT is defined, then the function
  1202. fdc_hw_init() is called at the beginning of the FDC
  1203. setup. fdc_hw_init() must be provided by the board
  1204. source code. It is used to make hardware dependant
  1205. initializations.
  1206. - CFG_IMMR: Physical address of the Internal Memory Mapped
  1207. Register; DO NOT CHANGE! (11-4)
  1208. [MPC8xx systems only]
  1209. - CFG_INIT_RAM_ADDR:
  1210. Start address of memory area tha can be used for
  1211. initial data and stack; please note that this must be
  1212. writable memory that is working WITHOUT special
  1213. initialization, i. e. you CANNOT use normal RAM which
  1214. will become available only after programming the
  1215. memory controller and running certain initialization
  1216. sequences.
  1217. U-Boot uses the following memory types:
  1218. - MPC8xx and MPC8260: IMMR (internal memory of the CPU)
  1219. - MPC824X: data cache
  1220. - PPC4xx: data cache
  1221. - CFG_INIT_DATA_OFFSET:
  1222. Offset of the initial data structure in the memory
  1223. area defined by CFG_INIT_RAM_ADDR. Usually
  1224. CFG_INIT_DATA_OFFSET is chosen such that the initial
  1225. data is located at the end of the available space
  1226. (sometimes written as (CFG_INIT_RAM_END -
  1227. CFG_INIT_DATA_SIZE), and the initial stack is just
  1228. below that area (growing from (CFG_INIT_RAM_ADDR +
  1229. CFG_INIT_DATA_OFFSET) downward.
  1230. Note:
  1231. On the MPC824X (or other systems that use the data
  1232. cache for initial memory) the address chosen for
  1233. CFG_INIT_RAM_ADDR is basically arbitrary - it must
  1234. point to an otherwise UNUSED address space between
  1235. the top of RAM and the start of the PCI space.
  1236. - CFG_SIUMCR: SIU Module Configuration (11-6)
  1237. - CFG_SYPCR: System Protection Control (11-9)
  1238. - CFG_TBSCR: Time Base Status and Control (11-26)
  1239. - CFG_PISCR: Periodic Interrupt Status and Control (11-31)
  1240. - CFG_PLPRCR: PLL, Low-Power, and Reset Control Register (15-30)
  1241. - CFG_SCCR: System Clock and reset Control Register (15-27)
  1242. - CFG_OR_TIMING_SDRAM:
  1243. SDRAM timing
  1244. - CFG_MAMR_PTA:
  1245. periodic timer for refresh
  1246. - CFG_DER: Debug Event Register (37-47)
  1247. - FLASH_BASE0_PRELIM, FLASH_BASE1_PRELIM, CFG_REMAP_OR_AM,
  1248. CFG_PRELIM_OR_AM, CFG_OR_TIMING_FLASH, CFG_OR0_REMAP,
  1249. CFG_OR0_PRELIM, CFG_BR0_PRELIM, CFG_OR1_REMAP, CFG_OR1_PRELIM,
  1250. CFG_BR1_PRELIM:
  1251. Memory Controller Definitions: BR0/1 and OR0/1 (FLASH)
  1252. - SDRAM_BASE2_PRELIM, SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE,
  1253. CFG_OR_TIMING_SDRAM, CFG_OR2_PRELIM, CFG_BR2_PRELIM,
  1254. CFG_OR3_PRELIM, CFG_BR3_PRELIM:
  1255. Memory Controller Definitions: BR2/3 and OR2/3 (SDRAM)
  1256. - CFG_MAMR_PTA, CFG_MPTPR_2BK_4K, CFG_MPTPR_1BK_4K, CFG_MPTPR_2BK_8K,
  1257. CFG_MPTPR_1BK_8K, CFG_MAMR_8COL, CFG_MAMR_9COL:
  1258. Machine Mode Register and Memory Periodic Timer
  1259. Prescaler definitions (SDRAM timing)
  1260. - CFG_I2C_UCODE_PATCH, CFG_I2C_DPMEM_OFFSET [0x1FC0]:
  1261. enable I2C microcode relocation patch (MPC8xx);
  1262. define relocation offset in DPRAM [DSP2]
  1263. - CFG_SPI_UCODE_PATCH, CFG_SPI_DPMEM_OFFSET [0x1FC0]:
  1264. enable SPI microcode relocation patch (MPC8xx);
  1265. define relocation offset in DPRAM [SCC4]
  1266. - CFG_USE_OSCCLK:
  1267. Use OSCM clock mode on MBX8xx board. Be careful,
  1268. wrong setting might damage your board. Read
  1269. doc/README.MBX before setting this variable!
  1270. Building the Software:
  1271. ======================
  1272. Building U-Boot has been tested in native PPC environments (on a
  1273. PowerBook G3 running LinuxPPC 2000) and in cross environments
  1274. (running RedHat 6.x and 7.x Linux on x86, Solaris 2.6 on a SPARC, and
  1275. NetBSD 1.5 on x86).
  1276. If you are not using a native PPC environment, it is assumed that you
  1277. have the GNU cross compiling tools available in your path and named
  1278. with a prefix of "powerpc-linux-". If this is not the case, (e.g. if
  1279. you are using Monta Vista's Hard Hat Linux CDK 1.2) you must change
  1280. the definition of CROSS_COMPILE in Makefile. For HHL on a 4xx CPU,
  1281. change it to:
  1282. CROSS_COMPILE = ppc_4xx-
  1283. U-Boot is intended to be simple to build. After installing the
  1284. sources you must configure U-Boot for one specific board type. This
  1285. is done by typing:
  1286. make NAME_config
  1287. where "NAME_config" is the name of one of the existing
  1288. configurations; the following names are supported:
  1289. ADCIOP_config GTH_config TQM850L_config
  1290. ADS860_config IP860_config TQM855L_config
  1291. AR405_config IVML24_config TQM860L_config
  1292. CANBT_config IVMS8_config WALNUT405_config
  1293. CPCI405_config LANTEC_config cogent_common_config
  1294. CPCIISER4_config MBX_config cogent_mpc8260_config
  1295. CU824_config MBX860T_config cogent_mpc8xx_config
  1296. ESTEEM192E_config RPXlite_config hermes_config
  1297. ETX094_config RPXsuper_config hymod_config
  1298. FADS823_config SM850_config lwmon_config
  1299. FADS850SAR_config SPD823TS_config pcu_e_config
  1300. FADS860T_config SXNI855T_config rsdproto_config
  1301. FPS850L_config Sandpoint8240_config sbc8260_config
  1302. GENIETV_config TQM823L_config PIP405_config
  1303. GEN860T_config EBONY_config FPS860L_config
  1304. Note: for some board special configuration names may exist; check if
  1305. additional information is available from the board vendor; for
  1306. instance, the TQM8xxL systems run normally at 50 MHz and use a
  1307. SCC for 10baseT ethernet; there are also systems with 80 MHz
  1308. CPU clock, and an optional Fast Ethernet module is available
  1309. for CPU's with FEC. You can select such additional "features"
  1310. when chosing the configuration, i. e.
  1311. make TQM860L_config
  1312. - will configure for a plain TQM860L, i. e. 50MHz, no FEC
  1313. make TQM860L_FEC_config
  1314. - will configure for a TQM860L at 50MHz with FEC for ethernet
  1315. make TQM860L_80MHz_config
  1316. - will configure for a TQM860L at 80 MHz, with normal 10baseT
  1317. interface
  1318. make TQM860L_FEC_80MHz_config
  1319. - will configure for a TQM860L at 80 MHz with FEC for ethernet
  1320. make TQM823L_LCD_config
  1321. - will configure for a TQM823L with U-Boot console on LCD
  1322. make TQM823L_LCD_80MHz_config
  1323. - will configure for a TQM823L at 80 MHz with U-Boot console on LCD
  1324. etc.
  1325. Finally, type "make all", and you should get some working U-Boot
  1326. images ready for downlod to / installation on your system:
  1327. - "u-boot.bin" is a raw binary image
  1328. - "u-boot" is an image in ELF binary format
  1329. - "u-boot.srec" is in Motorola S-Record format
  1330. Please be aware that the Makefiles assume you are using GNU make, so
  1331. for instance on NetBSD you might need to use "gmake" instead of
  1332. native "make".
  1333. If the system board that you have is not listed, then you will need
  1334. to port U-Boot to your hardware platform. To do this, follow these
  1335. steps:
  1336. 1. Add a new configuration option for your board to the toplevel
  1337. "Makefile", using the existing entries as examples.
  1338. 2. Create a new directory to hold your board specific code. Add any
  1339. files you need.
  1340. 3. If you're porting U-Boot to a new CPU, then also create a new
  1341. directory to hold your CPU specific code. Add any files you need.
  1342. 4. Run "make config_name" with your new name.
  1343. 5. Type "make", and you should get a working "u-boot.srec" file
  1344. to be installed on your target system.
  1345. [Of course, this last step is much harder than it sounds.]
  1346. Testing of U-Boot Modifications, Ports to New Hardware, etc.:
  1347. ==============================================================
  1348. If you have modified U-Boot sources (for instance added a new board
  1349. or support for new devices, a new CPU, etc.) you are expected to
  1350. provide feedback to the other developers. The feedback normally takes
  1351. the form of a "patch", i. e. a context diff against a certain (latest
  1352. official or latest in CVS) version of U-Boot sources.
  1353. But before you submit such a patch, please verify that your modifi-
  1354. cation did not break existing code. At least make sure that *ALL* of
  1355. the supported boards compile WITHOUT ANY compiler warnings. To do so,
  1356. just run the "MAKEALL" script, which will configure and build U-Boot
  1357. for ALL supported system. Be warned, this will take a while. You can
  1358. select which (cross) compiler to use py passing a `CROSS_COMPILE'
  1359. environment variable to the script, i. e. to use the cross tools from
  1360. MontaVista's Hard Hat Linux you can type
  1361. CROSS_COMPILE=ppc_8xx- MAKEALL
  1362. or to build on a native PowerPC system you can type
  1363. CROSS_COMPILE=' ' MAKEALL
  1364. See also "U-Boot Porting Guide" below.
  1365. Monitor Commands - Overview:
  1366. ============================
  1367. go - start application at address 'addr'
  1368. run - run commands in an environment variable
  1369. bootm - boot application image from memory
  1370. bootp - boot image via network using BootP/TFTP protocol
  1371. tftpboot- boot image via network using TFTP protocol
  1372. and env variables "ipaddr" and "serverip"
  1373. (and eventually "gatewayip")
  1374. rarpboot- boot image via network using RARP/TFTP protocol
  1375. diskboot- boot from IDE devicebootd - boot default, i.e., run 'bootcmd'
  1376. loads - load S-Record file over serial line
  1377. loadb - load binary file over serial line (kermit mode)
  1378. md - memory display
  1379. mm - memory modify (auto-incrementing)
  1380. nm - memory modify (constant address)
  1381. mw - memory write (fill)
  1382. cp - memory copy
  1383. cmp - memory compare
  1384. crc32 - checksum calculation
  1385. imd - i2c memory display
  1386. imm - i2c memory modify (auto-incrementing)
  1387. inm - i2c memory modify (constant address)
  1388. imw - i2c memory write (fill)
  1389. icrc32 - i2c checksum calculation
  1390. iprobe - probe to discover valid I2C chip addresses
  1391. iloop - infinite loop on address range
  1392. isdram - print SDRAM configuration information
  1393. sspi - SPI utility commands
  1394. base - print or set address offset
  1395. printenv- print environment variables
  1396. setenv - set environment variables
  1397. saveenv - save environment variables to persistent storage
  1398. protect - enable or disable FLASH write protection
  1399. erase - erase FLASH memory
  1400. flinfo - print FLASH memory information
  1401. bdinfo - print Board Info structure
  1402. iminfo - print header information for application image
  1403. coninfo - print console devices and informations
  1404. ide - IDE sub-system
  1405. loop - infinite loop on address range
  1406. mtest - simple RAM test
  1407. icache - enable or disable instruction cache
  1408. dcache - enable or disable data cache
  1409. reset - Perform RESET of the CPU
  1410. echo - echo args to console
  1411. version - print monitor version
  1412. help - print online help
  1413. ? - alias for 'help'
  1414. Monitor Commands - Detailed Description:
  1415. ========================================
  1416. TODO.
  1417. For now: just type "help <command>".
  1418. Environment Variables:
  1419. ======================
  1420. U-Boot supports user configuration using Environment Variables which
  1421. can be made persistent by saving to Flash memory.
  1422. Environment Variables are set using "setenv", printed using
  1423. "printenv", and saved to Flash using "saveenv". Using "setenv"
  1424. without a value can be used to delete a variable from the
  1425. environment. As long as you don't save the environment you are
  1426. working with an in-memory copy. In case the Flash area containing the
  1427. environment is erased by accident, a default environment is provided.
  1428. Some configuration options can be set using Environment Variables:
  1429. baudrate - see CONFIG_BAUDRATE
  1430. bootdelay - see CONFIG_BOOTDELAY
  1431. bootcmd - see CONFIG_BOOTCOMMAND
  1432. bootargs - Boot arguments when booting an RTOS image
  1433. bootfile - Name of the image to load with TFTP
  1434. autoload - if set to "no" (any string beginning with 'n'),
  1435. "bootp" will just load perform a lookup of the
  1436. configuration from the BOOTP server, but not try to
  1437. load any image using TFTP
  1438. autostart - if set to "yes", an image loaded using the "bootp",
  1439. "rarpboot", "tftpboot" or "diskboot" commands will
  1440. be automatically started (by internally calling
  1441. "bootm")
  1442. initrd_high - restrict positioning of initrd images:
  1443. If this variable is not set, initrd images will be
  1444. copied to the highest possible address in RAM; this
  1445. is usually what you want since it allows for
  1446. maximum initrd size. If for some reason you want to
  1447. make sure that the initrd image is loaded below the
  1448. CFG_BOOTMAPSZ limit, you can set this environment
  1449. variable to a value of "no" or "off" or "0".
  1450. Alternatively, you can set it to a maximum upper
  1451. address to use (U-Boot will still check that it
  1452. does not overwrite the U-Boot stack and data).
  1453. For instance, when you have a system with 16 MB
  1454. RAM, and want to reseve 4 MB from use by Linux,
  1455. you can do this by adding "mem=12M" to the value of
  1456. the "bootargs" variable. However, now you must make
  1457. sure, that the initrd image is placed in the first
  1458. 12 MB as well - this can be done with
  1459. setenv initrd_high 00c00000
  1460. ipaddr - IP address; needed for tftpboot command
  1461. loadaddr - Default load address for commands like "bootp",
  1462. "rarpboot", "tftpboot" or "diskboot"
  1463. loads_echo - see CONFIG_LOADS_ECHO
  1464. serverip - TFTP server IP address; needed for tftpboot command
  1465. bootretry - see CONFIG_BOOT_RETRY_TIME
  1466. bootdelaykey - see CONFIG_AUTOBOOT_DELAY_STR
  1467. bootstopkey - see CONFIG_AUTOBOOT_STOP_STR
  1468. The following environment variables may be used and automatically
  1469. updated by the network boot commands ("bootp" and "rarpboot"),
  1470. depending the information provided by your boot server:
  1471. bootfile - see above
  1472. dnsip - IP address of your Domain Name Server
  1473. gatewayip - IP address of the Gateway (Router) to use
  1474. hostname - Target hostname
  1475. ipaddr - see above
  1476. netmask - Subnet Mask
  1477. rootpath - Pathname of the root filesystem on the NFS server
  1478. serverip - see above
  1479. There are two special Environment Variables:
  1480. serial# - contains hardware identification information such
  1481. as type string and/or serial number
  1482. ethaddr - Ethernet address
  1483. These variables can be set only once (usually during manufacturing of
  1484. the board). U-Boot refuses to delete or overwrite these variables
  1485. once they have been set once.
  1486. Please note that changes to some configuration parameters may take
  1487. only effect after the next boot (yes, that's just like Windoze :-).
  1488. Note for Redundant Ethernet Interfaces:
  1489. =======================================
  1490. Some boards come with redundand ethernet interfaces; U-Boot supports
  1491. such configurations and is capable of automatic selection of a
  1492. "working" interface when needed. MAC assignemnt works as follows:
  1493. Network interfaces are numbered eth0, eth1, eth2, ... Corresponding
  1494. MAC addresses can be stored in the environment as "ethaddr" (=>eth0),
  1495. "eth1addr" (=>eth1), "eth2addr", ...
  1496. If the network interface stores some valid MAC address (for instance
  1497. in SROM), this is used as default address if there is NO correspon-
  1498. ding setting in the environment; if the corresponding environment
  1499. variable is set, this overrides the settings in the card; that means:
  1500. o If the SROM has a valid MAC address, and there is no address in the
  1501. environment, the SROM's address is used.
  1502. o If there is no valid address in the SROM, and a definition in the
  1503. environment exists, then the value from the environment variable is
  1504. used.
  1505. o If both the SROM and the environment contain a MAC address, and
  1506. both addresses are the same, this MAC address is used.
  1507. o If both the SROM and the environment contain a MAC address, and the
  1508. addresses differ, the value from the environment is used and a
  1509. warning is printed.
  1510. o If neither SROM nor the environment contain a MAC address, an error
  1511. is raised.
  1512. Image Formats:
  1513. ==============
  1514. The "boot" commands of this monitor operate on "image" files which
  1515. can be basicly anything, preceeded by a special header; see the
  1516. definitions in include/image.h for details; basicly, the header
  1517. defines the following image properties:
  1518. * Target Operating System (Provisions for OpenBSD, NetBSD, FreeBSD,
  1519. 4.4BSD, Linux, SVR4, Esix, Solaris, Irix, SCO, Dell, NCR, VxWorks,
  1520. LynxOS, pSOS, QNX;
  1521. Currently supported: Linux, NetBSD, VxWorks, QNX).
  1522. * Target CPU Architecture (Provisions for Alpha, ARM, Intel x86,
  1523. IA64, MIPS, MIPS, PowerPC, IBM S390, SuperH, Sparc, Sparc 64 Bit;
  1524. Currently supported: PowerPC).
  1525. * Compression Type (Provisions for uncompressed, gzip, bzip2;
  1526. Currently supported: uncompressed, gzip).
  1527. * Load Address
  1528. * Entry Point
  1529. * Image Name
  1530. * Image Timestamp
  1531. The header is marked by a special Magic Number, and both the header
  1532. and the data portions of the image are secured against corruption by
  1533. CRC32 checksums.
  1534. Linux Support:
  1535. ==============
  1536. Although U-Boot should support any OS or standalone application
  1537. easily, Linux has always been in the focus during the design of
  1538. U-Boot.
  1539. U-Boot includes many features that so far have been part of some
  1540. special "boot loader" code within the Linux kernel. Also, any
  1541. "initrd" images to be used are no longer part of one big Linux image;
  1542. instead, kernel and "initrd" are separate images. This implementation
  1543. serves serveral purposes:
  1544. - the same features can be used for other OS or standalone
  1545. applications (for instance: using compressed images to reduce the
  1546. Flash memory footprint)
  1547. - it becomes much easier to port new Linux kernel versions because
  1548. lots of low-level, hardware dependend stuff are done by U-Boot
  1549. - the same Linux kernel image can now be used with different "initrd"
  1550. images; of course this also means that different kernel images can
  1551. be run with the same "initrd". This makes testing easier (you don't
  1552. have to build a new "zImage.initrd" Linux image when you just
  1553. change a file in your "initrd"). Also, a field-upgrade of the
  1554. software is easier now.
  1555. Linux HOWTO:
  1556. ============
  1557. Porting Linux to U-Boot based systems:
  1558. ---------------------------------------
  1559. U-Boot cannot save you from doing all the necessary modifications to
  1560. configure the Linux device drivers for use with your target hardware
  1561. (no, we don't intend to provide a full virtual machine interface to
  1562. Linux :-).
  1563. But now you can ignore ALL boot loader code (in arch/ppc/mbxboot).
  1564. Just make sure your machine specific header file (for instance
  1565. include/asm-ppc/tqm8xx.h) includes the same definition of the Board
  1566. Information structure as we define in include/u-boot.h, and make
  1567. sure that your definition of IMAP_ADDR uses the same value as your
  1568. U-Boot configuration in CFG_IMMR.
  1569. Configuring the Linux kernel:
  1570. -----------------------------
  1571. No specific requirements for U-Boot. Make sure you have some root
  1572. device (initial ramdisk, NFS) for your target system.
  1573. Building a Linux Image:
  1574. -----------------------
  1575. With U-Boot, "normal" build targets like "zImage" or "bzImage" are
  1576. not used. If you use recent kernel source, a new build target
  1577. "uImage" will exist which automatically builds an image usable by
  1578. U-Boot. Most older kernels also have support for a "pImage" target,
  1579. which was introduced for our predecessor project PPCBoot and uses a
  1580. 100% compatible format.
  1581. Example:
  1582. make TQM850L_config
  1583. make oldconfig
  1584. make dep
  1585. make uImage
  1586. The "uImage" build target uses a special tool (in 'tools/mkimage') to
  1587. encapsulate a compressed Linux kernel image with header information,
  1588. CRC32 checksum etc. for use with U-Boot. This is what we are doing:
  1589. * build a standard "vmlinux" kernel image (in ELF binary format):
  1590. * convert the kernel into a raw binary image:
  1591. ${CROSS_COMPILE}-objcopy -O binary \
  1592. -R .note -R .comment \
  1593. -S vmlinux linux.bin
  1594. * compress the binary image:
  1595. gzip -9 linux.bin
  1596. * package compressed binary image for U-Boot:
  1597. mkimage -A ppc -O linux -T kernel -C gzip \
  1598. -a 0 -e 0 -n "Linux Kernel Image" \
  1599. -d linux.bin.gz uImage
  1600. The "mkimage" tool can also be used to create ramdisk images for use
  1601. with U-Boot, either separated from the Linux kernel image, or
  1602. combined into one file. "mkimage" encapsulates the images with a 64
  1603. byte header containing information about target architecture,
  1604. operating system, image type, compression method, entry points, time
  1605. stamp, CRC32 checksums, etc.
  1606. "mkimage" can be called in two ways: to verify existing images and
  1607. print the header information, or to build new images.
  1608. In the first form (with "-l" option) mkimage lists the information
  1609. contained in the header of an existing U-Boot image; this includes
  1610. checksum verification:
  1611. tools/mkimage -l image
  1612. -l ==> list image header information
  1613. The second form (with "-d" option) is used to build a U-Boot image
  1614. from a "data file" which is used as image payload:
  1615. tools/mkimage -A arch -O os -T type -C comp -a addr -e ep \
  1616. -n name -d data_file image
  1617. -A ==> set architecture to 'arch'
  1618. -O ==> set operating system to 'os'
  1619. -T ==> set image type to 'type'
  1620. -C ==> set compression type 'comp'
  1621. -a ==> set load address to 'addr' (hex)
  1622. -e ==> set entry point to 'ep' (hex)
  1623. -n ==> set image name to 'name'
  1624. -d ==> use image data from 'datafile'
  1625. Right now, all Linux kernels use the same load address (0x00000000),
  1626. but the entry point address depends on the kernel version:
  1627. - 2.2.x kernels have the entry point at 0x0000000C,
  1628. - 2.3.x and later kernels have the entry point at 0x00000000.
  1629. So a typical call to build a U-Boot image would read:
  1630. -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
  1631. > -A ppc -O linux -T kernel -C gzip -a 0 -e 0 \
  1632. > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/ppc/coffboot/vmlinux.gz \
  1633. > examples/uImage.TQM850L
  1634. Image Name: 2.4.4 kernel for TQM850L
  1635. Created: Wed Jul 19 02:34:59 2000
  1636. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1637. Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
  1638. Load Address: 0x00000000
  1639. Entry Point: 0x00000000
  1640. To verify the contents of the image (or check for corruption):
  1641. -> tools/mkimage -l examples/uImage.TQM850L
  1642. Image Name: 2.4.4 kernel for TQM850L
  1643. Created: Wed Jul 19 02:34:59 2000
  1644. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1645. Data Size: 335725 Bytes = 327.86 kB = 0.32 MB
  1646. Load Address: 0x00000000
  1647. Entry Point: 0x00000000
  1648. NOTE: for embedded systems where boot time is critical you can trade
  1649. speed for memory and install an UNCOMPRESSED image instead: this
  1650. needs more space in Flash, but boots much faster since it does not
  1651. need to be uncompressed:
  1652. -> gunzip /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/ppc/coffboot/vmlinux.gz
  1653. -> tools/mkimage -n '2.4.4 kernel for TQM850L' \
  1654. > -A ppc -O linux -T kernel -C none -a 0 -e 0 \
  1655. > -d /opt/elsk/ppc_8xx/usr/src/linux-2.4.4/arch/ppc/coffboot/vmlinux \
  1656. > examples/uImage.TQM850L-uncompressed
  1657. Image Name: 2.4.4 kernel for TQM850L
  1658. Created: Wed Jul 19 02:34:59 2000
  1659. Image Type: PowerPC Linux Kernel Image (uncompressed)
  1660. Data Size: 792160 Bytes = 773.59 kB = 0.76 MB
  1661. Load Address: 0x00000000
  1662. Entry Point: 0x00000000
  1663. Similar you can build U-Boot images from a 'ramdisk.image.gz' file
  1664. when your kernel is intended to use an initial ramdisk:
  1665. -> tools/mkimage -n 'Simple Ramdisk Image' \
  1666. > -A ppc -O linux -T ramdisk -C gzip \
  1667. > -d /LinuxPPC/images/SIMPLE-ramdisk.image.gz examples/simple-initrd
  1668. Image Name: Simple Ramdisk Image
  1669. Created: Wed Jan 12 14:01:50 2000
  1670. Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
  1671. Data Size: 566530 Bytes = 553.25 kB = 0.54 MB
  1672. Load Address: 0x00000000
  1673. Entry Point: 0x00000000
  1674. Installing a Linux Image:
  1675. -------------------------
  1676. To downloading a U-Boot image over the serial (console) interface,
  1677. you must convert the image to S-Record format:
  1678. objcopy -I binary -O srec examples/image examples/image.srec
  1679. The 'objcopy' does not understand the information in the U-Boot
  1680. image header, so the resulting S-Record file will be relative to
  1681. address 0x00000000. To load it to a given address, you need to
  1682. specify the target address as 'offset' parameter with the 'loads'
  1683. command.
  1684. Example: install the image to address 0x40100000 (which on the
  1685. TQM8xxL is in the first Flash bank):
  1686. => erase 40100000 401FFFFF
  1687. .......... done
  1688. Erased 8 sectors
  1689. => loads 40100000
  1690. ## Ready for S-Record download ...
  1691. ~>examples/image.srec
  1692. 1 2 3 4 5 6 7 8 9 10 11 12 13 ...
  1693. ...
  1694. 15989 15990 15991 15992
  1695. [file transfer complete]
  1696. [connected]
  1697. ## Start Addr = 0x00000000
  1698. You can check the success of the download using the 'iminfo' command;
  1699. this includes a checksum verification so you can be sure no data
  1700. corruption happened:
  1701. => imi 40100000
  1702. ## Checking Image at 40100000 ...
  1703. Image Name: 2.2.13 for initrd on TQM850L
  1704. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1705. Data Size: 335725 Bytes = 327 kB = 0 MB
  1706. Load Address: 00000000
  1707. Entry Point: 0000000c
  1708. Verifying Checksum ... OK
  1709. Boot Linux:
  1710. -----------
  1711. The "bootm" command is used to boot an application that is stored in
  1712. memory (RAM or Flash). In case of a Linux kernel image, the contents
  1713. of the "bootargs" environment variable is passed to the kernel as
  1714. parameters. You can check and modify this variable using the
  1715. "printenv" and "setenv" commands:
  1716. => printenv bootargs
  1717. bootargs=root=/dev/ram
  1718. => setenv bootargs root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
  1719. => printenv bootargs
  1720. bootargs=root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
  1721. => bootm 40020000
  1722. ## Booting Linux kernel at 40020000 ...
  1723. Image Name: 2.2.13 for NFS on TQM850L
  1724. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1725. Data Size: 381681 Bytes = 372 kB = 0 MB
  1726. Load Address: 00000000
  1727. Entry Point: 0000000c
  1728. Verifying Checksum ... OK
  1729. Uncompressing Kernel Image ... OK
  1730. Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:35:17 MEST 2000
  1731. Boot arguments: root=/dev/nfs rw nfsroot=10.0.0.2:/LinuxPPC nfsaddrs=10.0.0.99:10.0.0.2
  1732. time_init: decrementer frequency = 187500000/60
  1733. Calibrating delay loop... 49.77 BogoMIPS
  1734. Memory: 15208k available (700k kernel code, 444k data, 32k init) [c0000000,c1000000]
  1735. ...
  1736. If you want to boot a Linux kernel with initial ram disk, you pass
  1737. the memory addreses of both the kernel and the initrd image (PPBCOOT
  1738. format!) to the "bootm" command:
  1739. => imi 40100000 40200000
  1740. ## Checking Image at 40100000 ...
  1741. Image Name: 2.2.13 for initrd on TQM850L
  1742. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1743. Data Size: 335725 Bytes = 327 kB = 0 MB
  1744. Load Address: 00000000
  1745. Entry Point: 0000000c
  1746. Verifying Checksum ... OK
  1747. ## Checking Image at 40200000 ...
  1748. Image Name: Simple Ramdisk Image
  1749. Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
  1750. Data Size: 566530 Bytes = 553 kB = 0 MB
  1751. Load Address: 00000000
  1752. Entry Point: 00000000
  1753. Verifying Checksum ... OK
  1754. => bootm 40100000 40200000
  1755. ## Booting Linux kernel at 40100000 ...
  1756. Image Name: 2.2.13 for initrd on TQM850L
  1757. Image Type: PowerPC Linux Kernel Image (gzip compressed)
  1758. Data Size: 335725 Bytes = 327 kB = 0 MB
  1759. Load Address: 00000000
  1760. Entry Point: 0000000c
  1761. Verifying Checksum ... OK
  1762. Uncompressing Kernel Image ... OK
  1763. ## Loading RAMDisk Image at 40200000 ...
  1764. Image Name: Simple Ramdisk Image
  1765. Image Type: PowerPC Linux RAMDisk Image (gzip compressed)
  1766. Data Size: 566530 Bytes = 553 kB = 0 MB
  1767. Load Address: 00000000
  1768. Entry Point: 00000000
  1769. Verifying Checksum ... OK
  1770. Loading Ramdisk ... OK
  1771. Linux version 2.2.13 (wd@denx.local.net) (gcc version 2.95.2 19991024 (release)) #1 Wed Jul 19 02:32:08 MEST 2000
  1772. Boot arguments: root=/dev/ram
  1773. time_init: decrementer frequency = 187500000/60
  1774. Calibrating delay loop... 49.77 BogoMIPS
  1775. ...
  1776. RAMDISK: Compressed image found at block 0
  1777. VFS: Mounted root (ext2 filesystem).
  1778. bash#
  1779. Standalone HOWTO:
  1780. =================
  1781. One of the features of U-Boot is that you can dynamically load and
  1782. run "standalone" applications, which can use some resources of
  1783. U-Boot like console I/O functions or interrupt services.
  1784. Two simple examples are included with the sources:
  1785. "Hello World" Demo:
  1786. -------------------
  1787. 'examples/hello_world.c' contains a small "Hello World" Demo
  1788. application; it is automatically compiled when you build U-Boot.
  1789. It's configured to run at address 0x00040004, so you can play with it
  1790. like that:
  1791. => loads
  1792. ## Ready for S-Record download ...
  1793. ~>examples/hello_world.srec
  1794. 1 2 3 4 5 6 7 8 9 10 11 ...
  1795. [file transfer complete]
  1796. [connected]
  1797. ## Start Addr = 0x00040004
  1798. => go 40004 Hello World! This is a test.
  1799. ## Starting application at 0x00040004 ...
  1800. Hello World
  1801. argc = 7
  1802. argv[0] = "40004"
  1803. argv[1] = "Hello"
  1804. argv[2] = "World!"
  1805. argv[3] = "This"
  1806. argv[4] = "is"
  1807. argv[5] = "a"
  1808. argv[6] = "test."
  1809. argv[7] = "<NULL>"
  1810. Hit any key to exit ...
  1811. ## Application terminated, rc = 0x0
  1812. Another example, which demonstrates how to register a CPM interrupt
  1813. handler with the U-Boot code, can be found in 'examples/timer.c'.
  1814. Here, a CPM timer is set up to generate an interrupt every second.
  1815. The interrupt service routine is trivial, just printing a '.'
  1816. character, but this is just a demo program. The application can be
  1817. controlled by the following keys:
  1818. ? - print current values og the CPM Timer registers
  1819. b - enable interrupts and start timer
  1820. e - stop timer and disable interrupts
  1821. q - quit application
  1822. => loads
  1823. ## Ready for S-Record download ...
  1824. ~>examples/timer.srec
  1825. 1 2 3 4 5 6 7 8 9 10 11 ...
  1826. [file transfer complete]
  1827. [connected]
  1828. ## Start Addr = 0x00040004
  1829. => go 40004
  1830. ## Starting application at 0x00040004 ...
  1831. TIMERS=0xfff00980
  1832. Using timer 1
  1833. tgcr @ 0xfff00980, tmr @ 0xfff00990, trr @ 0xfff00994, tcr @ 0xfff00998, tcn @ 0xfff0099c, ter @ 0xfff009b0
  1834. Hit 'b':
  1835. [q, b, e, ?] Set interval 1000000 us
  1836. Enabling timer
  1837. Hit '?':
  1838. [q, b, e, ?] ........
  1839. tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0xef6, ter=0x0
  1840. Hit '?':
  1841. [q, b, e, ?] .
  1842. tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x2ad4, ter=0x0
  1843. Hit '?':
  1844. [q, b, e, ?] .
  1845. tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x1efc, ter=0x0
  1846. Hit '?':
  1847. [q, b, e, ?] .
  1848. tgcr=0x1, tmr=0xff1c, trr=0x3d09, tcr=0x0, tcn=0x169d, ter=0x0
  1849. Hit 'e':
  1850. [q, b, e, ?] ...Stopping timer
  1851. Hit 'q':
  1852. [q, b, e, ?] ## Application terminated, rc = 0x0
  1853. NetBSD Notes:
  1854. =============
  1855. Starting at version 0.9.2, U-Boot supports NetBSD both as host
  1856. (build U-Boot) and target system (boots NetBSD/mpc8xx).
  1857. Building requires a cross environment; it is known to work on
  1858. NetBSD/i386 with the cross-powerpc-netbsd-1.3 package (you will also
  1859. need gmake since the Makefiles are not compatible with BSD make).
  1860. Note that the cross-powerpc package does not install include files;
  1861. attempting to build U-Boot will fail because <machine/ansi.h> is
  1862. missing. This file has to be installed and patched manually:
  1863. # cd /usr/pkg/cross/powerpc-netbsd/include
  1864. # mkdir powerpc
  1865. # ln -s powerpc machine
  1866. # cp /usr/src/sys/arch/powerpc/include/ansi.h powerpc/ansi.h
  1867. # ${EDIT} powerpc/ansi.h ## must remove __va_list, _BSD_VA_LIST
  1868. Native builds *don't* work due to incompatibilities between native
  1869. and U-Boot include files.
  1870. Booting assumes that (the first part of) the image booted is a
  1871. stage-2 loader which in turn loads and then invokes the kernel
  1872. proper. Loader sources will eventually appear in the NetBSD source
  1873. tree (probably in sys/arc/mpc8xx/stand/u-boot_stage2/); in the
  1874. meantime, send mail to bruno@exet-ag.de and/or wd@denx.de for
  1875. details.
  1876. Implementation Internals:
  1877. =========================
  1878. The following is not intended to be a complete description of every
  1879. implementation detail. However, it should help to understand the
  1880. inner workings of U-Boot and make it easier to port it to custom
  1881. hardware.
  1882. Initial Stack, Global Data:
  1883. ---------------------------
  1884. The implementation of U-Boot is complicated by the fact that U-Boot
  1885. starts running out of ROM (flash memory), usually without access to
  1886. system RAM (because the memory controller is not initialized yet).
  1887. This means that we don't have writable Data or BSS segments, and BSS
  1888. is not initialized as zero. To be able to get a C environment working
  1889. at all, we have to allocate at least a minimal stack. Implementation
  1890. options for this are defined and restricted by the CPU used: Some CPU
  1891. models provide on-chip memory (like the IMMR area on MPC8xx and
  1892. MPC826x processors), on others (parts of) the data cache can be
  1893. locked as (mis-) used as memory, etc.
  1894. It is essential to remember this, since it has some impact on the C
  1895. code for the initialization procedures:
  1896. * Initialized global data (data segment) is read-only. Do not attempt
  1897. to write it.
  1898. * Do not use any unitialized global data (or implicitely initialized
  1899. as zero data - BSS segment) at all - this is undefined, initiali-
  1900. zation is performed later (when relocationg to RAM).
  1901. * Stack space is very limited. Avoid big data buffers or things like
  1902. that.
  1903. Having only the stack as writable memory limits means we cannot use
  1904. normal global data to share information beween the code. But it
  1905. turned out that the implementation of U-Boot can be greatly
  1906. simplified by making a global data structure (gd_t) available to all
  1907. functions. We could pass a pointer to this data as argument to _all_
  1908. functions, but this would bloat the code. Instead we use a feature of
  1909. the GCC compiler (Global Register Variables) to share the data: we
  1910. place a pointer (gd) to the global data into a register which we
  1911. reserve for this purpose.
  1912. When chosing a register for such a purpose we are restricted by the
  1913. relevant (E)ABI specifications for the current architecture, and by
  1914. GCC's implementation.
  1915. For PowerPC, the following registers have specific use:
  1916. R1: stack pointer
  1917. R2: TOC pointer
  1918. R3-R4: parameter passing and return values
  1919. R5-R10: parameter passing
  1920. R13: small data area pointer
  1921. R30: GOT pointer
  1922. R31: frame pointer
  1923. (U-Boot also uses R14 as internal GOT pointer.)
  1924. ==> U-Boot will use R29 to hold a pointer to the global data
  1925. Note: on PPC, we could use a static initializer (since the
  1926. address of the global data structure is known at compile time),
  1927. but it turned out that reserving a register results in somewhat
  1928. smaller code - although the code savings are not that big (on
  1929. average for all boards 752 bytes for the whole U-Boot image,
  1930. 624 text + 127 data).
  1931. On ARM, the following registers are used:
  1932. R0: function argument word/integer result
  1933. R1-R3: function argument word
  1934. R9: GOT pointer
  1935. R10: stack limit (used only if stack checking if enabled)
  1936. R11: argument (frame) pointer
  1937. R12: temporary workspace
  1938. R13: stack pointer
  1939. R14: link register
  1940. R15: program counter
  1941. ==> U-Boot will use R8 to hold a pointer to the global data
  1942. Memory Management:
  1943. ------------------
  1944. U-Boot runs in system state and uses physical addresses, i.e. the
  1945. MMU is not used either for address mapping nor for memory protection.
  1946. The available memory is mapped to fixed addresses using the memory
  1947. controller. In this process, a contiguous block is formed for each
  1948. memory type (Flash, SDRAM, SRAM), even when it consists of several
  1949. physical memory banks.
  1950. U-Boot is installed in the first 128 kB of the first Flash bank (on
  1951. TQM8xxL modules this is the range 0x40000000 ... 0x4001FFFF). After
  1952. booting and sizing and initializing DRAM, the code relocates itself
  1953. to the upper end of DRAM. Immediately below the U-Boot code some
  1954. memory is reserved for use by malloc() [see CFG_MALLOC_LEN
  1955. configuration setting]. Below that, a structure with global Board
  1956. Info data is placed, followed by the stack (growing downward).
  1957. Additionally, some exception handler code is copied to the low 8 kB
  1958. of DRAM (0x00000000 ... 0x00001FFF).
  1959. So a typical memory configuration with 16 MB of DRAM could look like
  1960. this:
  1961. 0x0000 0000 Exception Vector code
  1962. :
  1963. 0x0000 1FFF
  1964. 0x0000 2000 Free for Application Use
  1965. :
  1966. :
  1967. :
  1968. :
  1969. 0x00FB FF20 Monitor Stack (Growing downward)
  1970. 0x00FB FFAC Board Info Data and permanent copy of global data
  1971. 0x00FC 0000 Malloc Arena
  1972. :
  1973. 0x00FD FFFF
  1974. 0x00FE 0000 RAM Copy of Monitor Code
  1975. ... eventually: LCD or video framebuffer
  1976. ... eventually: pRAM (Protected RAM - unchanged by reset)
  1977. 0x00FF FFFF [End of RAM]
  1978. System Initialization:
  1979. ----------------------
  1980. In the reset configuration, U-Boot starts at the reset entry point
  1981. (on most PowerPC systens at address 0x00000100). Because of the reset
  1982. configuration for CS0# this is a mirror of the onboard Flash memory.
  1983. To be able to re-map memory U-Boot then jumps to it's link address.
  1984. To be able to implement the initialization code in C, a (small!)
  1985. initial stack is set up in the internal Dual Ported RAM (in case CPUs
  1986. which provide such a feature like MPC8xx or MPC8260), or in a locked
  1987. part of the data cache. After that, U-Boot initializes the CPU core,
  1988. the caches and the SIU.
  1989. Next, all (potentially) available memory banks are mapped using a
  1990. preliminary mapping. For example, we put them on 512 MB boundaries
  1991. (multiples of 0x20000000: SDRAM on 0x00000000 and 0x20000000, Flash
  1992. on 0x40000000 and 0x60000000, SRAM on 0x80000000). Then UPM A is
  1993. programmed for SDRAM access. Using the temporary configuration, a
  1994. simple memory test is run that determines the size of the SDRAM
  1995. banks.
  1996. When there is more than one SDRAM bank, and the banks are of
  1997. different size, the larger is mapped first. For equal size, the first
  1998. bank (CS2#) is mapped first. The first mapping is always for address
  1999. 0x00000000, with any additional banks following immediately to create
  2000. contiguous memory starting from 0.
  2001. Then, the monitor installs itself at the upper end of the SDRAM area
  2002. and allocates memory for use by malloc() and for the global Board
  2003. Info data; also, the exception vector code is copied to the low RAM
  2004. pages, and the final stack is set up.
  2005. Only after this relocation will you have a "normal" C environment;
  2006. until that you are restricted in several ways, mostly because you are
  2007. running from ROM, and because the code will have to be relocated to a
  2008. new address in RAM.
  2009. U-Boot Porting Guide:
  2010. ----------------------
  2011. [Based on messages by Jerry Van Baren in the U-Boot-Users mailing
  2012. list, Octover 2002]
  2013. int main (int argc, char *argv[])
  2014. {
  2015. sighandler_t no_more_time;
  2016. signal (SIGALRM, no_more_time);
  2017. alarm (PROJECT_DEADLINE - toSec (3 * WEEK));
  2018. if (available_money > available_manpower) {
  2019. pay consultant to port U-Boot;
  2020. return 0;
  2021. }
  2022. Download latest U-Boot source;
  2023. if (clueless) {
  2024. email ("Hi, I am new to U-Boot, how do I get started?");
  2025. }
  2026. while (learning) {
  2027. Read the README file in the top level directory;
  2028. Read http://www.denx.de/re/DPLG.html
  2029. Read the source, Luke;
  2030. }
  2031. if (available_money > toLocalCurrency ($2500)) {
  2032. Buy a BDI2000;
  2033. } else {
  2034. Add a lot of aggravation and time;
  2035. }
  2036. Create your own board support subdirectory;
  2037. while (!running) {
  2038. do {
  2039. Add / modify source code;
  2040. } until (compiles);
  2041. Debug;
  2042. if (clueless)
  2043. email ("Hi, I am having problems...");
  2044. }
  2045. Send patch file to Wolfgang;
  2046. return 0;
  2047. }
  2048. void no_more_time (int sig)
  2049. {
  2050. hire_a_guru();
  2051. }
  2052. Coding Standards:
  2053. -----------------
  2054. All contributions to U-Boot should conform to the Linux kernel
  2055. coding style; see the file "Documentation/CodingStyle" in your Linux
  2056. kernel source directory.
  2057. Please note that U-Boot is implemented in C (and to some small parts
  2058. in Assembler); no C++ is used, so please do not use C++ style
  2059. comments (//) in your code.
  2060. Submissions which do not conform to the standards may be returned
  2061. with a request to reformat the changes.
  2062. Submitting Patches:
  2063. -------------------
  2064. Since the number of patches for U-Boot is growing, we need to
  2065. establish some rules. Submissions which do not conform to these rules
  2066. may be rejected, even when they contain important and valuable stuff.
  2067. When you send a patch, please include the following information with
  2068. it:
  2069. * For bug fixes: a description of the bug and how your patch fixes
  2070. this bug. Please try to include a way of demonstrating that the
  2071. patch actually fixes something.
  2072. * For new features: a description of the feature and your
  2073. implementation.
  2074. * A CHANGELOG entry as plaintext (separate from the patch)
  2075. * For major contributions, your entry to the CREDITS file
  2076. * When you add support for a new board, don't forget to add this
  2077. board to the MAKEALL script, too.
  2078. * If your patch adds new configuration options, don't forget to
  2079. document these in the README file.
  2080. * The patch itself. If you are accessing the CVS repository use "cvs
  2081. update; cvs diff -puRN"; else, use "diff -purN OLD NEW". If your
  2082. version of diff does not support these options, then get the latest
  2083. version of GNU diff.
  2084. We accept patches as plain text, MIME attachments or as uuencoded
  2085. gzipped text.
  2086. Notes:
  2087. * Before sending the patch, run the MAKEALL script on your patched
  2088. source tree and make sure that no errors or warnings are reported
  2089. for any of the boards.
  2090. * Keep your modifications to the necessary minimum: A patch
  2091. containing several unrelated changes or arbitrary reformats will be
  2092. returned with a request to re-formatting / split it.
  2093. * If you modify existing code, make sure that your new code does not
  2094. add to the memory footprint of the code ;-) Small is beautiful!
  2095. When adding new features, these should compile conditionally only
  2096. (using #ifdef), and the resulting code with the new feature
  2097. disabled must not need more memory than the old code without your
  2098. modification.