[U-Boot] [PATCH] OMAP3: add CM-T35 board

2010-11-23 Thread Mike Rapoport
This patch adds support for CM-T35 board Signed-off-by: Mike Rapoport --- MAINTAINERS |4 + MAKEALL |1 + board/cm_t35/Makefile| 47 ++ board/cm_t35/cm_t35.c| 222 board/cm_t35/cm_t35.h| 184 ++

Re: [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup

2010-11-23 Thread Minkyu Kang
Dear Darius Augulis, On 23 November 2010 02:44, Darius Augulis wrote: > Hi, > > On 11/22/2010 10:48 AM, Minkyu Kang wrote: >> >> Dear Darius Augulis, >> >> On 19 November 2010 17:54, Darius Augulis >>  wrote: >>> >>> Hi, >>> >>> On Fri, Nov 19, 2010 at 10:32 AM, Minkyu Kang  wrote: Dear

Re: [U-Boot] MACHINE ID

2010-11-23 Thread Bedia, Vaibhav
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Marek Vasut Sent: Tuesday, November 23, 2010 7:49 AM To: linux-...@lists.infradead.org Cc: u-boot@lists.denx.de; hong zhang; Oliver Schneidewind Subject: Re: [U-Boot] MACHINE ID On Sun

[U-Boot] [rft 45] : real estate agents optin e mail marketing list

2010-11-23 Thread manzanita
100% optin lists, Unlimited use rights Special List Pricing only until Friday: [ HEALTHCARE ] Any 4 lists below $319 - Individual List Price: $115 ea * Complete US Physicians Database * Chiropractic Doctors in the USA * American Holistic Medicine Providers/Clinics * General Dentists in the USA *

[U-Boot] Mathematics operation on uboot variables

2010-11-23 Thread Eran Y
Hi Is there any way to use mathematics operation on uboot environment or uboot local variables? since $varA+$varB and $(varA+varB) just save the string. -- View this message in context: http://old.nabble.com/Mathematics-operation-on-uboot-variables-tp30283797p30283797.html Sent from the Uboot

Re: [U-Boot] [PATCH 7/7] 4xx: Cleanup for partial linking and --gc-sections

2010-11-23 Thread Stefan Roese
Hi Wolfgang, On Sunday 21 November 2010 22:03:40 Wolfgang Denk wrote: > This commit adapts 4xx boards for partial linking with --gc-sections. Thanks. One comment below. > diff --git a/arch/powerpc/cpu/ppc4xx/Makefile > b/arch/powerpc/cpu/ppc4xx/Makefile index d97ca20..93ebf89 100644 > --- a/a

[U-Boot] [PATCH] ppc4xx: Fix build problems of IBM DDR2 NAND booting targets

2010-11-23 Thread Stefan Roese
This change is needed to compile the PPC4xx NAND booting targets equipped with the IBM DDR2 SDRAM controller. Signed-off-by: Stefan Roese Cc: Wolfgang Denk --- Wolfgang, this patch is needed to build the 44x NAND booting targets. Its based on top of your patchset "[PATCH 0/7] Address partial lin

[U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Stefan Roese
Without this fix, the NAND_SPL target (in nand_spl/) is not built at all. Signed-off-by: Stefan Roese --- Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index b4aae89..e9797d6 100644 --- a/Makefile +++ b/Makefile @@ -287,7 +287,7 @@ LDPPFLA

[U-Boot] [PATCH] ppc4xx: Fix NAND SPL linker scripts

2010-11-23 Thread Stefan Roese
Without this patch, the resulting NAND SPL image (nand_spl/u-boot-spl) will be empty. We need to "keep" the resetvec with the new compiler/ linker options (--gc-sections and -ffunction-sections -fdata-sections). Signed-off-by: Stefan Roese --- nand_spl/board/amcc/acadia/u-boot.lds |2 +-

[U-Boot] [PATCH] ppc4xx/NAND: Reduce size of NAND SPL image

2010-11-23 Thread Stefan Roese
This is needed for the canyonlands_nand build target. Without it the resulting image won't fit into 4k. Signed-off-by: Stefan Roese Cc: Scott Wood --- Scott, I would like to push this patch via my repository. Please let me know if this is ok with you. Thanks. drivers/mtd/nand/ndfc.c |4 ++

[U-Boot] [PATCH] ppc4xx: Remove bogus comment from start.S

2010-11-23 Thread Stefan Roese
Signed-off-by: Stefan Roese --- arch/powerpc/cpu/ppc4xx/start.S | 17 +++-- 1 files changed, 3 insertions(+), 14 deletions(-) diff --git a/arch/powerpc/cpu/ppc4xx/start.S b/arch/powerpc/cpu/ppc4xx/start.S index 65195f5..c36c13b 100644 --- a/arch/powerpc/cpu/ppc4xx/start.S +++ b/arc

[U-Boot] [PATCH v4] Seagate FreeAgent DockStar support

2010-11-23 Thread Eric Cooper
start with sheevaplug configuration add modifications by Alexander Holler change RAM definitions to one bank (128 MB) change ident string and prompt change environment to 0xA define MTD partitions and default environment variables add support for LEDs Signed-off-by: Eric Cooper -

Re: [U-Boot] [PATCH 3/7] Add support for third program loader

2010-11-23 Thread Haiying Wang
On Mon, 2010-11-22 at 21:58 -0700, Wolfgang Denk wrote: > Dear haiying.w...@freescale.com, > > In message > <1290462446-1459-3-git-send-email-haiying.w...@freescale.com> you > wrote: > > From: Haiying Wang > > > > This patch introduces the third program loader(TPL) to load the > final uboot > > i

Re: [U-Boot] [PATCH v4] Seagate FreeAgent DockStar support

2010-11-23 Thread Eric Cooper
Sorry, please disregard -- I sent this before committing Prafulla's other suggested change. -- Eric Cooper e c c @ c m u . e d u ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v5] Seagate FreeAgent DockStar support

2010-11-23 Thread Eric Cooper
start with sheevaplug configuration add modifications by Alexander Holler change RAM definitions to one bank (128 MB) change ident string and prompt define MTD partitions and default environment variables add support for LEDs Signed-off-by: Eric Cooper --- Changes for v2: - rebased on

Re: [U-Boot] [PATCH] ppc4xx/NAND: Reduce size of NAND SPL image

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 14:32:48 +0100 Stefan Roese wrote: > This is needed for the canyonlands_nand build target. Without it > the resulting image won't fit into 4k. > > Signed-off-by: Stefan Roese > Cc: Scott Wood > --- > Scott, I would like to push this patch via my repository. > Please let me

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread sughosh ganu
hi Ben, On Fri, Nov 19, 2010 at 3:20 AM, Ben Gardiner wrote: > > Still, there were some merge conflicts due to the fact that you were > basing your ea20 patches off of only 1 of Sugosh's patches. here is > the 'git log --format="%s -- %Cgreen%an <%aE> %Cred%ai" > u-boot/master^..HEAD' output afte

Re: [U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 14:32:20 +0100 Stefan Roese wrote: > Without this fix, the NAND_SPL target (in nand_spl/) is not built > at all. > > Signed-off-by: Stefan Roese It builds for me without it, on mpc8315erdb (I tried some 4xx boards but they don't build at all), as of current master branch (f

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Stefano Babic
On 11/23/2010 05:55 PM, sughosh ganu wrote: Hi, > Tested on hawkboard with u-boot and nand_spl images built from Ben's tree. > > Tested-by: Sughosh Ganu > > > I guess i will have to send an updated version from Ben's tree, as he > has fixed some merge issues in

Re: [U-Boot] [PATCHv2] mpc83xx: Make it boot again

2010-11-23 Thread Joakim Tjernlund
Could we have an ACK before relese please? > After the removal of COLD/WARM start flags my mpc8321 > board didn't boot anymore. > Trial and error suggests that map/remap_flash_by_xxx needs > to wait after updating LBLAWAR1 to make sure the the change has > reached the HW before continuing with the

Re: [U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Stefan Roese
Hi Scott, On Tuesday 23 November 2010 18:27:08 Scott Wood wrote: > > Without this fix, the NAND_SPL target (in nand_spl/) is not built > > at all. > > > > Signed-off-by: Stefan Roese > > It builds for me without it, on mpc8315erdb (I tried some 4xx boards > but they don't build at all), as of c

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Paulraj, Sandeep
> > On 11/23/2010 05:55 PM, sughosh ganu wrote: > > Hi, > > > Tested on hawkboard with u-boot and nand_spl images built from Ben's > tree. > > > > Tested-by: Sughosh Ganu > > > > > > I guess i will have to send an updated version from Ben's tree, as he > > has f

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Ben Gardiner
Hi Sandeep, On Tue, Nov 23, 2010 at 1:25 PM, Paulraj, Sandeep wrote: > I have been tracking this e-mail chain for some time now and I have lost > track of which patches to apply in which order. > > Can someone please give me the correct order and the correct version of the > patches? The corre

[U-Boot] [PATCH] mpc83xx: remove some dead code, saving space

2010-11-23 Thread Joakim Tjernlund
Signed-off-by: Joakim Tjernlund --- arch/powerpc/cpu/mpc83xx/start.S |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/arch/powerpc/cpu/mpc83xx/start.S b/arch/powerpc/cpu/mpc83xx/start.S index f7da14b..121c276 100644 --- a/arch/powerpc/cpu/mpc83xx/start.S +++ b/arch/

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Paulraj, Sandeep
> > Hi Sandeep, > > On Tue, Nov 23, 2010 at 1:25 PM, Paulraj, Sandeep > wrote: > > I have been tracking this e-mail chain for some time now and I have lost > track of which patches to apply in which order. > > > > Can someone please give me the correct order and the correct version of > the pa

Re: [U-Boot] [PATCHv2] mpc83xx: Make it boot again

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 19:16:01 +0100 Joakim Tjernlund wrote: > Could we have an ACK before relese please? > > > After the removal of COLD/WARM start flags my mpc8321 > > board didn't boot anymore. > > Trial and error suggests that map/remap_flash_by_xxx needs > > to wait after updating LBLAWAR1 to

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Paulraj, Sandeep
> > > > > > > Hi Sandeep, > > > > On Tue, Nov 23, 2010 at 1:25 PM, Paulraj, Sandeep > > wrote: > > > I have been tracking this e-mail chain for some time now and I have > lost > > track of which patches to apply in which order. > > > > > > Can someone please give me the correct order and the

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Ben Gardiner
On Tue, Nov 23, 2010 at 1:38 PM, Paulraj, Sandeep wrote: > I tried to access that page but failed. Oh. Sorry, Sandeep. The webpage for the repo can be found at http://github.com/BenGardiner/u-boot-bg -- that page contains three URL variants for access to the repo. Best Regards, Ben Gardiner ---

Re: [U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 19:16:47 +0100 Stefan Roese wrote: > Hi Scott, > > On Tuesday 23 November 2010 18:27:08 Scott Wood wrote: > > > Without this fix, the NAND_SPL target (in nand_spl/) is not built > > > at all. > > > > > > Signed-off-by: Stefan Roese > > > > It builds for me without it, on m

[U-Boot] [PATCH 0/6] RFC: True PIC on 83xx

2010-11-23 Thread Joakim Tjernlund
Here goes my attempt to revive true PIC on ppc, starting with 83xx. This uses a a new gcc option(which I have just impl.) to add msingle-pic-base also save a lot of code: before: textdata bss dec hex filename 222728 14336 24228 261292 3fcac u-boot after: textdata

[U-Boot] [PATCH 1/6] mpc83xx: Add relocation support for -fpic

2010-11-23 Thread Joakim Tjernlund
By rearranging the linker script we get support for relocation of -fpic for free. --- arch/powerpc/cpu/mpc83xx/u-boot.lds |5 +++-- nand_spl/board/freescale/mpc8313erdb/u-boot.lds |4 +++- nand_spl/board/freescale/mpc8315erdb/u-boot.lds |4 +++- 3 files changed, 9 insertion

[U-Boot] [PATCH 2/6] mpc83xx: Make start.S true PIC

2010-11-23 Thread Joakim Tjernlund
Remove dependencies on link address. Use GOT and add an new function to calculate the actual address. --- arch/powerpc/cpu/mpc83xx/start.S | 36 1 files changed, 28 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/cpu/mpc83xx/start.S b/arch/powerpc/cp

[U-Boot] [PATCH 3/6] mpc83xx: Add link vs. load address calculation

2010-11-23 Thread Joakim Tjernlund
link_off calculates the difference between link address and actila load address. This is a must for true PIC u-boot. --- arch/powerpc/cpu/mpc83xx/start.S | 25 + include/common.h |5 + 2 files changed, 30 insertions(+), 0 deletions(-) diff --git a

[U-Boot] [PATCH 4/6] mpc83xx: Add support form -msingle-pic-base

2010-11-23 Thread Joakim Tjernlund
singel-pic-base is pending inclusinon in gcc and is useful for reducing code size and impl. true PIC. --- arch/powerpc/cpu/mpc83xx/start.S | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/cpu/mpc83xx/start.S b/arch/powerpc/cpu/mpc83xx/start.S index

[U-Boot] [PATCH 5/6] mpc83xx: Add true PIC support.

2010-11-23 Thread Joakim Tjernlund
By copying the GOT to the end of the INIT_RAM(dcache) and relocating it there, it is much esier to support true PIC on u-boot. This cannot handle FIXUP so C code that depends on fixups before relocation to RAM must use LINK_OFF to calculate the difference. This depends on the upcoming single-pic-b

[U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Joakim Tjernlund
Only these 2 call sites depends on fixups for my mpc8321 based board. --- arch/powerpc/cpu/mpc83xx/cpu_init.c |2 +- arch/powerpc/lib/board.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/cpu/mpc83xx/cpu_init.c b/arch/powerpc/cpu/mpc83xx/cpu

Re: [U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 12:45:04 -0600 Scott Wood wrote: > On Tue, 23 Nov 2010 19:16:47 +0100 > Stefan Roese wrote: > > > Hi Scott, > > > > On Tuesday 23 November 2010 18:27:08 Scott Wood wrote: > > > > Without this fix, the NAND_SPL target (in nand_spl/) is not built > > > > at all. > > > > > >

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Ben Gardiner
On Tue, Nov 23, 2010 at 1:44 PM, Paulraj, Sandeep wrote: > I am able to clone the tree but I am unable to access it on the web I'm very sorry for the trouble you've had accessing that repo -- I will happily switch to any other public git hosting service of your choosing for future merged series.

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Paulraj, Sandeep
> > On Tue, Nov 23, 2010 at 1:44 PM, Paulraj, Sandeep > wrote: > > I am able to clone the tree but I am unable to access it on the web > > I'm very sorry for the trouble you've had accessing that repo -- I > will happily switch to any other public git hosting service of your > choosing for fut

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Ben Gardiner
On Tue, Nov 23, 2010 at 1:57 PM, Paulraj, Sandeep wrote: > Not an issue at all. > > In this case because of some major changes and multiple patch versions I lost > track. Usually I pick it from the mailing list. > > After Wolfgang accept my previous pull request, I'll get on with the program > o

Re: [U-Boot] [PATCH] Fix NAND booting make target

2010-11-23 Thread Stefan Roese
On Tuesday 23 November 2010 19:51:14 Scott Wood wrote: > > > Yes, current git head fails to build an many 4xx boards. My patch is on > > > top of Wolfgangs patchset "[PATCH 0/7] Address partial linking issues" > > > from 2010-11-21 which fixes most of the 4xx problems. But without this > > > patch,

Re: [U-Boot] [PATCH 3/6] mpc83xx: Add link vs. load address calculation

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 19:48:48 +0100 Joakim Tjernlund wrote: > diff --git a/include/common.h b/include/common.h > index 8bca04f..f257ea4 100644 > --- a/include/common.h > +++ b/include/common.h > @@ -94,6 +94,9 @@ typedef volatile unsigned char vu_char; > #ifdef CONFIG_MPC83xx > #include >

Re: [U-Boot] MACHINE ID

2010-11-23 Thread Wolfgang Denk
Dear "Bedia, Vaibhav", In message you wrote: > > This error is due to an incorrect machid being passed to the kernel. > > This can be fixed using the following commands: > > TI8168_EVM# setenv machid af0 Note that is is a workaround at best, not a fix. For a fix the incorrect value needs to b

Re: [U-Boot] [PATCH 7/7] 4xx: Cleanup for partial linking and --gc-sections

2010-11-23 Thread Wolfgang Denk
Dear Stefan Roese, In message <201011231431.18905...@denx.de> you wrote: > > > --- a/arch/powerpc/cpu/ppc4xx/Makefile > > +++ b/arch/powerpc/cpu/ppc4xx/Makefile > > @@ -37,9 +37,9 @@ COBJS := 40x_spd_sdram.o > > ifndef CONFIG_NAND_SPL > > ifndef CONFIG_NAND_U_BOOT > > COBJS += 44x_spd

Re: [U-Boot] [PATCH] ppc4xx: Remove bogus comment from start.S

2010-11-23 Thread Wolfgang Denk
Dear Stefan Roese, In message <1290519180-6764-1-git-send-email...@denx.de> you wrote: > Signed-off-by: Stefan Roese > --- > arch/powerpc/cpu/ppc4xx/start.S | 17 +++-- > 1 files changed, 3 insertions(+), 14 deletions(-) > > diff --git a/arch/powerpc/cpu/ppc4xx/start.S b/arch/powe

Re: [U-Boot] [PATCH 3/6] mpc83xx: Add link vs. load address calculation

2010-11-23 Thread Joakim Tjernlund
Scott Wood wrote on 2010/11/23 20:32:32: > On Tue, 23 Nov 2010 19:48:48 +0100 > Joakim Tjernlund wrote: > > > diff --git a/include/common.h b/include/common.h > > index 8bca04f..f257ea4 100644 > > --- a/include/common.h > > +++ b/include/common.h > > @@ -94,6 +94,9 @@ typedef volatile unsigned ch

Re: [U-Boot] [PATCH 3/6] mpc83xx: Add link vs. load address calculation

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 21:08:37 +0100 Joakim Tjernlund wrote: > Scott Wood wrote on 2010/11/23 20:32:32: > > On Tue, 23 Nov 2010 19:48:48 +0100 > > Joakim Tjernlund wrote: > > > > > diff --git a/include/common.h b/include/common.h > > > index 8bca04f..f257ea4 100644 > > > --- a/include/common.h >

Re: [U-Boot] [PATCH 3/6] mpc83xx: Add link vs. load address calculation

2010-11-23 Thread Joakim Tjernlund
Scott Wood wrote on 2010/11/23 21:17:12: > > On Tue, 23 Nov 2010 21:08:37 +0100 > Joakim Tjernlund wrote: > > > Scott Wood wrote on 2010/11/23 20:32:32: > > > On Tue, 23 Nov 2010 19:48:48 +0100 > > > Joakim Tjernlund wrote: > > > > > > > diff --git a/include/common.h b/include/common.h > > > >

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 19:48:51 +0100 Joakim Tjernlund wrote: > Only these 2 call sites depends on fixups for my mpc8321 based > board. > --- > arch/powerpc/cpu/mpc83xx/cpu_init.c |2 +- > arch/powerpc/lib/board.c|2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > dif

Re: [U-Boot] [PATCH 0/6] RFC: True PIC on 83xx

2010-11-23 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message <1290538131-12383-1-git-send-email-joakim.tjernl...@transmode.se> you wrote: > Here goes my attempt to revive true PIC on ppc, starting with 83xx. > This uses a a new gcc option(which I have just impl.) to add > msingle-pic-base also save a lot of code: Is my in

Re: [U-Boot] [PATCH 3/7] Add support for third program loader

2010-11-23 Thread Wolfgang Denk
Dear Haiying Wang, In message <1290525198.1932.3.ca...@haiying-laptop> you wrote: > > > Please use only one such name (CONFIG_SYS_TPL_BOOT). > CONFIG_SYS_TPL_BOOT is used as CONFIG_NAND_U_BOOT in Makefile and header > file. > CONFIG_TPL_BOOT is used as CONFIG_NAND_SPL in header file. I'm sorry, b

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Joakim Tjernlund
Scott Wood wrote on 2010/11/23 21:46:51: > On Tue, 23 Nov 2010 19:48:51 +0100 > Joakim Tjernlund wrote: > > > Only these 2 call sites depends on fixups for my mpc8321 based > > board. > > --- > > arch/powerpc/cpu/mpc83xx/cpu_init.c |2 +- > > arch/powerpc/lib/board.c|2 +- > >

Re: [U-Boot] [PATCH 0/6] RFC: True PIC on 83xx

2010-11-23 Thread Joakim Tjernlund
Wolfgang Denk wrote on 2010/11/23 21:52:11: > > Dear Joakim Tjernlund, > > In message <1290538131-12383-1-git-send-email-joakim.tjernl...@transmode.se> > you wrote: > > Here goes my attempt to revive true PIC on ppc, starting with 83xx. > > This uses a a new gcc option(which I have just impl.) to

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Joakim Tjernlund
> > Scott Wood wrote on 2010/11/23 21:46:51: > > On Tue, 23 Nov 2010 19:48:51 +0100 > > Joakim Tjernlund wrote: > > Please document the specific circumstances in which one would need > > to use this (any data-segment pointer before relocation?). > > Any ptr needing fixups: > char *sptr = "hi"; >

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 22:03:36 +0100 Joakim Tjernlund wrote: > Scott Wood wrote on 2010/11/23 21:46:51: > > "Only these" that you've found so far, for the board you've tried -- > > Yes, that is what I wrote. Yes, I was just emphasizing that. :-) > > is it worth adding another pre-relocation lan

Re: [U-Boot] [PATCH 3/7] Add support for third program loader

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 21:57:04 +0100 Wolfgang Denk wrote: > Dear Haiying Wang, > > In message <1290525198.1932.3.ca...@haiying-laptop> you wrote: > > > > > Please use only one such name (CONFIG_SYS_TPL_BOOT). > > CONFIG_SYS_TPL_BOOT is used as CONFIG_NAND_U_BOOT in Makefile and header > > file. >

Re: [U-Boot] [PATCH 0/6] RFC: True PIC on 83xx

2010-11-23 Thread Graeme Russ
On Wed, Nov 24, 2010 at 8:08 AM, Joakim Tjernlund wrote: > Wolfgang Denk wrote on 2010/11/23 21:52:11: >> >> Dear Joakim Tjernlund, >> >> In message <1290538131-12383-1-git-send-email-joakim.tjernl...@transmode.se> >> you wrote: >> > Here goes my attempt to revive true PIC on ppc, starting with

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Joakim Tjernlund
Scott Wood wrote on 2010/11/23 22:20:58: > > On Tue, 23 Nov 2010 22:03:36 +0100 > Joakim Tjernlund wrote: > > > Scott Wood wrote on 2010/11/23 21:46:51: > > > "Only these" that you've found so far, for the board you've tried -- > > > > Yes, that is what I wrote. > > Yes, I was just emphasizing t

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Scott Wood
On Tue, 23 Nov 2010 23:14:06 +0100 Joakim Tjernlund wrote: > Scott Wood wrote on 2010/11/23 22:20:58: > > "load address" being pre-relocation? Currently these must be equal > > (which doesn't seem particularly burdensome). > > Yes, but in our case we update the boot in the field and we want to

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Wolfgang Denk
Dear Scott Wood, In message <20101123163204.4f843...@udp111988uds.am.freescale.net> you wrote: > > How about playing with BATs before entering C code, so that the image > always appears at the same effective address? Not all systems have BATs. Best regards, Wolfgang Denk -- DENX Software Engi

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Scott Wood
On Wed, 24 Nov 2010 00:03:13 +0100 Wolfgang Denk wrote: > Dear Scott Wood, > > In message <20101123163204.4f843...@udp111988uds.am.freescale.net> you wrote: > > > > How about playing with BATs before entering C code, so that the image > > always appears at the same effective address? > > Not al

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Graeme Russ
On Wed, Nov 24, 2010 at 10:24 AM, Scott Wood wrote: > On Wed, 24 Nov 2010 00:03:13 +0100 > Wolfgang Denk wrote: > >> Dear Scott Wood, >> >> In message <20101123163204.4f843...@udp111988uds.am.freescale.net> you wrote: >> > >> > How about playing with BATs before entering C code, so that the image

Re: [U-Boot] [PATCH 6/6] powerpc: Add LINK_OFF calls in early C-code.

2010-11-23 Thread Joakim Tjernlund
Scott Wood wrote on 2010/11/23 23:32:04: > > On Tue, 23 Nov 2010 23:14:06 +0100 > Joakim Tjernlund wrote: > > > Scott Wood wrote on 2010/11/23 22:20:58: > > > "load address" being pre-relocation? Currently these must be equal > > > (which doesn't seem particularly burdensome). > > > > Yes, but

Re: [U-Boot] [PATCH] OMAP3: add CM-T35 board

2010-11-23 Thread Nishanth Menon
Mike Rapoport wrote, on 11/23/2010 01:29 AM: minor comments follow: [...] > diff --git a/board/cm_t35/cm_t35.h b/board/cm_t35/cm_t35.h > new file mode 100644 > index 000..514017d > --- /dev/null > +++ b/board/cm_t35/cm_t35.h [..] > + /*DSS*/\ > + MUX_VAL(CP(DSS_PCLK), (ID

Re: [U-Boot] MACHINE ID

2010-11-23 Thread Bedia, Vaibhav
On Wednesday, November 24, 2010 1:24 AM, Wolfgang Denk wrote: > Dear "Bedia, Vaibhav", > > In message > you > wrote: >> >> This error is due to an incorrect machid being passed to the kernel. >> >> This can be fixed using the following commands: >> >> TI8168_EVM# setenv machid af0 > > Note

[U-Boot] About "sf probe" command

2010-11-23 Thread wzc0066
Hello, i feel confused about the parameter of "sf probe" command. Such as "sf probe 0" or "sf probe 1" I have a 4M SPI Flash on my board, how should i specify the parameter of "sf probe" ? And what means of these parameters ? ( the help info of this command is too small which displayed in u-boo

[U-Boot] 69JQX-F2284

2010-11-23 Thread You Have Won
GPG ALERT InterGold/ GPG wishes to inform you of the results of the Strike-It-Lucky Global Online Mail End-of-Year Program held in Bolton, Lancashire - United Kingdom on Saturday 13th November, 2010. Your account has been picked as a winner. This is what our latest winners had to

[U-Boot] ppc44x : build failure

2010-11-23 Thread Rupjyoti Sarmah
Hi Stefan, The current u-boot git tree fails to build for Canyonlands. It reports “board/amcc/canyonlands/init.S:43: multiple definition of `tlbtab' ” Was there any recent changes ? Regards, Rup ___ U-Boot mailing list U-Boot@lists.denx.de http:

Re: [U-Boot] [PATCH 7/7] 4xx: Cleanup for partial linking and --gc-sections

2010-11-23 Thread Stefan Roese
Hi Wolfgang, On Tuesday 23 November 2010 20:55:03 Wolfgang Denk wrote: > > > --- a/arch/powerpc/cpu/ppc4xx/Makefile > > > +++ b/arch/powerpc/cpu/ppc4xx/Makefile > > > @@ -37,9 +37,9 @@ COBJS := 40x_spd_sdram.o > > > > > > ifndef CONFIG_NAND_SPL > > > ifndef CONFIG_NAND_U_BOOT > > > COBJS

Re: [U-Boot] ppc44x : build failure

2010-11-23 Thread Stefan Roese
Hi Rup, On Wednesday 24 November 2010 06:27:06 Rupjyoti Sarmah wrote: > The current u-boot git tree fails to build for Canyonlands. It reports > “board/amcc/canyonlands/init.S:43: multiple definition of `tlbtab' ” > > Was there any recent changes ? Yes, a lot of 4xx board fail to compile right

Re: [U-Boot] [PATCH 1/2][NEXT] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Sughosh Ganu
hi, On Tue Nov 23, 2010 at 01:31:46PM -0500, Ben Gardiner wrote: > On Tue, Nov 23, 2010 at 1:25 PM, Paulraj, Sandeep wrote: > > I have been tracking this e-mail chain for some time now and I have lost > > track of which patches to apply in which order. > > > > Can someone please give me the cor

[U-Boot] [PATCH v2] Fix NAND booting make target

2010-11-23 Thread Stefan Roese
Without this fix, the NAND_SPL target (in nand_spl/) is not built at all for those boards defining NAND_U_BOOT=y in boards.cfg. Signed-off-by: Stefan Roese Cc: Scott Wood --- v2: - Don't change toplevel Makefile but fix boards.cfg as suggested by Scott Wood. boards.cfg | 20 ++-

Re: [U-Boot] ppc44x : build failure

2010-11-23 Thread Wolfgang Denk
Dear Rupjyoti Sarmah, In message you wrote: > > The current u-boot git tree fails to build for Canyonlands. It reports > board/amcc/canyonlands/init.S:43: multiple definition of `tlbtab' > > Was there any recent changes ? Yes. See thread starting here: http://thread.gmane.org/gmane.comp.boot

Re: [U-Boot] About "sf probe" command

2010-11-23 Thread Mike Frysinger
On Tuesday, November 23, 2010 23:46:53 wzc0066 wrote: > Hello, i feel confused about the parameter of "sf probe" command. > Such as "sf probe 0" or "sf probe 1" > > I have a 4M SPI Flash on my board, how should i specify the parameter of > "sf probe" ? > And what means of these parameters ? ( t

Re: [U-Boot] [PATCH V2 1/2] Davinci 8xx: Move common functions to share code

2010-11-23 Thread Sughosh Ganu
hi Ben, On Fri Nov 19, 2010 at 10:16:09AM -0500, Ben Gardiner wrote: > We are happy to see the omap-L138 support in u-boot moving forward. We > would like to get either SD or USB (or both) omapL138 support upstream > next. Does the ea20 have USB or SD? Will the hawkboard u-boot support > include U

Re: [U-Boot] [PATCH v5] Seagate FreeAgent DockStar support

2010-11-23 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] > On Behalf Of Eric Cooper > Sent: Tuesday, November 23, 2010 9:04 PM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH v5] Seagate FreeAgent DockStar support > > start with sheevaplug con

[U-Boot] [PATCH] Kirkwood: grouped all Kirkwood boards

2010-11-23 Thread Prafulla Wadaskar
Kirkwood based boards where scattered in boards.cfg All such boards were grouped together The ordering is fixed Signed-off-by: Prafulla Wadaskar --- boards.cfg |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boards.cfg b/boards.cfg index 9e03f81..5d9638e 100644 ---