Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-19 | Add additional error messages to flash driver on TRAB board | Wolfgang Denk | |
(for erase errors and timeout errors) Patch by Martin Krause, 14 Feb 2006 | |||
2006-07-19 | Add support for TB5200 board | Wolfgang Denk | |
The TB5200 ("Tinybox") is a small baseboard for the TQM5200 module integrated in a little aluminium case. Patch by Martin Krause, 8 Jun 2006 Some code cleanup | |||
2006-07-18 | Enable buffered flash writes for TQM5200 board. | Wolfgang Denk | |
2006-07-14 | Merge with /home/tur/proj/usb_sticks/u-boot | Wolfgang Denk | |
2006-07-13 | Update CHANGELOG | Wolfgang Denk | |
2006-07-13 | Merge with /home/mk/11-cmb1920/u-boot | Wolfgang Denk | |
2006-07-13 | Merge branch 'mpc86xx' | Jon Loeliger | |
2006-07-13 | Add support for reading and writing mac addresses to or from ID EEPROM. | Haiying Wang | |
Added code for reading and writing Mac addresses to/from ID EEPROM(0x57). With attached patch, we can use command "mac/mac read/mac save/" to read and write EEPROM under u-boot prompt. U-boot will calculate the checksum of EEPROM while bootup, if it is right, then u-boot will check whether the mac address of eTSEC0/1/2/3 is availalbe (non-zero). If there is mac address availabe in EEPROM, u-boot will use it, otherewise, u-boot will use the mac address defined in MPC8641HPCN.h. This matches the requirement to set unique mac address for each TSEC port. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: York Sun <yorksun@freescale.com> | |||
2006-07-13 | Fixed initrd issue by define big RAM | Jin Zhengxiong | |
Signed-off-by:Jason Jin <Jason.jin@freescale.com> | |||
2006-07-13 | Cleanup duplicate definitions in MCC200 config file. | Wolfgang Denk | |
2006-07-13 | Fix problems with SanDisk Corporation Cruzer Micro USB memory stick. | Bartlomiej Sieka | |
2006-07-12 | Add support for TQM885D board. | Markus Klotzbuecher | |
Patch by Martin Krause, 20 Mar 2006 Signed-off-by: Martin Krause <martin.krause@tqs.de> | |||
2006-07-12 | Bugfix in FEC initialisation: | Markus Klotzbuecher | |
All MII configuration is done via FEC1 registers. But MII_SPEED was configured according to FEC used. So if only FEC2 was used, this caused the real MII_SPEED register in FEC1 to stay uninitalised, what lead to "mii_send STUCK!" messages. Fix: always configure MII_SPEED on FEC1 only. | |||
2006-07-12 | Support for spc1920 board. | Markus Klotzbuecher | |
Patch by Markus Klotzbuecher, 12 Jul 2006 | |||
2006-07-11 | MCC200 board: support console on any one of the Quad UART ports. | Wolfgang Denk | |
2006-07-10 | Fix error in flash protection calculation on MCC200 board. | Wolfgang Denk | |
2006-07-10 | Major PCMCIA Cleanup to make code better readable and maintainable. | Wolfgang Denk | |
Notes: - Board-dependend code for RPXLITE and RPXCLASSIC-based boards placed to the drivers/rpx_pmcia.c file to avoid duplication. Same for TQM8xx-based boards (drivers/tqm8xx_pmcia.c). - drivers/i82365.c has been split into two parts located at board/atc/ti113x.c and board/cpc45/pd67290.c (ATC and CPC45 are the only boards using CONFIG_82365). - Changes were tested for clean build and *very* *few* boards. | |||
2006-07-07 | Merge branch 'mpc86xx' | Jon Loeliger | |
2006-07-07 | We made a u-boot patch to fix the hang up issue | Jason Jin | |
when booting filesystem from ramdisk. Signed-off-by:Jason Jin <Jason.jin@freescale.com> | |||
2006-07-06 | MCC200: map the 2nd Quad UART into the processor's address space. | Wolfgang Denk | |
2006-07-06 | Fix timer problems on AMCC yucca board. | Marian Balakowicz | |
Set Timer Clock Select to use CPU clock as a timer input source. | |||
2006-07-05 | Bring yucca config more in line with other AMCC boards. | Wolfgang Denk | |
2006-07-05 | Merge with /home/m8/git/u-boot | Wolfgang Denk | |
2006-07-04 | Add AMCC bamboo board to MAKEALL build script. | Marian Balakowicz | |
2006-07-04 | Fix AMCC bamboo eval board compilation errors. | Marian Balakowicz | |
2006-07-04 | Add system memory to the PCI region list for AMCC PPC44x CPUs. | Marian Balakowicz | |
Enabled it for Yucca board. | |||
2006-07-03 | Cleanup config file and bootup output for Yucca board. | Marian Balakowicz | |
2006-06-30 | Fix CHANGELOG | Wolfgang Denk | |
2006-06-30 | Merge with /home/m8/git/u-boot | Wolfgang Denk | |
2006-06-30 | Fix CONFIG_440_GX define usage. | Marian Balakowicz | |
2006-06-30 | Remove autogenerated bmp_logo.h file. | Marian Balakowicz | |
2006-06-30 | Merge: Add support for AMCC 440SPe CPU based eval board (Yucca). | Marian Balakowicz | |
2006-06-30 | Add support for AMCC 440SPe CPU based eval board (Yucca). | Marian Balakowicz | |
2006-06-30 | Call serial_initialize() before first debug() is used. | Marian Balakowicz | |
2006-06-28 | Merge branch 'mpc86xx' | Jon Loeliger | |
2006-06-28 | Change Id to symbolic name for RTL8139 | Jin Zhengxiong | |
Signed-off-by: Jason Jin <Jason.jin@freescale.com> | |||
2006-06-27 | Merge branch 'mpc86xx' | Jon Loeliger | |
2006-06-27 | Fix RTL8139 in big endian | Jin Zhengxiong-R64188 | |
signed-off-by: Jason Jin <Jason.Jin@freescale.com> signed-off-by: Wei Zhang <wei.zhang@freescale.com> | |||
2006-06-27 | Fix Tsec bug when no link | Jin Zhengxiong-R64188 | |
When tftp a non-exist file from the tftp server, u-boot will check the link of all eth port. The original file will return wrong link state on the no link ports. signed-off-by: Jason Jin <Jason.Jin@freescale.com> | |||
2006-06-27 | Fix bug for io_bar size during pci scan | Jin Zhengxiong-R64188 | |
During the pci scan process, Some devices return bar_reponse with the highest bytes 0, such as the pci bridge in uli1575 return bar_response with 0xffffff, So the bar_size should be manually set under 64K. Signed-off-by: Jason Jin <jason.jin@freescale.com> | |||
2006-06-27 | Enable PCIE1 for MPC8641HPCN board | Jin Zhengxiong-R64188 | |
Signed-off-by: Jason Jin <Jason.jin@freescale.com> | |||
2006-06-26 | Cleanup trab board for GCC-4.x | Wolfgang Denk | |
2006-06-22 | Merge branch 'mpc86xx' | Jon Loeliger | |
2006-06-22 | Fix bug in 8641hpcn reset command with no args. | Jon Loeliger | |
Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Acked-by: Jon Loeliger <jdl@freescale.com> | |||
2006-06-22 | Reworked IRQ mapping in OF-tree. | Zhang Wei | |
2006-06-20 | Merge with /home/hs/U-Boot/u-boot-dev | Wolfgang Denk | |
2006-06-19 | Add support for wrPPMC7xx/74xx boards | Heiko Schocher | |
Patch from Richard Danter, 12 Aug 2005 | |||
2006-06-19 | Merge with ssh://atlas/home/wd/git/u-boot/work | Wolfgang Denk | |
2006-06-19 | Merge with ssh://fifi/home/wd/git/u-boot/master | Wolfgang Denk | |
2006-06-16 | Add support for gth2 board | Wolfgang Denk | |
Patch by Thomas Lange, Aug 11 2005 |