From: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
To: vimal.newwork@gmail.com
Cc: dbaryshkov@gmail.com, linux-mtd@lists.infradead.org
Subject: Re: abuse of nand_correct_data in tmio_nand driver
Date: Wed, 22 Jul 2009 00:20:13 +0900 (JST) [thread overview]
Message-ID: <20090722.002013.165864270.anemo@mba.ocn.ne.jp> (raw)
In-Reply-To: <ce9ab5790907192215q148e194ale4a509112b1b40aa@mail.gmail.com>
On Mon, 20 Jul 2009 10:45:20 +0530, vimal singh <vimal.newwork@gmail.com> wrote:
> Seems like this driver may be reading 512 bytes at a times, but still
> calculates 256-byte sector ECC. (1-bit error correction for each 256
> bytes of data).
> In that case, nand_correct_data() should be called twice, once for
> each 256 byte data.
But unfortunately nand_correct_data() cannot be used as is because it
depends on chip->ecc.size (which is 512 for tmio_nand driver).
> This can be handled by overriding 'chip->ecc.correct' in driver. You
> may reuse 'nand_correct_data()' code in the driver of 256 byte sector
> ECC.
Yes, the driver can reuse nand_ecc code to implement its own
nand_correct rountine.
Or how about adding support for 6byte-ecc/512byte-data to nand_ecc.c
to avoid code duplication?
I mean something like this. If it looks acceptable, I will prepare a
patch including similer change to nand_calculate_ecc.
diff --git a/drivers/mtd/nand/nand_ecc.c b/drivers/mtd/nand/nand_ecc.c
index c0cb87d..77e13c8 100644
--- a/drivers/mtd/nand/nand_ecc.c
+++ b/drivers/mtd/nand/nand_ecc.c
@@ -425,14 +425,12 @@ EXPORT_SYMBOL(nand_calculate_ecc);
*
* Detect and correct a 1 bit error for 256/512 byte block
*/
-int nand_correct_data(struct mtd_info *mtd, unsigned char *buf,
- unsigned char *read_ecc, unsigned char *calc_ecc)
+static int nand_correct_data_sub(unsigned char *buf,
+ unsigned char *read_ecc, unsigned char *calc_ecc,
+ const uint32_t eccsize_mult)
{
unsigned char b0, b1, b2, bit_addr;
unsigned int byte_addr;
- /* 256 or 512 bytes/ecc */
- const uint32_t eccsize_mult =
- (((struct nand_chip *)mtd->priv)->ecc.size) >> 8;
/*
* b0 to b2 indicate which bit is faulty (if any)
@@ -495,6 +493,26 @@ int nand_correct_data(struct mtd_info *mtd, unsigned char *buf,
printk(KERN_ERR "uncorrectable error : ");
return -1;
}
+int nand_correct_data(struct mtd_info *mtd, unsigned char *buf,
+ unsigned char *read_ecc, unsigned char *calc_ecc)
+{
+ struct nand_chip *chip = mtd->priv;
+ /* 256 or 512 bytes/ecc */
+ const uint32_t eccsize_mult = (chip->ecc.size) >> 8;
+ int r0, r1;
+
+ if (eccsize_mult == 2 && chip->ecc.bytes == 6) {
+ r0 = nand_correct_data_sub(buf, read_ecc, calc_ecc, 1);
+ if (r0 < 0)
+ return r0;
+ r1 = nand_correct_data_sub(buf + 256,
+ read_ecc + 3, calc_ecc + 3, 1);
+ if (r1 < 0)
+ return r1;
+ return r0 | r1;
+ }
+ return nand_correct_data_sub(buf, read_ecc, calc_ecc, eccsize_mult);
+}
EXPORT_SYMBOL(nand_correct_data);
MODULE_LICENSE("GPL");
next prev parent reply other threads:[~2009-07-21 15:20 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-14 14:05 abuse of nand_correct_data in tmio_nand driver Atsushi Nemoto
2009-07-19 0:11 ` Dmitry Eremin-Solenikov
2009-07-19 15:14 ` Atsushi Nemoto
2009-07-19 16:08 ` Dmitry Eremin-Solenikov
2009-07-20 5:15 ` vimal singh
2009-07-21 15:20 ` Atsushi Nemoto [this message]
2009-07-22 8:43 ` vimal singh
2009-07-22 15:13 ` Atsushi Nemoto
2009-07-23 7:04 ` vimal singh
2009-07-23 15:11 ` Atsushi Nemoto
2009-07-24 17:24 ` Dmitry Eremin-Solenikov
2009-07-26 13:03 ` vimal singh
2009-07-28 13:57 ` Ian molton
2009-07-28 14:11 ` Atsushi Nemoto
2009-07-28 14:35 ` Ian Molton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090722.002013.165864270.anemo@mba.ocn.ne.jp \
--to=anemo@mba.ocn.ne.jp \
--cc=dbaryshkov@gmail.com \
--cc=linux-mtd@lists.infradead.org \
--cc=vimal.newwork@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox