The OOB is filled with ECC data which is handled by the hardware
controller. It's a mistake for the framework to attempt to read or
write to the OOB area. If that happens, we'll BUG() out.

Signed-off-by: Lee Jones <lee.jo...@linaro.org>
---
 drivers/mtd/nand/stm_nand_bch.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/mtd/nand/stm_nand_bch.c b/drivers/mtd/nand/stm_nand_bch.c
index 89f1263..bec7e23 100644
--- a/drivers/mtd/nand/stm_nand_bch.c
+++ b/drivers/mtd/nand/stm_nand_bch.c
@@ -1441,6 +1441,20 @@ static int bch_scan_bbt(struct mtd_info *mtd)
        return 0;
 }
 
+static int bch_mtd_read_oob(struct mtd_info *mtd,
+                           struct nand_chip *chip, int page)
+{
+       BUG();
+       return 0;
+}
+
+static int bch_mtd_write_oob(struct mtd_info *mtd,
+                            struct nand_chip *chip, int page)
+{
+       BUG();
+       return 0;
+}
+
 static int bch_block_isbad(struct mtd_info *mtd, loff_t offs, int getchip)
 {
        struct nand_chip *chip = mtd->priv;
@@ -1598,6 +1612,9 @@ static void nandi_set_mtd_defaults(struct 
nandi_controller *nandi,
        mtd->ecclayout = &info->ecclayout;
        mtd->subpage_sft = 0;
 
+       chip->ecc.read_oob = bch_mtd_read_oob;
+       chip->ecc.write_oob = bch_mtd_write_oob;
+
        chip->ecc.read_page = bch_read;
        chip->write_page = bch_write;
        chip->erase = bch_erase;
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to