OSDN Git Service

staging: mt29f_spinand: Enable the read ECC before program the page
authorArun Nagendran <arunrasppi@gmail.com>
Fri, 15 Sep 2017 16:30:32 +0000 (12:30 -0400)
committerBoris Brezillon <boris.brezillon@free-electrons.com>
Fri, 22 Sep 2017 07:03:55 +0000 (09:03 +0200)
commit100f7fbe9c25bdac334039b389453f219a6819c5
tree5c87c0da245f7835f95dcc54be44a7fd5da5282f
parenta3750a6422a7112740fe69a596bcd5eb62577aed
staging: mt29f_spinand: Enable the read ECC before program the page

Current program_page function did following operation:

1. read page (with ECC OFF)
2. modify the page
3. write the page (with ECC ON)

For some case(buggy flash Chip), while read the page without ECC ON,
we may read the page with bit flip error and modify that bad page without
knowing the bit flip error on that page.
also we re-calculate the hash for bad page and write it.
This could bring potential in-consistency problem with Flash data.

Verify this logic with GIGA DEVICE Part(GD5F2GQ4RCFIG):
we see this in-conststency problem wit Giga Device and fix on
this patch resovle that issue.

Signed-off-by: Arun Nagendran <arunrasppi@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
drivers/staging/mt29f_spinand/mt29f_spinand.c