All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Weinberger <richard@nod.at>
To: torvalds <torvalds@linux-foundation.org>
Cc: linux-mtd <linux-mtd@lists.infradead.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Miquel Raynal <miquel.raynal@bootlin.com>,
	Vignesh Raghavendra <vigneshr@ti.com>
Subject: [GIT PULL] MTD changes for 5.12
Date: Sun, 21 Feb 2021 21:02:04 +0100 (CET)	[thread overview]
Message-ID: <1860844222.14898.1613937724518.JavaMail.zimbra@nod.at> (raw)

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

WARNING: multiple messages have this Message-ID (diff)
From: Richard Weinberger <richard@nod.at>
To: torvalds <torvalds@linux-foundation.org>
Cc: Vignesh Raghavendra <vigneshr@ti.com>,
	linux-mtd <linux-mtd@lists.infradead.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Miquel Raynal <miquel.raynal@bootlin.com>
Subject: [GIT PULL] MTD changes for 5.12
Date: Sun, 21 Feb 2021 21:02:04 +0100 (CET)	[thread overview]
Message-ID: <1860844222.14898.1613937724518.JavaMail.zimbra@nod.at> (raw)

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

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

             reply	other threads:[~2021-02-21 20:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-21 20:02 Richard Weinberger [this message]
2021-02-21 20:02 ` [GIT PULL] MTD changes for 5.12 Richard Weinberger
2021-02-21 22:01 ` pr-tracker-bot
2021-02-21 22:01   ` pr-tracker-bot

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=1860844222.14898.1613937724518.JavaMail.zimbra@nod.at \
    --to=richard@nod.at \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=miquel.raynal@bootlin.com \
    --cc=torvalds@linux-foundation.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.