@@ -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;
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.jones@linaro.org> --- drivers/mtd/nand/stm_nand_bch.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+)