summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-08-30Prepare U-Boot for gcc-4.x: fix global data pointer initializationWolfgang Denk1-9/+1
The global data pointer, stored in r29 before relocation to RAM, was not initialized to a correct value. This happened because the pointer declaration was done locally in the scope of the board_init_f() function. What follows is a cite from gcc.info, 5.37, "Variables in Specified Registers": ... The compiler's data flow analysis is capable of determining where the specified registers contain live values, and where they are available for other uses. Stores into local register variables may be deleted when they appear to be dead according to dataflow analysis. References to local register variables may be deleted or moved or simplified. ... Moving the global data declaration to global scope solved the problem.
2005-08-30Adjust CS3 timings on HMI1001 board for dot matrix display under LinuxWolfgang Denk1-1/+1
2005-08-30Add keyboard and dot matrix display support for HMI1001 board.Wolfgang Denk5-7/+224
2005-08-26Prepare U-Boot for gcc-4.xWolfgang Denk4-13/+29
2005-08-24Minor reformattingWolfgang Denk1-2/+2
2005-08-24Fixed bamboo port to enable running without DDR-DIMM (bamboo has also 64MB ↵Stefan Roese2-0/+6
onboard DDR) Patch by Stefan Roese, 24 Aug 2005
2005-08-23Update CHANGELOGWolfgang Denk1-0/+4
2005-08-23Merge with testing-4xx_enet (Create generic 4xx Ethernet code)Wolfgang Denk61-1869/+419
2005-08-23Fix make dependencies for at91rm9200 and ks8695 cpusWolfgang Denk3-4/+7
Patch by Steven Scholz, 23 Aug 2005
2005-08-23Add JFFS2 support for TQM5200 boardWolfgang Denk2-0/+12
2005-08-22Add esd cpci5200 and pf5200 boardsStefan Roese18-3/+3231
Patch by Reinhard Arlt, 22 Aug 2005
2005-08-19Fix erroneous commitWolfgang Denk1-214/+0
2005-08-19Fix MPC52xx watchdog driverWolfgang Denk1-0/+214
- make watchdog driver work on systems with an IPB clock frequency of 133 MHz (watchdog expired to fast there). - now all three watchdog chain entries could be used. - fix some typos. Patch by Martin Krause, 23 Jun 2005
2005-08-19Fix sysclock for TQM8540 and TQM8560 boardsWolfgang Denk3-2/+5
Patch by Martin Krause, 25 Jul 2005
2005-08-19Initialize serial# and ethaddr from manufacturer data in EEPROM on CMC-PU2Wolfgang Denk4-1/+130
Patch by Martin Krause, 08 Jun 2005
2005-08-19Add new board specific commands for TQM5200/STK52XXWolfgang Denk9-15/+1338
- Sound commands (beep, wav, sound) - Test commands (led, can, backlight, rs232) Patch by Martin Krause, 02 May 2005
2005-08-19Change main clock on CMC-PU2 board from 207 MHz to 179 MHzWolfgang Denk2-2/+6
because of a bug in the AT91RM9200 CPU PLL Patch by Martin Krause, 22 Apr 2005
2005-08-19Add automatic HW detection for another CMC_PU2 variantWolfgang Denk2-7/+23
Patch by Martin Krause, 20 Apr 2005
2005-08-18Remove CONFIG_AT91RM9200DK in CMC-PU2 configurationWolfgang Denk2-1/+3
Patch by Martin Krause, 19 Apr 2005
2005-08-18Fix initialization problem on TQM5200 without SM501Wolfgang Denk2-9/+44
Patch by Martin Krause, 8 Apr. 2005
2005-08-18Add RTC support for STK52XX.200Wolfgang Denk2-1/+9
Patch by Martin Krause, 7 Apr. 2005
2005-08-18Add 82dnt board supportWolfgang Denk12-5/+1301
2005-08-18Add CHANEGLOG entry; sort Makefile entriesWolfgang Denk2-3/+5
2005-08-18Minor Makefile cleanupWolfgang Denk1-1/+1
2005-08-16Disable SNTP for O2DNT board.1-1/+0
2005-08-16CONFIG_PCI_SCAN_SHOW disabled for O2DNT.1-1/+1
2005-08-16Merged 405gp_enet.c and 440gx_enet.c to generic 4xx_enet.cStefan Roese62-1869/+423
now handling all 4xx cpu's. Patch by Stefan Roese, 16 Aug 2005
2005-08-16Merge with pollux.denx.org:/home/git/u-boot/.git93-2722/+10730
2005-08-16Enable PCI on hmi1001 boardWolfgang Denk3-0/+30
2005-08-16Fix return values of the jffs2 commands ls/fsload/fsinfo,Wolfgang Denk3-7/+12
so we can use them to, e.g., check the existence of a file with "if ls foo; then this; else that; fi" in the hush shell Patch by Andreas Engel, 16 August 2005
2005-08-15Coding style cleanupWolfgang Denk12-344/+273
2005-08-15Add support for Silicon Turnkey eXpress XTc (mpc87x/88x) board.Wolfgang Denk12-1/+1643
Patch by Dan Malek and Pantelis Antoniou, 15 Aug 2005
2005-08-15Changed to version 1.1.4Stefan Roese1-1/+1
2005-08-15Add Sandburst Metrobox and Sandburst Karef board support packages.Stefan Roese34-13/+6437
Second serial port on 440GX now defined as a system device. Add 'Short Etch' code for Cicada PHY within 440gx_enet.c Patch by Travis B. Sawyer, 12 Jul 2005 Check return value of malloc in 440gx_enet.c Patch by Travis B. Sawyer, 18 Jul 2005
2005-08-14Fix build problemsWolfgang Denk1-1/+1
2005-08-14Adjust MAKEALL script for little endian MIPS build testsWolfgang Denk1-2/+14
2005-08-13Code cleanup.Wolfgang Denk1-4/+1
2005-08-13Merge with /home/wd/git/u-boot/masterWolfgang Denk4-163/+171
2005-08-13make "make clean" remove all build resultsWolfgang Denk1-1/+1
2005-08-13Fix compiler warningsWolfgang Denk3-162/+170
2005-08-12Merge with /home/wd/git/u-boot/masterWolfgang Denk89-3516/+4134
2005-08-12Remove stale file entryWolfgang Denk1-541/+0
2005-08-12Minor code cleanupWolfgang Denk5-27/+27
2005-08-12Add forgotten new fils from latest VoiceBlue updateWolfgang Denk3-0/+65
2005-08-12Make bootretry feature work with hush shell.Wolfgang Denk2-0/+22
Caveat: this currently *requires* CONFIG_RESET_TO_RETRY to be set, too. Patch by Andreas Engel, 19 Jul 2005
2005-08-12Update Hymod Board Database PHP code in "tools" directoryWolfgang Denk16-155/+252
Patch by Murray Jensen, 01 Jul 2005
2005-08-12Make "tr" command use POSIX compliant; export HOSTOS make variableWolfgang Denk2-2/+5
Patch by Murray Jensen, 30 Jun 2005
2005-08-12Fix Murray Jensen's mail address.Wolfgang Denk24-26/+28
Patch by Murray Jensen, 30 Jun 2005
2005-08-12Preserve PHY_BMCR during a soft reset.Wolfgang Denk2-1/+10
Patch by Carl Riechers, 24 Jun 2005
2005-08-12VoiceBlue update: eeprom tool can also store firmware version now.Wolfgang Denk3-39/+117
eeprom.bin is runable by jumping at load address. Patch by Ladislav Michl, 23 May 2005