Skip to content
Snippets Groups Projects
Commit 9c25ee6d authored by Po Liu's avatar Po Liu Committed by York Sun
Browse files

powerpc/c29xpcie: add DDR ECC on off config setting


c29xpcie REV_A board DDR ECC chip has bad impedance in hardware,
force that kind of board to be DDR ECC off when booting.
Other version board config ECC on/off by hwconfig=fsl_ddr:ecc=on
in uboot enviroment.

Signed-off-by: default avatarPo Liu <Po.Liu@freescale.com>
Acked-by: default avatarYork Sun <yorksun@freescale.com>
parent 7e575c46
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
#include <asm/fsl_ddr_sdram.h> #include <asm/fsl_ddr_sdram.h>
#include <asm/fsl_ddr_dimm_params.h> #include <asm/fsl_ddr_dimm_params.h>
#include "cpld.h"
#define C29XPCIE_HARDWARE_REVA 0x40
/* /*
* Micron MT41J128M16HA-15E * Micron MT41J128M16HA-15E
* */ * */
...@@ -61,7 +64,9 @@ void fsl_ddr_board_options(memctl_options_t *popts, ...@@ -61,7 +64,9 @@ void fsl_ddr_board_options(memctl_options_t *popts,
dimm_params_t *pdimm, dimm_params_t *pdimm,
unsigned int ctrl_num) unsigned int ctrl_num)
{ {
struct cpld_data *cpld_data = (void *)(CONFIG_SYS_CPLD_BASE);
int i; int i;
popts->clk_adjust = 4; popts->clk_adjust = 4;
popts->cpo_override = 0x1f; popts->cpo_override = 0x1f;
popts->write_data_delay = 4; popts->write_data_delay = 4;
...@@ -79,6 +84,9 @@ void fsl_ddr_board_options(memctl_options_t *popts, ...@@ -79,6 +84,9 @@ void fsl_ddr_board_options(memctl_options_t *popts,
popts->trwt_override = 1; popts->trwt_override = 1;
popts->trwt = 0; popts->trwt = 0;
if (in_8(&cpld_data->hwver) == C29XPCIE_HARDWARE_REVA)
popts->ecc_mode = 0;
for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) { for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
popts->cs_local_opts[i].odt_rd_cfg = FSL_DDR_ODT_NEVER; popts->cs_local_opts[i].odt_rd_cfg = FSL_DDR_ODT_NEVER;
popts->cs_local_opts[i].odt_wr_cfg = FSL_DDR_ODT_CS; popts->cs_local_opts[i].odt_wr_cfg = FSL_DDR_ODT_CS;
......
...@@ -433,6 +433,8 @@ ...@@ -433,6 +433,8 @@
#define CONFIG_BAUDRATE 115200 #define CONFIG_BAUDRATE 115200
#define CONFIG_DEF_HWCONFIG fsl_ddr:ecc=on
#define CONFIG_EXTRA_ENV_SETTINGS \ #define CONFIG_EXTRA_ENV_SETTINGS \
"hwconfig=" __stringify(CONFIG_DEF_HWCONFIG) "\0" \ "hwconfig=" __stringify(CONFIG_DEF_HWCONFIG) "\0" \
"netdev=eth0\0" \ "netdev=eth0\0" \
......
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