public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Richard Weinberger <richard@nod.at>
Cc: linux-mtd@lists.infradead.org,
	Tudor Ambarus <Tudor.Ambarus@linaro.org>,
	Vignesh Raghavendra <vigneshr@ti.com>,
	Frieder Schrempf <frieder.schrempf@kontron.de>,
	Michael Walle <michael@walle.cc>,
	Pratyush Yadav <pratyush@kernel.org>
Subject: [GIT PULL] mtd: nand: Changes for 6.3
Date: Thu, 23 Feb 2023 10:21:25 +0100	[thread overview]
Message-ID: <20230223102125.4d913f60@xps-13> (raw)

Hello,

This is the NAND PR for 6.3.

Thanks,
Miquèl

The following changes since commit 1b929c02afd37871d5afb9d498426f83432e71c2:

  Linux 6.2-rc1 (2022-12-25 13:41:39 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/nand/for-6.3

for you to fetch changes up to ef3e6327ff04af8527b3558e023e99f1cc241bce:

  mtd: rawnand: sunxi: Precompute the ECC_CTL register value (2023-02-06 12:53:08 +0100)

----------------------------------------------------------------
NAND core changes:
* Check the data only read pattern only once
* Prepare the late addition of supported operation checks
* Support for sequential cache reads
* Fix nand_chip kdoc

Raw NAND changes:
* Fsl_elbc: Propagate HW ECC settings to HW
* Marvell: Add missing layouts
* Pasemi: Don't use static data to track per-device state
* Sunxi:
  - Fix the size of the last OOB region
  - Remove an unnecessary check
  - Remove an unnecessary check
  - Clean up chips after failed init
  - Precompute the ECC_CTL register value
  - Embed sunxi_nand_hw_ecc by value
  - Update OOB layout to match hardware
* tmio_nand: Remove driver
* vf610_nfc: Use regular comments for functions

SPI-NAND changes:
* Add support for AllianceMemory AS5F34G04SND
* Macronix: use scratch buffer for DMA operation

NAND ECC changes:
* Mediatek:
  - Add ECC support fot MT7986 IC
  - Add compatible for MT7986
  - dt-bindings: Split ECC engine with rawnand controller

----------------------------------------------------------------
Arnd Bergmann (1):
      mtd: remove tmio_nand driver

Aviram Dali (1):
      mtd: rawnand: marvell: add missing layouts

Daniel Golle (1):
      mtd: spinand: macronix: use scratch buffer for DMA operation

JaimeLiao (1):
      mtd: rawnand: Support for sequential cache reads

Mario Kicherer (1):
      mtd: spinand: Add support for AllianceMemory AS5F34G04SND

Miquel Raynal (3):
      mtd: rawnand: Check the data only read pattern only once
      mtd: rawnand: Prepare the late addition of supported operation checks
      mtd: rawnand: Fix nand_chip kdoc

Pali Rohár (1):
      mtd: rawnand: fsl_elbc: Propagate HW ECC settings to HW

Randy Dunlap (1):
      mtd: rawnand: vf610_nfc: use regular comments for functions

Samuel Holland (7):
      mtd: rawnand: sunxi: Clean up chips after failed init
      mtd: rawnand: sunxi: Remove an unnecessary check
      mtd: rawnand: sunxi: Remove an unnecessary check
      mtd: rawnand: sunxi: Fix the size of the last OOB region
      mtd: rawnand: sunxi: Update OOB layout to match hardware
      mtd: rawnand: sunxi: Embed sunxi_nand_hw_ecc by value
      mtd: rawnand: sunxi: Precompute the ECC_CTL register value

Uwe Kleine-König (1):
      mtd: rawnand: pasemi: Don't use static data to track per-device state

Xiangsheng Hou (3):
      dt-bindings: mtd: Split ECC engine with rawnand controller
      dt-bindings: mtd: mediatek,nand-ecc-engine: Add compatible for MT7986
      mtd: nand: ecc-mtk: Add ECC support fot MT7986 IC

 Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml         | 155 +++++++++++++++++++++++++++++++++++++++
 Documentation/devicetree/bindings/mtd/mediatek,nand-ecc-engine.yaml |  63 ++++++++++++++++
 Documentation/devicetree/bindings/mtd/mtk-nand.txt                  | 176 ---------------------------------------------
 MAINTAINERS                                                         |   2 +-
 drivers/mtd/nand/ecc-mtk.c                                          |  28 +++++++-
 drivers/mtd/nand/raw/Kconfig                                        |   7 --
 drivers/mtd/nand/raw/Makefile                                       |   1 -
 drivers/mtd/nand/raw/fsl_elbc_nand.c                                |   8 +++
 drivers/mtd/nand/raw/marvell_nand.c                                 |   7 ++
 drivers/mtd/nand/raw/nand_base.c                                    | 149 ++++++++++++++++++++++++++++++++++++--
 drivers/mtd/nand/raw/nand_jedec.c                                   |   3 +-
 drivers/mtd/nand/raw/nand_onfi.c                                    |   3 +-
 drivers/mtd/nand/raw/pasemi_nand.c                                  |  63 ++++++++--------
 drivers/mtd/nand/raw/sunxi_nand.c                                   | 122 +++++++++++--------------------
 drivers/mtd/nand/raw/tmio_nand.c                                    | 533 ---------------------------------------------------------------------------------------------------------------------------------------
 drivers/mtd/nand/raw/vf610_nfc.c                                    |   4 +-
 drivers/mtd/nand/spi/Makefile                                       |   2 +-
 drivers/mtd/nand/spi/alliancememory.c                               | 153 +++++++++++++++++++++++++++++++++++++++
 drivers/mtd/nand/spi/core.c                                         |   1 +
 drivers/mtd/nand/spi/macronix.c                                     |   3 +-
 include/linux/mtd/rawnand.h                                         |  21 ++++++
 include/linux/mtd/spinand.h                                         |   1 +
 22 files changed, 664 insertions(+), 841 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
 create mode 100644 Documentation/devicetree/bindings/mtd/mediatek,nand-ecc-engine.yaml
 delete mode 100644 Documentation/devicetree/bindings/mtd/mtk-nand.txt
 delete mode 100644 drivers/mtd/nand/raw/tmio_nand.c
 create mode 100644 drivers/mtd/nand/spi/alliancememory.c

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

             reply	other threads:[~2023-02-23  9:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-23  9:21 Miquel Raynal [this message]
2023-02-23 10:35 ` [GIT PULL] mtd: nand: Changes for 6.3 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=20230223102125.4d913f60@xps-13 \
    --to=miquel.raynal@bootlin.com \
    --cc=Tudor.Ambarus@linaro.org \
    --cc=frieder.schrempf@kontron.de \
    --cc=linux-mtd@lists.infradead.org \
    --cc=michael@walle.cc \
    --cc=pratyush@kernel.org \
    --cc=richard@nod.at \
    --cc=vigneshr@ti.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