- Mar 06, 2007
-
-
Wolfgang Denk authored
-
Wolfgang Denk authored
Patch by Mike Frysinger, Mar 05 2007
-
Stefan Roese authored
As provided by the AMCC applications team, this patch optimizes the DDR2 setup for 166MHz bus speed. The values provided are also save to use on a "normal" 133MHz PLB bus system. Only the refresh counter setup has to be adjusted as done in this patch. For this the NAND booting version had to include the "speed.c" file from the cpu/ppc4xx directory. With this addition the NAND SPL image will just fit into the 4kbytes of program space. gcc version 4.x as provided with ELDK 4.x is needed to generate this optimized code. Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Mar 01, 2007
-
-
Stefan Roese authored
-
Stefan Roese authored
-
Stefan Roese authored
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>
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
- Feb 28, 2007
-
-
Wolfgang Denk authored
-
- Feb 27, 2007
-
-
Sergei Poselenov authored
- 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
-
Wolfgang Denk authored
-
Sergei Poselenov authored
-
- Feb 22, 2007
-
-
Stefan Roese authored
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>
-
Stefan Roese authored
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>
-
- Feb 21, 2007
-
-
Haiying Wang authored
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>
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
-
- Feb 20, 2007
-
-
Stefan Roese authored
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>
-
Stefan Roese authored
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>
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
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>
-
Stefan Roese authored
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>
-
Stefan Roese authored
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>
-
Stefan Roese authored
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>
-
Grant Likely authored
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>
-
Grant Likely authored
Preparation for future patches which support block device writing Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
Grant Likely authored
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>
-
Grant Likely authored
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>
-
Grant Likely authored
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>
-
Grant Likely authored
isprint is already defined in ctype.c Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
Grant Likely authored
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>
-
Grant Likely authored
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>
-
Grant Likely authored
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>
-
- Feb 19, 2007
-
-
Wolfgang Denk authored
as root file system images.
-
Sergei Poselenov authored
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.
-
Stefan Roese authored
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>
-