[PATCH v4 00/13] Improve timings handling in the NAND framework
Miquel Raynal
miquel.raynal at bootlin.com
Mon Mar 19 02:37:58 PDT 2018
Hello,
This series evolves how GET/SET_FEATURES operations are handled by the
NAND core by adding two helpers that should be called instead of calling
directly the ->onfi_get/set_feature() hooks.
Then, the parameter page that was always allocated no matter if the NAND
core could make use of it is dropped. Instead, a much smaller structure
is embedded in the nand_chip structure and just stores the information
that will be useful for the core. Future enhancements of the core that
will need more information will just have to add a new entry in this
structure and fill it during the detection phase. A bitmap is used to
know which optional feature is actually supported.
This give the possibility in vendor code to overload this bitmap and
force the addition/removal of supported features in the list, depending
for instance on the NAND chip currently being used.
This new possibility is effectively used for Macronix NAND chip
MX30LF2G18AC. This chip supports natively the timing mode 5, and its
parameter page indicates that it supports GET/SET_FEATURES on timing
modes, while in reality it does not. Removing this feature from the
supported bitmap makes it usable at high speed instead of unnecessarily
limiting it to timing mode 0.
Thank you,
Miquèl
Changes since v3:
=================
- Fixed commit log of patch "check ONFI timings have been acked by the
chip"
- Squashed patch that renamed the ->seg/get_features() local hooks in
the mxc driver into the patch that renames these hooks.
- Moved patch introducing the nand_set/get_features() helpers earlier
to avoid modifiying twice nand_setup_data_interface().
- s/memcpy/strncpy/ around the model name to avoid possible overflows.
- Added kernel-doc documentation.
- Renamed the "onfi_params" entry in the nand_parameters structure as
"onfi".
Changes since v2:
=================
- Squashed the series with another preparation series not yet merged
about GPMI timings improvements. Core patches are here now, while a
second series with only GPMI-related changes will be sent very soon.
- s/support_setting_features/supports_set_get_features/
- Used a bitmap for set_features and another for get_features.
- Removed repetiting setting the timings mode parameters bit in the
supported features bitmap in Micron driver.
- Split the commit removing the parameter pages in three (one that
adds the new structure, one that get rid of JEDEC parameter page,
one that get rid of ONFI parameter page).
- Moved the ONFI-specific fields in the nand_parameters structure
into an onfi_parameters structure within it. It is statically
allocated today, and will move to dynamic allocation in the near
future.
- Removed the __packed attribute on the nand_parameters structure.
Changes since v1:
=================
- Some changes, a bit unrelated to what we try to achieve here have
been moved to the series that prepares this one.
- Change the formula in Macronix code that determines if we are
dealing with the failing chip.
Miquel Raynal (13):
mtd: rawnand: rename default ->onfi_get/set_features() implementations
mtd: rawnand: rename SET/GET FEATURES related functions
mtd: rawnand: use wrappers to call onfi GET/SET_FEATURES
mtd: rawnand: mxc: remove useless checks in GET/SET_FEATURES functions
mtd: rawnand: move calls to ->select_chip() in
nand_setup_data_interface()
mtd: rawnand: check ONFI timings have been acked by the chip
mtd: rawnand: avoid setting again the timings to mode 0 after a reset
mtd: rawnand: prepare the removal of ONFI/JEDEC parameter pages
mtd: rawnand: prepare the removal of the ONFI parameter page
mtd: rawnand: allow vendors to declare (un)supported features
mtd: rawnand: macronix: nack the support of changing timings for one
chip
mtd: rawnand: get rid of the JEDEC parameter page in nand_chip
mtd: rawnand: get rid of the ONFI parameter page in nand_chip
drivers/mtd/nand/raw/bcm47xxnflash/ops_bcm4706.c | 4 +-
drivers/mtd/nand/raw/cafe_nand.c | 4 +-
drivers/mtd/nand/raw/docg4.c | 4 +-
drivers/mtd/nand/raw/fsl_elbc_nand.c | 4 +-
drivers/mtd/nand/raw/fsl_ifc_nand.c | 4 +-
drivers/mtd/nand/raw/gpmi-nand/gpmi-lib.c | 8 +-
drivers/mtd/nand/raw/hisi504_nand.c | 4 +-
drivers/mtd/nand/raw/mpc5121_nfc.c | 4 +-
drivers/mtd/nand/raw/mxc_nand.c | 24 +-
drivers/mtd/nand/raw/nand_base.c | 284 ++++++++++++++++-------
drivers/mtd/nand/raw/nand_macronix.c | 13 ++
drivers/mtd/nand/raw/nand_micron.c | 39 ++--
drivers/mtd/nand/raw/nand_timings.c | 10 +-
drivers/mtd/nand/raw/qcom_nandc.c | 4 +-
drivers/mtd/nand/raw/sh_flctl.c | 4 +-
drivers/staging/mt29f_spinand/mt29f_spinand.c | 4 +-
include/linux/mtd/rawnand.h | 94 ++++----
17 files changed, 326 insertions(+), 186 deletions(-)
--
2.14.1
More information about the linux-mtd
mailing list