mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* drivers/mtd/nand/nand_mrvl_nfc.c
@ 2015-05-19 19:23 Andrei Yakimov
  2015-05-20  6:19 ` drivers/mtd/nand/nand_mrvl_nfc.c Sascha Hauer
  0 siblings, 1 reply; 4+ messages in thread
From: Andrei Yakimov @ 2015-05-19 19:23 UTC (permalink / raw)
  To: barebox

Please,
 change 
  case NAND_CMD_PARAM:
        host->buf_count = 256;
To:
  host->buf_count = 768;

If first copy of parameter page corrupted you will not able
to use ONFI flash.

Andrei 



_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: drivers/mtd/nand/nand_mrvl_nfc.c
  2015-05-19 19:23 drivers/mtd/nand/nand_mrvl_nfc.c Andrei Yakimov
@ 2015-05-20  6:19 ` Sascha Hauer
  2015-05-20 18:37   ` drivers/mtd/nand/nand_mrvl_nfc.c Robert Jarzmik
  0 siblings, 1 reply; 4+ messages in thread
From: Sascha Hauer @ 2015-05-20  6:19 UTC (permalink / raw)
  To: Andrei Yakimov; +Cc: barebox

Hi Andrei,

+Cc Robert Jarzmik <robert.jarzmik@free.fr>

On Tue, May 19, 2015 at 12:23:22PM -0700, Andrei Yakimov wrote:
> Please,
>  change 
>   case NAND_CMD_PARAM:
>         host->buf_count = 256;
> To:
>   host->buf_count = 768;
> 
> If first copy of parameter page corrupted you will not able
> to use ONFI flash.

Thanks for noting. However, like many other opensource projects we
communicate changes and change requests with formalized patches. Please
generate one using git format-patch or similar and send it to the list.
I'll happily make that change then.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: drivers/mtd/nand/nand_mrvl_nfc.c
  2015-05-20  6:19 ` drivers/mtd/nand/nand_mrvl_nfc.c Sascha Hauer
@ 2015-05-20 18:37   ` Robert Jarzmik
  2015-05-21  0:30     ` drivers/mtd/nand/nand_mrvl_nfc.c Andrei Yakimov
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Jarzmik @ 2015-05-20 18:37 UTC (permalink / raw)
  To: Andrei Yakimov; +Cc: barebox

Sascha Hauer <s.hauer@pengutronix.de> writes:

> Hi Andrei,
>
> +Cc Robert Jarzmik <robert.jarzmik@free.fr>
>
> On Tue, May 19, 2015 at 12:23:22PM -0700, Andrei Yakimov wrote:
>> Please,
>>  change 
>>   case NAND_CMD_PARAM:
>>         host->buf_count = 256;
>> To:
>>   host->buf_count = 768;
>> 
>> If first copy of parameter page corrupted you will not able
>> to use ONFI flash.
>
> Thanks for noting. However, like many other opensource projects we
> communicate changes and change requests with formalized patches. Please
> generate one using git format-patch or similar and send it to the list.
> I'll happily make that change then.

Same from me, I'll happily review a patch.
May I add also that host->ndcb3 and host->data_size deserve the same change
within the NAND_CMD_PARAM case statement.

Cheers.

-- 
Robert

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: drivers/mtd/nand/nand_mrvl_nfc.c
  2015-05-20 18:37   ` drivers/mtd/nand/nand_mrvl_nfc.c Robert Jarzmik
@ 2015-05-21  0:30     ` Andrei Yakimov
  0 siblings, 0 replies; 4+ messages in thread
From: Andrei Yakimov @ 2015-05-21  0:30 UTC (permalink / raw)
  To: Robert Jarzmik; +Cc: barebox

I would like to provide a patch,
but I do not requesting any changes in baraebox
and not working with it.


I do not working with marvel chips,
do not have any controller description.

I found this problem in my 8313 u-boot elbc and
Scott Wood point me to same the problem in imx driver.

Checking linux drivers, found marvel driver which
looks like have same problem.

Geleral idea - linux nand detection flow, expect
PARAM command extra data will deliver as much data
as needed, each next read will trigger extra transfer
from nand chip. This is not true at least for 
elbc, imx and mrvl controllers ( just by looking
to the driver code).

Any controller with memory buffer and transferring
all data from chip at once and required another
nand commad to do next transfer will need to
be updated to read at least 1536 byte by param
commad.
Existing implementation for this type of controllers
will cause eventual failure on the field as soon 
as first ONFI/Jedec block will go bad unless other
other chip identification (by chip ID) pick it up.

Andrei


On Wed, 2015-05-20 at 20:37 +0200, Robert Jarzmik wrote:
> Sascha Hauer <s.hauer@pengutronix.de> writes:
> 
> > Hi Andrei,
> >
> > +Cc Robert Jarzmik <robert.jarzmik@free.fr>
> >
> > On Tue, May 19, 2015 at 12:23:22PM -0700, Andrei Yakimov wrote:
> >> Please,
> >>  change 
> >>   case NAND_CMD_PARAM:
> >>         host->buf_count = 256;
> >> To:
> >>   host->buf_count = 768;
> >> 
> >> If first copy of parameter page corrupted you will not able
> >> to use ONFI flash.
> >
> > Thanks for noting. However, like many other opensource projects we
> > communicate changes and change requests with formalized patches. Please
> > generate one using git format-patch or similar and send it to the list.
> > I'll happily make that change then.
> 
> Same from me, I'll happily review a patch.
> May I add also that host->ndcb3 and host->data_size deserve the same change
> within the NAND_CMD_PARAM case statement.
> 
> Cheers.
> 



_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2015-05-21  0:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-19 19:23 drivers/mtd/nand/nand_mrvl_nfc.c Andrei Yakimov
2015-05-20  6:19 ` drivers/mtd/nand/nand_mrvl_nfc.c Sascha Hauer
2015-05-20 18:37   ` drivers/mtd/nand/nand_mrvl_nfc.c Robert Jarzmik
2015-05-21  0:30     ` drivers/mtd/nand/nand_mrvl_nfc.c Andrei Yakimov

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