From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
linux-mtd@lists.infradead.org,
Boris Brezillon <boris.brezillon@free-electrons.com>,
Richard Weinberger <richard@nod.at>
Cc: linux-kernel@vger.kernel.org, Hans de Goede <hdegoede@redhat.com>,
Aleksei Mamlin <mamlinav@gmail.com>,
valdis.kletnieks@vt.edu
Subject: Re: [PATCH v3 00/16] mtd: nand: allow vendor specific detection/initialization
Date: Mon, 20 Jun 2016 11:31:46 +0200 [thread overview]
Message-ID: <20160620113146.1c2b8853@bbrezillon> (raw)
In-Reply-To: <1466414822-18948-1-git-send-email-boris.brezillon@free-electrons.com>
On Mon, 20 Jun 2016 11:26:46 +0200
Boris Brezillon <boris.brezillon@free-electrons.com> wrote:
> Hello,
>
> This patch series is a step forward in supporting vendor-specific
> functionalities.
> This series is mainly moving vendor-specific initialization or
> detection code out of the core, but also introduces an infrastructure
> allowing support for vendor-specific features.
>
> While those features might seem useless to most users, some of them are
> actually required on modern MLC/TLC NANDs (this is the case of read-retry
> support, which AFAICT has not been standardized by the JEDEC consortium).
>
> Now, let's detail what's inside this patch-set.
>
> Patch 1 is fixing the nand_command_lp() implementation to allow reading
> the ID after the core has switched from nand_command() to
> nand_command_lp().
>
> Patches 2 to 5 are simple reworks simplifying auto-detection function
> prototypes, and clarifying their purpose.
>
> Patch 6 is introducing the vendor-specific initialization
> infrastructure.
>
> Patch 7 is removing the MTD_NAND_IDS Kconfig option to avoid creating
> a nand_ids.ko module when MTD_NAND is enabled as a module. This prevents
> a future cross-dependency between nand.ko where all vendor specific
> code will rely and nand_ids.ko which will reference vendor-specific ops
> in its manufacturer table, which in turn is referenced by the core code
> linked in nand.ko.
>
> Patches 8 to 13 are moving vendor-specific code into their respective
> nand_<vendor>.c files.
>
> Patch 14 is taking a patch proposed by Hans and adding support for ECC
> requirements extraction from the samsung extended IDs. It seems to apply
> to all Samsung MLCs, but even if it's not the case, the detection code
> should be improved to support the new formats.
>
> Patch 15 is adding support for advanced NAND ID decoding to the Hynix
> driver (OOB size, ECC and scrambling requirements extraction). Again
> this detection code might be incomplete, but I'd like people to extend
> it if required rather than adding new full-id entries in the nand_ids
> table.
>
> And finally, patch 16 is showing how useful this vendor-specific stuff
> can be by implementing read-retry support for Hynix 1x nm MLCs. And
> trust me, you don't want to try using such a NAND without read-retry
> support ;).
>
> As always, I'm open to any suggestion to improve this vendor-specific
> infrastructure, so please review the code :).
>
> Thanks,
>
> Boris
>
> Changes since v2:
> - Fix nand_command_lp() implementation to allow reading the ID
> after switching from ->cmdfunc() from nand_command() to
> nand_command_lp().
> - Include slab.h in hynix_nand.c
> - Avoid selecting/unselecting the NAND chip in Hynix ->init()
> hook (the chip is already selected by the core)
Forgot to mention the addition of wrappers to call the ->detect() and
->init() hooks.
>
> Changes since v1:
> - split detection and initialization steps to avoid keeping
> information retrieved by nand_decode_ext_id() if it's not
> appropriate (Aleksei reported a bug where NAND_BUSWIDTH_16
> was set by nand_decode_ext_id() and not cleared by the
> samsung ->init() function).
> The new approach is to call ->detect() if it's provided and
> fallback to nand_decode_ext_id() if it's not. ->detect()
> implementation should can call nand_decode_ext_id() if needed.
>
> Boris Brezillon (15):
> mtd: nand: Fix nand_command_lp() for 8bits opcodes
> mtd: nand: get rid of the mtd parameter in all auto-detection
> functions
> mtd: nand: store nand ID in struct nand_chip
> mtd: nand: get rid of busw parameter
> mtd: nand: rename nand_get_flash_type() into nand_detect()
> mtd: nand: add manufacturer specific initialization/detection steps
> mtd: nand: kill the MTD_NAND_IDS Kconfig option
> mtd: nand: move Samsung specific init/detection logic in
> nand_samsung.c
> mtd: nand: move Hynix specific init/detection logic in nand_hynix.c
> mtd: nand: move Toshiba specific init/detection logic in
> nand_toshiba.c
> mtd: nand: move Micron specific init logic in nand_micron.c
> mtd: nand: move AMD/Spansion specific init/detection logic in
> nand_amd.c
This file contains coding style issues. I'll fix them in v4.
> mtd: nand: move Macronix specific initialization in nand_macronix.c
> mtd: nand: hynix: rework NAND ID decoding to extract more information
> mtd: nand: hynix: add read-retry support for 1x nm MLC NANDs
>
> Hans de Goede (1):
> mtd: nand: samsung: retrieve ECC requirements from extended ID
>
> arch/cris/arch-v32/drivers/Kconfig | 1 -
> drivers/mtd/nand/Kconfig | 4 -
> drivers/mtd/nand/Makefile | 9 +-
> drivers/mtd/nand/nand_amd.c | 48 +++
> drivers/mtd/nand/nand_base.c | 402 +++++++++---------------
> drivers/mtd/nand/nand_hynix.c | 628 +++++++++++++++++++++++++++++++++++++
> drivers/mtd/nand/nand_ids.c | 21 +-
> drivers/mtd/nand/nand_macronix.c | 27 ++
> drivers/mtd/nand/nand_micron.c | 84 +++++
> drivers/mtd/nand/nand_samsung.c | 109 +++++++
> drivers/mtd/nand/nand_toshiba.c | 48 +++
> include/linux/mtd/nand.h | 69 ++--
> 12 files changed, 1157 insertions(+), 293 deletions(-)
> create mode 100644 drivers/mtd/nand/nand_amd.c
> create mode 100644 drivers/mtd/nand/nand_hynix.c
> create mode 100644 drivers/mtd/nand/nand_macronix.c
> create mode 100644 drivers/mtd/nand/nand_micron.c
> create mode 100644 drivers/mtd/nand/nand_samsung.c
> create mode 100644 drivers/mtd/nand/nand_toshiba.c
>
prev parent reply other threads:[~2016-06-20 9:32 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-20 9:26 [PATCH v3 00/16] mtd: nand: allow vendor specific detection/initialization Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 01/16] mtd: nand: Fix nand_command_lp() for 8bits opcodes Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 02/16] mtd: nand: get rid of the mtd parameter in all auto-detection functions Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 03/16] mtd: nand: store nand ID in struct nand_chip Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 04/16] mtd: nand: get rid of busw parameter Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 05/16] mtd: nand: rename nand_get_flash_type() into nand_detect() Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 06/16] mtd: nand: add manufacturer specific initialization/detection steps Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 07/16] mtd: nand: kill the MTD_NAND_IDS Kconfig option Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 08/16] mtd: nand: move Samsung specific init/detection logic in nand_samsung.c Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 09/16] mtd: nand: move Hynix specific init/detection logic in nand_hynix.c Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 10/16] mtd: nand: move Toshiba specific init/detection logic in nand_toshiba.c Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 11/16] mtd: nand: move Micron specific init logic in nand_micron.c Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 12/16] mtd: nand: move AMD/Spansion specific init/detection logic in nand_amd.c Boris Brezillon
2016-06-20 9:26 ` [PATCH v3 13/16] mtd: nand: move Macronix specific initialization in nand_macronix.c Boris Brezillon
2016-06-20 9:27 ` [PATCH v3 14/16] mtd: nand: samsung: retrieve ECC requirements from extended ID Boris Brezillon
2016-06-20 9:27 ` [PATCH v3 15/16] mtd: nand: hynix: rework NAND ID decoding to extract more information Boris Brezillon
2016-06-20 9:27 ` [PATCH v3 16/16] mtd: nand: hynix: add read-retry support for 1x nm MLC NANDs Boris Brezillon
2016-06-20 9:31 ` Boris Brezillon [this message]
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=20160620113146.1c2b8853@bbrezillon \
--to=boris.brezillon@free-electrons.com \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=hdegoede@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=mamlinav@gmail.com \
--cc=richard@nod.at \
--cc=valdis.kletnieks@vt.edu \
/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