[U-Boot] Build breakage in qemu-mips

2009-12-17 Thread Himanshu Chauhan
Hi All, I cloned the git tree of Wolfgang and tried compilation of qemu_mips_config. But the build breaks with following error: zlib.c:31:27: error: asm/unaligned.h: No such file or directory zlib.c: In function ‘inflate_fast’: zlib.c:641: warning: implicit declaration of function ‘get_unaligned’

Re: [U-Boot] [PATCH] MIPS: qemu_mips: Fix a build failure caused by missing

2009-12-18 Thread Himanshu Chauhan
> make[1]: Leaving directory `/home/skuribay/git/u-boot.git/lib_generic' > make: *** [lib_generic/libgeneric.a] Error 2 > > Import relevant header file from LMO tree (slightly modified to U-Boot). > > Reported-by: Himanshu Chauhan > Signed-off-by: Shinya Kuribayashi > ---

Re: [U-Boot] [PATCH] MIPS: qemu_mips: Fix a build failure caused by missing

2009-12-18 Thread Himanshu Chauhan
Stefan Roese wrote: > On Friday 18 December 2009 11:32:13 Shinya Kuribayashi wrote: >> make -C lib_generic/ >> zlib.c:31:27: error: asm/unaligned.h: No such file or directory >> zlib.c: In function 'inflate_fast': >> zlib.c:641: warning: implicit declaration of function 'get_unaligned' >> make[1]:

Re: [U-Boot] [PATCH] MIPS: qemu_mips: Fix a build failure caused by missing

2009-12-18 Thread Himanshu Chauhan
Stefan Roese wrote: > On Friday 18 December 2009 13:20:56 Stefan Roese wrote: >>> I think thats what it is. Both are same. >> No, not exactly. They're nearly identical. But there are differences. Not >> sure if these differences are important though. >> >> Don't get me wrong. I'm not NACK'ing the

[U-Boot] [PATCH]: U-Boot build failure with CONFIG_SYS_NO_FLASH defined for qemu-mips.

2009-12-18 Thread Himanshu Chauhan
U-Boot hangs with qemu-system-mips with ##unknown flash error. Disabling flash using CONFIG_SYS_NO_FLASH breaks the build. This patch fixes the issue. Don't know if its okay. Signed-off-by: Himanshu Chauhan diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index efd6aec..5bd3af0 100644

Re: [U-Boot] [PATCH] MIPS: qemu_mips: Fix a build failure caused by missing

2009-12-18 Thread Himanshu Chauhan
> make[1]: Leaving directory `/home/skuribay/git/u-boot.git/lib_generic' > make: *** [lib_generic/libgeneric.a] Error 2 > > Import relevant header file from LMO tree (slightly modified to U-Boot). > > Reported-by: Himanshu Chauhan > Signed-off-by: Shinya Kuribayashi > ---

Re: [U-Boot] [PATCH] MIPS: qemu_mips: Fix a build failure caused by missing

2009-12-18 Thread Himanshu Chauhan
Wolfgang Denk wrote: > Dear Himanshu Chauhan, > > In message <4b2b79a9.1000...@symmetricore.com> you wrote: >> Stefan Roese wrote: >>> On Friday 18 December 2009 13:20:56 Stefan Roese wrote: >>>>> I think thats what it is. Both are same. >>>

[U-Boot] [PATCH][RESEND]: Fix for U-Boot build failure with CONFIG_SYS_NO_FLASH defined for qemu-mips.

2009-12-18 Thread Himanshu Chauhan
U-Boot hangs with qemu-system-mips with ##unknown flash error. Disabling flash using CONFIG_SYS_NO_FLASH breaks the build. This patch fixes the issue. Don't know if its okay. Signed-off-by: Himanshu Chauhan diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index efd6aec..5bd3af0 100644

[U-Boot] [OT] List for sending patches

2009-12-19 Thread Himanshu Chauhan
Hi Do the patches have to be sent at different list than this? I am wondering this because I sent a patch (good or bad is different story :D) for which I didn't hear back. Was it delivered? Thanks & Regards Himanshu ___ U-Boot mailing list U-Boot@list

Re: [U-Boot] [PATCH][RESEND]: Fix for U-Boot build failure with CONFIG_SYS_NO_FLASH defined for qemu-mips.

2009-12-19 Thread Himanshu Chauhan
Shinya Kuribayashi wrote: > Hi, > > On 12/19/09 3:57 PM, Himanshu Chauhan wrote: >> U-Boot hangs with qemu-system-mips with ##unknown flash error. > > Do you have any idea what's the root cause of that unknown flash > error? Is this U-Boot CFI driver issue, or

[U-Boot] Versatile PB compilation problem

2010-10-25 Thread Himanshu Chauhan
I am compiling u-boot for ARM versatile-PB board. But the compilation fails with this error: board.c: In function ‘__dram_init_banksize’: board.c:459: error: ‘CONFIG_SYS_SDRAM_BASE’ undeclared (first use in this function) board.c:459: error: (Each undeclared identifier is reported only once board.

Re: [U-Boot] Versatile PB compilation problem

2010-10-25 Thread Himanshu Chauhan
On Mon, Oct 25, 2010 at 7:55 PM, sughosh ganu wrote: > hi Himanshu, > > On Mon, Oct 25, 2010 at 6:46 PM, Himanshu Chauhan > wrote: >> >> I am compiling u-boot for ARM versatile-PB board. But the compilation >> fails with this error: >> >> board.c: In f

Re: [U-Boot] Versatile PB compilation problem

2010-10-25 Thread Himanshu Chauhan
>> >>   Looks like the board you are compiling does not have support for the ARM >> relocation added recently. You would need to add valid entries to the board >> config file. >> >> Check this patch as an example >> http://www.mail-archive.com/u-boot@lists.denx.de/msg36109.html >> >> -sughosh The

[U-Boot] GENERATED_GBL_DATA_SIZE problem

2010-10-28 Thread Himanshu Chauhan
Hi List, Day before I reported the problem with declarations of CONFIG_SYS_SDRAM_BASE and CONFIG_SYS_INIT_SP_ADDR. In the following patch GENERATED_GBL_DATA_SIZE is defined as #96. The pound size before the number is cauing the assembler go mad. It doesn't compile. Remove the pound and its okay

[U-Boot] [PATCH] CONFIG_SYS_SDRAM and CONFIG_SYS_INIT_SP_ADDR defines for versatile boards.

2010-10-28 Thread Himanshu Chauhan
Following is the patch for defining the subject line mentioned configuration defines for versatile boards. Signed-off-by: Himanshu Chauhan --- include/configs/versatile.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/versatile.h b/include/configs

Re: [U-Boot] GENERATED_GBL_DATA_SIZE problem

2010-10-28 Thread Himanshu Chauhan
On Thu, Oct 28, 2010 at 06:55:14PM +0200, Wolfgang Denk wrote: > Dear Himanshu Chauhan, > > In message <20101028164616.ga3...@pnq-hchauhan-vm> you wrote: > > Hi List, > > > > Day before I reported the problem with declarations of > > CONFIG_SYS

[U-Boot] SP810 (ARM SYSCTL) Technical Reference Manual

2010-10-29 Thread Himanshu Chauhan
Hi List, Where can I get SP810 technical reference? It not there on the internet. Thanks Regards Himanshu ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/1] Fix in interrupt handling part of arm926ejs.

2010-10-29 Thread Himanshu Chauhan
Macro get_bad_stack used to load SVC mode stack pointer in r13 and then re-use the register, without saving, for further modifying the spsr, thus trashing the r13. r13 is never loaded again after this. Signed-off-by: Himanshu Chauhan --- arch/arm/cpu/arm926ejs/start.S |5 ++--- 1 files

[U-Boot] [PATCH RESEND] CONFIG_SYS_SDRAM and CONFIG_SYS_INIT_SP_ADDR defines for versatile boards.

2010-11-03 Thread Himanshu Chauhan
Following is the patch for defining the subject line mentioned configuration defines for versatile boards. Signed-off-by: Himanshu Chauhan --- include/configs/versatile.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/versatile.h b/include/configs

[U-Boot] [PATCH 1/1 RESEND] Fix in interrupt handling part of arm926ejs.

2010-11-03 Thread Himanshu Chauhan
Macro get_bad_stack used to load SVC mode stack pointer in r13 and then re-use the register, without saving, for further modifying the spsr, thus trashing the r13. r13 is never loaded again after this. Signed-off-by: Himanshu Chauhan --- arch/arm/cpu/arm926ejs/start.S |5 ++--- 1 files