linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] mtd: spi-nor: Changes for v5.13
@ 2021-04-11  8:06 Tudor.Ambarus
  2021-04-15 19:14 ` Richard Weinberger
  0 siblings, 1 reply; 2+ messages in thread
From: Tudor.Ambarus @ 2021-04-11  8:06 UTC (permalink / raw)
  To: richard, miquel.raynal, michael, p.yadav; +Cc: vigneshr, linux-mtd

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%)
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] mtd: spi-nor: Changes for v5.13
  2021-04-11  8:06 [GIT PULL] mtd: spi-nor: Changes for v5.13 Tudor.Ambarus
@ 2021-04-15 19:14 ` Richard Weinberger
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Weinberger @ 2021-04-15 19:14 UTC (permalink / raw)
  To: Tudor Ambarus
  Cc: Richard Weinberger, Miquel Raynal, michael, Pratyush Yadav,
	Vignesh Raghavendra, linux-mtd

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!

-- 
Thanks,
//richard

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-15 19:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-11  8:06 [GIT PULL] mtd: spi-nor: Changes for v5.13 Tudor.Ambarus
2021-04-15 19:14 ` Richard Weinberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).