public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* onenand_wait and onenane_read
@ 2006-12-28  9:27 Adrian Hunter
  0 siblings, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2006-12-28  9:27 UTC (permalink / raw)
  To: Kyungmin Park; +Cc: linux-mtd

Hi

onenand_wait does not return an error if there is an ecc failure i.e.

ecc & ONENAND_ECC_2BIT_ALL

but onenand_read still marks the bufferRAM as valid i.e.

ret = this->wait(mtd, FL_READING);
/* First copy data and check return value for ECC handling */
onenand_update_bufferram(mtd, from, !ret);

This looks wrong to me.  I think onenand_wait should return an error
if there is an ecc failure.

Can you comment on this?

Regards
Adrian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* onenand_wait and onenane_read
@ 2006-12-29  3:19 Kyungmin Park
  0 siblings, 0 replies; 4+ messages in thread
From: Kyungmin Park @ 2006-12-29  3:19 UTC (permalink / raw)
  To: Adrian Hunter, linux-mtd


Hi,

> onenand_wait does not return an error if there is an ecc failure i.e.
> 
> ecc & ONENAND_ECC_2BIT_ALL
> 
> but onenand_read still marks the bufferRAM as valid i.e.
> 
> ret = this->wait(mtd, FL_READING);
> /* First copy data and check return value for ECC handling */
> onenand_update_bufferram(mtd, from, !ret);
> 
> This looks wrong to me.  I think onenand_wait should return an error
> if there is an ecc failure.

Yes you're right.

Even though upper layer (JFFS2) receive the -EBADMSG or -EUCLEAN, OneNAND driver can think it is valid data.

Thank you,
Kyungmin Park

From 9235da2851242b96a938d43583bf88427ed14044 Mon Sep 17 00:00:00 2001
From: Kyungmin Park <kyungmin.park@samsung.com>
Date: Fri, 29 Dec 2006 11:51:40 +0900
Subject: [PATCH] [MTD] OneNAND: fix onenand_wait bug in read ecc error

Even though there is ECC error. OneNAND driver updates the bufferram as valid

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 drivers/mtd/onenand/onenand_base.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/onenand/onenand_base.c b/drivers/mtd/onenand/onenand_base.c
index 0037cee..e80857b 100644
--- a/drivers/mtd/onenand/onenand_base.c
+++ b/drivers/mtd/onenand/onenand_base.c
@@ -298,7 +298,7 @@ static int onenand_wait(struct mtd_info *mtd, int state)
 	unsigned long timeout;
 	unsigned int flags = ONENAND_INT_MASTER;
 	unsigned int interrupt = 0;
-	unsigned int ctrl, ecc;
+	unsigned int ctrl;
 
 	/* The 20 msec is enough */
 	timeout = jiffies + msecs_to_jiffies(20);
@@ -324,7 +324,7 @@ static int onenand_wait(struct mtd_info *mtd, int state)
 	}
 
 	if (interrupt & ONENAND_INT_READ) {
-		ecc = this->read_word(this->base + ONENAND_REG_ECC_STATUS);
+		int ecc = this->read_word(this->base + ONENAND_REG_ECC_STATUS);
 		if (ecc) {
 			DEBUG(MTD_DEBUG_LEVEL0, "onenand_wait: ECC error = 0x%04x\n", ecc);
 			if (ecc & ONENAND_ECC_2BIT_ALL)
@@ -332,6 +332,7 @@ static int onenand_wait(struct mtd_info *mtd, int state)
 			else if (ecc & ONENAND_ECC_1BIT_ALL)
 				mtd->ecc_stats.corrected++;
 		}
+		return ecc;
 	}
 
 	return 0;
-- 
1.4.4.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: onenand_wait and onenane_read
       [not found] <31382027.865581167361152877.JavaMail.weblogic@ep_ml28>
@ 2007-01-02  8:05 ` Adrian Hunter
  0 siblings, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2007-01-02  8:05 UTC (permalink / raw)
  To: kyungmin.park; +Cc: linux-mtd

Thanks for looking at this.

Note that after the patch, onenane_wait seems to return non-zero even
when the error is corrected by ecc.  Shouldn't it return zero in that
case?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* onenand_wait and onenane_read
@ 2007-01-05  7:18 Kyungmin Park
  0 siblings, 0 replies; 4+ messages in thread
From: Kyungmin Park @ 2007-01-05  7:18 UTC (permalink / raw)
  To: Adrian Hunter; +Cc: linux-mtd

Hi,

> Note that after the patch, onenane_wait seems to return non-zero even
> when the error is corrected by ecc.  Shouldn't it return zero in that
> case?

After ecc patch, I think is it really need to return error code when 1 bit ecc.
Even though there's 1-bit ecc the bufferram has valid data. since ecc logic already corrects it.

I think we don't need to return ecc error when 1-bit ecc. We only return error code when 2-bit ecc error

@@ -327,12 +327,12 @@ static int onenand_wait(struct mtd_info *mtd, int state)
                int ecc = this->read_word(this->base + ONENAND_REG_ECC_STATUS);
                if (ecc) {
                        DEBUG(MTD_DEBUG_LEVEL0, "onenand_wait: ECC error = 0x%04x\n", ecc);
-                       if (ecc & ONENAND_ECC_2BIT_ALL)
+                       if (ecc & ONENAND_ECC_2BIT_ALL) {
                                mtd->ecc_stats.failed++;
-                       else if (ecc & ONENAND_ECC_1BIT_ALL)
+                               return ecc;
+                       } else if (ecc & ONENAND_ECC_1BIT_ALL)
                                mtd->ecc_stats.corrected++;
                }
-               return ecc;
        }

        return 0;

Thank you,
Kyungmin Park


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-01-05  7:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-05  7:18 onenand_wait and onenane_read Kyungmin Park
     [not found] <31382027.865581167361152877.JavaMail.weblogic@ep_ml28>
2007-01-02  8:05 ` Adrian Hunter
  -- strict thread matches above, loose matches on Subject: below --
2006-12-29  3:19 Kyungmin Park
2006-12-28  9:27 Adrian Hunter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox