Skip to content
Snippets Groups Projects
Commit 137a2dfd authored by Dave Liu's avatar Dave Liu Committed by Jon Loeliger
Browse files

86xx: remove the unused ddr_enable_ecc in the board file


The DDR controller of 86xx processors have the ECC data init
feature, and the new DDR code is using the feature, we don't
need the way with DMA to init memory again.

Signed-off-by: default avatarDave Liu <daveliu@freescale.com>
Acked-by: default avatarKumar Gala <kumar.gala@freescale.com>
parent dc2adad8
No related branches found
No related tags found
No related merge requests found
...@@ -36,10 +36,6 @@ ...@@ -36,10 +36,6 @@
#include "../common/pixis.h" #include "../common/pixis.h"
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
extern void ddr_enable_ecc(unsigned int dram_size);
#endif
void sdram_init(void); void sdram_init(void);
long int fixed_sdram(void); long int fixed_sdram(void);
void mpc8610hpcd_diu_init(void); void mpc8610hpcd_diu_init(void);
...@@ -134,13 +130,6 @@ initdram(int board_type) ...@@ -134,13 +130,6 @@ initdram(int board_type)
return dram_size; return dram_size;
#endif #endif
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
/*
* Initialize and enable DDR ECC.
*/
ddr_enable_ecc(dram_size);
#endif
puts(" DDR: "); puts(" DDR: ");
return dram_size; return dram_size;
} }
......
...@@ -33,10 +33,6 @@ ...@@ -33,10 +33,6 @@
#include "../common/pixis.h" #include "../common/pixis.h"
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
extern void ddr_enable_ecc(unsigned int dram_size);
#endif
long int fixed_sdram(void); long int fixed_sdram(void);
int board_early_init_f(void) int board_early_init_f(void)
...@@ -70,13 +66,6 @@ initdram(int board_type) ...@@ -70,13 +66,6 @@ initdram(int board_type)
return dram_size; return dram_size;
#endif #endif
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
/*
* Initialize and enable DDR ECC.
*/
ddr_enable_ecc(dram_size);
#endif
puts(" DDR: "); puts(" DDR: ");
return dram_size; return dram_size;
} }
......
...@@ -38,10 +38,6 @@ ...@@ -38,10 +38,6 @@
#include <libfdt.h> #include <libfdt.h>
#include <fdt_support.h> #include <fdt_support.h>
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
extern void ddr_enable_ecc (unsigned int dram_size);
#endif
long int fixed_sdram (void); long int fixed_sdram (void);
int board_early_init_f (void) int board_early_init_f (void)
...@@ -71,13 +67,6 @@ phys_size_t initdram (int board_type) ...@@ -71,13 +67,6 @@ phys_size_t initdram (int board_type)
return dram_size; return dram_size;
#endif #endif
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
/*
* Initialize and enable DDR ECC.
*/
ddr_enable_ecc (dram_size);
#endif
puts (" DDR: "); puts (" DDR: ");
return dram_size; return dram_size;
} }
......
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