[U-Boot] Old version of u-boot(OF not supported) load s latest linux kernel(OF supported), any problem?

2008-12-29 Thread pengxihan
Hi: On MPC8548CDS board, is there any problem when I use old version of u-boot which does not support open firmware to load latest linux kernel which supports open firmware? If so, how can kernel know whether parameters passed by u-boot supports dtb? For latest kernels, is it a must for uboot to

[U-Boot] Please pull u-boot-mpc85xx.git

2008-12-29 Thread Andy Fleming
are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master This pull request supercedes the previous one, and contains the fixup patches from Peter Tyser for 5200 board support Dave Liu (1): 85xx: Fix the boot window issue Haiying Wang (1): Set IVPR t

Re: [U-Boot] [mpc8313] objcopy generates huge binary

2008-12-29 Thread Matthew L. Creech
On Sat, Dec 20, 2008 at 12:25 AM, Jerry Van Baren wrote: > > Hi Matthew, > > It is most likely a u-boot configuration problem where there is something > (e.g. code) at a low address and a high address and objcopy is gap filling. > > Use "objdump -h" to dump the sections and look at what sections a

[U-Boot] [PATCH] soft_i2c.c add option for repeated start in i2c_read()

2008-12-29 Thread Andrew Dyer
This patch adds a #define to optionally change the behaviour of i2c_read() in soft_i2c.c to send an I2C repeated start instead of a stop-start between sending the device address pointer write and reading back the data. The current behaviour is retained as the default. While most devices will wor

[U-Boot] [PATCH] Fix up rsk7203 target for out of tree build

2008-12-29 Thread Kieran Bingham
Fix up rsk7203 target to build successfully using out-of-tree build. Signed-off-by: Kieran Bingham --- Makefile |6 +++--- board/renesas/rsk7203/Makefile | 11 --- cpu/sh2/Makefile | 21 + 3 files changed, 24 insertions(+),

[U-Boot] [PATCH] [update] Fix up rsk7203 target for out of tree build

2008-12-29 Thread Kieran Bingham
Patch updated to correct changes made during debug Signed-off-by: Kieran Bingham --- Makefile |4 ++-- board/renesas/rsk7203/Makefile |4 cpu/sh2/Makefile | 21 + 3 files changed, 19 insertions(+), 10 deletions(-) diff --git

Re: [U-Boot] Reg. working with uboot

2008-12-29 Thread Vanee S
Hi, I want to configure u-boot for Armadillo board. When i try make all i get the error Generating include/autoconf.mk arm-linux-gcc: compilation of header file requested make: *** [include/autoconf.mk] Error 1 This error does not occur if i comment the line '$(CC) -M $(HOST_CFLAGS) $(CPFLAGS) -MQ

[U-Boot] Minor bug found in board/zylonite/lowlevel_init.S. 0x300 changed to 300.

2008-12-29 Thread Tom Evans
I was looking through some board files based on the zylonite ones, and spotted the following changes. | $ git-log board/zylonite/lowlevel_init.S | ... | commit 951a954b77ef30df1f5c1b7b9b4312e783b2cbb4 | Merge: ac7d97d... bfc8125... | Author: Wolfgang Denk | Date: Mon Mar 6 23:18:48 2006 +0100

[U-Boot] [PATCH][u-boot-85xx]The 32bit errata fix for 8572 for DDR2 (fwd)

2008-12-29 Thread Poonam_Aggrwal-b10812
This patch fixes the fix for 8572 SOC errata for 32bit DDR2. The earlier fix was trying to access the SDRAM_CFG register before initializing it. Now the SDRAM_CFG is initialized before. But the MEM_EN is set in the end. Signed-off-by: Poonam Aggrwal-b10812 Acked-by: Dave Liu --- cpu/mpc85xx/d

[U-Boot] Spansion Flash File system

2008-12-29 Thread Naveen A
Hi, I need to support spansion flash file system to existing uboot - Das Uboot 1.4. To this end, I would like to know more about the Spansion Flash File Systems that I'm considering to use: Software / Driver support for SPANSION 29GL256N11FFIIH0 List of changes I need to consider. -- /Naveen __

Re: [U-Boot] [PATCH] Blackfin: fix linker scripts to work with --gc-sections

2008-12-29 Thread Mike Frysinger
On Tuesday 04 November 2008 16:13:43 Mike Frysinger wrote: > Make sure all .text sections get pulled in and the entry point is properly > referenced so they don't get discarded when linking with --gc-sections. ping ... -mike signature.asc Description: This is a digitally signed message part. ___

[U-Boot] [PATCH] Add AMD 29LV160DB FLASH support to SBC2410 board.

2008-12-29 Thread Daniel Schuler
The new SBC-2410A board from Embest now ships with 2MB NOR FLASH, for which CONFIG_AMD_LV160 has been defined in include/configs/sbc2410x.h This chip is already supported in other architectures, so AMD_ID_LV160B has been used as-is in board/sbc2410x/flash.c Signed-off-by: Daniel Schuler --- boa

[U-Boot] [PATCH] usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive

2008-12-29 Thread Mike Frysinger
From: Bryan Wu The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 16244373FFB4 does not like to be reset, so check for it. Signed-off-by: Bryan Wu Signed-off-by: Mike Frysinger --- common/usb_storage.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/com

[U-Boot] [PATCH] spi/atmel: add AT45DB321D support

2008-12-29 Thread Mike Frysinger
From: Brad Bozarth Signed-off-by: Brad Bozarth Signed-off-by: Mike Frysinger --- drivers/mtd/spi/atmel.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/atmel.c b/drivers/mtd/spi/atmel.c index 10fcf0c..581b710 100644 --- a/drivers/mtd/spi/atmel.c

[U-Boot] [PATCH] saveenv: standardize enablement

2008-12-29 Thread Mike Frysinger
Rather than special casing each environment type for enabling the saveenv command, have them all behave the same. This avoids bitrot as new env sources are added/removed. Signed-off-by: Mike Frysinger --- common/cmd_nvedit.c | 26 -- 1 files changed, 8 insertions(+), 1