summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Support for XUPV2P boardMichal Simek2007-03-2621-110/+550
| | | | | Reset support BSP autoconfig support
* [Microblaze][PATCH] part 2Michal Simek2007-03-1113-29/+518
| | | | | | | | | | | | | timer support interrupt controller support flash support ethernet support cache support board information support env support booting image support adding support for Xilinx ML401
* [Microblaze][PATCH]Michal Simek2007-03-1116-0/+1139
| | | | | | | | | | | | | timer support interrupt controller support flash support ethernet support cache support board information support env support booting image support adding support for Xilinx ML401
* Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese2007-03-012-6/+8
|\
| * Merge with /home/sr/git/u-boot/denxStefan Roese2007-03-012-6/+8
| |\
| | * SC3: fix typo in default environmentWolfgang Denk2007-02-281-1/+1
| | |
| | * MCC200: Fixes for update procedureSergei Poselenov2007-02-281-5/+7
| | | | | | | | | | | | | | | | | | - fix logic error in image type handling - make sure file system images (cramfs etc.) get stored in flash with image header stripped so they can be mounted through MTD
* | | Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese2007-03-0114-83/+617
|\ \ \ | |/ /
| * | [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUMStefan Roese2007-03-011-0/+8
| |/ | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
| * Minor code cleanup.Wolfgang Denk2007-02-2711-81/+518
| |
| * MCC200 update - add LCD Progress IndicatorSergei Poselenov2007-02-273-9/+98
| |
* | [PATCH] Update AMCC Katmai 440SPe eval board supportStefan Roese2007-03-017-180/+369
|/ | | | | | | | | | | This patch updates the recently added Katmai board support. The biggest change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2 driver. Please note, that still some problems are left with some memory configurations. See the driver for more details. Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH] get_dev() now unconditionally uses manual relocationStefan Roese2007-02-221-9/+1
| | | | | | | | Since the relocation fix is not included yet and we're not sure how it will be added, this patch removes code that required relocation to be fixed for now. Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH] Change systemace driver to select 8 & 16bit modeStefan Roese2007-02-221-5/+2
| | | | | | | As suggested by Grant Likely this patch enables the Xilinx SystemACE driver to select 8 or 16bit mode upon startup. Signed-off-by: Stefan Roese <sr@denx.de>
* [PATCH v3] Add sync to ensure flash_write_cmd is fully finishedHaiying Wang2007-02-2111-16/+54
| | | | | | | | | 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>
* [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)Stefan Roese2007-02-211-4/+4
| | | | Signed-off-by: Stefan Roese <sr@denx.de>
* Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese2007-02-211-9/+11
|\
| * Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese2007-02-211-9/+11
| |\
| | * MCC200: Software Updater: allow both "ramdisk" and "filesystem" typesWolfgang Denk2007-02-191-9/+11
| | | | | | | | | | | | as root file system images.
* | | [PATCH] Fix relocation problem with "new" get_dev() functionStefan Roese2007-02-201-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] Update SystemACE driver for 16bit accessStefan Roese2007-02-201-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] Clean up Katmai (440SPe) linker scriptStefan Roese2007-02-201-16/+0
| | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | | Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese2007-02-2049-526/+1220
|\ \ \ | |/ /
| * | [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write ↵Grant Likely2007-02-207-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 8_9] Add block_write hook to block_dev_desc_tGrant Likely2007-02-201-0/+4
| | | | | | | | | | | | | | | | | | Preparation for future patches which support block device writing Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
| * | [PATCH 7_9] Replace ace_readw_ace_writeb functions with macrosGrant Likely2007-02-201-26/+10
| | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.cGrant Likely2007-02-203-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)Grant Likely2007-02-201-149/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 4_4] Remove local implementation of isprint() in ft_build.cGrant Likely2007-02-201-5/+1
| | | | | | | | | | | | | | | | | | isprint is already defined in ctype.c Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
| * | [PATCH 3_9] Move buffer print code from md command to common functionGrant Likely2007-02-203-51/+86
| | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targetsGrant Likely2007-02-207-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | [PATCH 1_4] Merge common get_dev() routines for block devicesGrant Likely2007-02-2015-125/+82
| | | | | | | | | | | | | | | | | | | | | 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>
| * | Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese2007-02-191-47/+46
| |\ \ | | |/
| | * MCC200: Extensions to Software Update MechanismSergei Poselenov2007-02-191-47/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | [PATCH] Update Sequoia EBC configuration (NOR FLASH)Stefan Roese2007-02-191-2/+2
| |/ | | | | | | | | | | | | 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>
| * Merge with /home/tur/git/u-boot#motionproWolfgang Denk2007-02-168-7/+690
| |\
| | * [Motion-PRO] Preliminary support for the Motion-PRO board.Bartlomiej Sieka2007-02-098-7/+689
| | |
| * | LPC2292: patch from Siemens.Gary Jennejohn2007-02-121-1/+1
| | |
| * | [PATCH] Add missing p3mx.h file to repository (ups)Stefan Roese2007-02-101-0/+34
| | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
| * | [PATCH] Update some AMCC 4xx board config files (set initrd_high)Stefan Roese2007-02-078-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] Add support for the AMCC Katmai (440SPe) eval boardStefan Roese2007-02-2016-19/+1700
| | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | | [PATCH] I2C: Add support for multiple I2C busses for RTC & DTTStefan Roese2007-02-204-9/+40
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM supportStefan Roese2007-02-203-42/+3109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 filesStefan Roese2007-02-203-413/+478
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | | [PATCH] PPC4xx: Add support for multiple I2C bussesStefan Roese2007-02-2011-363/+383
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boardsStefan Roese2007-02-021-6/+10
| | | | | | | | | | | | | | | | 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>
* | [PATCH] Change configuration output of Sycamore, Yellowstone & RainierStefan Roese2007-02-021-8/+4
| | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config fileStefan Roese2007-02-011-1/+1
| | | | | | | | | | | | | | | | 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>
* | [PATCH] Update 440EPx/440GRx cpu detectionStefan Roese2007-01-312-6/+10
| | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | [PATCH] Update esd cpci5200 filesStefan Roese2007-01-312-10/+53
| | | | | | | | Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
OpenPOWER on IntegriCloud