* [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection
@ 2011-07-13 23:04 Linus Walleij
2011-07-14 11:43 ` Wolfgang Denk
2011-07-14 11:53 ` Sergei Shtylyov
0 siblings, 2 replies; 3+ messages in thread
From: Linus Walleij @ 2011-07-13 23:04 UTC (permalink / raw)
To: u-boot
This fixes up the SDRAM memory detection code to work with the
latest relocation code, moves it all into dram_init() and
activates memory size detection for the Integrator AP.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
board/armltd/integrator/integrator.c | 17 +++++++----------
include/configs/integratorap.h | 2 +-
2 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c
index a0d8de7..931a916 100644
--- a/board/armltd/integrator/integrator.c
+++ b/board/armltd/integrator/integrator.c
@@ -86,17 +86,9 @@ int misc_init_r (void)
return (0);
}
-void dram_init_banksize(void)
-{
- gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
- gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
-}
-
int dram_init (void)
{
- gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
- PHYS_SDRAM_1_SIZE);
-
+ gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
#ifdef CONFIG_CM_SPD_DETECT
{
extern void dram_query(void);
@@ -120,8 +112,13 @@ extern void dram_query(void);
*/
sdram_shift = ((cm_reg_sdram & 0x0000001C)/4)%4;
gd->bd->bi_dram[0].size = 0x01000000 << sdram_shift;
-
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
+ 0x01000000 << sdram_shift);
}
+#else
+ gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
+ PHYS_SDRAM_1_SIZE);
#endif /* CM_SPD_DETECT */
return 0;
diff --git a/include/configs/integratorap.h b/include/configs/integratorap.h
index acdb37c..d724c91 100644
--- a/include/configs/integratorap.h
+++ b/include/configs/integratorap.h
@@ -47,7 +47,7 @@
#define CONFIG_SKIP_LOWLEVEL_INIT
#define CONFIG_CM_INIT 1
#define CONFIG_CM_REMAP 1
-#undef CONFIG_CM_SPD_DETECT
+#define CONFIG_CM_SPD_DETECT
#define CONFIG_SYS_DCACHE_OFF
/*
--
1.7.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection
2011-07-13 23:04 [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection Linus Walleij
@ 2011-07-14 11:43 ` Wolfgang Denk
2011-07-14 11:53 ` Sergei Shtylyov
1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2011-07-14 11:43 UTC (permalink / raw)
To: u-boot
Dear Linus Walleij,
In message <1310598276-9741-1-git-send-email-linus.walleij@linaro.org> you wrote:
> This fixes up the SDRAM memory detection code to work with the
> latest relocation code, moves it all into dram_init() and
> activates memory size detection for the Integrator AP.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> board/armltd/integrator/integrator.c | 17 +++++++----------
> include/configs/integratorap.h | 2 +-
> 2 files changed, 8 insertions(+), 11 deletions(-)
...
> @@ -120,8 +112,13 @@ extern void dram_query(void);
> */
> sdram_shift = ((cm_reg_sdram & 0x0000001C)/4)%4;
> gd->bd->bi_dram[0].size = 0x01000000 << sdram_shift;
> -
> + gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
> + 0x01000000 << sdram_shift);
> }
> +#else
> + gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
> + gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
> + PHYS_SDRAM_1_SIZE);
Indentation by TAB only, please.
> diff --git a/include/configs/integratorap.h b/include/configs/integratorap.h
> index acdb37c..d724c91 100644
> --- a/include/configs/integratorap.h
> +++ b/include/configs/integratorap.h
> @@ -47,7 +47,7 @@
> #define CONFIG_SKIP_LOWLEVEL_INIT
> #define CONFIG_CM_INIT 1
> #define CONFIG_CM_REMAP 1
> -#undef CONFIG_CM_SPD_DETECT
> +#define CONFIG_CM_SPD_DETECT
> #define CONFIG_SYS_DCACHE_OFF
Are you sure this works for all affected boards?
Please also put the board maintainer on Cc: for all patches that
affedt specific boards like here.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"I find this a nice feature but it is not according to the documen-
tation. Or is it a BUG?" "Let's call it an accidental feature. :-)"
- Larry Wall in <6909@jpl-devvax.JPL.NASA.GOV>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection
2011-07-13 23:04 [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection Linus Walleij
2011-07-14 11:43 ` Wolfgang Denk
@ 2011-07-14 11:53 ` Sergei Shtylyov
1 sibling, 0 replies; 3+ messages in thread
From: Sergei Shtylyov @ 2011-07-14 11:53 UTC (permalink / raw)
To: u-boot
Hello.
On 14-07-2011 3:04, Linus Walleij wrote:
> This fixes up the SDRAM memory detection code to work with the
> latest relocation code, moves it all into dram_init() and
> activates memory size detection for the Integrator AP.
> Signed-off-by: Linus Walleij<linus.walleij@linaro.org>
> ---
> board/armltd/integrator/integrator.c | 17 +++++++----------
> include/configs/integratorap.h | 2 +-
> 2 files changed, 8 insertions(+), 11 deletions(-)
> diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c
> index a0d8de7..931a916 100644
> --- a/board/armltd/integrator/integrator.c
> +++ b/board/armltd/integrator/integrator.c
> @@ -86,17 +86,9 @@ int misc_init_r (void)
> return (0);
> }
>
> -void dram_init_banksize(void)
> -{
> - gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
> - gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
> -}
> -
> int dram_init (void)
> {
> - gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
> - PHYS_SDRAM_1_SIZE);
> -
> + gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
> #ifdef CONFIG_CM_SPD_DETECT
> {
> extern void dram_query(void);
> @@ -120,8 +112,13 @@ extern void dram_query(void);
> */
> sdram_shift = ((cm_reg_sdram& 0x0000001C)/4)%4;
> gd->bd->bi_dram[0].size = 0x01000000<< sdram_shift;
> -
> + gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
> + 0x01000000<< sdram_shift);
> }
> +#else
> + gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
How about fixing the indentation here to use tab?
> + gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
> + PHYS_SDRAM_1_SIZE);
> #endif /* CM_SPD_DETECT */
>
> return 0;
WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-07-14 11:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-13 23:04 [U-Boot] [PATCH 2/2] integratorap: fixup SDRAM memory size detection Linus Walleij
2011-07-14 11:43 ` Wolfgang Denk
2011-07-14 11:53 ` Sergei Shtylyov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox