mtd: rawnand: Do not check FAIL bit when executing a SET_FEATURES op
authorBoris Brezillon <boris.brezillon@bootlin.com>
Fri, 11 May 2018 12:44:07 +0000 (14:44 +0200)
committerBoris Brezillon <boris.brezillon@bootlin.com>
Tue, 15 May 2018 20:58:07 +0000 (22:58 +0200)
commit782d1967d0479ffd59412b2f3179c8bb35f50ff6
tree67568e7892a2b27b02f9e77fdf74b51df7215600
parent39138c1f4a31f3468fa2e44aba4495c0c30da205
mtd: rawnand: Do not check FAIL bit when executing a SET_FEATURES op

The ONFI spec clearly says that FAIL bit is only valid for PROGRAM,
ERASE and READ-with-on-die-ECC operations, and should be ignored
otherwise.

It seems that checking it after sending a SET_FEATURES is a bad idea
because a previous READ, PROGRAM or ERASE op may have failed, and
depending on the implementation, the FAIL bit is not cleared until a
new READ, PROGRAM or ERASE is started.

This leads to ->set_features() returning -EIO while it actually worked,
which can sometimes stop a batch of READ/PROGRAM ops.

Note that we only fix the ->exec_op() path here, because some drivers
are abusing the NAND_STATUS_FAIL flag in their ->waitfunc()
implementation to propagate other kind of errors, like
wait-ready-timeout or controller-related errors. Let's not try to fix
those drivers since they worked fine so far.

Fixes: 8878b126df76 ("mtd: nand: add ->exec_op() implementation")
Cc: stable@vger.kernel.org
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/nand_base.c