linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Arseniy Krasnov <avkrasnov@sberdevices.ru>
To: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Liang Yang <liang.yang@amlogic.com>,
	Richard Weinberger <richard@nod.at>,
	Vignesh Raghavendra <vigneshr@ti.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Jianxin Pan <jianxin.pan@amlogic.com>,
	Yixun Lan <yixun.lan@amlogic.com>, <oxffffaa@gmail.com>,
	<kernel@sberdevices.ru>, <linux-mtd@lists.infradead.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-amlogic@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	yonghui.yu <yonghui.yu@amlogic.com>
Subject: Re: [PATCH v1 4/5] mtd: rawnand: meson: clear OOB buffer before read
Date: Tue, 2 May 2023 14:32:47 +0300	[thread overview]
Message-ID: <2b2f5cb4-84f7-65f6-13b2-42f965503023@sberdevices.ru> (raw)
In-Reply-To: <20230502132745.14349770@xps-13>



On 02.05.2023 14:27, Miquel Raynal wrote:
> Hi Arseniy,
> 
> avkrasnov@sberdevices.ru wrote on Tue, 2 May 2023 13:11:38 +0300:
> 
>> On 02.05.2023 12:59, Miquel Raynal wrote:
>>> Hi Arseniy,
>>>
>>> avkrasnov@sberdevices.ru wrote on Wed, 26 Apr 2023 17:46:19 +0300:
>>>   
>>>> On 26.04.2023 16:51, Liang Yang wrote:  
>>>>> Hi Arseniy,
>>>>>
>>>>> On 2023/4/20 17:37, Arseniy Krasnov wrote:    
>>>>>> [ EXTERNAL EMAIL ]
>>>>>>
>>>>>> On 19.04.2023 09:41, Arseniy Krasnov wrote:    
>>>>>>>
>>>>>>>
>>>>>>> On 19.04.2023 06:05, Liang Yang wrote:    
>>>>>>>> Hi Arseniy,
>>>>>>>>
>>>>>>>> On 2023/4/18 22:57, Arseniy Krasnov wrote:    
>>>>>>>>> [ EXTERNAL EMAIL ]
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On 18.04.2023 16:25, Miquel Raynal wrote:    
>>>>>>>>>> Hi Arseniy,
>>>>>>>>>>    
>>>>>>>>>>>>> Hello again @Liang @Miquel!
>>>>>>>>>>>>>
>>>>>>>>>>>>> One more question about OOB access, as I can see current driver uses the following
>>>>>>>>>>>>> callbacks:
>>>>>>>>>>>>>
>>>>>>>>>>>>>       nand->ecc.write_oob_raw = nand_write_oob_std;
>>>>>>>>>>>>>       nand->ecc.write_oob = nand_write_oob_std;
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> Function 'nand_write_oob_std()' writes data to the end of the page. But as I
>>>>>>>>>>>>> can see by dumping 'data_buf' during read, physical layout of each page is the
>>>>>>>>>>>>> following (1KB ECC):
>>>>>>>>>>>>>
>>>>>>>>>>>>> 0x000: [         1 KB of data        ]
>>>>>>>>>>>>> 0x400: [ 2B user data] [ 14B ECC code]
>>>>>>>>>>>>> 0x410: [         1 KB of data        ]    (A)
>>>>>>>>>>>>> 0x810: [ 2B user data] [ 14B ECC code]
>>>>>>>>>>>>> 0x820: [        32B unused           ]
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> So, after 'nand_write_oob_std()' (let data be sequence from [0x0 ... 0x3f]),
>>>>>>>>>>>>> page will look like this:
>>>>>>>>>>>>>
>>>>>>>>>>>>> 0x000: [             0xFF            ]
>>>>>>>>>>>>> 0x400: [           ........          ]
>>>>>>>>>>>>> 0x7f0: [             0xFF            ]
>>>>>>>>>>>>> 0x800: [ 00 .......................  ]
>>>>>>>>>>>>> 0x830: [ ........................ 3f ]
>>>>>>>>>>>>>
>>>>>>>>>>>>> Here we have two problems:
>>>>>>>>>>>>> 1) Attempt to display raw data by 'nanddump' utility produces a little bit
>>>>>>>>>>>>>       invalid output, as driver relies on layout (A) from above. E.g. OOB data
>>>>>>>>>>>>>       is at 0x400 and 0x810. Here is an example (attempt to write 0x11 0x22 0x33 0x44):
>>>>>>>>>>>>>
>>>>>>>>>>>>> 0x000007f0: 11 22 ff ff ff ff ff ff ff ff ff ff ff ff ff ff  |."..............|
>>>>>>>>>>>>>      OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff  |................|
>>>>>>>>>>>>>      OOB Data: 33 44 ff ff ff ff ff ff ff ff ff ff ff ff ff ff  |3D..............|
>>>>>>>>>>>>>      OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff  |................|
>>>>>>>>>>>>>      OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff  |................|
>>>>>>>>>>>>>    
>>>>>>>>>>>> Hi Arseniy,
>>>>>>>>>>>>
>>>>>>>>>>>> I realized the write_oob_raw() and write_oob() are wrong in meson_nand.c. I suggest both of them should be reworked and follow the format of meson nand controller. i.e. firstly format the data in Layout (A) and then write. reading is firstly reading the data of layout (A) and then compost the layout (B).    
>>>>>>>>>>>
>>>>>>>>>>> IIUC after such writing only OOB (e.g. user bytes) according layout (A), hw will also write ECC codes, so
>>>>>>>>>>> it will be impossible to write data to this page later, because we cannot update ECC codes properly for the newly
>>>>>>>>>>> written data (we can't update bits from 0 to 1).
>>>>>>>>>>>    
>>>>>>>>>>>>
>>>>>>>>>>>>    
>>>>>>>>>>>>>
>>>>>>>>>>>>> 2) Attempt to read data in ECC mode will fail, because IIUC page is in dirty
>>>>>>>>>>>>>       state (I mean was written at least once) and NAND controller tries to use
>>>>>>>>>>>>>       ECC codes at 0x400 and 0x810, which are obviously broken in this case. Thus    
>>>>>>>>>>>>
>>>>>>>>>>>> As i said above, write_oob_raw() and write_oob() should be reworked.
>>>>>>>>>>>> i don't know what do you mean page was written at least once. anyway the page should be written once, even just write_oob_raw().    
>>>>>>>>>>>
>>>>>>>>>>> Sorry, You mean that after OOB write, we cannot write to the data area (e.g. 0x0 .. 0x810) until page will be erased? For example
>>>>>>>>>>> JFFS2 writes to OOB own markers, then it tries to write to the data area of such page.    
>>>>>>>>>
>>>>>>>>> @Liang, I'll describe current test case in details:
>>>>>>>>> 1) I have erased page, I can read it in  both raw and ecc modes - no problem (it is full of 0xFF).
>>>>>>>>> 2) I (JFFS2 for example) want to write only OOB - let it be clean markers.
>>>>>>>>> 3) I use raw write to the needed page (please correct me if i'm wrong). Four bytes
>>>>>>>>>      at 0x400 and 0x810 are updated. All other bytes still 0xff.
>>>>>>>>> 4) Now, when i'm trying to read this page in ECC mode, I get ECC errors: IIUC this
>>>>>>>>>      happens because from controller point of view ECC codes are invalid for current
>>>>>>>>>      data (all ECCs are 0xff). Is this behaviour is ok?    
>>>>>>>>
>>>>>>>> Yes, it is exactly reported ECC errors.    
>>>>>>>
>>>>>>> I see, so if we write OOB (e.g. using raw mode), there is no way to read this page in ECC mode later? And the    
>>>>>
>>>>> Of course, there is no ECC parity bytes in it; or raw write the data with the ECC parity bytes per the layout (A) you describe above.
>>>>>     
>>>>
>>>> But don't it looks like strange? Just writing OOB makes page unreadable? May be it is better to move OOB data
>>>> out of ECC area as I suggested in v2?
>>>>  
>>>>>>> only way to make it readable is to write it in ECC mode, but before this write, we need to read it's
>>>>>>> user's byte (from previous OOB write) in raw mode, put it to info buf (as user's bytes) and write this page. In this
>>>>>>> case NAND controller will generate ECC codes including user's byte and page become readable in ECC mode
>>>>>>> again.    
>>>>>
>>>>> yes, you are right.
>>>>>     
>>>>>>>    
>>>>>>>>    
>>>>>>>>> 5) Ok, don't care on these ECC errors, let's go further.
>>>>>>>>> 6) I'm going to write same page in ECC mode - how to do it correctly? There is already
>>>>>>>>>      4 OOB bytes, considered to be covered by ECC (but in fact now - ECC area is FFed).    
>>>>>>>>
>>>>>>>> If step 4 has excuted "program" command at the page (nand_write_oob_std() does), it can't be written again before erasing the page(block). so we have to read the whole page in the ddr and change the content, erase block, write it again.
>>>>>>>>
>>>>>>>> I don't think Jffs2 has the same steps (1-6) as you said above. are you sure that happes on Jffs2 or just an example?    
>>>>>>
>>>>>>    
>>>>>>>
>>>>>>> I just checked JFFS2 mount/umount again, here is what i see:
>>>>>>> 0) First attempt to mount JFFS2.
>>>>>>> 1) It writes OOB to page N (i'm using raw write). It is cleanmarker value 0x85 0x19 0x03 0x20. Mount is done.
>>>>>>> 2) Umount JFFS2. Done.
>>>>>>> 3) Second attempt to mount JFFS2.
>>>>>>> 4) It reads OOB from page N (i'm using raw read). Value is 0x85 0x19 0x03 0x20. Done.
>>>>>>> 5) It reads page N in ECC mode, and i get:
>>>>>>>      jffs2: mtd->read(0x100 bytes from N) returned ECC error
>>>>>>> 6) Mount failed.
>>>>>>>
>>>>>>> We already had problem which looks like this on another device. Solution was to use OOB area which is
>>>>>>> not covered by ECC for JFFS2 cleanmarkers.    
>>>>>
>>>>> ok, so there is not ECC parity bytes and mtd->read() returns ECC error.
>>>>> does it have to use raw write/read on step 1) and 4)?
>>>>>     
>>>>
>>>> If i'm using non raw access to OOB, for example write OOB (user bytes) in ECC mode, then
>>>> steps 1) and 4) and 5) passes ok, but write to this page will be impossible (for example JFFS2
>>>> writes to such pages later) - we can't update ECC codes properly without erasing whole page.
>>>> Write operation will be done without problem, but read will trigger ECC errors due to broken
>>>> ECC codes.
>>>>
>>>> In general problem that we discuss is that in current implementation data and OOB conflicts
>>>> with each other by sharing same ECC codes, these ECC codes could be written only once (without
>>>> erasing), while data and OOB has different callbacks to access and thus supposed to work
>>>> separately.  
>>>
>>> The fact that there might be helpers just for writing OOB areas or just
>>> in-band areas are optimizations. NAND pages are meant to be written a
>>> single time, no matter what portion you write. In some cases, it is
>>> possible to perform subpage writes if the chip supports it. Pages may
>>> be split into several areas which cover a partial in-band area *and* a
>>> partial OOB area. If you write into the in-band *or* out-of-band areas
>>> of a given subpage, you *cannot* write the other part later without  
>>
>> Thanks for details! So in case of JFFS2 it looks like strange, that it tries
>> to write page after writing clean markers to it before? In the old vendor's
>> driver OOB write callback is suppressed by return 0 always and JFFS2 works
>> correctly.
> 
> Can you point the code you're mentioning? (both what JFFS2 which looks
> strange to you and the old vendor hack)

Here is version of the old vendor's driver:

https://github.com/kszaq/linux-amlogic/blob/master_new_amports/drivers/amlogic/nand/nand/aml_nand.c#L3260

In my version there is no BUG() there, but it is same driver for the same chip.

About JFFS2 - i didn't check its source code, but what I can see using printk(), is that it first
tries to write cleanmarker using OOB write callback. Then later it tries to write to this page, so
may be it is unexpected behaviour of JFFS2?

Thanks, Arseniy

> 
> 
> Thanks,
> Miquèl

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

  reply	other threads:[~2023-05-02 11:37 UTC|newest]

Thread overview: 83+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-12  6:16 [PATCH v1 0/5] refactoring and fix for Meson NAND Arseniy Krasnov
2023-04-12  6:16 ` [PATCH v1 1/5] mtd: rawnand: meson: fix NAND access for read/write Arseniy Krasnov
2023-04-12  9:37   ` Liang Yang
2023-04-12 10:24     ` Arseniy Krasnov
2023-04-12 12:03       ` Arseniy Krasnov
2023-04-12 13:30         ` Liang Yang
2023-04-13  5:10           ` Arseniy Krasnov
2023-04-13  5:57             ` Liang Yang
2023-04-17  6:47               ` Arseniy Krasnov
2023-04-17 13:54                 ` Liang Yang
2023-04-17 14:10                   ` Arseniy Krasnov
2023-04-19 19:43                     ` Arseniy Krasnov
2023-04-20 14:22                       ` Liang Yang
2023-04-21  5:57                         ` Arseniy Krasnov
2023-04-26  7:53                           ` Arseniy Krasnov
2023-04-26 12:17                       ` Liang Yang
2023-04-26 14:47                         ` Arseniy Krasnov
2023-05-04  6:16                           ` Arseniy Krasnov
2023-05-10 11:34                             ` Arseniy Krasnov
2023-05-11 10:43                               ` Arseniy Krasnov
2023-04-12  6:16 ` [PATCH v1 2/5] mtd: rawnand: meson: replace GENMASK() macro with define Arseniy Krasnov
2023-04-12  7:37   ` Neil Armstrong
2023-04-12 10:06   ` David Laight
2023-04-12 10:11     ` Arseniy Krasnov
2023-04-12  6:16 ` [PATCH v1 3/5] mtd: rawnand: meson: check buffer length Arseniy Krasnov
2023-04-12  7:39   ` Miquel Raynal
2023-04-12  6:16 ` [PATCH v1 4/5] mtd: rawnand: meson: clear OOB buffer before read Arseniy Krasnov
2023-04-12  7:44   ` Miquel Raynal
2023-04-12  7:47     ` Miquel Raynal
2023-04-12  9:20     ` Arseniy Krasnov
2023-04-12  9:36       ` Miquel Raynal
2023-04-12 10:14         ` Arseniy Krasnov
2023-04-12 10:51           ` Liang Yang
2023-04-12 11:36             ` Liang Yang
2023-04-12 11:43               ` Dmitry Rokosov
2023-04-12 11:47                 ` Arseniy Krasnov
2023-04-12 12:28                 ` Liang Yang
2023-04-12 12:18           ` Miquel Raynal
2023-04-12 12:22             ` Arseniy Krasnov
2023-04-12 12:57               ` Miquel Raynal
2023-04-12 14:04                 ` Liang Yang
2023-04-12 14:32                   ` Miquel Raynal
2023-04-13  5:32                     ` Liang Yang
2023-04-13  6:11                       ` Liang Yang
2023-04-13  7:00                         ` Arseniy Krasnov
2023-04-13  8:22                           ` Miquel Raynal
2023-04-13  9:36                             ` Arseniy Krasnov
2023-04-13 10:22                               ` Miquel Raynal
2023-04-13 10:35                                 ` Arseniy Krasnov
2023-04-18  5:12                                   ` Arseniy Krasnov
2023-04-18 12:24                                     ` Liang Yang
2023-04-18 12:44                                       ` Arseniy Krasnov
2023-04-18 13:25                                         ` Miquel Raynal
2023-04-18 14:57                                           ` Arseniy Krasnov
2023-04-18 15:07                                             ` Arseniy Krasnov
2023-04-19  3:05                                             ` Liang Yang
2023-04-19  6:41                                               ` Arseniy Krasnov
2023-04-20  9:37                                                 ` Arseniy Krasnov
2023-04-26 13:51                                                   ` Liang Yang
2023-04-26 14:46                                                     ` Arseniy Krasnov
2023-05-02  9:59                                                       ` Miquel Raynal
2023-05-02 10:11                                                         ` Arseniy Krasnov
2023-05-02 11:27                                                           ` Miquel Raynal
2023-05-02 11:32                                                             ` Arseniy Krasnov [this message]
2023-05-02 12:17                                                               ` Miquel Raynal
2023-05-02 12:24                                                                 ` Arseniy Krasnov
2023-05-02 13:05                                                                   ` Miquel Raynal
2023-05-02 16:13                                                                     ` Arseniy Krasnov
2023-05-03  8:03                                                                       ` Miquel Raynal
2023-05-03 10:23                                                                         ` Arseniy Krasnov
2023-05-04 11:37                                                                           ` Arseniy Krasnov
2023-05-04 12:17                                                                             ` Miquel Raynal
2023-05-04 12:31                                                                               ` Arseniy Krasnov
2023-05-03 19:48                                                                         ` Richard Weinberger
2023-05-04 11:40                                                                           ` Arseniy Krasnov
2023-04-13  8:22                       ` Miquel Raynal
2023-04-12 19:15                   ` Dmitry Rokosov
2023-04-12 20:56                     ` Miquel Raynal
2023-04-13  9:27                       ` Dmitry Rokosov
2023-04-13 10:29                         ` Miquel Raynal
2023-04-13 14:03                           ` Dmitry Rokosov
2023-04-12  6:16 ` [PATCH v1 5/5] mtd: rawnand: meson: remove unneeded bitwise OR with zeroes Arseniy Krasnov
2023-04-12  7:45 ` [PATCH v1 0/5] refactoring and fix for Meson NAND Miquel Raynal

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=2b2f5cb4-84f7-65f6-13b2-42f965503023@sberdevices.ru \
    --to=avkrasnov@sberdevices.ru \
    --cc=jbrunet@baylibre.com \
    --cc=jianxin.pan@amlogic.com \
    --cc=kernel@sberdevices.ru \
    --cc=khilman@baylibre.com \
    --cc=liang.yang@amlogic.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=miquel.raynal@bootlin.com \
    --cc=neil.armstrong@linaro.org \
    --cc=oxffffaa@gmail.com \
    --cc=richard@nod.at \
    --cc=vigneshr@ti.com \
    --cc=yixun.lan@amlogic.com \
    --cc=yonghui.yu@amlogic.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;
as well as URLs for NNTP newsgroup(s).