CHANGELOG 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  1. ======================================================================
  2. Changes since U-Boot 0.3.1:
  3. ======================================================================
  4. * Patches by Robert Schwebel, 26 Jun 2003:
  5. - logdl
  6. - csb226
  7. - innokom
  8. * Patch by Pantelis Antoniou, 25 Jun 2003:
  9. update NetVia with V2 board support
  10. * Header file cleanup for ARM
  11. * Patch by Murray Jensen, 24 Jun 2003:
  12. - make sure to use only U-boot provided header files
  13. - fix problems with ".rodata.str1.4" section as used by GCC-3.x
  14. * Patch by Stefan Roese, 24 Jun 2003:
  15. - Update esd ASH405 board files.
  16. - Update esd DASA_SIM config file.
  17. - Add ping command to some esd boards.
  18. * Patch by Yuli Barcohen, 23 Jun 2003:
  19. Update for MPC8260ADS board
  20. * Patch by Murray Jensen, 23 Jun 2003:
  21. - cleanup of GCC 3.x compiler warnings
  22. * Patch by Rune Torgersen, 4 Jun 2003:
  23. add large memory support for MPC8266ADS board
  24. * Patch by Richard Woodruff, 19 June 03:
  25. - Enabled standard u-boot device abstraction for ARM
  26. - Enabled console device for ARM
  27. - Initilized bi_baudrate for ARM
  28. * Patch by Bill Hargen, 23 Apr 2003:
  29. fix byte order for 824x I2C addresses (write op)
  30. * Patch by Murray Jensen, 20 Jun 2003:
  31. - hymod update
  32. - cleanup (especially for gcc-3.x compilers)
  33. * Patch by Tom Guilliams, 20 Jun 2003:
  34. added CONFIG_750FX support for IBM 750FX processors
  35. * Patch by Devin Crumb, 02 Apr 2003:
  36. Fix clock divider rounding problem in drivers/serial.c
  37. * Patch by Richard Woodruff, 19 June 03:
  38. - Fixed smc91c111 driver to sync with the u-boot environment
  39. (driver/smc91c111.c).
  40. - Added eth_init error return check in NetLoop (net/net.c).
  41. * Patch by Ken Chou, 19 June 2003:
  42. Added support for A3000 SBC board (Artis Microsystems Inc.)
  43. * Patches by Murray Jensen, 17 Jun 2003:
  44. - Hymod board database mods: add "who" field and new xilinx chip types
  45. - provide new "init_cmd_timeout()" function so code external to
  46. "common/main.c" can use the "reset_cmd_timeout()" function before
  47. entering the main loop
  48. - add DTT support for adm1021 (new file dtt/adm1021.c; config
  49. slightly different. see include/configs/hymod.h for an example
  50. (requires CONFIG_DTT_ADM1021, CONFIG_DTT_SENSORS, and
  51. CFG_DTT_ADM1021 defined)
  52. - add new "eeprom_probe()" function which has similar args and
  53. behaves in a similar way to "eeprom_read()" etc.
  54. - add 8260 FCC ethernet loopback code (new "eth_loopback_test()"
  55. function which is enabled by defining CONFIG_ETHER_LOOPBACK_TEST)
  56. - gdbtools copyright update
  57. - ensure that set_msr() executes the "sync" and "isync" instructions
  58. after the "mtmsr" instruction in cpu/mpc8260/interrupts.c
  59. - 8260 I/O ports fix: Open Drain should be set last when configuring
  60. - add SIU IRQ defines for 8260
  61. - allow LDSCRIPT override and OBJCFLAGS initialization: change to
  62. config.mk to allow board configurations to override the GNU
  63. linker script, selected via the LDSCRIPT, make variable, and to
  64. give an initial value to the OBJCFLAGS make variable
  65. - 8260 i2c enhancement:
  66. o correctly extends the timeout depending on the size of all
  67. queued messages for both transmit and receive
  68. o will not continue with receive if transmit times out
  69. o ensures that the error callback is done for all queued tx
  70. and rx messages
  71. o correctly detects both tx and rx timeouts, only delivers one to
  72. the callback, and does not overwrite an earlier error
  73. o logic in i2c_probe now correct
  74. - add "vprintf()" function so that "panic()" function can be
  75. technically correct
  76. - many Hymod board changes
  77. * Patches by Robert Schwebel, 14 Jun 2003:
  78. - add support for Logotronic DL datalogger board
  79. - cleanup serial line after kermit binary download
  80. - add debugX macro (debug level support)
  81. - update mach-types.h to latest arm.linux.org.uk master list.
  82. * Patches by David Müller, 12 Jun 2003:
  83. - rewrite of the S3C24X0 register definitions stuff
  84. - "driver" for the built-in S3C24X0 RTC
  85. * Patches by Yuli Barcohen, 12 Jun 2003:
  86. - Add MII support and Ethernet PHY initialization for MPC8260ADS board
  87. - Fix incorrect SIUMCR initialisation caused by wrong Hard Reset
  88. configuration word supplied by FPGA on some MPC8260ADS boards
  89. * Patch by Pantelis Antoniou, 10 Jun 2003:
  90. Unify status LED interface
  91. * Add support for DS12887 RTC; add RTC support for ATC board
  92. * Patch by Nicolas Lacressonniere, 11 Jun 2003:
  93. Modifications for Atmel AT91RM9200DK ARM920T based development kit
  94. - Add Atmel DataFlash support for reading and writing.
  95. - Add possibility to boot a Linux from DataFlash with BOOTM command.
  96. - Add Flash detection on Atmel AT91RM9200DK
  97. (between Atmel AT49BV1614 and AT49BV1614A flashes)
  98. - Replace old Ethernet PHY layer functions
  99. - Change link address
  100. * Patch by Frank Smith, 9 Jun 2003:
  101. use CRIT_EXCEPTION for machine check on 4xx
  102. * Patch by Detlev Zundel, 13 Jun 2003:
  103. added implementation of the "carinfo" command in cmd_immap.c
  104. * Fix CONFIG_NET_MULTI support in include/net.h
  105. * Patches by Kyle Harris, 13 Mar 2003:
  106. - Add FAT partition support
  107. - Add command support for FAT
  108. - Add command support for MMC
  109. ----
  110. - Add Intel PXA support for video
  111. - Add Intel PXA support for MMC
  112. ----
  113. - Enable MMC and FAT for lubbock board
  114. - Other misc changes for lubbock board
  115. * Patch by Robert Schwebel, April 02, 2003:
  116. fix for SMSC91111 driver
  117. * Patch by Vladimir Gurevich, 04 Jun 2003:
  118. make ppc405 ethernet driver compatible with CONFIG_NET_MULTI option
  119. * Patch by Stefan Roese, 05 Jun 2003:
  120. - PPC4xx: Fix bug for initial stack in data cache as pointed out by
  121. Thomas Schaefer (tschaefer@giga-stream.de). Now inital stack in
  122. data cache can be used even if the chip select is in use.
  123. - CFG_RX_ETH_BUFFER added to set the ethernet receive buffer count
  124. (see README for further description).
  125. - Changed config files of CONFIG_EEPRO100 boards to use the
  126. CFG_RX_ETH_BUFFER define.
  127. * Add support for RMU board
  128. * Add support for TQM862L at 100/50 MHz
  129. * Patch by Pantelis Antoniou, 02 Jun 2003:
  130. major reconstruction of networking code;
  131. add "ping" support (outgoing only!)
  132. * Patch by Denis Peter, 04 June 2003:
  133. add support for the MIP405T board
  134. * Patches by Udi Finkelstein, 2 June 2003:
  135. - Added support for custom keyboards, initialized by defining a
  136. board-specific drv_keyboard_init as well as defining CONFIG_KEYBOARD .
  137. - Added support for the RBC823 board.
  138. - cpu/mpc8xx/lcd.c now automatically calculates the
  139. Horizontal Pixel Count field.
  140. * Fix alignment problem in BOOTP (dhcp_leasetime option)
  141. [pointed out by Nicolas Lacressonnière, 2 Jun 2003]
  142. * Patch by Mark Rakes, 14 May 2003:
  143. add support for Intel e1000 gig cards.
  144. * Patch by Nye Liu, 3 Jun 2003:
  145. fix critical typo in MAMR definition (include/mpc8xx.h)
  146. * Fix requirement to align U-Boot image on 16 kB boundaries on PPC.
  147. * Patch by Klaus Heydeck, 2 Jun 2003
  148. Minor changes for KUP4K configuration
  149. * Patch by Marc Singer, 29 May 2003:
  150. Fixed rarp boot method for IA32 and other little-endian CPUs.
  151. * Patch by Marc Singer, 28 May 2003:
  152. Added port I/O commands.
  153. * Patch by Matthew McClintock, 28 May 2003
  154. - cpu/mpc824x/start.S: fix relocation code when booting from RAM
  155. - minor patches for utx8245
  156. * Patch by Daniel Engström, 28 May 2003:
  157. x86 update
  158. * Patch by Dave Ellis, 9 May 2003 + 27 May 2003:
  159. add nand flash support to SXNI855T configuration
  160. fix/extend nand flash support:
  161. - fix 'nand erase' command so does not erase bad blocks
  162. - fix 'nand write' command so does not write to bad blocks
  163. - fix nand_probe() so handles no flash detected properly
  164. - add doc/README.nand
  165. - add .jffs2 and .oob options to nand read/write
  166. - add 'nand bad' command to list bad blocks
  167. - add 'clean' option to 'nand erase' to write JFFS2 clean markers
  168. - make NAND read/write faster
  169. * Patch by Rune Torgersen, 23 May 2003:
  170. Update for MPC8266ADS board
  171. * Get (mostly) rid of CFG_MONITOR_LEN definition; compute real length
  172. instead CFG_MONITOR_LEN is now only used to determine _at_compile_
  173. _time_ (!) if the environment is embedded within the U-Boot image,
  174. or in a separate flash sector.
  175. * Cleanup CFG_DER #defines in config files (wd maintained only)
  176. * Fix data abort exception handling for arm920t CPU
  177. * Fix alignment problems with flash driver for TRAB board
  178. * Patch by Donald White, 21 May 2003:
  179. fix calculation of base address in pci_hose_config_device()
  180. * Fix bug in command line parsing: "cmd1;cmd2" is supposed to always
  181. execute "cmd2", even if "cmd1" fails. Note that this is different
  182. to "run var1 var2" where the contents of "var2" will NOT be
  183. executed when a command in "var1" fails.
  184. * Add zero-copy ramdisk support (requires corresponding kernel support!)
  185. * Patch by Kyle Harris, 20 May 2003:
  186. In preparation for an ixp port, rename cpu/xscale and arch-xscale
  187. into cpu/pxa and arch-pxa.
  188. * Patch by Stefan Roese, 23 May 2003:
  189. - IBM PPC405EP port added.
  190. - CONFIG_UART1_CONSOLE added. If defined internal UART1 (and not
  191. UART0) is used as default U-Boot console. PPC4xx only!
  192. - esd ASH405 board added (PPC405EP based).
  193. - BUBINGA405EP board added (PPC405EP based - IBM Eval Board).
  194. - esd CPCI405AB board added.
  195. - esd PMC405 board added.
  196. - Update of some esd boards.
  197. * Patch by Denis Peter, 19 Mai 2003:
  198. add support for the MIP405-3 board
  199. * Patch by Dave Ellis, 22 May 2003:
  200. Fix problem with only partially cleared .bss segment
  201. * Patch by Rune Torgersen, 12 May 2003:
  202. get PCI to work on a MPC8266ADS board; incorporate change to
  203. cpu/mpc8260/pci.c to enable overrides of PCI memory parameters
  204. * Patch by Nye Liu, 1 May 2003:
  205. minor patches for the FADS8xx
  206. * Patch by Thomas Schäfer, 28 Apr 2003:
  207. Fix SPD handling for 256 ECC DIMM on Walnut
  208. * Add support for arbitrary bitmaps for TRAB's VFD command;
  209. allow to pass boot bitmap addresses in environment variables;
  210. allow for zero boot delay
  211. * Patch by Christian Geißinger, 19 May 2002:
  212. On TRAB: wait until the dummy byte has been completely sent
  213. * Patch by David Updegraff, 22 Apr 2003:
  214. update for CrayL1 board
  215. * Patch by Pantelis Antoniou, 21 Apr 2003:
  216. add boot support for ARTOS (a proprietary OS)
  217. * Patch by Steven Scholz, 11 Apr 2003:
  218. Add support for RTC DS1338
  219. * Patch by Rod Boyce, 24 Jan 2003:
  220. Fix counting of extended partitions in diskboot command
  221. * Patch by Christophe Lindheimer, 20 May 2003:
  222. allow the use of CFG_LOADS when CFG_NO_FLASH is set
  223. * Fix SDRAM timing on Purple board
  224. * Add support for CompactFlash on ATC board
  225. (includes support for Intel 82365 and compatible PC Card controllers,
  226. and Yenta-compatible PCI-to-CardBus controllers)
  227. * Patch by Mathijs Haarman, 08 May 2003:
  228. Add lan91c96 driver (tested on Lubbock and custom PXA250 board only)
  229. * Fix problem with usage of "true" (undefined in current versions of bfd.h)
  230. * Add support for Promess ATC board
  231. * Patch by Keith Outwater, 28 Apr 2003:
  232. - Miscellaneous corrections and additions to GEN860T board specific code.
  233. - Added GEN860_SC variant to GEN860T.
  234. - Miscellaneous corrections to GEN860T documentation.
  235. - Correct duplicate entry in U-Boot CREDITS file.
  236. - Add GEN860T_SC entry in MAINTAINERS file.
  237. - Update CREDITS file with GEN860T_SC info.
  238. * Update Smiths Aerospace addresses in MAINTAINERS file
  239. * Fix error handling in hush's version of "run" command
  240. * LWMON extensions:
  241. - Splashscreen support
  242. - modem support
  243. - sysmon support
  244. - temperature dependend enabling of LCD
  245. * Allow booting from old "PPCBoot" disk partitions
  246. * Add support for TQM8255 Board / MPC8255 CPU
  247. ======================================================================
  248. Changes for U-Boot 0.3.1:
  249. ======================================================================
  250. * Make sure Block Lock Bits get cleared in R360MPI flash driver
  251. * MPC823 LCD driver: Fill color map backwards, to allow for steady
  252. display when Linux takes over
  253. * Patch by Erwin Rol, 27 Feb 2003:
  254. Add support for RTEMS (this time for real).
  255. * Add support for "bmp info" and "bmp display" commands to load
  256. bitmap images; this can be used (for example in a "preboot"
  257. command) to display a splash screen very quickly after poweron.
  258. * Add support for 133 MHz clock on INCA-IP board
  259. * Patch by Lutz Dennig, 10 Apr 2003:
  260. Update for R360MPI board
  261. * Add new meaning to "autostart" environment variable:
  262. If set to "no", a standalone image passed to the
  263. "bootm" command will be copied to the load address
  264. (and eventually uncompressed), but NOT be started.
  265. This can be used to load and uncompress arbitrary
  266. data.
  267. * Patch by Stefan Roese, 10 Apr 2003:
  268. Changed DHCP client to use IP address from server option field #54
  269. from the OFFER packet in the server option field #54 in the REQUEST
  270. packet. This fixes a problem using a Windows 2000 DHCP server,
  271. where the DHCP-server is not the TFTP-server.
  272. * Set max brightness for MN11236 displays on TRAB board
  273. * Add support for TQM862L modules
  274. ======================================================================
  275. Changes for U-Boot 0.3.0:
  276. ======================================================================
  277. * Patch by Arun Dharankar, 4 Apr 2003:
  278. Add IDMA example code (tested on 8260 only)
  279. * Add support for Purple Board (MIPS64 5Kc)
  280. * Add support for MIPS64 5Kc CPUs
  281. * Fix missing setting of "loadaddr" and "bootfile" on ARM and MIPS
  282. * Patch by Denis Peter, 04 Apr 2003:
  283. - update MIP405-4 board
  284. * Patch by Stefan Roese, 4 Apr 2003:
  285. - U-Boot version environment variable "ver" added
  286. (CONFIG_VERSION_VARIABLE).
  287. - Changed PPC405GPr version from A to B.
  288. - Changed CPCI405 to use CTS instead of DSR on PPC405 UART1.
  289. * Patches by Denis Peter, 03 April 2003:
  290. - fix PCI IRQs on MPL boards
  291. - fix two more un-relocated pointer problems
  292. * Fix behaviour of "run" command:
  293. - print error message iv variable does not exist
  294. - terminate processing of arguments in case of error
  295. * Patches by Peter Figuli, 10 Mar 2003
  296. - Add support for BTUART on PXA platform
  297. - Add support for WEP EP250 (PXA) board
  298. * Fix flash problems on INCA-IP; add tool to allow bruning images to
  299. flash using a BDI2000
  300. * Implement fix for I2C Edge Conditions problem for all boards that
  301. use the bit-banging driver (common/soft_i2c.c)
  302. * Patch by Martin Winistoerfer, 23 Mar 2003
  303. - Add port to MPC555/556 microcontrollers
  304. - Add support for cmi customer board with
  305. Intel 28F128J3A, 28F320J3A or 28F640J3A flash.
  306. * Patch by Rick Bronson, 28 Mar 2003:
  307. - fix common/cmd_nand.c
  308. * Patch by Arun Dharankar, 24 Mar 2003:
  309. - add threads / scheduler example code
  310. * Add patches by Robert Schwebel, 31 Mar 2003:
  311. - add ctrl-c support for kermit download
  312. - align bdinfo output on ARM
  313. - csb226 board: bring in sync with innokom/memsetup.S
  314. - csb226 board: fix MDREFR handling
  315. - misc doc fixes / extensions
  316. - innokom board: cleanup, MDREFR fix in memsetup.S, config update
  317. - add BOOT_PROGRESS to armlinux.c
  318. * Add CPU ID, version, and clock speed for INCA-IP
  319. * Patches by Dave Ellis, 18 Mar 2003 for SXNI855T board:
  320. - fix SRAM and SDRAM memory sizing
  321. - add status LED support
  322. - add MAC address for second (SCC1) ethernet port
  323. * Update default environment for TQM8260 board
  324. * Patch by Rick Bronson, 16 Mar 2003:
  325. - Add NAND flash support for reading, writing, and erasing NAND
  326. flash (certain forms of which are called SmartMedia).
  327. - Add support for Atmel AT91RM9200DK ARM920T based development kit.
  328. * Patches by Robert Schwebel, 19 Mar 2003:
  329. - use arm-linux-gcc as default compiler for ARM
  330. - fix i2c fixup code
  331. - fix missing baudrate setting
  332. - added $loadaddr / CFG_LOAD_ADDR support to loadb
  333. - moved "ignoring trailing characters" _before_ u-boot wants to
  334. print out diagnostics messages; removes bogus characters at the
  335. end of transmission
  336. * Patch by John Zhan, 18 Mar 2003:
  337. Add support for SinoVee Microsystems SC8xx boards
  338. * Patch by Rolf Offermanns, 21 Mar 2003:
  339. ported the dnp1110 related changes from the current armboot cvs to
  340. current u-boot cvs. smc91111 does not work. problem marked in
  341. smc91111.c, grep for "FIXME".
  342. * Patch by Brian Auld, 25 Mar 2003:
  343. Add support for STM flash chips on ebony board
  344. * Add PCI support for MPC8250 Boards (PM825 module)
  345. * Patch by Stefan Roese, 25 Mar 2003:
  346. - PCI405 update.
  347. * Patch by Stefan Roese, 20 Mar 2003:
  348. - CPCI4052 update (support for revision 3).
  349. - Set edge conditioning circuitry on PPC405GPr for compatibility
  350. to existing PPC405GP designs.
  351. - Clip udiv to 5 bits on PPC405 (serial.c).
  352. * Extend INCAIP board support:
  353. - add automatic RAM size detection
  354. - add "bdinfo" command
  355. - pass flash address and size to Linux kernel
  356. - switch to 150 MHz clock
  357. * Avoid flicker on the TRAB's VFD by synchronizing the enable with
  358. the HSYNC/VSYNC. Requires new CPLD code (Version 101 for Rev. 100
  359. boards, version 153 for Rev. 200 boards).
  360. * Patch by Vladimir Gurevich, 12 Mar 2003:
  361. Fix relocation problem of statically initialized string pointers
  362. in common/cmd_pci.c
  363. * Patch by Kai-Uwe Blöm, 12 Mar 2003:
  364. Cleanup & bug fixes for JFFS2 code:
  365. - the memory mangement was broken. It caused havoc on malloc by
  366. writing beyond the block boundaries.
  367. - the length calculation for files was wrong, sometimes resulting
  368. in short file reads.
  369. - data copying now optionally takes fragment version numbers into
  370. account, to avoid copying from older data.
  371. See doc/README.JFFS2 for details.
  372. * Patch by Josef Wagner, 12 Mar 2003:
  373. - 16/32 MB and 50/80 MHz support with auto-detection for IP860
  374. - ETH05 and BEDBUG support for CU824
  375. - added support for MicroSys CPC45
  376. - new BOOTROM/FLASH0 and DOC base for PM826
  377. * Patch by Robert Schwebel, 12 Mar 2003:
  378. Fix the chpart command on innokom board
  379. * Name cleanup:
  380. mv include/asm-i386/ppcboot-i386.h include/asm-i386/u-boot-i386.h
  381. s/PPCBoot/U-Boot/ in some files
  382. s/pImage/uImage/ in some files
  383. * Patch by Detlev Zundel, 15 Jan 2003:
  384. Fix '' command line quoting
  385. * Patch by The LEOX team, 19 Jan 2003:
  386. - add support for the ELPT860 board
  387. - add support for Dallas ds164x RTC
  388. * Patches by David Müller, 31 Jan 2003:
  389. - minimal setup for CardBus bridges
  390. - add EEPROM read/write support in the CS8900 driver
  391. - add support for the builtin I2C controller in the Samsung s3c24x0 chips
  392. - add support for MPL's VCMA9 (Samsung s3c2410 based) board
  393. * Patch by Steven Scholz, 04 Feb 2003:
  394. add support for RTC DS1307
  395. * Patch by Reinhard Meyer, 5 Feb 2003:
  396. fix PLPRCR/SCCR init sequence on 8xx to allow for
  397. changes of EBDF by software
  398. * Patch by Vladimir Gurevich, 07 Feb 2003:
  399. "API-compatibility patch" for 4xx I2C driver
  400. * TRAB fixes / extensions:
  401. - Restore VFD brightness as saved in environment
  402. - add support for Fujitsu flashes
  403. - make sure both buzzers are turned off (drive low level)
  404. * Patches by Robert Schwebel, 06 Mar 2003:
  405. - fix bug in BOOTP code (must use NetCopyIP)
  406. - update of CSB226 port
  407. - clear BSS segment on XScale
  408. - added support for i2c_init_board() function
  409. - update to the Innokom plattform
  410. * Extend support for redundand environments for configurations where
  411. environment size < sector size
  412. * Patch by Rune Torgersen, 13 Feb 2003:
  413. Add support for Motorola MPC8266ADS board
  414. * Patch by Kyle Harris, 19 Feb 2003:
  415. patches for the Intel lubbock board:
  416. memsetup.S - general cleanup (based on Robert's csb226 code)
  417. flash.c - overhaul, actually works now
  418. lubbock.c - fix init funcs to return proper value
  419. * Patch by Kenneth Johansson, 26 Feb 2003:
  420. - Fixed off by one in RFTA calculation.
  421. - No need to abort when LDF is lower than we can program it's only
  422. minimum timing so clamp it to what we can do.
  423. - Takes function pointer to function for reading the spd_nvram. Usefull
  424. for faking data or hardcode a module without the nvram.
  425. - fix other user for above change
  426. - fix some comments.
  427. * Patches by Brian Waite, 26 Feb 2003:
  428. - fix port for evb64260 board
  429. - fix PCI for evb64260 board
  430. - fix PCI scan
  431. * Patch by Reinhard Meyer, 1 Mar 2003:
  432. Add support for EMK TOP860 Module
  433. * Patch by Yuli Barcohen, 02 Mar 2003:
  434. Add SPD EEPROM support for MPC8260ADS board
  435. * Patch by Robert Schwebel, 21 Jan 2003:
  436. - Add support for Innokom board
  437. - Don't complain if "install" fails
  438. - README cleanup (remove duplicated lines)
  439. - Update PXA header files
  440. * Add documentation for existing POST code (doc/README.POST)
  441. * Patch by Laudney Ren, 15 Jan 2003:
  442. Fix handling of redundand environment in "tools/envcrc.c"
  443. * Patch by Detlev Zundel, 28 Feb 2003:
  444. Add bedbug support for 824x systems
  445. * Add support for 16 MB flash configuration of TRAB board
  446. * Patch by Erwin Rol, 27 Feb 2003:
  447. Add support for RTEMS
  448. * Add image information to README
  449. * Patch by Stefan Roese, 18 Feb 2003:
  450. CPCIISER4 configuration updated.
  451. * Patch by Stefan Roese, 17 Feb 2003:
  452. Fixed bug in ext. serial clock setup on PPC405 (since PPC440 port).
  453. * Patch by Stefan Roese, 13 Feb 2003:
  454. Add "pcidelay" environment variable (in ms, enabled via
  455. CONFIG_PCI_BOOTDELAY).
  456. PCI spec 2.2 defines, that a pci target has 2^25 pci clocks after
  457. RST# to respond to configuration cycles (33MHz -> 1s).
  458. * Fix dual PCMCIA slot support (when running with just one
  459. slot populated)
  460. * Add VFD type detection to trab board
  461. * extend drivers/cs8900.c driver to synchronize ethaddr environment
  462. variable with value in the EEPROM
  463. * Patch by Stefan Roese, 10 Feb 2003:
  464. Add support for 4MB and 128MB onboard SDRAM (cpu/ppc4xx/sdram.c)
  465. * Add support for MIPS32 4Kc CPUs
  466. * Add support for INCA-IP Board
  467. ======================================================================
  468. Changes for U-Boot 0.2.2:
  469. ======================================================================
  470. * Add dual ethernet support on PM826
  471. * Add support for LXT971 PHY on PM826
  472. * Patch by Tord Andersson, 16 Jan 2003:
  473. Fix flash sector count for TQM8xxL
  474. * Fix I2C EEPROM problem on ICU862 board (would only write the first
  475. 16 bytes out of each 32 byte block)
  476. ======================================================================
  477. Changes for U-Boot 0.2.1:
  478. ======================================================================
  479. * Add support for V37 board
  480. (patch by Jón Benediktsson, 11 Dec 2002)
  481. * Update baudrate in bd_info when it gets changed
  482. * Add watchdog trigger points while waiting for serial port
  483. (so far only 8xx -- needed on LWMON with 100ms watchdog)
  484. * Improve command line tool to access the U-Boot's environment
  485. (figuration of the utility, using a config file)
  486. * Add single quote support for (old) command line parser
  487. * Switch LWMON board default config from FRAM to EEPROM;
  488. in POST, EEPROM shows up on 8 addresses
  489. ======================================================================
  490. Changes for U-Boot 0.2.0:
  491. ======================================================================
  492. * Use 1-byte-read instead of -write for iprobe() function
  493. Add i2c commands to PM826 config
  494. * extend I2C POST code: check for list on known addresses
  495. * Improve log buffer code; use "loglevel" to decide which messages
  496. to log on the console, too (like in Linux); get rid of "logstart"
  497. * Add command line tool to access the U-Boot's environment
  498. (board-specific for TRAB now, to be fixed later)
  499. * Patch by Hans-Joerg Frieden, 06 Dec 2002
  500. Fix misc problems with AmigaOne support
  501. * Patch by Chris Hallinan, 3 Dec 2002:
  502. minor cleanup to the MPC8245 EPIC driver
  503. * Patch by Pierre Aubert , 28 Nov 2002
  504. Add support for external (SIU) interrupts on MPC8xx
  505. * Patch by Pierre Aubert , 28 Nov 2002
  506. Fix nested syscalls bug in standalone applications
  507. * Patch by David Müller, 27 Nov 2002:
  508. fix output of "pciinfo" command for CardBus bridge devices.
  509. * Fix bug in TQM8260 board detection - boards got stuck when board ID
  510. was not readable
  511. * Add LED indication for IDE activity on KUP4K board
  512. * Fix startup problems with VFD display on TRAB
  513. * Patch by Pierre Aubert, 20 Nov 2002
  514. Add driver for Epson SED13806 graphic controller.
  515. Add support for BMP logos in cfb_console driver.
  516. * Added support for both PCMCIA slots (at the same time!) on MPC8xx
  517. * Patch by Rod Boyce, 21 Nov 2002:
  518. fix PCMCIA on MBX8xx board
  519. * Patch by Pierre Aubert , 21 Nov 2002
  520. Add CFG_CPM_POST_WORD_ADDR to make the offset of the
  521. bootmode word in DPRAM configurable
  522. * Patch by Daniel Engström, 18 Nov 2002:
  523. Fixes for x86 port (mostly strings issues)
  524. * Patch by Ken Chou, 18 Nov 2002:
  525. Fix for natsemi NIC cards (DP83815)
  526. * Patch by Pierre Aubert, 19 Nov 2002:
  527. fix a bug for the MII configuration, and some warnings
  528. * Patch by Thomas Frieden, 13 Nov 2002:
  529. Add code for AmigaOne board
  530. (preliminary merge to U-Boot, still WIP)
  531. * Patch by Jon Diekema, 12 Nov 2002:
  532. - Adding URL for IEEE OUI lookup
  533. - Making the autoboot #defines dependent on CONFIG_AUTOBOOT_KEYED
  534. being defined.
  535. - In the CONFIG_EXTRA_ENV_SETTINGS #define, the root-on-initrd and
  536. root-on-nfs macros are designed to switch how the default boot
  537. method gets defined.
  538. * Patch by Daniel Engström, 13 Nov 2002:
  539. Add support for i386 architecture and AMD SC520 board
  540. * Patch by Pierre Aubert, 12 Nov 2002:
  541. Add support for DOS filesystem and booting from DOS floppy disk
  542. * Patch by Jim Sandoz, 07 Nov 2002:
  543. Increase number of network RX buffers (PKTBUFSRX in
  544. "include/net.h") for EEPRO100 based boards (especially SP8240)
  545. which showed "Receiver is not ready" errors when U-Boot was
  546. processing the receive buffers slower than the network controller
  547. was filling them.
  548. * Patch by Andreas Oberritter, 09 Nov 2002:
  549. Change behaviour of NetLoop(): return -1 for errors, filesize
  550. otherwise; return code 0 is valid an means no file loaded - in this
  551. case the environment still gets updated!
  552. * Patches by Jon Diekema, 9 Nov 2002:
  553. - improve ADC/DAC clocking on the SACSng board to align
  554. the failing edges of LRCLK and SCLK
  555. - sbc8260 configuration tweaks
  556. - add status LED support for 82xx systems
  557. - wire sspi/sspo commands into command handler; improved error
  558. handlering
  559. - add timestamp support and alternate memory test to the
  560. SACSng configuration
  561. * Patch by Vince Husovsky, 7 Nov 2002:
  562. Add "-n" to linker options to get rid of "Not enough room for
  563. program headers" problem
  564. * Patch by David Müller, 05 Nov 2002
  565. Rename CONFIG_PLL_INPUT_FREQ to CONFIG_SYS_CLK_FREQ
  566. so we can use an already existing name
  567. * Patch by Pierre Aubert, 05 Nov 2002
  568. Hardware relatied improvments in FDC boot code
  569. * Patch by Holger Schurig, 5 Nov 2002:
  570. Make the PXA really change it's frequency
  571. * Patch by Pierre Aubert, 05 Nov 2002
  572. Add support for slave serial Spartan 2 FPGAs
  573. * Fix uninitialized memory (MAC address) in 8xx SCC/FEC ethernet
  574. drivers
  575. * Add support for log buffer which can be passed to Linux kernel's
  576. syslog mechanism; used especially for POST results.
  577. * Patch by Klaus Heydeck, 31 Oct 2002:
  578. Add initial support for kup4k board
  579. * Patch by Robert Schwebel, 04 Nov 2002:
  580. - use watchdog to reset PXA250 systems
  581. - added progress callbacks to (some of the) ARM code
  582. - update for Cogent CSB226 board
  583. * Add support for FPS860 board
  584. * Patch by Guillaume Alexandre,, 04 Nov 2002:
  585. Improve PCI access on 32-bits Compact PCI bus
  586. * Fix mdelay() on TRAB - this was still the debugging version with
  587. seconds instead of ms.
  588. * Patch by Robert Schwebel, 1 Nov 2002:
  589. XScale related cleanup (affects all ARM boards)
  590. * Cleanup of names and README.
  591. ======================================================================
  592. Notes for U-Boot 0.1.0:
  593. ======================================================================
  594. This is the initial version of "Das U-Boot", the Universal Boot Loader.
  595. It is based on version 2.0.0 (the "Halloween Release") of PPCBoot.
  596. For information about the history of the project please see the
  597. PPCBoot project page at http://sourceforge.net/projects/ppcboot
  598. ======================================================================