Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-02-07 Thread Luca Ellero
Hi all, On 01/02/2013 10.49, Luca Ellero wrote: Hi, On 01/02/2013 11.07, Heiko Schocher wrote: Hello Luce, Am 01.02.2013 09:50, schrieb Luca Ellero: Hi Jeroen, Hi Heiko, On 31/01/2013 20.08, Jeroen Hofstee wrote: Hello Luca, On 01/31/2013 03:29 PM, Luca Ellero wrote: If (N. SDRAM banks >

Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-02-01 Thread Luca Ellero
Hi, On 01/02/2013 11.07, Heiko Schocher wrote: Hello Luce, Am 01.02.2013 09:50, schrieb Luca Ellero: Hi Jeroen, Hi Heiko, On 31/01/2013 20.08, Jeroen Hofstee wrote: Hello Luca, On 01/31/2013 03:29 PM, Luca Ellero wrote: If (N. SDRAM banks > 1) and they are not contiguous, don't relocate u-

Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-02-01 Thread Heiko Schocher
Hello Luce, Am 01.02.2013 09:50, schrieb Luca Ellero: > Hi Jeroen, > Hi Heiko, > > On 31/01/2013 20.08, Jeroen Hofstee wrote: >> Hello Luca, >> >> On 01/31/2013 03:29 PM, Luca Ellero wrote: >>> If (N. SDRAM banks > 1) and they are not contiguous, don't relocate >>> u-boot at (CONFIG_SYS_SDRAM_BAS

Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-02-01 Thread Luca Ellero
Hi Jeroen, Hi Heiko, On 31/01/2013 20.08, Jeroen Hofstee wrote: Hello Luca, On 01/31/2013 03:29 PM, Luca Ellero wrote: If (N. SDRAM banks > 1) and they are not contiguous, don't relocate u-boot at (CONFIG_SYS_SDRAM_BASE + gd->ram_size), which is a bug. Instead use the end of 2nd bank (even if

Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-01-31 Thread Heiko Schocher
Hello Luca, on 31.01.2013 15:29, Luca Ellero wrote: > If (N. SDRAM banks > 1) and they are not contiguous, don't relocate > u-boot at (CONFIG_SYS_SDRAM_BASE + gd->ram_size), which is a bug. > Instead use the end of 2nd bank (even if there are more than 2 banks) > > Signed-off-by: Luca Ellero > C

Re: [U-Boot] [PATCH] arm: fix bug on relocation address

2013-01-31 Thread Jeroen Hofstee
Hello Luca, On 01/31/2013 03:29 PM, Luca Ellero wrote: If (N. SDRAM banks > 1) and they are not contiguous, don't relocate u-boot at (CONFIG_SYS_SDRAM_BASE + gd->ram_size), which is a bug. Instead use the end of 2nd bank (even if there are more than 2 banks) Signed-off-by: Luca Ellero Cc: Albe

[U-Boot] [PATCH] arm: fix bug on relocation address

2013-01-31 Thread Luca Ellero
If (N. SDRAM banks > 1) and they are not contiguous, don't relocate u-boot at (CONFIG_SYS_SDRAM_BASE + gd->ram_size), which is a bug. Instead use the end of 2nd bank (even if there are more than 2 banks) Signed-off-by: Luca Ellero Cc: Albert Aribaud Cc: Heiko Schocher --- On ARM architectures