]> git.dujemihanovic.xyz Git - u-boot.git/commit
dfu: mtd: mark bad the MTD block on erase error
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Mon, 5 Jun 2023 07:52:08 +0000 (09:52 +0200)
committerDario Binacchi <dario.binacchi@amarulasolutions.com>
Fri, 13 Oct 2023 08:49:07 +0000 (10:49 +0200)
commitbe0da1257f189c09604b01bc04a7e8411bf18e5c
treecadc9498e861a5f74f59574628f5b3edc5696081
parent4b1c067ea78f01fb5b79fa4e6589f750b330c592
dfu: mtd: mark bad the MTD block on erase error

In the MTD DFU backend, it is needed to mark the NAND block bad when the
erase failed with the -EIO error, as it is done in UBI and JFFS2 code.

This operation is not done in the MTD framework, but the bad block
tag (in BBM or in BBT) is required to avoid to write data on this block
in the next DFU_OP_WRITE loop in mtd_block_op(): the code skip the bad
blocks, tested by mtd_block_isbad().

Without this patch, when the NAND block become bad on DFU write operation
- low probability on new NAND - the DFU write operation will always failed
because the failing block is never marked bad.

This patch also adds a test to avoid to request an erase operation on a
block already marked bad; this test is not performed in MTD framework
in mtd_erase().

Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
drivers/dfu/dfu_mtd.c