* mtd: spi-nor: Changes for v5.14
@ 2021-06-25 6:47 Vignesh Raghavendra
2021-06-30 11:07 ` Miquel Raynal
0 siblings, 1 reply; 2+ messages in thread
From: Vignesh Raghavendra @ 2021-06-25 6:47 UTC (permalink / raw)
To: Richard Weinberger
Cc: linux-mtd@lists.infradead.org, Yadav, Pratyush, Michael Walle,
Miquel Raynal, Tudor Ambarus
Hi Richard,
This is the SPI NOR PR for v5.14.
Regards
Vignesh
The following changes since commit c4681547bcce777daf576925a966ffa824edd09d:
Linux 5.13-rc3 (2021-05-23 11:42:48 -1000)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-5.14
for you to fetch changes up to c17e5c85b32f8809135f3211ba2525fb98b5c09f:
mtd: spi-nor: remove redundant continue statement (2021-06-21 11:17:10 +0530)
----------------------------------------------------------------
SPI NOR core changes:
- Ability to dump SFDP tables via sysfs
- Support for erasing OTP regions on Winbond and similar flashes
- Few API doc updates and fixes
- Locking support for MX25L12805D
SPI NOR controller drivers changes:
- Use SPI_MODE_X_MASK in nxp-spifi
- Intel Alder Lake-M SPI serial flash support
----------------------------------------------------------------
Andy Shevchenko (1):
mtd: spi-nor: nxp-spifi: Use SPI_MODE_X_MASK
Colin Ian King (1):
mtd: spi-nor: remove redundant continue statement
David Bauer (1):
mtd: spi-nor: enable locking support for MX25L12805D
Michael Walle (7):
mtd: spi-nor: otp: fix kerneldoc typos
mtd: spi-nor: otp: fix access to security registers in 4 byte mode
mtd: spi-nor: otp: use more consistent wording
mtd: spi-nor: otp: return -EROFS if region is read-only
mtd: spi-nor: otp: implement erase for Winbond and similar flashes
mtd: spi-nor: sfdp: save a copy of the SFDP data
mtd: spi-nor: add initial sysfs support
Mika Westerberg (1):
mtd: spi-nor: intel-spi: Add support for Intel Alder Lake-M SPI serial flash
Pratyush Yadav (1):
mtd: spi-nor: Add documentation for spi_nor_soft_reset()
Tudor Ambarus (1):
mtd: spi-nor: macronix: Fix name for mx66l51235f
Documentation/ABI/testing/sysfs-bus-spi-devices-spi-nor | 31 ++
drivers/mtd/spi-nor/Makefile | 2 +-
drivers/mtd/spi-nor/controllers/intel-spi-pci.c | 1 +
drivers/mtd/spi-nor/controllers/nxp-spifi.c | 2 +-
drivers/mtd/spi-nor/core.c | 22 +-
drivers/mtd/spi-nor/core.h | 16 +
drivers/mtd/spi-nor/macronix.c | 5 +-
drivers/mtd/spi-nor/otp.c | 160 +++++++++-
drivers/mtd/spi-nor/sfdp.c | 58 ++++
drivers/mtd/spi-nor/sysfs.c | 93 ++++++
drivers/mtd/spi-nor/winbond.c | 1 +
include/linux/mtd/spi-nor.h | 2 +
12 files changed, 370 insertions(+), 23 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-bus-spi-devices-spi-nor
create mode 100644 drivers/mtd/spi-nor/sysfs.c
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: mtd: spi-nor: Changes for v5.14
2021-06-25 6:47 mtd: spi-nor: Changes for v5.14 Vignesh Raghavendra
@ 2021-06-30 11:07 ` Miquel Raynal
0 siblings, 0 replies; 2+ messages in thread
From: Miquel Raynal @ 2021-06-30 11:07 UTC (permalink / raw)
To: Vignesh Raghavendra
Cc: Richard Weinberger, linux-mtd@lists.infradead.org,
Yadav, Pratyush, Michael Walle, Tudor Ambarus
Hi Vignesh,
Vignesh Raghavendra <vigneshr@ti.com> wrote on Fri, 25 Jun 2021
12:17:36 +0530:
> Hi Richard,
>
> This is the SPI NOR PR for v5.14.
>
> Regards
> Vignesh
>
>
> The following changes since commit c4681547bcce777daf576925a966ffa824edd09d:
>
> Linux 5.13-rc3 (2021-05-23 11:42:48 -1000)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/spi-nor/for-5.14
>
> for you to fetch changes up to c17e5c85b32f8809135f3211ba2525fb98b5c09f:
>
> mtd: spi-nor: remove redundant continue statement (2021-06-21 11:17:10 +0530)
>
> ----------------------------------------------------------------
> SPI NOR core changes:
> - Ability to dump SFDP tables via sysfs
> - Support for erasing OTP regions on Winbond and similar flashes
> - Few API doc updates and fixes
> - Locking support for MX25L12805D
>
> SPI NOR controller drivers changes:
> - Use SPI_MODE_X_MASK in nxp-spifi
> - Intel Alder Lake-M SPI serial flash support
>
> ----------------------------------------------------------------
> Andy Shevchenko (1):
> mtd: spi-nor: nxp-spifi: Use SPI_MODE_X_MASK
>
> Colin Ian King (1):
> mtd: spi-nor: remove redundant continue statement
>
> David Bauer (1):
> mtd: spi-nor: enable locking support for MX25L12805D
>
> Michael Walle (7):
> mtd: spi-nor: otp: fix kerneldoc typos
> mtd: spi-nor: otp: fix access to security registers in 4 byte mode
> mtd: spi-nor: otp: use more consistent wording
> mtd: spi-nor: otp: return -EROFS if region is read-only
> mtd: spi-nor: otp: implement erase for Winbond and similar flashes
> mtd: spi-nor: sfdp: save a copy of the SFDP data
> mtd: spi-nor: add initial sysfs support
>
> Mika Westerberg (1):
> mtd: spi-nor: intel-spi: Add support for Intel Alder Lake-M SPI serial flash
>
> Pratyush Yadav (1):
> mtd: spi-nor: Add documentation for spi_nor_soft_reset()
>
> Tudor Ambarus (1):
> mtd: spi-nor: macronix: Fix name for mx66l51235f
>
> Documentation/ABI/testing/sysfs-bus-spi-devices-spi-nor | 31 ++
> drivers/mtd/spi-nor/Makefile | 2 +-
> drivers/mtd/spi-nor/controllers/intel-spi-pci.c | 1 +
> drivers/mtd/spi-nor/controllers/nxp-spifi.c | 2 +-
> drivers/mtd/spi-nor/core.c | 22 +-
> drivers/mtd/spi-nor/core.h | 16 +
> drivers/mtd/spi-nor/macronix.c | 5 +-
> drivers/mtd/spi-nor/otp.c | 160 +++++++++-
> drivers/mtd/spi-nor/sfdp.c | 58 ++++
> drivers/mtd/spi-nor/sysfs.c | 93 ++++++
> drivers/mtd/spi-nor/winbond.c | 1 +
> include/linux/mtd/spi-nor.h | 2 +
> 12 files changed, 370 insertions(+), 23 deletions(-)
> create mode 100644 Documentation/ABI/testing/sysfs-bus-spi-devices-spi-nor
> create mode 100644 drivers/mtd/spi-nor/sysfs.c
Pulled into mtd/next, thanks!
Miquèl
______________________________________________________
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-06-30 11:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-25 6:47 mtd: spi-nor: Changes for v5.14 Vignesh Raghavendra
2021-06-30 11:07 ` Miquel Raynal
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).