From: Huang Shijie Date: Fri, 17 May 2013 03:17:26 +0000 (+0800) Subject: mtd: get the ECC info from the parameter page for ONFI nand X-Git-Tag: next-20130822~69^2~53 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d99650181057dfd5736427435e811f9db9402212;p=karo-tx-linux.git mtd: get the ECC info from the parameter page for ONFI nand From the ONFI spec, we can just get the ECC info from the @ecc_bits field of the parameter page. Signed-off-by: Huang Shijie Reviewed-and-tested-by: Brian Norris Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index 9a487580e370..42d44bb40873 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -2913,6 +2913,11 @@ static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip, if (le16_to_cpu(p->features) & 1) *busw = NAND_BUSWIDTH_16; + if (p->ecc_bits != 0xff) { + chip->ecc_strength_ds = p->ecc_bits; + chip->ecc_step_ds = 512; + } + pr_info("ONFI flash detected\n"); return 1; }