Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1419891 > unrolled thread
| Started by | Brian Norris <computersforpeace@gmail.com> |
|---|---|
| First post | 2016-06-11 04:20 +0200 |
| Last post | 2016-06-13 08:40 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 0/4] mtd: add support for pairing scheme description Brian Norris <computersforpeace@gmail.com> - 2016-06-11 04:20 +0200
Re: [PATCH 0/4] mtd: add support for pairing scheme description Boris Brezillon <boris.brezillon@free-electrons.com> - 2016-06-11 08:50 +0200
Re: [PATCH 0/4] mtd: add support for pairing scheme description Brian Norris <computersforpeace@gmail.com> - 2016-06-13 08:00 +0200
Re: [PATCH 0/4] mtd: add support for pairing scheme description Boris Brezillon <boris.brezillon@free-electrons.com> - 2016-06-13 08:40 +0200
| From | Brian Norris <computersforpeace@gmail.com> |
|---|---|
| Date | 2016-06-11 04:20 +0200 |
| Subject | Re: [PATCH 0/4] mtd: add support for pairing scheme description |
| Message-ID | <rIGGK-5yx-1@gated-at.bofh.it> |
Hi Boris, I've mostly just reviewed the cover and first patch for now, since that sets up the rest. A few questions and comments. I hope to review some more and have more to say later this weekend. On Mon, Apr 25, 2016 at 12:01:17PM +0200, Boris Brezillon wrote: > Hi, > > This series is the first step towards reliable MLC/TLC NAND support. > Those patches allows the NAND layer to expose page pairing information > to MTD users. Have you surveyed many types of NAND to get a representative sampling of what kind of pairing schemes are out there? Do you think you've covered the possibilities well enough in your API? I have a few comments on the patches to this effect. I honestly don't know the answer to these questions, because AFAIR, this is rarely well documented in datasheets. > The plan is to teach UBI about those constraints and let UBI code take > the appropriate precautions when dealing with those multi-level cells > NANDs. The way we'll handle this "paired pages" constraint will be > described soon in a series adapting the UBI layer, so stay tune ;). > > Note that this implementation only allows page pairing scheme description > when the NAND has a full-id entry in the nand_ids table. > This should be addressed in some way for ONFI and JEDEC NANDs, though > I'm not sure how to handle this yet. Do ONFI or JEDEC parameter pages even provide this kind of info? The ONFI spec doesn't mention paired pages. Brian > Best Regards, > > Boris > > Boris Brezillon (4): > mtd: introduce the mtd_pairing_scheme concept > mtd: nand: implement two pairing scheme > mtd: nand: add a pairing field to nand_flash_dev > mtd: nand: H27UCG8T2ATR: point to the correct pairing scheme > implementation > > drivers/mtd/mtdcore.c | 62 ++++++++++++++++++++++++++++ > drivers/mtd/mtdpart.c | 1 + > drivers/mtd/nand/nand_base.c | 97 ++++++++++++++++++++++++++++++++++++++++++++ > drivers/mtd/nand/nand_ids.c | 2 +- > include/linux/mtd/mtd.h | 64 +++++++++++++++++++++++++++++ > include/linux/mtd/nand.h | 5 +++ > 6 files changed, 230 insertions(+), 1 deletion(-) > > -- > 2.7.4 >
[toc] | [next] | [standalone]
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2016-06-11 08:50 +0200 |
| Message-ID | <rIKU1-82Q-1@gated-at.bofh.it> |
| In reply to | #1419891 |
On Fri, 10 Jun 2016 19:16:25 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > Hi Boris, > > I've mostly just reviewed the cover and first patch for now, since that > sets up the rest. A few questions and comments. I hope to review some > more and have more to say later this weekend. > > On Mon, Apr 25, 2016 at 12:01:17PM +0200, Boris Brezillon wrote: > > Hi, > > > > This series is the first step towards reliable MLC/TLC NAND support. > > Those patches allows the NAND layer to expose page pairing information > > to MTD users. > > Have you surveyed many types of NAND to get a representative sampling of > what kind of pairing schemes are out there? Do you think you've covered > the possibilities well enough in your API? I have a few comments on the > patches to this effect. I honestly don't know the answer to these > questions, because AFAIR, this is rarely well documented in datasheets. I only tested on 3 different NANDs from Micron, Toshiba and Hynix, but I had a look at several datasheets. Unlike read-retry this part is usually documented in public datasheets, and on a panel of approximately 20 NANDs (mainly from Toshiba, Samsung, Hynix and Micron), all of them where using the 'distance 3' or 'distance 6' pairing scheme. The only exception I've seen so far is the one pointed by Bean here [1], and it can be described using the mtd_pairing_scheme approach. > > > The plan is to teach UBI about those constraints and let UBI code take > > the appropriate precautions when dealing with those multi-level cells > > NANDs. The way we'll handle this "paired pages" constraint will be > > described soon in a series adapting the UBI layer, so stay tune ;). > > > > Note that this implementation only allows page pairing scheme description > > when the NAND has a full-id entry in the nand_ids table. > > This should be addressed in some way for ONFI and JEDEC NANDs, though > > I'm not sure how to handle this yet. > > Do ONFI or JEDEC parameter pages even provide this kind of info? The > ONFI spec doesn't mention paired pages. Nope that's the problem. The only way you can deduce that is to extract it from other information, but I think my series reworking the NAND initialization will help us [2]. [1]http://thread.gmane.org/gmane.linux.drivers.mtd/67084 [2]https://lkml.org/lkml/2016/5/27/264 -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Brian Norris <computersforpeace@gmail.com> |
|---|---|
| Date | 2016-06-13 08:00 +0200 |
| Message-ID | <rJt4J-23X-1@gated-at.bofh.it> |
| In reply to | #1419935 |
On Sat, Jun 11, 2016 at 08:45:18AM +0200, Boris Brezillon wrote: > On Fri, 10 Jun 2016 19:16:25 -0700 > Brian Norris <computersforpeace@gmail.com> wrote: > > On Mon, Apr 25, 2016 at 12:01:17PM +0200, Boris Brezillon wrote: > > > Hi, > > > > > > This series is the first step towards reliable MLC/TLC NAND support. > > > Those patches allows the NAND layer to expose page pairing information > > > to MTD users. > > > > Have you surveyed many types of NAND to get a representative sampling of > > what kind of pairing schemes are out there? Do you think you've covered > > the possibilities well enough in your API? I have a few comments on the > > patches to this effect. I honestly don't know the answer to these > > questions, because AFAIR, this is rarely well documented in datasheets. > > I only tested on 3 different NANDs from Micron, Toshiba and Hynix, but I'm curious, do you have an example part number for Micron? When I looked briefly last week, I only found either MLC that don't mention it at all (they fundamentally *have* to have write pairing, don't they?) or TLC that required too much work for me to get past their login screens. > I had a look at several datasheets. Unlike read-retry this part is > usually documented in public datasheets, and on a panel of approximately > 20 NANDs (mainly from Toshiba, Samsung, Hynix and Micron), all of them > where using the 'distance 3' or 'distance 6' pairing scheme. > The only exception I've seen so far is the one pointed by Bean here [1], > and it can be described using the mtd_pairing_scheme approach. Yeah, I suppose the API is rather generic. It doesn't really assume anything about patterns/distances -- just that the pairings are formed in groups of the same size. > > > The plan is to teach UBI about those constraints and let UBI code take > > > the appropriate precautions when dealing with those multi-level cells > > > NANDs. The way we'll handle this "paired pages" constraint will be > > > described soon in a series adapting the UBI layer, so stay tune ;). > > > > > > Note that this implementation only allows page pairing scheme description > > > when the NAND has a full-id entry in the nand_ids table. > > > This should be addressed in some way for ONFI and JEDEC NANDs, though > > > I'm not sure how to handle this yet. > > > > Do ONFI or JEDEC parameter pages even provide this kind of info? The > > ONFI spec doesn't mention paired pages. > > Nope that's the problem. The only way you can deduce that is to extract > it from other information, but I think my series reworking the NAND > initialization will help us [2]. Sure, I suppose. Brian
[toc] | [prev] | [next] | [standalone]
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2016-06-13 08:40 +0200 |
| Message-ID | <rJtHr-2y5-7@gated-at.bofh.it> |
| In reply to | #1420455 |
On Sun, 12 Jun 2016 22:54:02 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > On Sat, Jun 11, 2016 at 08:45:18AM +0200, Boris Brezillon wrote: > > On Fri, 10 Jun 2016 19:16:25 -0700 > > Brian Norris <computersforpeace@gmail.com> wrote: > > > On Mon, Apr 25, 2016 at 12:01:17PM +0200, Boris Brezillon wrote: > > > > Hi, > > > > > > > > This series is the first step towards reliable MLC/TLC NAND support. > > > > Those patches allows the NAND layer to expose page pairing information > > > > to MTD users. > > > > > > Have you surveyed many types of NAND to get a representative sampling of > > > what kind of pairing schemes are out there? Do you think you've covered > > > the possibilities well enough in your API? I have a few comments on the > > > patches to this effect. I honestly don't know the answer to these > > > questions, because AFAIR, this is rarely well documented in datasheets. > > > > I only tested on 3 different NANDs from Micron, Toshiba and Hynix, but > > I'm curious, do you have an example part number for Micron? When I > looked briefly last week, I only found either MLC that don't mention it > at all (they fundamentally *have* to have write pairing, don't they?) or > TLC that required too much work for me to get past their login screens. I had to register and request the datasheet on their website (after accepting the NDA). I looked at the L73A and L85A. Not sure about the other Micron MLC NANDs, but maybe Beal can answer that one. Oh, and BTW, paired pages are called shared pages in Hynix datasheets. -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web