linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] MTD changes for 5.12
@ 2021-02-21 20:02 Richard Weinberger
  2021-02-21 22:01 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Weinberger @ 2021-02-21 20:02 UTC (permalink / raw)
  To: torvalds; +Cc: linux-mtd, linux-kernel, Miquel Raynal, Vignesh Raghavendra

Linus,

The following changes since commit 19c329f6808995b142b3966301f217c831e7cf31:

  Linux 5.11-rc4 (2021-01-17 16:37:05 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 6e9dff6fe3fbc452f16566e4a7e293b0decefdba:

  dt-bindings: mtd: add binding for BCM4908 partitions (2021-02-12 22:24:48 +0100)

----------------------------------------------------------------
MTD core changes:
* Initial support for BCM4908 partitions

Raw NAND controller drivers:
* Intel: Fix an error handling path in 'ebu_dma_start()'
* Tango: Remove the driver
* Marvell: Convert comma to semicolon
* MXC: Convert comma to semicolon
* Qcom: Add support for Qcom SMEM parser

Related MTD changes:
* parsers: Add Qcom SMEM parser

SPI NOR core changes:
* Add non-uniform erase fixes.
* Add Global Block Unlock command. It is defined by few flash
 vendors, and it is used for now just by sst.

SPI NOR controller drivers changes:
* intel-spi: Add support for Intel Alder Lake-P SPI serial flash.
* hisi-sfc: Put child node np on error path.

----------------------------------------------------------------
Arnd Bergmann (1):
      mtd: rawnand: tango: Remove the driver

Christophe JAILLET (1):
      mtd: rawnand: intel: Fix an error handling path in 'ebu_dma_start()'

Colin Ian King (1):
      mtd: remove redundant assignment to pointer eb

Dan Carpenter (1):
      mtd: parser: imagetag: fix error codes in bcm963xx_parse_imagetag_partitions()

Manivannan Sadhasivam (4):
      dt-bindings: mtd: partitions: Add binding for Qcom SMEM parser
      mtd: parsers: Add Qcom SMEM parser
      mtd: rawnand: qcom: Add support for Qcom SMEM parser
      mtd: parsers: afs: Fix freeing the part name memory in failure

Mika Westerberg (1):
      mtd: spi-nor: intel-spi: Add support for Intel Alder Lake-P SPI serial flash

Pan Bian (1):
      mtd: spi-nor: hisi-sfc: Put child node np on error path

Rafał Miłecki (2):
      dt-bindings: mtd: move partition binding to its own file
      dt-bindings: mtd: add binding for BCM4908 partitions

Richard Weinberger (2):
      Merge tag 'nand/for-5.12' of git://git.kernel.org/.../mtd/linux into mtd/next
      Merge tag 'spi-nor/for-5.12' of git://git.kernel.org/.../mtd/linux into mtd/next

Takahiro Kuwano (4):
      mtd: spi-nor: sfdp: Fix wrong erase type bitmask for overlaid region
      mtd: spi-nor: sfdp: Fix last erase region marking
      mtd: spi-nor: core: Fix erase type discovery for overlaid region
      mtd: spi-nor: core: Add erase size check for erase command initialization

Tudor Ambarus (2):
      mtd: spi-nor: Add Global Block Unlock command
      mtd: spi-nor: sst: Add support for Global Unlock on sst26vf

Zheng Yongjun (4):
      mtd: rawnand: mxc: Convert comma to semicolon
      mtd: convert comma to semicolon
      mtd: st_spi_fsm: convert comma to semicolon
      mtd: rawnand: marvell: convert comma to semicolon

yangerkun (1):
      mtd: phram: use div_u64_rem to stop overwrite len in phram_setup

 .../mtd/partitions/brcm,bcm4908-partitions.yaml    |  70 ++
 .../bindings/mtd/partitions/fixed-partitions.yaml  |  33 +-
 .../bindings/mtd/partitions/partition.yaml         |  47 ++
 .../bindings/mtd/partitions/qcom,smem-part.yaml    |  33 +
 drivers/mtd/devices/phram.c                        |   6 +-
 drivers/mtd/devices/st_spi_fsm.c                   |   2 +-
 drivers/mtd/maps/pci.c                             |   8 +-
 drivers/mtd/mtdswap.c                              |   1 -
 drivers/mtd/nand/raw/Kconfig                       |   7 -
 drivers/mtd/nand/raw/Makefile                      |   1 -
 drivers/mtd/nand/raw/intel-nand-controller.c       |   6 +-
 drivers/mtd/nand/raw/marvell_nand.c                |   2 +-
 drivers/mtd/nand/raw/mxc_nand.c                    |   2 +-
 drivers/mtd/nand/raw/qcom_nandc.c                  |   4 +-
 drivers/mtd/nand/raw/tango_nand.c                  | 727 ---------------------
 drivers/mtd/parsers/Kconfig                        |   8 +
 drivers/mtd/parsers/Makefile                       |   1 +
 drivers/mtd/parsers/afs.c                          |   4 +-
 drivers/mtd/parsers/parser_imagetag.c              |   4 +
 drivers/mtd/parsers/qcomsmempart.c                 | 170 +++++
 drivers/mtd/spi-nor/controllers/hisi-sfc.c         |   4 +-
 drivers/mtd/spi-nor/controllers/intel-spi-pci.c    |   1 +
 drivers/mtd/spi-nor/core.c                         |  49 +-
 drivers/mtd/spi-nor/core.h                         |   2 +
 drivers/mtd/spi-nor/sfdp.c                         |   5 +-
 drivers/mtd/spi-nor/sst.c                          |  52 +-
 include/linux/mtd/spi-nor.h                        |   1 +
 27 files changed, 457 insertions(+), 793 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mtd/partitions/brcm,bcm4908-partitions.yaml
 create mode 100644 Documentation/devicetree/bindings/mtd/partitions/partition.yaml
 create mode 100644 Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
 delete mode 100644 drivers/mtd/nand/raw/tango_nand.c
 create mode 100644 drivers/mtd/parsers/qcomsmempart.c

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

* Re: [GIT PULL] MTD changes for 5.12
  2021-02-21 20:02 [GIT PULL] MTD changes for 5.12 Richard Weinberger
@ 2021-02-21 22:01 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-02-21 22:01 UTC (permalink / raw)
  To: Richard Weinberger
  Cc: torvalds, Vignesh Raghavendra, linux-mtd, linux-kernel, Miquel Raynal

The pull request you sent on Sun, 21 Feb 2021 21:02:04 +0100 (CET):

> git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/for-5.12

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/69e9b12a27a1b2d099e528928162428df4d6e93f

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2021-02-21 22:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-21 20:02 [GIT PULL] MTD changes for 5.12 Richard Weinberger
2021-02-21 22:01 ` pr-tracker-bot

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).