summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-02-21[PATCH v3] Add sync to ensure flash_write_cmd is fully finishedHaiying Wang
Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command is fully finished. The sync() is defined in each CPU's io.h file. For those CPUs which do not need sync for now, a dummy sync() is defined in their io.h as well. Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2007-02-21[PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)Stefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-21Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese
2007-02-21Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese
2007-02-20[PATCH] Fix relocation problem with "new" get_dev() functionStefan Roese
This patch enables the "new" get_dev() function for block devices introduced by Grant Likely to be used on systems that still suffer from the relocation problems (manual relocation neede because of problems with linker script). Hopefully we can resolve this relocation issue soon for all platform so we don't need this additional code anymore. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] Update SystemACE driver for 16bit accessStefan Roese
This patch removes some problems when the Xilinx SystemACE driver is used with 16bit access on an big endian platform (like the AMCC Katmai). Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] Clean up Katmai (440SPe) linker scriptStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese
2007-02-20[PATCH] Add support for the AMCC Katmai (440SPe) eval boardStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] I2C: Add support for multiple I2C busses for RTC & DTTStefan Roese
This patch switches to the desired I2C bus when the date/dtt commands are called. This can be configured using the CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM supportStefan Roese
This patch adds support for the DDR2 controller used on the 440SP and 440SPe. It is tested on the Katmai (440SPe) eval board and works fine with the following DIMM modules: - Corsair CM2X512-5400C4 (512MByte per DIMM) - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM) - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM) This patch also adds the nice functionality to dynamically create the TLB entries for the SDRAM (tlb.c). So we should never run into such problems with wrong (too short) TLB initialization again on these platforms. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 filesStefan Roese
Since the existing 4xx SPD SDRAM initialization routines for the 405 SDRAM controller and the 440 DDR controller don't have much in common this patch splits both drivers into different files. This is in preparation for the 440 DDR2 controller support (440SP/e). Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] PPC4xx: Add support for multiple I2C bussesStefan Roese
This patch adds support for multiple I2C busses on the PPC4xx platforms. Define CONFIG_I2C_MULTI_BUS in the board config file to make use of this feature. It also merges the 405 and 440 i2c header files into one common file 4xx_i2c.h. Also the 4xx i2c reset procedure is reworked since I experienced some problems with the first access on the 440SPe Katmai board. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write ↵Grant Likely
buffer pointers Block device read/write is anonymous data; there is no need to use a typed pointer. void * is fine. Also add a hook for block_read functions Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 8_9] Add block_write hook to block_dev_desc_tGrant Likely
Preparation for future patches which support block device writing Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 7_9] Replace ace_readw_ace_writeb functions with macrosGrant Likely
Register read/write does not need to be wrapped in a full function. The patch replaces them with macros. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.cGrant Likely
The code in this file is not a command; it is a device driver. Put it in the correct place. There are zero functional changes in this patch, it only moves the file. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)Grant Likely
This patch is in preparation of additional changes to the sysace driver. May as well take this opportunity to fixup the inconsistent whitespace since this file is about to undergo major changes anyway. There are zero functional changes in this patch. It only cleans up the the whitespace. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 4_4] Remove local implementation of isprint() in ft_build.cGrant Likely
isprint is already defined in ctype.c Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 3_9] Move buffer print code from md command to common functionGrant Likely
Printing a buffer is a darn useful thing. Move the buffer print code into print_buffer() in lib_generic/ Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 2_4] Use config.h, not xparameters.h, for xilinx targetsGrant Likely
Change the xilinx device drivers and board code to include config.h instead of xparameters.h directly. config.h always includes the correct xparameters file. This change reduces the posibility of including the wrong file when adding a new xilinx board port Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 1_4] Merge common get_dev() routines for block devicesGrant Likely
Each of the filesystem drivers duplicate the get_dev routine. This change merges them into a single function in part.c Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-19MCC200: Software Updater: allow both "ramdisk" and "filesystem" typesWolfgang Denk
as root file system images.
2007-02-19Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese
2007-02-19MCC200: Extensions to Software Update MechanismSergei Poselenov
Update / extend Software Update Mechanism for MCC200 board: - Add support for rootfs image added. The environment variables "rootfs_st" and "rootfs_nd" can be used to override the default values of the image start and end. - Remove excessive key check code. - Code cleanup.
2007-02-19[PATCH] Update Sequoia EBC configuration (NOR FLASH)Stefan Roese
As spotted by Matthias Fuchs, the READY input should not be enabled for the NOR FLASH on the Sequoia board. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-16Merge with /home/tur/git/u-boot#motionproWolfgang Denk
2007-02-12LPC2292: patch from Siemens.Gary Jennejohn
2007-02-10[PATCH] Add missing p3mx.h file to repository (ups)Stefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-09[Motion-PRO] Preliminary support for the Motion-PRO board.Bartlomiej Sieka
2007-02-07[PATCH] Update some AMCC 4xx board config files (set initrd_high)Stefan Roese
Some boards that can have more than 768MBytes of SDRAM need to set "initrd_high", so that the initrd can be accessed by the Linux kernel. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-02[PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boardsStefan Roese
Previously the strapping DCR/SDR was read to determine if the internal PCI arbiter is enabled or not. This strapping bit can be overridden, so now the current status is read from the correct DCR/SDR register. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-02[PATCH] Change configuration output of Sycamore, Yellowstone & RainierStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-01[PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config fileStefan Roese
When PCI PNP is enabled the pci pnp configuration routine is called which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some problems with some PCI cards. For now disable the PCI PNP configuration. Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-31[PATCH] Update 440EPx/440GRx cpu detectionStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-31[PATCH] Update esd cpci5200 filesStefan Roese
Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2007-01-31[PATCH] Add support for esd mecp5200 boardStefan Roese
Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
2007-01-31[PATCH] Remove unneccessary yellowstone board config fileStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-30Merge with /home/sr/git/u-boot/denx-merge-srWolfgang Denk
2007-01-30[PATCH] Update Sequoia (440EPx) config fileStefan Roese
The config file now handles the 2nd target, the Rainier (440GRx) evaluation board better. Additionally the PPC input clock was adjusted to match the correct value of 33.0 MHz. Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-30[PATCH] Merge Yosemite & Yellowstone board portsStefan Roese
Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR) share one config file and all board specific files. This way we don't have to maintain two different sets of files for nearly identical boards. Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-30[PATCH] Update Prodrive SCPU (PDNB3 variant) boardStefan Roese
SCPU doesn't use redundant environment in flash. Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-30Merge with /home/sr/git/u-boot/denx-merge-srWolfgang Denk
2007-01-30[PATCH] alpr: Update alpr board config fileStefan Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-01-30LPC2292 SODIMM port coding style cleanup.Wolfgang Denk
2007-01-24Add port for the lpc2292sodimm evaluation board from EmbeddedArtistsGary Jennejohn
2007-01-24Merge with /home/tur/proj/idmr/u-bootWolfgang Denk
2007-01-23[iDMR] Add MTD and JFFS2 support, also add default partition definition.Bartlomiej Sieka
2007-01-23[iDMR] Flash driver on initialisation write-protects some sectors,Bartlomiej Sieka
currently sectors 0-3. Sector 3 does not need to be protected, though (U-boot occupies sectors 0-1 and the environment sector 2). This commit fixes this, i.e., only sectors 0-2 are protected.
2007-01-23[iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,Bartlomiej Sieka
"mii device" results in "Unexpected exception"). Fixing this properly requires some clean-up in the FEC drivers infrastructure for ColdFire, so this commit disables MII commads for now.