diff options
| author | Evan Wilson <evan@oliodevices.com> | 2014-09-29 15:10:30 -0700 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2014-09-29 15:10:30 -0700 |
| commit | a252a3577da19fb129333c4adc07fd473d10f289 (patch) | |
| tree | fd5c3136232767ade59a5d1ecdd52b77ecaa9a57 | |
| parent | 78fd77df08033f0cb846c5deccc7144e888fd9a8 (diff) | |
| download | olio-uboot-2014.01-a252a3577da19fb129333c4adc07fd473d10f289.tar.xz olio-uboot-2014.01-a252a3577da19fb129333c4adc07fd473d10f289.zip | |
Redefining memory config, and ECC settings
| -rw-r--r-- | board/olio/h1/h1.c | 2 | ||||
| -rw-r--r-- | include/configs/omap3_h1.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/olio/h1/h1.c b/board/olio/h1/h1.c index 6a26bc568..8c5f8786d 100644 --- a/board/olio/h1/h1.c +++ b/board/olio/h1/h1.c @@ -62,7 +62,7 @@ void get_board_mem_timings(struct board_sdrc_timings *timings) timings->mr = MICRON_V_MR_165; /* 128MB DDR */ - timings->mcfg = MICRON_V_MCFG_200(512 << 20); + timings->mcfg = MICRON_V_MCFG_200(256 << 20); timings->ctrla = MICRON_V_ACTIMA_200; timings->ctrlb = MICRON_V_ACTIMB_200; timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz; diff --git a/include/configs/omap3_h1.h b/include/configs/omap3_h1.h index 199dd98c9..dfc2783e4 100644 --- a/include/configs/omap3_h1.h +++ b/include/configs/omap3_h1.h @@ -317,7 +317,7 @@ 10, 11, 12, 13} #define CONFIG_SYS_NAND_ECCSIZE 512 #define CONFIG_SYS_NAND_ECCBYTES 3 -#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW +#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 |