Re: [U-Boot] [PATCH] powerpc: change 86xx SMP boot method

2008-11-01 Thread Liu Dave-R63238
+/* + * Copy the code for other cpus to execute into an + * aligned location accessible via BPTR + */ +void setup_mp(void) +{ + extern ulong __secondary_start_page; + ulong fixup = (ulong)__secondary_start_page; + u32 bootpg; + u32 bootpg_va; + + /* + * If we

Re: [U-Boot] [patch 0/1] [Experimental] U-boot linking against libgcc

2008-11-01 Thread Mike Frysinger
On Friday 31 October 2008, Remy Bohmer wrote: Related to the discussion we had earlier today about linking to libgcc I have here a experimental patch that removes the linking to libgcc. I called it experimental because I am not able to test if all architectures still compile properly, and as

[U-Boot] [PATCH] Align end of bss by 4 bytes

2008-11-01 Thread Selvamuthukumar
Wolfgang, Most of the bss initialization loop increments 4 bytes at a time. And the loop end is checked for an 'equal' condition. Make the bss end address aligned by 4, so that the loop will end as expected. Any update about this patch? -- Selvamuthukumar

Re: [U-Boot] Building u-boot for the AT91RM9200-EK circa 2008

2008-11-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:34 Fri 31 Oct , Pink Boy wrote: Hi, first post here. vis: Building u-boot for the AT91RM9200-EK circa 2008 Is this still possible all things considered? It appears that this board is left behind in a backwater sometime around 2006. Problem is I need to compile a new version

[U-Boot] [PATCH] Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs

2008-11-01 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] --- Makefile | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index f3c3431..374df2c 100644 --- a/Makefile +++ b/Makefile @@ -2528,15 +2528,6 @@ shannon_config :

Re: [U-Boot] [PATCH]v2: Fixed lineendings in tools/img2brec.sh

2008-11-01 Thread Niklaus Giger
Am Freitag 31 Oktober 2008 00.23:32 schrieb Wolfgang Denk: Dear Niklaus Giger, In message [EMAIL PROTECTED] you wrote: This time I took a closer look at img2brec.sh. My conclusions are img2brec.sh was done for development under Windows (probably cygwin), as it uses a command filesize

Re: [U-Boot] 4xx warnings on cmd_elf.c

2008-11-01 Thread Niklaus Giger
Stefan Roese wrote: On Friday 31 October 2008, Kumar Gala wrote: So when I build a 4xx config I see: cmd_elf.c: In function 'do_bootvx': cmd_elf.c:173: warning: array subscript is below array bounds cmd_elf.c:176: warning: array subscript is below array bounds cmd_elf.c:181: warning: array

Re: [U-Boot] [PATCH v4] Update U-Boot's build timestamp on every compile

2008-11-01 Thread Trent Piepho
On Fri, 31 Oct 2008, Peter Tyser wrote: +$(TIMESTAMP_FILE): + @( printf '#define U_BOOT_DATE %s\n' '$(shell date +%b %d %C%y)' \ + ) $@ + @( printf '#define U_BOOT_TIME %s\n' '$(shell date +%T)' \ + ) $@ You could do this: @date

Re: [U-Boot] [PATCH] Olimex SAM9-L9260 board support

2008-11-01 Thread Cristian Birsan
Dear Jean-Christophe PLAGNIOL-VILLARD, I will remove all unnecessary white spaces from the previous patch. I have now a patch version for u-boot u-boot v2008.10 # diff --git a/Makefile b/Makefile index

Re: [U-Boot] [patch] U-Boot Firetux board support

2008-11-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:30 Fri 31 Oct , Juergen Schoew wrote: Hi U-Boot mailling list, This patchset adds a new ARM board with the NXP PNX8181 cpu to u-boot. The PNX8181 is an ARM926ej with an internal DSP and a baseband processor (used for DECT). The chip also features dual ethernet, digital to analog

Re: [U-Boot] [PATCH] Olimex SAM9-L9260 board support

2008-11-01 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:49 Sat 01 Nov , Cristian Birsan wrote: Dear Jean-Christophe PLAGNIOL-VILLARD, I will remove all unnecessary white spaces from the previous patch. I have now a patch version for u-boot u-boot v2008.10

[U-Boot] [PATCH] Remove compiler warning: target CPU does not support interworking

2008-11-01 Thread sposelenov
From 7fd5e5aaf0c61f47c89bf59f2b37cc987e97849a Mon Sep 17 00:00:00 2001 From: Sergei Poselenov [EMAIL PROTECTED] Date: Fri, 19 Sep 2008 12:07:34 +0200 Subject: [PATCH] Remove compiler warning: target CPU does not support interworking (This warning is issued by modern ARM-EABI GCC on non-thumb

[U-Boot] [PATCH] Added a do_div() wrapper macro, lldiv().

2008-11-01 Thread sposelenov
From 9ccffd30d2f3fbc5e35e5ce445834c53d1d2a4fa Mon Sep 17 00:00:00 2001 From: Sergei Poselenov [EMAIL PROTECTED] Date: Wed, 29 Oct 2008 13:04:16 +0100 Subject: [PATCH] Added a do_div() wrapper macro, lldiv(). The new macro doesn't modify the dividend and returns the result of division, so it is

[U-Boot] [PATCH] Modified I.MX31 targets to use lldiv().

2008-11-01 Thread sposelenov
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Modified I.MX31 targets to use lldiv().

2008-11-01 Thread sposelenov
Hello, This is a patch to modify the mx31ads target to use lldiv(). Otherwise, it fails to build by EABI toolchain. Signed-off-by: Sergei Poselenov [EMAIL PROTECTED] --- cpu/arm1136/mx31/interrupts.c | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git

Re: [U-Boot] [PATCH] Added a do_div() wrapper macro, lldiv().

2008-11-01 Thread Wolfgang Denk
Dear Sergei, In message [EMAIL PROTECTED] you wrote: Subject: [PATCH] Added a do_div() wrapper macro, lldiv(). The new macro doesn't modify the dividend and returns the result of division, so it is useful in complex expressions, i.e. return(a/b) - return(lldiv(a,b)) Instead of a

Re: [U-Boot] [PATCH] Modified I.MX31 targets to use lldiv().

2008-11-01 Thread Wolfgang Denk
Dear [EMAIL PROTECTED], In message [EMAIL PROTECTED] you wrote: This is a patch to modify the mx31ads target to use lldiv(). Otherwise, it fails to build by EABI toolchain. ... /* time is measured in 1 / CONFIG_SYS_HZ seconds, tick is internal timer period */ #ifdef

Re: [U-Boot] Pull request: u-boot-fdt

2008-11-01 Thread Jerry Van Baren
Jerry Van Baren wrote: Dear Wolfgang, Please pull u-boot-fdt master branch for inclusion in the 2008-12 release. Thanks, gvb ***ping*** Thanks, gvb The following changes since commit d685b74c64a38849f1a129b3ab846fbf67dd937e: Dave Liu (1): 74xx: use r4 instead of r2 in

Re: [U-Boot] Building u-boot for the AT91RM9200-EK circa 2008

2008-11-01 Thread Ulf Samuelsson
On 17:34 Fri 31 Oct , Pink Boy wrote: Hi, first post here. vis: Building u-boot for the AT91RM9200-EK circa 2008 Is this still possible all things considered? It appears that this board is left behind in a backwater sometime around 2006. Problem is I need to compile a new version

Re: [U-Boot] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git

2008-11-01 Thread Wolfgang Denk
Dear Stefan Roese, In message [EMAIL PROTECTED] you wrote: The following changes since commit d685b74c64a38849f1a129b3ab846fbf67dd937e: Dave Liu (1): 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache are available in the git repository at:

Re: [U-Boot] Pull request u-boot-blackfin.git

2008-11-01 Thread Wolfgang Denk
Dear Mike Frysinger, In message [EMAIL PROTECTED] you wrote: On Thu, Oct 23, 2008 at 5:12 AM, Mike Frysinger wrote: The following changes since commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e: Wolfgang Denk (1): Fix strmhz(): avoid printing negative fractions are available in

Re: [U-Boot] Pull request: u-boot-sh

2008-11-01 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message [EMAIL PROTECTED] you wrote: Dear Wolfgang, Please pull u-boot-sh master branch. Best regards, Nobuhiro The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature

Re: [U-Boot] Pull request: nand flash

2008-11-01 Thread Wolfgang Denk
Dear Scott Wood, In message [EMAIL PROTECTED] you wrote: The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX) are available in the git repository at:

Re: [U-Boot] Pull request: nand flash

2008-11-01 Thread Wolfgang Denk
Dear Scott Wood, In message [EMAIL PROTECTED] you wrote: One more patch got added to the previous pull request. The following changes since commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c: Bartlomiej Sieka (1): Fix to the auto-update feature documentation

Re: [U-Boot] Pull request: u-boot-fdt

2008-11-01 Thread Wolfgang Denk
Dear Jerry Van Baren, In message [EMAIL PROTECTED] you wrote: Jerry Van Baren wrote: Dear Wolfgang, Please pull u-boot-fdt master branch for inclusion in the 2008-12 release. Thanks, gvb ***ping*** Pong. Hey, that pull request was just two days old... An old man like me is

Re: [U-Boot] Pull request: u-boot-fdt

2008-11-01 Thread Jerry Van Baren
Wolfgang Denk wrote: Dear Jerry Van Baren, In message [EMAIL PROTECTED] you wrote: Jerry Van Baren wrote: Dear Wolfgang, Please pull u-boot-fdt master branch for inclusion in the 2008-12 release. Thanks, gvb ***ping*** Pong. Hey, that pull request was just two days old... An

Re: [U-Boot] Building u-boot for the AT91RM9200-EK circa 2008

2008-11-01 Thread Pink Boy
Jean-Christophe sez, make distclean make at91sam9263ek_config Sorry bad paste job that should be make at91rm9200ek_config. make CROSS_COMPILE=path_to_cross-compiler/cross-compiler-prefix- why do you try to use the at91sam9263ek board on the AT91RM9200EK? and the AT91RM9200EK is

[U-Boot] K9G8G08UM u-boot 1.1.6 saveenv

2008-11-01 Thread hjj
Hi,every one ,i met a question with u-boot 1.1.6 and nand flash K9G8G08UM。 when i do saveenv, it can save into ram,but when i reset ,it resets the default! following is u-boot information: U-Boot 1.1.6 (Nov 2 2008 - 10:54:43) for SMDK6400 CPU: [EMAIL PROTECTED] Fclk = 533MHz,

[U-Boot] [PATCH] cmd_elf: CONFIG_ELF_SIMPLE_LOAD: load ELFs according to PHDRs

2008-11-01 Thread Mike Frysinger
The current ELF loading function does a lot of work above and beyond a simple loading. It ignores the real load addresses and loads things into their virtual (runtime) address. This is undesirable when we just want it to load an ELF and let the ELF do the actual C runtime init. Signed-off-by: