Skip to content
Snippets Groups Projects
Commit f2c8d7f5 authored by Albert ARIBAUD's avatar Albert ARIBAUD
Browse files

Merge branch 'u-boot-microblaze/zynq' into 'u-boot-arm/master'

parents 772e1738 32747491
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ void zynq_ddrc_init(void) ...@@ -34,7 +34,7 @@ void zynq_ddrc_init(void)
/* ECC is enabled when memory is in 16bit mode and it is enabled */ /* ECC is enabled when memory is in 16bit mode and it is enabled */
if ((ecctype == ZYNQ_DDRC_ECC_SCRUBREG_ECCMODE_SECDED) && if ((ecctype == ZYNQ_DDRC_ECC_SCRUBREG_ECCMODE_SECDED) &&
(width == ZYNQ_DDRC_CTRLREG_BUSWIDTH_16BIT)) { (width == ZYNQ_DDRC_CTRLREG_BUSWIDTH_16BIT)) {
puts("Memory: ECC enabled\n"); puts("ECC enabled ");
/* /*
* Clear the first 1MB because it is not initialized from * Clear the first 1MB because it is not initialized from
* first stage bootloader. To get ECC to work all memory has * first stage bootloader. To get ECC to work all memory has
...@@ -42,6 +42,6 @@ void zynq_ddrc_init(void) ...@@ -42,6 +42,6 @@ void zynq_ddrc_init(void)
*/ */
memset((void *)0, 0, 1 * 1024 * 1024); memset((void *)0, 0, 1 * 1024 * 1024);
} else { } else {
puts("Memory: ECC disabled\n"); puts("ECC disabled ");
} }
} }
...@@ -10,3 +10,6 @@ obj-y := board.o ...@@ -10,3 +10,6 @@ obj-y := board.o
# Please copy ps7_init.c/h from hw project to this directory # Please copy ps7_init.c/h from hw project to this directory
obj-$(CONFIG_SPL_BUILD) += \ obj-$(CONFIG_SPL_BUILD) += \
$(if $(wildcard $(srctree)/$(src)/ps7_init.c), ps7_init.o) $(if $(wildcard $(srctree)/$(src)/ps7_init.c), ps7_init.o)
# Suppress "warning: function declaration isn't a prototype"
CFLAGS_REMOVE_ps7_init.o := -Wstrict-prototypes
...@@ -339,4 +339,6 @@ ...@@ -339,4 +339,6 @@
#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
#define CONFIG_SYS_GENERIC_BOARD
#endif /* __CONFIG_ZYNQ_COMMON_H */ #endif /* __CONFIG_ZYNQ_COMMON_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment