mbox series

[GIT,PULL] mtd: spi-nor: Changes for v5.13

Message ID 796d9f27-5408-eca7-a6c8-b6131e824837@microchip.com
State Not Applicable
Delegated to: Ambarus Tudor
Headers show
Series [GIT,PULL] mtd: spi-nor: Changes for v5.13 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-5.13

Message

Tudor Ambarus April 11, 2021, 8:06 a.m. UTC
Hi,

This is the SPI NOR PR for v5.13.
I would like to thank Michael and Pratyush for accepting to take more
responsibilities in the SPI NOR subsystem. Your efforts are much
appreciated. Welcome and good luck!

Cheers,
ta

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-5.13

for you to fetch changes up to 46094049a49be777f12a9589798f7c70b90cd03f:

  Revert "mtd: spi-nor: macronix: Add support for mx25l51245g" (2021-04-11 10:36:35 +0300)

----------------------------------------------------------------
SPI NOR core changes:
- Add OTP support
- Fix module unload while an op in progress
- Add various cleanup patches

SPI NOR controller drivers changes:
- intel-spi: Move platform data header to x86 subfolder

----------------------------------------------------------------
Andy Shevchenko (1):
      mtd: spi-nor: intel-spi: Move platform data header to x86 subfolder

Michael Walle (4):
      mtd: spi-nor: use is_power_of_2()
      mtd: spi-nor: add OTP support
      mtd: spi-nor: implement OTP support for Winbond and similar flashes
      mtd: spi-nor: winbond: add OTP support to w25q32fw/jw

Shuhao Mai (1):
      mtd: spi-nor: winbond: Add support for w25q512jvq

Tudor Ambarus (8):
      MAINTAINERS: Add Michael and Pratyush as designated reviewers for SPI NOR
      mtd: spi-nor: core: Advance erase after the erase cmd has been completed
      mtd: spi-nor: core: Add vdbg msg for spi_nor_erase_multi_sectors()
      mtd: spi-nor: Get rid of duplicated argument in spi_nor_parse_sfdp()
      mtd: spi-nor: core: Update comment about the default flash parameters
      mtd: spi-nor: Move Software Write Protection logic out of the core
      mtd: spi-nor: swp: Improve code around spi_nor_check_lock_status_sr()
      Revert "mtd: spi-nor: macronix: Add support for mx25l51245g"

Xiang Chen (1):
      mtd: spi-nor: core: Fix an issue of releasing resources during read/write

 MAINTAINERS                                       |   2 +
 drivers/mtd/spi-nor/Makefile                      |   2 +-
 drivers/mtd/spi-nor/controllers/intel-spi.c       |   1 -
 drivers/mtd/spi-nor/controllers/intel-spi.h       |   2 +-
 drivers/mtd/spi-nor/core.c                        | 478 ++++++-------------------------------------
 drivers/mtd/spi-nor/core.h                        |  69 ++++++-
 drivers/mtd/spi-nor/issi.c                        |   3 +-
 drivers/mtd/spi-nor/macronix.c                    |   6 +-
 drivers/mtd/spi-nor/otp.c                         | 376 ++++++++++++++++++++++++++++++++++
 drivers/mtd/spi-nor/sfdp.c                        |  72 +++----
 drivers/mtd/spi-nor/sfdp.h                        |   3 +-
 drivers/mtd/spi-nor/spansion.c                    |  12 +-
 drivers/mtd/spi-nor/swp.c                         | 427 ++++++++++++++++++++++++++++++++++++++
 drivers/mtd/spi-nor/winbond.c                     |  22 +-
 include/linux/mfd/lpc_ich.h                       |   2 +-
 include/linux/mtd/spi-nor.h                       |   8 +
 include/linux/platform_data/{ => x86}/intel-spi.h |   0
 17 files changed, 991 insertions(+), 494 deletions(-)
 create mode 100644 drivers/mtd/spi-nor/otp.c
 create mode 100644 drivers/mtd/spi-nor/swp.c
 rename include/linux/platform_data/{ => x86}/intel-spi.h (100%)

Comments

Richard Weinberger April 15, 2021, 7:14 p.m. UTC | #1
On Sun, Apr 11, 2021 at 10:16 AM <Tudor.Ambarus@microchip.com> wrote:
>
> Hi,
>
> This is the SPI NOR PR for v5.13.
> I would like to thank Michael and Pratyush for accepting to take more
> responsibilities in the SPI NOR subsystem. Your efforts are much
> appreciated. Welcome and good luck!
>
> Cheers,
> ta
>
> The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:
>
>   Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-5.13

Pulled, thanks!