public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* No more software ECC in omap2.c NAND driver. Why?
@ 2010-11-18  1:06 Charles Manning
  2010-11-18 14:33 ` Ghorai, Sukumar
  0 siblings, 1 reply; 11+ messages in thread
From: Charles Manning @ 2010-11-18  1:06 UTC (permalink / raw)
  To: linux-omap@vger.kernel.org

Between 2.6.35 and 2.6.36 there have need quite a few changes in the NAND 
driver, including a change from software to hardware ECC.

The new code has hardware ECC forced on by:

#define CONFIG_MTD_NAND_OMAP_HWECC

I am surprised that this was done. Surely this should have been a Kconfig 
option to select either sw ECC or hw ECC?

Does moving to hardware ECC to the exclusion of software ECC reduce 
functionality?

Does the new hwecc scheme still support sub-page writes or does it only 
provide full page writes? If sub-page writes are lost then this has  a ripple 
effect in breaking the way some UBI stuff works.

-- Charles


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

* RE: No more software ECC in omap2.c NAND driver. Why?
  2010-11-18  1:06 No more software ECC in omap2.c NAND driver. Why? Charles Manning
@ 2010-11-18 14:33 ` Ghorai, Sukumar
  2010-11-19 10:35   ` Grazvydas Ignotas
  2010-11-21 21:01   ` Charles Manning
  0 siblings, 2 replies; 11+ messages in thread
From: Ghorai, Sukumar @ 2010-11-18 14:33 UTC (permalink / raw)
  To: Charles Manning; +Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas



> -----Original Message-----
> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> owner@vger.kernel.org] On Behalf Of Charles Manning
> Sent: Thursday, November 18, 2010 6:36 AM
> To: linux-omap@vger.kernel.org
> Subject: No more software ECC in omap2.c NAND driver. Why?
> 
> Between 2.6.35 and 2.6.36 there have need quite a few changes in the NAND
> driver, including a change from software to hardware ECC.
> 
> The new code has hardware ECC forced on by:
> 
> #define CONFIG_MTD_NAND_OMAP_HWECC
> 
> I am surprised that this was done. Surely this should have been a Kconfig
> option to select either sw ECC or hw ECC?
> 
> Does moving to hardware ECC to the exclusion of software ECC reduce
> functionality?

[Ghorai] This is wrongly added by me, during last few patches. So I have
send the fix as you mentioned too as.
[PATCH] omap: nand: remove hardware ECC as default

And please let me know still if it has any issue. 

And I am re-working on the patches for the different ecc schema including
s/w, h/w or different, to pass it form board file.

> 
> Does the new hwecc scheme still support sub-page writes or does it only
> provide full page writes? If sub-page writes are lost then this has  a
> ripple
> effect in breaking the way some UBI stuff works.

[Ghorai] 
1. do you think this sub-page read/write support was there before, say in
2.6.35? And breaks in 2.6.36?
  
2. In that case would you please let know what are the size(s) used for 
sub-page/read write?

> 
> -- Charles
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: No more software ECC in omap2.c NAND driver. Why?
  2010-11-18 14:33 ` Ghorai, Sukumar
@ 2010-11-19 10:35   ` Grazvydas Ignotas
  2010-11-19 20:45     ` Ghorai, Sukumar
  2010-11-21 21:01   ` Charles Manning
  1 sibling, 1 reply; 11+ messages in thread
From: Grazvydas Ignotas @ 2010-11-19 10:35 UTC (permalink / raw)
  To: Ghorai, Sukumar; +Cc: Charles Manning, linux-omap@vger.kernel.org

On Thu, Nov 18, 2010 at 4:33 PM, Ghorai, Sukumar <s-ghorai@ti.com> wrote:
>> -----Original Message-----
>> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
>> owner@vger.kernel.org] On Behalf Of Charles Manning
>> Sent: Thursday, November 18, 2010 6:36 AM
>> To: linux-omap@vger.kernel.org
>> Subject: No more software ECC in omap2.c NAND driver. Why?
>>
>> Between 2.6.35 and 2.6.36 there have need quite a few changes in the NAND
>> driver, including a change from software to hardware ECC.
>>
>> The new code has hardware ECC forced on by:
>>
>> #define CONFIG_MTD_NAND_OMAP_HWECC
>>
>> I am surprised that this was done. Surely this should have been a Kconfig
>> option to select either sw ECC or hw ECC?
>>
>> Does moving to hardware ECC to the exclusion of software ECC reduce
>> functionality?
>
> [Ghorai] This is wrongly added by me, during last few patches. So I have
> send the fix as you mentioned too as.
> [PATCH] omap: nand: remove hardware ECC as default
>
> And please let me know still if it has any issue.

For me it makes normal sw ECC page IO work, but for subpages to work I
have to disable the prefetch option.

> And I am re-working on the patches for the different ecc schema including
> s/w, h/w or different, to pass it form board file.
>
>>
>> Does the new hwecc scheme still support sub-page writes or does it only
>> provide full page writes? If sub-page writes are lost then this has  a
>> ripple
>> effect in breaking the way some UBI stuff works.
>
> [Ghorai]
> 1. do you think this sub-page read/write support was there before, say in
> 2.6.35? And breaks in 2.6.36?

It certainly was there for sw ECC as we've been using UBI from 2.6.27
to 2.6.35 just fine.

> 2. In that case would you please let know what are the size(s) used for
> sub-page/read write?

512 bytes.
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: No more software ECC in omap2.c NAND driver. Why?
  2010-11-19 10:35   ` Grazvydas Ignotas
@ 2010-11-19 20:45     ` Ghorai, Sukumar
  0 siblings, 0 replies; 11+ messages in thread
From: Ghorai, Sukumar @ 2010-11-19 20:45 UTC (permalink / raw)
  To: Grazvydas Ignotas; +Cc: Charles Manning, linux-omap@vger.kernel.org



> -----Original Message-----
> From: Grazvydas Ignotas [mailto:notasas@gmail.com]
> Sent: Friday, November 19, 2010 4:06 PM
> To: Ghorai, Sukumar
> Cc: Charles Manning; linux-omap@vger.kernel.org
> Subject: Re: No more software ECC in omap2.c NAND driver. Why?
> 
> On Thu, Nov 18, 2010 at 4:33 PM, Ghorai, Sukumar <s-ghorai@ti.com> wrote:
> >> -----Original Message-----
> >> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> >> owner@vger.kernel.org] On Behalf Of Charles Manning
> >> Sent: Thursday, November 18, 2010 6:36 AM
> >> To: linux-omap@vger.kernel.org
> >> Subject: No more software ECC in omap2.c NAND driver. Why?
> >>
> >> Between 2.6.35 and 2.6.36 there have need quite a few changes in the
> NAND
> >> driver, including a change from software to hardware ECC.
> >>
> >> The new code has hardware ECC forced on by:
> >>
> >> #define CONFIG_MTD_NAND_OMAP_HWECC
> >>
> >> I am surprised that this was done. Surely this should have been a
> Kconfig
> >> option to select either sw ECC or hw ECC?
> >>
> >> Does moving to hardware ECC to the exclusion of software ECC reduce
> >> functionality?
> >
> > [Ghorai] This is wrongly added by me, during last few patches. So I have
> > send the fix as you mentioned too as.
> > [PATCH] omap: nand: remove hardware ECC as default
> >
> > And please let me know still if it has any issue.
> 
> For me it makes normal sw ECC page IO work, but for subpages to work I
> have to disable the prefetch option.
[Ghorai] I was thinking that I have modularize some GPMC call and did not do anything prefetch related modificaiton. I will check this too. 

> 
> > And I am re-working on the patches for the different ecc schema
> including
> > s/w, h/w or different, to pass it form board file.
> >
> >>
> >> Does the new hwecc scheme still support sub-page writes or does it only
> >> provide full page writes? If sub-page writes are lost then this has  a
> >> ripple
> >> effect in breaking the way some UBI stuff works.
> >
> > [Ghorai]
> > 1. do you think this sub-page read/write support was there before, say
> in
> > 2.6.35? And breaks in 2.6.36?
> 
> It certainly was there for sw ECC as we've been using UBI from 2.6.27
> to 2.6.35 just fine.
[Ghorai] uoderstand.

> 
> > 2. In that case would you please let know what are the size(s) used for
> > sub-page/read write?
> 
> 512 bytes.
[Ghorai] I feel still its support in 2.6.36 too. Let me check too. 
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: No more software ECC in omap2.c NAND driver. Why?
  2010-11-18 14:33 ` Ghorai, Sukumar
  2010-11-19 10:35   ` Grazvydas Ignotas
@ 2010-11-21 21:01   ` Charles Manning
  2010-11-22  6:08     ` Grant Erickson
  1 sibling, 1 reply; 11+ messages in thread
From: Charles Manning @ 2010-11-21 21:01 UTC (permalink / raw)
  To: Ghorai, Sukumar; +Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas

On Friday 19 November 2010 03:33:24 Ghorai, Sukumar wrote:
> > -----Original Message-----
> > From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> > owner@vger.kernel.org] On Behalf Of Charles Manning
> > Sent: Thursday, November 18, 2010 6:36 AM
> > To: linux-omap@vger.kernel.org
> > Subject: No more software ECC in omap2.c NAND driver. Why?
> >
> > Between 2.6.35 and 2.6.36 there have need quite a few changes in the NAND
> > driver, including a change from software to hardware ECC.
> >
> > The new code has hardware ECC forced on by:
> >
> > #define CONFIG_MTD_NAND_OMAP_HWECC
> >
> > I am surprised that this was done. Surely this should have been a Kconfig
> > option to select either sw ECC or hw ECC?
> >
> > Does moving to hardware ECC to the exclusion of software ECC reduce
> > functionality?
>
> [Ghorai] This is wrongly added by me, during last few patches. So I have
> send the fix as you mentioned too as.
> [PATCH] omap: nand: remove hardware ECC as default
>
> And please let me know still if it has any issue.

Just recompiling with the CONFIG_MTD_NAND_OMAP_HWECC define commented out did 
not result in a working system. I suspect there is more tto the problem than 
this.

>
> And I am re-working on the patches for the different ecc schema including
> s/w, h/w or different, to pass it form board file.
>
> > Does the new hwecc scheme still support sub-page writes or does it only
> > provide full page writes? If sub-page writes are lost then this has  a
> > ripple
> > effect in breaking the way some UBI stuff works.
>
> [Ghorai]
> 1. do you think this sub-page read/write support was there before, say in
> 2.6.35? And breaks in 2.6.36?

 2.6.35 works with subpages of 512 bytes. Tested with UBIFS.

>
> 2. In that case would you please let know what are the size(s) used for
> sub-page/read write?

AFAIK, 512 is all that is needed. There is no need for any smaller or larger.

sub-page reads are not available on all flash types and sub-page writing 
causes extra write disturb. However, 512-byte sub-page writing is valuable.

This of course needs the ECC to be partitioned and performed in chunks of 256 
or 512 so that the subpages can be written individually.

-- CHarles



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

* Re: No more software ECC in omap2.c NAND driver. Why?
  2010-11-21 21:01   ` Charles Manning
@ 2010-11-22  6:08     ` Grant Erickson
  2010-11-22  6:27       ` Ghorai, Sukumar
  0 siblings, 1 reply; 11+ messages in thread
From: Grant Erickson @ 2010-11-22  6:08 UTC (permalink / raw)
  To: Charles Manning
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas, Ghorai, Sukumar

On 11/21/10 1:01 PM, Charles Manning wrote:
> Just recompiling with the CONFIG_MTD_NAND_OMAP_HWECC define commented out did
> not result in a working system. I suspect there is more tto the problem than
> this.

FWIW, I had the exact same issues with my Mistral AM37x EVM board. I not
only had to remove/deassert CONFIG_MTD_NAND_OMAP_HWECC, but also had to roll
back nand_base.c and nand_bbt.c back to their 2.6.32 versions (later ones
between .32 and .35 might have worked but I didn't bother trying) to be able
to read, error-free and correctly, NAND that was erased and written with a
.32-era kernel.

Best,

Grant Erickson



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

* RE: No more software ECC in omap2.c NAND driver. Why?
  2010-11-22  6:08     ` Grant Erickson
@ 2010-11-22  6:27       ` Ghorai, Sukumar
  2010-11-22  6:39         ` Grant Erickson
  0 siblings, 1 reply; 11+ messages in thread
From: Ghorai, Sukumar @ 2010-11-22  6:27 UTC (permalink / raw)
  To: Grant Erickson, Charles Manning
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas



> -----Original Message-----
> From: Grant Erickson [mailto:marathon96@gmail.com]
> Sent: Monday, November 22, 2010 11:39 AM
> To: Charles Manning
> Cc: linux-omap@vger.kernel.org; Grazvydas Ignotas; Ghorai, Sukumar
> Subject: Re: No more software ECC in omap2.c NAND driver. Why?
> 
> On 11/21/10 1:01 PM, Charles Manning wrote:
> > Just recompiling with the CONFIG_MTD_NAND_OMAP_HWECC define commented
> out did
> > not result in a working system. I suspect there is more tto the problem
> than
> > this.
> 
> FWIW, I had the exact same issues with my Mistral AM37x EVM board. I not
> only had to remove/deassert CONFIG_MTD_NAND_OMAP_HWECC, but also had to
> roll
> back nand_base.c and nand_bbt.c back to their 2.6.32 versions (later ones
> between .32 and .35 might have worked but I didn't bother trying) to be
> able
> to read, error-free and correctly, NAND that was erased and written with a
> .32-era kernel.
[Ghorai] are you trying again?
How do you flush the FS (form u-boot or from kernel, nandwrite)? And let me know the test you are doing, to know the steps to reproduce in my platform - zoom/sdp.
 
> 
> Best,
> 
> Grant Erickson
> 


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

* Re: No more software ECC in omap2.c NAND driver. Why?
  2010-11-22  6:27       ` Ghorai, Sukumar
@ 2010-11-22  6:39         ` Grant Erickson
  2010-11-22  7:29           ` Ghorai, Sukumar
  0 siblings, 1 reply; 11+ messages in thread
From: Grant Erickson @ 2010-11-22  6:39 UTC (permalink / raw)
  To: Ghorai, Sukumar
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas, Charles Manning

On 11/21/10 10:27 PM, Ghorai, Sukumar wrote:
>> -----Original Message-----
>> From: Grant Erickson [mailto:marathon96@gmail.com]
>> Sent: Monday, November 22, 2010 11:39 AM
>> To: Charles Manning
>> Cc: linux-omap@vger.kernel.org; Grazvydas Ignotas; Ghorai, Sukumar
>> Subject: Re: No more software ECC in omap2.c NAND driver. Why?
>> 
>> On 11/21/10 1:01 PM, Charles Manning wrote:
>>> Just recompiling with the CONFIG_MTD_NAND_OMAP_HWECC define commented
>> out did
>>> not result in a working system. I suspect there is more tto the problem
>> than
>>> this.
>> 
>> FWIW, I had the exact same issues with my Mistral AM37x EVM board. I not
>> only had to remove/deassert CONFIG_MTD_NAND_OMAP_HWECC, but also had to
>> roll
>> back nand_base.c and nand_bbt.c back to their 2.6.32 versions (later ones
>> between .32 and .35 might have worked but I didn't bother trying) to be
>> able
>> to read, error-free and correctly, NAND that was erased and written with a
>> .32-era kernel.
>
> [Ghorai] are you trying again?
> How do you flush the FS (form u-boot or from kernel, nandwrite)? And let me
> know the test you are doing, to know the steps to reproduce in my platform -
> zoom/sdp.

The board (Mistral AM37x) NAND (Micron 256 MiB) was originally bootstrapped
over SD/MMC from u-boot using the following script:

    mmc init
    mw.b ${loadaddr} 0xff 0x40000
    nand erase 0 0x40000
    fatload mmc 0 ${loadaddr} mlo
    nandecc hw
    nand write.i ${loadaddr} 0 0x40000
    mw.b ${loadaddr} 0xff 0x180000
    nand erase 0x00040000 0x180000
    nand erase 0x001c0000 0x180000
    fatload mmc 0 ${loadaddr} u-boot.bin
    nandecc sw
    nand write.i ${loadaddr} 0x00040000 0x180000
    nand write.i ${loadaddr} 0x001c0000 0x180000
    mw.b ${loadaddr} 0xff 0x800000
    nand erase 0x00400000 0x800000
    nand erase 0x03a00000 0x800000
    fatload mmc 0 ${loadaddr} uImage
    nand write.i ${loadaddr} 0x00400000 0x800000
    nand write.i ${loadaddr} 0x03a00000 0x800000
    mw.b ${loadaddr} 0xff 0x2000000
    nand erase 0x00c00000 0x2000000
    nand erase 0x04200000 0x2000000
    fatload mmc 0 ${loadaddr} root.jff
    nand write.i ${loadaddr} 0x00c00000 0x2000000
    nand write.i ${loadaddr} 0x04200000 0x2000000

Following that, the board is updated, from Linux, using 'flash_eraseall -q'
and 'nandwrite -p -q' on all partitions, except that containing MLO.

Best,

Grant



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

* RE: No more software ECC in omap2.c NAND driver. Why?
  2010-11-22  6:39         ` Grant Erickson
@ 2010-11-22  7:29           ` Ghorai, Sukumar
  2010-11-22 19:03             ` Grant Erickson
  0 siblings, 1 reply; 11+ messages in thread
From: Ghorai, Sukumar @ 2010-11-22  7:29 UTC (permalink / raw)
  To: Grant Erickson
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas, Charles Manning



[..snip..]
> 
> The board (Mistral AM37x) NAND (Micron 256 MiB) was originally
> bootstrapped
> over SD/MMC from u-boot using the following script:
[Ghorai] let me know the nand details - x8/x16, small/big page?

> 
[..snip..]
>     nandecc sw
[..snip..]
>     fatload mmc 0 ${loadaddr} root.jff
[Ghorai] How you create the root.jff
mkfs.jffs2 --output=root.jffs2 --root=.. --pagesize=?? --eraseblock=?? -n

>     nand write.i ${loadaddr} 0x00c00000 0x2000000
>     nand write.i ${loadaddr} 0x04200000 0x2000000
[Ghorai] why you writing in two places?

> 
> Following that, the board is updated, from Linux, using 'flash_eraseall -
> q'
> and 'nandwrite -p -q' on all partitions, except that containing MLO.
[Ghorai] 
1. can you send the exact comment you used to write in nand? Which partition?

2. What is the last kernel you used and was working perfectly? 

3. If possible revert the following patches and let me know the status?
f450d86790ebf72ac93c7ea5addd6fa278aae64c..2430f9df61e2ea47ea468dfe22b7e2db97111fb4
2c01946c6b9ebaa5a89710bc42ca224a7f52f227
948d38e799f0ab87cf8ed9113fcdaaee61acf321




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

* Re: No more software ECC in omap2.c NAND driver. Why?
  2010-11-22  7:29           ` Ghorai, Sukumar
@ 2010-11-22 19:03             ` Grant Erickson
  2010-11-24 14:08               ` Ghorai, Sukumar
  0 siblings, 1 reply; 11+ messages in thread
From: Grant Erickson @ 2010-11-22 19:03 UTC (permalink / raw)
  To: Ghorai, Sukumar
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas, Charles Manning

On 11/21/10 11:29 PM, Ghorai, Sukumar wrote:
>> The board (Mistral AM37x) NAND (Micron 256 MiB) was originally
>> bootstrapped
>> over SD/MMC from u-boot using the following script:
>
> [Ghorai] let me know the nand details - x8/x16, small/big page?

It's the Micron 256 MiB x16 2 KiB page size, 128 KiB erase block size device
on the Mistral AM37x board.

>>     fatload mmc 0 ${loadaddr} root.jff
>
> [Ghorai] How you create the root.jff
> mkfs.jffs2 --output=root.jffs2 --root=.. --pagesize=?? --eraseblock=?? -n

% mkfs.jffs2 --little-endian --no-cleanmarkers --pad 2048 --pagesize 2048
--eraseblock 131072 -d /tmp/tmp.h9dKGpcNFw -D root.devices -o root.jffs2

>>     nand write.i ${loadaddr} 0x00c00000 0x2000000
>>     nand write.i ${loadaddr} 0x04200000 0x2000000
>
> [Ghorai] why you writing in two places?

Redundant images.

>> Following that, the board is updated, from Linux, using 'flash_eraseall -
>> q'
>> and 'nandwrite -p -q' on all partitions, except that containing MLO.
> [Ghorai] 
>
> 1. can you send the exact comment you used to write in nand? Which partition?

    flash_eraseall -q /dev/mtd7
    nandwrite -p -q /dev/mtd7 root.jffs2
    flash_eraseal -q /dev/mtd9
    nandwrite -p -q /dev/mtd9 root.jffs2

> 2. What is the last kernel you used and was working perfectly?

v2.6.32_OMAPPSP_03.00.01.06.patch1

Best,

Grant



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

* RE: No more software ECC in omap2.c NAND driver. Why?
  2010-11-22 19:03             ` Grant Erickson
@ 2010-11-24 14:08               ` Ghorai, Sukumar
  0 siblings, 0 replies; 11+ messages in thread
From: Ghorai, Sukumar @ 2010-11-24 14:08 UTC (permalink / raw)
  To: Grant Erickson
  Cc: linux-omap@vger.kernel.org, Grazvydas Ignotas, Charles Manning



 [..snip..]
> % mkfs.jffs2 --little-endian --no-cleanmarkers --pad 2048 --pagesize 2048
> --eraseblock 131072 -d /tmp/tmp.h9dKGpcNFw -D root.devices -o root.jffs2
> 
> >>     nand write.i ${loadaddr} 0x00c00000 0x2000000
> >>     nand write.i ${loadaddr} 0x04200000 0x2000000
> >
> > [Ghorai] why you writing in two places?
> 
> Redundant images.
> 
> >> Following that, the board is updated, from Linux, using 'flash_eraseall
> -
> >> q'
> >> and 'nandwrite -p -q' on all partitions, except that containing MLO.
> > [Ghorai]
> >
> > 1. can you send the exact comment you used to write in nand? Which
> partition?
> 
>     flash_eraseall -q /dev/mtd7
>     nandwrite -p -q /dev/mtd7 root.jffs2
>     flash_eraseal -q /dev/mtd9
>     nandwrite -p -q /dev/mtd9 root.jffs2
> 
> > 2. What is the last kernel you used and was working perfectly?
> v2.6.32_OMAPPSP_03.00.01.06.patch1

[Ghorai] I followed the steps you mentioned. Also I used the following command to mount the jffs2 FS and working fine.
mount -t jffs2 /dev/mtdblock3 /mnt/nand

I have tested in zoom3 -
NAND device: Manufacturer ID: 0x2c, Chip ID: 0xbc (Micron NAND 512MiB 1,8V 16-bit).

And using the latest kernel -
Uncompressing Linux... done, booting the kernel.
[    0.000000] Linux version 2.6.37-rc3-00102-gea49b16 (a0393553@omapldc12) (gcc version 4.4.1 (Sourcery G++ Lite 2010q1-202) ) #20 SMP Wed Nov 24 17:27:21 IST 2010 

Would you please share your latest log? 

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

end of thread, other threads:[~2010-11-24 14:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-18  1:06 No more software ECC in omap2.c NAND driver. Why? Charles Manning
2010-11-18 14:33 ` Ghorai, Sukumar
2010-11-19 10:35   ` Grazvydas Ignotas
2010-11-19 20:45     ` Ghorai, Sukumar
2010-11-21 21:01   ` Charles Manning
2010-11-22  6:08     ` Grant Erickson
2010-11-22  6:27       ` Ghorai, Sukumar
2010-11-22  6:39         ` Grant Erickson
2010-11-22  7:29           ` Ghorai, Sukumar
2010-11-22 19:03             ` Grant Erickson
2010-11-24 14:08               ` Ghorai, Sukumar

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