mtd: nand: set max_bb_per_die and blocks_per_die for ONFI compliant chips

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Sun Feb 12 18:59:03 PST 2017


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=34da5f5f3bf5c0df1bd5528a98e07bd5a224e9d4
Commit:     34da5f5f3bf5c0df1bd5528a98e07bd5a224e9d4
Parent:     5671842fced7aee1550194f743947953a2f8a27c
Author:     Zach Brown <zach.brown at ni.com>
AuthorDate: Tue Jan 10 13:30:21 2017 -0600
Committer:  Brian Norris <computersforpeace at gmail.com>
CommitDate: Wed Feb 8 14:19:44 2017 -0800

    mtd: nand: set max_bb_per_die and blocks_per_die for ONFI compliant chips
    
    ONFI compliant chips contain the values for the max_bb_per_die and
    blocks_per_die fields in the parameter page. When the ONFI paged is
    retrieved/parsed the chip's fields are set by the corresponding fields
    in the param page.
    
    Signed-off-by: Zach Brown <zach.brown at ni.com>
    Acked-by: Boris Brezillon <boris.brezillon at free-electron.com>
    Acked-by: Brian Norris <computersforpeace at gmail.com>
    Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
 drivers/mtd/nand/nand_base.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 522baa9..1492c12 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -3628,6 +3628,9 @@ static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
 	chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
 	chip->bits_per_cell = p->bits_per_cell;
 
+	chip->max_bb_per_die = le16_to_cpu(p->bb_per_lun);
+	chip->blocks_per_die = le32_to_cpu(p->blocks_per_lun);
+
 	if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
 		*busw = NAND_BUSWIDTH_16;
 	else



More information about the linux-mtd-cvs mailing list