diff mbox

[U-Boot,1/1] T102xRDB: Enable ifc nand ecc encode and decode

Message ID 1432288267-25211-1-git-send-email-raghav@freescale.com
State Accepted
Delegated to: York Sun
Headers show

Commit Message

Raghav Dogra May 22, 2015, 9:51 a.m. UTC
From: Jaiprakash Singh <b44839@freescale.com>

IFC nand ecc encode and decode mode are not correctly
set in CSOR register during nand initialization.Enable
ecc encode/decode in 4-bit mode

Signed-off-by: Jaiprakash Singh <b44839@freescale.com>
---
 include/configs/T102xRDB.h |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

York Sun July 31, 2015, 3:46 p.m. UTC | #1
On 05/22/2015 02:51 AM, Raghav Dogra wrote:
> From: Jaiprakash Singh <b44839@freescale.com>
> 
> IFC nand ecc encode and decode mode are not correctly
> set in CSOR register during nand initialization.Enable
> ecc encode/decode in 4-bit mode
> 
> Signed-off-by: Jaiprakash Singh <b44839@freescale.com>
> ---

Applied to u-boot-mpc85xx master after fixing subject.

Thanks.

York
diff mbox

Patch

diff --git a/include/configs/T102xRDB.h b/include/configs/T102xRDB.h
index deff617..12082c3 100644
--- a/include/configs/T102xRDB.h
+++ b/include/configs/T102xRDB.h
@@ -395,7 +395,9 @@  unsigned long get_board_ddr_clk(void);
 				| CSOR_NAND_PB(64))	/*Pages Per Block = 64*/
 #define CONFIG_SYS_NAND_BLOCK_SIZE	(512 * 1024)
 #elif defined(CONFIG_T1023RDB)
-#define CONFIG_SYS_NAND_CSOR	(CSOR_NAND_RAL_3	/* RAL 3Bytes */ \
+#define CONFIG_SYS_NAND_CSOR	(CSOR_NAND_ECC_ENC_EN   /* ECC on encode */ \
+				| CSOR_NAND_ECC_DEC_EN  /* ECC on decode */ \
+				| CSOR_NAND_ECC_MODE_4	/* 4-bit ECC */ \
 				| CSOR_NAND_RAL_3	/* RAL 3Bytes */ \
 				| CSOR_NAND_PGS_2K	/* Page Size = 2K */ \
 				| CSOR_NAND_SPRZ_128	/* Spare size = 128 */ \