Stefan Roese [Tue, 20 Feb 2007 12:17:42 +0000 (13:17 +0100)]
[PATCH] Update SystemACE driver for 16bit access
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 [Tue, 20 Feb 2007 12:15:40 +0000 (13:15 +0100)]
[PATCH] Clean up Katmai (440SPe) linker script
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Tue, 20 Feb 2007 09:58:04 +0000 (10:58 +0100)]
Merge with /home/stefan/git/u-boot/denx-merge-sr
Stefan Roese [Tue, 20 Feb 2007 09:57:08 +0000 (10:57 +0100)]
[PATCH] Add support for the AMCC Katmai (440SPe) eval board
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Tue, 20 Feb 2007 09:51:26 +0000 (10:51 +0100)]
[PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
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 [Tue, 20 Feb 2007 09:43:34 +0000 (10:43 +0100)]
[PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
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 [Tue, 20 Feb 2007 09:35:42 +0000 (10:35 +0100)]
[PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
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 [Tue, 20 Feb 2007 09:27:08 +0000 (10:27 +0100)]
[PATCH] PPC4xx: Add support for multiple I2C busses
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 [Tue, 20 Feb 2007 08:05:45 +0000 (09:05 +0100)]
[PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write 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>
Grant Likely [Tue, 20 Feb 2007 08:05:38 +0000 (09:05 +0100)]
[PATCH 8_9] Add block_write hook to block_dev_desc_t
Preparation for future patches which support block device writing
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Grant Likely [Tue, 20 Feb 2007 08:05:31 +0000 (09:05 +0100)]
[PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
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 [Tue, 20 Feb 2007 08:05:23 +0000 (09:05 +0100)]
[PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
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 [Tue, 20 Feb 2007 08:05:16 +0000 (09:05 +0100)]
[PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
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 [Tue, 20 Feb 2007 08:05:07 +0000 (09:05 +0100)]
[PATCH 4_4] Remove local implementation of isprint() in ft_build.c
isprint is already defined in ctype.c
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Grant Likely [Tue, 20 Feb 2007 08:05:00 +0000 (09:05 +0100)]
[PATCH 3_9] Move buffer print code from md command to common function
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 [Tue, 20 Feb 2007 08:04:52 +0000 (09:04 +0100)]
[PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
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 [Tue, 20 Feb 2007 08:04:34 +0000 (09:04 +0100)]
[PATCH 1_4] Merge common get_dev() routines for block devices
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>
Stefan Roese [Mon, 19 Feb 2007 16:17:30 +0000 (17:17 +0100)]
Merge ... git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-sr
Sergei Poselenov [Wed, 14 Feb 2007 11:30:28 +0000 (14:30 +0300)]
MCC200: Extensions to Software Update Mechanism
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 [Mon, 19 Feb 2007 07:23:15 +0000 (08:23 +0100)]
[PATCH] Update Sequoia EBC configuration (NOR FLASH)
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>
Wolfgang Denk [Fri, 16 Feb 2007 22:44:55 +0000 (23:44 +0100)]
Merge with /home/tur/git/u-boot#motionpro
Gary Jennejohn [Mon, 12 Feb 2007 12:11:50 +0000 (13:11 +0100)]
LPC2292: patch from Siemens.
Stefan Roese [Sat, 10 Feb 2007 07:49:31 +0000 (08:49 +0100)]
[PATCH] Add missing p3mx.h file to repository (ups)
Signed-off-by: Stefan Roese <sr@denx.de>
Bartlomiej Sieka [Fri, 9 Feb 2007 09:45:42 +0000 (10:45 +0100)]
[Motion-PRO] Preliminary support for the Motion-PRO board.
Stefan Roese [Wed, 7 Feb 2007 15:51:08 +0000 (16:51 +0100)]
[PATCH] Update some AMCC 4xx board config files (set initrd_high)
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>
Stefan Roese [Fri, 2 Feb 2007 11:44:22 +0000 (12:44 +0100)]
[PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
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>
Stefan Roese [Fri, 2 Feb 2007 11:42:08 +0000 (12:42 +0100)]
[PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Thu, 1 Feb 2007 12:22:41 +0000 (13:22 +0100)]
[PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
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>
Stefan Roese [Wed, 31 Jan 2007 15:56:10 +0000 (16:56 +0100)]
[PATCH] Update 440EPx/440GRx cpu detection
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Wed, 31 Jan 2007 15:38:04 +0000 (16:38 +0100)]
[PATCH] Update esd cpci5200 files
Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
Stefan Roese [Wed, 31 Jan 2007 15:37:34 +0000 (16:37 +0100)]
[PATCH] Add support for esd mecp5200 board
Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
Stefan Roese [Wed, 31 Jan 2007 11:38:50 +0000 (12:38 +0100)]
[PATCH] Remove unneccessary yellowstone board config file
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Tue, 30 Jan 2007 16:32:15 +0000 (17:32 +0100)]
Merge with /home/sr/git/u-boot/denx-merge-sr
Stefan Roese [Tue, 30 Jan 2007 16:06:10 +0000 (17:06 +0100)]
[PATCH] Update Sequoia (440EPx) config file
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>
Stefan Roese [Tue, 30 Jan 2007 16:04:19 +0000 (17:04 +0100)]
[PATCH] Merge Yosemite & Yellowstone board ports
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>
Stefan Roese [Tue, 30 Jan 2007 14:01:49 +0000 (15:01 +0100)]
[PATCH] Update Prodrive SCPU (PDNB3 variant) board
SCPU doesn't use redundant environment in flash.
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Tue, 30 Jan 2007 13:38:21 +0000 (14:38 +0100)]
Merge with /home/sr/git/u-boot/denx-merge-sr
Stefan Roese [Tue, 30 Jan 2007 11:51:07 +0000 (12:51 +0100)]
[PATCH] alpr: Update alpr board config file
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Mon, 29 Jan 2007 23:50:40 +0000 (00:50 +0100)]
LPC2292 SODIMM port coding style cleanup.
Gary Jennejohn [Wed, 24 Jan 2007 11:16:56 +0000 (12:16 +0100)]
Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
Wolfgang Denk [Wed, 24 Jan 2007 09:26:47 +0000 (10:26 +0100)]
Merge with /home/tur/proj/idmr/u-boot
Bartlomiej Sieka [Tue, 23 Jan 2007 16:22:06 +0000 (17:22 +0100)]
[iDMR] Add MTD and JFFS2 support, also add default partition definition.
Bartlomiej Sieka [Tue, 23 Jan 2007 13:21:14 +0000 (14:21 +0100)]
[iDMR] Flash driver on initialisation write-protects some sectors,
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.
Bartlomiej Sieka [Tue, 23 Jan 2007 13:11:22 +0000 (14:11 +0100)]
[iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
"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.
Bartlomiej Sieka [Tue, 23 Jan 2007 12:25:22 +0000 (13:25 +0100)]
[ColdFire MCF5271 family] Add CPU detection based on the value of Chip
Identification Register (CIR).
Wolfgang Denk [Fri, 19 Jan 2007 22:08:39 +0000 (23:08 +0100)]
Minor code cleanup.
Wolfgang Denk [Fri, 19 Jan 2007 21:56:23 +0000 (22:56 +0100)]
Merge with /home/hs/SC3/u-boot-dev
Heiko Schocher [Fri, 19 Jan 2007 18:57:10 +0000 (19:57 +0100)]
[PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
Signed-off-by: Heiko Schocher <hs@denx.de>
Heiko Schocher [Fri, 19 Jan 2007 17:05:26 +0000 (18:05 +0100)]
[PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
if you must swap the bytes between reading/writing.
(Needed for the SC3 board)
Signed-off-by: Heiko Schocher <hs@denx.de>
Wolfgang Denk [Fri, 19 Jan 2007 11:06:32 +0000 (12:06 +0100)]
Merge with /home/hs/SC3/u-boot-dev
Stefan Roese [Thu, 18 Jan 2007 15:05:47 +0000 (16:05 +0100)]
[PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Thu, 18 Jan 2007 10:54:52 +0000 (11:54 +0100)]
[PATCH] Update Prodrive P3Mx support
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Thu, 18 Jan 2007 10:48:10 +0000 (11:48 +0100)]
[PATCH] Add missing Taishan config file
Signed-off-by: Stefan Roese <sr@denx.de>
Heiko Schocher [Thu, 18 Jan 2007 10:28:51 +0000 (11:28 +0100)]
[PATCH] Fix: Compilerwarnings for SC3 board.
The EBC Configuration Register is now by CFG_EBC_CFG definable
Added JFFS2 support for the SC3 board.
Signed-off-by: Heiko Schocher <hs@denx.de>
Stefan Roese [Thu, 18 Jan 2007 09:27:26 +0000 (10:27 +0100)]
Merge with /home/stefan/git/u-boot/denx-merge-sr
Stefan Roese [Thu, 18 Jan 2007 09:25:34 +0000 (10:25 +0100)]
[PATCH] Add support for AMCC Taishan PPC440GX eval board
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Tue, 16 Jan 2007 17:30:50 +0000 (18:30 +0100)]
Raname solidcard3 into sc3; add redundant env for sc3
Wolfgang Denk [Tue, 16 Jan 2007 11:46:35 +0000 (12:46 +0100)]
Update default environment for Solidcard3
Wolfgang Denk [Mon, 15 Jan 2007 12:41:04 +0000 (13:41 +0100)]
Merge with /home/hs/SC3/u-boot
Some code cleanup.
Wolfgang Denk [Mon, 15 Jan 2007 11:56:52 +0000 (12:56 +0100)]
Merge with /home/hs/MAN/u-boot-dev
Wolfgang Denk [Mon, 15 Jan 2007 11:48:05 +0000 (12:48 +0100)]
Merge with /home/sr/git/u-boot/denx-merge-sr
Stefan Roese [Mon, 15 Jan 2007 08:46:29 +0000 (09:46 +0100)]
[PATCH] Fix 440SPe rev B detection from previous patch
Signed-off-by: Stefan Roese <sr@denx.de>
Heiko Schocher [Sun, 14 Jan 2007 12:35:31 +0000 (13:35 +0100)]
[FIX] correct I2C Writes for the LM81 Sensor.
Signed-off-by: Heiko Schocher <hs@denx.de>
Wolfgang Denk [Sat, 13 Jan 2007 10:25:08 +0000 (11:25 +0100)]
Merge with /home/sr/git/u-boot/denx-merge-sr
Wolfgang Denk [Sat, 13 Jan 2007 10:17:35 +0000 (11:17 +0100)]
Merge with /home/git/u-boot
Wolfgang Denk [Sat, 13 Jan 2007 10:17:10 +0000 (11:17 +0100)]
Undo commit
3033ebb2: reset command does not take any arguments
Haiying Wang's modification to the reset command was broken, undo it.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Stefan Roese [Sat, 13 Jan 2007 07:01:31 +0000 (08:01 +0100)]
Merge ... git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-sr
Stefan Roese [Sat, 13 Jan 2007 07:01:03 +0000 (08:01 +0100)]
[PATCH] Update 440SP(e) cpu revisions
Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Sat, 13 Jan 2007 06:59:56 +0000 (07:59 +0100)]
[PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
Now the board revision and the current PCI bus speed are printed after
the board message.
Also the EBC initialising is now done via defines in the board config
file.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Sat, 13 Jan 2007 06:59:19 +0000 (07:59 +0100)]
[PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
Now the board revision and the current PCI bus speed are printed after
the board message.
Also the EBC initialising is now done via defines in the board config
file.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Sat, 13 Jan 2007 06:57:51 +0000 (07:57 +0100)]
[PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
Now the board revision and the current PCI bus speed are printed after
the board message.
Signed-off-by: Stefan Roese <sr@denx.de>
Heiko Schocher [Thu, 11 Jan 2007 14:44:44 +0000 (15:44 +0100)]
Added support for the SOLIDCARD III board from Eurodesign
Signed-off-by: Heiko Schocher <hs@denx.de>
Reinhard Thies [Wed, 10 Jan 2007 13:41:14 +0000 (14:41 +0100)]
Adjusted default environment for cam5200 board.
Detlev Zundel [Wed, 10 Jan 2007 15:36:51 +0000 (16:36 +0100)]
Merge with /home/m8/git/u-boot/
Wolfgang Denk [Wed, 10 Jan 2007 14:35:52 +0000 (15:35 +0100)]
Update CHANGELOG
Wolfgang Denk [Wed, 10 Jan 2007 14:34:43 +0000 (15:34 +0100)]
Merge with /home/mk/11-cmb1920/u-boot#4upstream
Wolfgang Denk [Wed, 10 Jan 2007 00:28:39 +0000 (01:28 +0100)]
Fix auto_update for MCC200 board.
The invocation of do_auto_update() is moved to the end of the
misc_init_r() function, after the flash mappings have been
initialized. Please find attached a patch that implements that
change.
Also correct the decoding of the keypad status. With this update, the
key that will trigger the update is Column 2, Row 2.
Marian Balakowicz [Tue, 9 Jan 2007 23:26:15 +0000 (00:26 +0100)]
CAM5200 flash driver modifications:
- use CFI driver (replaces custom flash driver) for main 'cam5200' target
- add second build target 'cam5200_niosflash' which still uses custom driver
Markus Klotzbuecher [Tue, 9 Jan 2007 15:02:48 +0000 (16:02 +0100)]
SPC1920: cleanup memory contoller setup
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:14 +0000 (14:57 +0100)]
Fix the cpu speed setup to work with all boards.
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:13 +0000 (14:57 +0100)]
SPC1920: add support for the FM18L08 Ramtron FRAM
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:13 +0000 (14:57 +0100)]
SPC1920: update the HPI register addresses to work with the second
generation of hardware
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:13 +0000 (14:57 +0100)]
Miscellanious spc1920 related cleanups
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:12 +0000 (14:57 +0100)]
SPC1920 GO/NOGO led should be set to color red in U-Boot
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:12 +0000 (14:57 +0100)]
Add support for the DS3231 RTC
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:11 +0000 (14:57 +0100)]
SMC1 uses external CLK4 instead of BRG on spc1920
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:10 +0000 (14:57 +0100)]
Update the SPC1920 CMB PLD driver
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:10 +0000 (14:57 +0100)]
Add / enable I2C support on the spc1920 board
Markus Klotzbuecher [Tue, 9 Jan 2007 13:57:10 +0000 (14:57 +0100)]
Add support for the tms320671x host port interface (HPI)
Wolfgang Denk [Sat, 6 Jan 2007 23:13:11 +0000 (00:13 +0100)]
Prepare for release 1.2.0
Stefan Roese [Sat, 6 Jan 2007 14:58:09 +0000 (15:58 +0100)]
[PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
This patch fixes a problem with an incorrect setup for the refresh
timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Sat, 6 Jan 2007 14:56:13 +0000 (15:56 +0100)]
[PATCH] Update ALPR board files
This update brings the ALPR board support to the newest version.
It also fixes a problem with the NAND driver.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Fri, 5 Jan 2007 10:46:05 +0000 (11:46 +0100)]
[PATCH] nand: Fix problem with oobsize calculation
Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
returns a 0x15. In the code fragment below bits [1:0] determine the
page size, it is ANDed via "(extid & 0x3)" then shifted out. The
next field is also ANDed with 0x3. However this is a one bit field
as defined in the Hynix and Samsung parts in the 4th ID byte that
determins the oobsize, not a two bit field. It works on Samsung as
bits[3:2] are 01. However for the Hynix there is a 11 in these two
bits, so the oob size gets messed up.
I checked the correct linux code and the suggested fix from Brian is
also available in the linux nand mtd driver.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Fri, 5 Jan 2007 09:40:50 +0000 (10:40 +0100)]
Merge with /home/stefan/git/u-boot/denx-merge-sr
Stefan Roese [Fri, 5 Jan 2007 09:40:36 +0000 (10:40 +0100)]
[PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
This fix will make the MAL burst disabling patch for the Linux
EMAC driver obsolete.
Signed-off-by: Stefan Roese <sr@denx.de>
Stefan Roese [Fri, 5 Jan 2007 09:38:05 +0000 (10:38 +0100)]
[PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
This code will optimize the DDR2 controller setup on a board specific
basis.
Note: This code doesn't work right now on the NAND booting image for the
Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
Signed-off-by: Stefan Roese <sr@denx.de>
Wolfgang Denk [Thu, 4 Jan 2007 01:05:51 +0000 (02:05 +0100)]
Merge with /home/tur/proj/v38b/u-boot
Bartlomiej Sieka [Thu, 28 Dec 2006 18:08:21 +0000 (19:08 +0100)]
Few V38B changes:
- fix a typo in V38B config file
- move watchdog initialisation earlier in the boot process
- add "wdt=off" to default kernel command line (disables kernel watchdog)
Wolfgang Denk [Wed, 27 Dec 2006 00:26:13 +0000 (01:26 +0100)]
Fix bug in adaption of Stefano Babic's CFI driver patch.
Wolfgang Denk [Sun, 24 Dec 2006 00:42:57 +0000 (01:42 +0100)]
Minor code cleanup.