summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mvebu/dram.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2015-08-03 11:15:31 (GMT)
committerLuka Perkov <luka.perkov@sartura.hr>2015-08-17 16:49:19 (GMT)
commit8a83c65f577093f5f012ddd81cfac9d60658ec0e (patch)
tree80c5e8208998a0f22d90be1ec0043c3f09a10fcc /arch/arm/mach-mvebu/dram.c
parent8a3337161d0fdedcfbe6d6be884f811496feedc1 (diff)
downloadu-boot-8a83c65f577093f5f012ddd81cfac9d60658ec0e.tar.xz
arm: mvebu: Display ECC enabled / disabled upon bootup
This patch adds "(ECC enabled)" or "(ECC disabled)" to the DRAM bootup text. Making it easier for board with SPD DIMM's to see, if ECC is enabled or not. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Luka Perkov <luka.perkov@sartura.hr>
Diffstat (limited to 'arch/arm/mach-mvebu/dram.c')
-rw-r--r--arch/arm/mach-mvebu/dram.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/dram.c b/arch/arm/mach-mvebu/dram.c
index 7a5840c..600dc09 100644
--- a/arch/arm/mach-mvebu/dram.c
+++ b/arch/arm/mach-mvebu/dram.c
@@ -12,6 +12,13 @@
#include <asm/arch/cpu.h>
#include <asm/arch/soc.h>
+#ifdef CONFIG_SYS_MVEBU_DDR_A38X
+#include "../../../drivers/ddr/marvell/a38x/ddr3_init.h"
+#endif
+#ifdef CONFIG_SYS_MVEBU_DDR_AXP
+#include "../../../drivers/ddr/marvell/axp/ddr3_init.h"
+#endif
+
DECLARE_GLOBAL_DATA_PTR;
struct sdram_bank {
@@ -140,3 +147,15 @@ void dram_init_banksize(void)
{
dram_init();
}
+
+void board_add_ram_info(int use_default)
+{
+ u32 reg;
+
+ reg = reg_read(REG_SDRAM_CONFIG_ADDR);
+ if (reg & (1 << REG_SDRAM_CONFIG_ECC_OFFS))
+ printf(" (ECC");
+ else
+ printf(" (ECC not");
+ printf(" enabled)");
+}