From 5bcc6a8901020ce22a996ef438cfc7be7a0c3995 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Tue, 20 Dec 2011 05:46:33 +0000 Subject: mx28: Let dram_init be common for mx28 Let dram_init function be a common function, so that other mx28 boards can reuse it. Signed-off-by: Fabio Estevam Acked-by: Marek Vasut --- board/denx/m28evk/m28evk.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'board') diff --git a/board/denx/m28evk/m28evk.c b/board/denx/m28evk/m28evk.c index 005446ab02..53df4761f6 100644 --- a/board/denx/m28evk/m28evk.c +++ b/board/denx/m28evk/m28evk.c @@ -70,25 +70,9 @@ int board_init(void) return 0; } -#define HW_DIGCTRL_SCRATCH0 0x8001c280 -#define HW_DIGCTRL_SCRATCH1 0x8001c290 int dram_init(void) { - uint32_t sz[2]; - - sz[0] = readl(HW_DIGCTRL_SCRATCH0); - sz[1] = readl(HW_DIGCTRL_SCRATCH1); - - if (sz[0] != sz[1]) { - printf("MX28:\n" - "Error, the RAM size in HW_DIGCTRL_SCRATCH0 and\n" - "HW_DIGCTRL_SCRATCH1 is not the same. Please\n" - "verify these two registers contain valid RAM size!\n"); - hang(); - } - - gd->ram_size = sz[0]; - return 0; + return mx28_dram_init(); } #ifdef CONFIG_CMD_MMC -- cgit v1.2.1