From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Miquel Raynal <miquel.raynal@bootlin.com>,
Robert Jarzmik <robert.jarzmik@free.fr>
Cc: Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Marek Vasut <marek.vasut@gmail.com>,
Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>,
devicetree@vger.kernel.org, Eric Miao <eric.y.miao@gmail.com>,
Antoine Tenart <antoine.tenart@bootlin.com>,
Gregory Clement <gregory.clement@bootlin.com>,
Haojian Zhuang <haojian.zhuang@gmail.com>,
Nadav Haklai <nadavh@marvell.com>,
linux-mtd@lists.infradead.org,
Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Daniel Mack <daniel@zonque.org>
Subject: Re: [PATCH v4 0/6] Use the reworked Marvell NAND controller with all boards
Date: Thu, 22 Feb 2018 10:39:26 +0100 [thread overview]
Message-ID: <20180222103926.40e98f62@bbrezillon> (raw)
In-Reply-To: <20180219223557.2458-1-miquel.raynal@bootlin.com>
Hi Robert,
On Mon, 19 Feb 2018 23:35:51 +0100
Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> Hello,
>
> Marvell NAND controller driver pxa3xx_nand has been replaced in 4.16 by
> a new driver featuring the new ->exec_op() interface called
> marvell_nand.
>
> These patches were part of a greater series that has been partially
> applied. Now that support for PXA boards looks stable, migrate all of
> them to use the new driver.
>
> To avoid risking compilation issues/broken bisection, I guess it would
> probably be better to make all these patches go through the MTD tree?
>
> Best regards,
> Miquèl
>
> Changes since v3:
> - Split the removal of pxa3xx_nand driver in two: one patch to migrate
> the defconfigs, another to remove the driver.
> - Acked-by/Tested-by from Robert Jarzmik.
>
>
> Miquel Raynal (6):
> mtd: nand: use Marvell reworked NAND controller driver with all
> platforms
> mtd: nand: remove deprecated pxa3xx_nand driver
> mtd: nand: remove useless fields from pxa3xx NAND platform data
> dt-bindings: mtd: remove pxa3xx NAND controller documentation
> arm: dts: pxa: use reworked NAND controller driver
> MAINTAINERS: remove entry for deleted pxa3xx_nand driver
I'm about to apply this series. Do you plan to add a few more acks or
is it okay?
>
> .../devicetree/bindings/mtd/pxa3xx-nand.txt | 50 -
> MAINTAINERS | 6 -
> arch/arm/boot/dts/pxa3xx.dtsi | 6 +-
> arch/arm/configs/cm_x300_defconfig | 2 +-
> arch/arm/configs/pxa3xx_defconfig | 3 +-
> arch/arm/configs/pxa_defconfig | 2 +-
> arch/arm/configs/raumfeld_defconfig | 2 +-
> arch/arm/mach-mmp/ttc_dkb.c | 4 +-
> arch/arm/mach-pxa/cm-x300.c | 8 +-
> arch/arm/mach-pxa/colibri-pxa3xx.c | 8 +-
> arch/arm/mach-pxa/colibri.h | 2 +-
> arch/arm/mach-pxa/littleton.c | 10 +-
> arch/arm/mach-pxa/mxm8x10.c | 10 +-
> arch/arm/mach-pxa/raumfeld.c | 6 +-
> arch/arm/mach-pxa/zylonite.c | 10 +-
> drivers/mtd/nand/raw/Kconfig | 11 -
> drivers/mtd/nand/raw/Makefile | 1 -
> drivers/mtd/nand/raw/marvell_nand.c | 3 +-
> drivers/mtd/nand/raw/pxa3xx_nand.c | 2103 --------------------
> include/linux/platform_data/mtd-nand-pxa3xx.h | 43 +-
> 20 files changed, 43 insertions(+), 2247 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt
> delete mode 100644 drivers/mtd/nand/raw/pxa3xx_nand.c
>
--
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
WARNING: multiple messages have this Message-ID (diff)
From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Miquel Raynal <miquel.raynal@bootlin.com>,
Robert Jarzmik <robert.jarzmik@free.fr>
Cc: devicetree@vger.kernel.org, Eric Miao <eric.y.miao@gmail.com>,
Antoine Tenart <antoine.tenart@bootlin.com>,
Richard Weinberger <richard@nod.at>,
Gregory Clement <gregory.clement@bootlin.com>,
Haojian Zhuang <haojian.zhuang@gmail.com>,
Nadav Haklai <nadavh@marvell.com>,
Marek Vasut <marek.vasut@gmail.com>,
linux-mtd@lists.infradead.org,
Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>,
Brian Norris <computersforpeace@gmail.com>,
David Woodhouse <dwmw2@infradead.org>,
Daniel Mack <daniel@zonque.org>
Subject: Re: [PATCH v4 0/6] Use the reworked Marvell NAND controller with all boards
Date: Thu, 22 Feb 2018 10:39:26 +0100 [thread overview]
Message-ID: <20180222103926.40e98f62@bbrezillon> (raw)
In-Reply-To: <20180219223557.2458-1-miquel.raynal@bootlin.com>
Hi Robert,
On Mon, 19 Feb 2018 23:35:51 +0100
Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> Hello,
>
> Marvell NAND controller driver pxa3xx_nand has been replaced in 4.16 by
> a new driver featuring the new ->exec_op() interface called
> marvell_nand.
>
> These patches were part of a greater series that has been partially
> applied. Now that support for PXA boards looks stable, migrate all of
> them to use the new driver.
>
> To avoid risking compilation issues/broken bisection, I guess it would
> probably be better to make all these patches go through the MTD tree?
>
> Best regards,
> Miquèl
>
> Changes since v3:
> - Split the removal of pxa3xx_nand driver in two: one patch to migrate
> the defconfigs, another to remove the driver.
> - Acked-by/Tested-by from Robert Jarzmik.
>
>
> Miquel Raynal (6):
> mtd: nand: use Marvell reworked NAND controller driver with all
> platforms
> mtd: nand: remove deprecated pxa3xx_nand driver
> mtd: nand: remove useless fields from pxa3xx NAND platform data
> dt-bindings: mtd: remove pxa3xx NAND controller documentation
> arm: dts: pxa: use reworked NAND controller driver
> MAINTAINERS: remove entry for deleted pxa3xx_nand driver
I'm about to apply this series. Do you plan to add a few more acks or
is it okay?
>
> .../devicetree/bindings/mtd/pxa3xx-nand.txt | 50 -
> MAINTAINERS | 6 -
> arch/arm/boot/dts/pxa3xx.dtsi | 6 +-
> arch/arm/configs/cm_x300_defconfig | 2 +-
> arch/arm/configs/pxa3xx_defconfig | 3 +-
> arch/arm/configs/pxa_defconfig | 2 +-
> arch/arm/configs/raumfeld_defconfig | 2 +-
> arch/arm/mach-mmp/ttc_dkb.c | 4 +-
> arch/arm/mach-pxa/cm-x300.c | 8 +-
> arch/arm/mach-pxa/colibri-pxa3xx.c | 8 +-
> arch/arm/mach-pxa/colibri.h | 2 +-
> arch/arm/mach-pxa/littleton.c | 10 +-
> arch/arm/mach-pxa/mxm8x10.c | 10 +-
> arch/arm/mach-pxa/raumfeld.c | 6 +-
> arch/arm/mach-pxa/zylonite.c | 10 +-
> drivers/mtd/nand/raw/Kconfig | 11 -
> drivers/mtd/nand/raw/Makefile | 1 -
> drivers/mtd/nand/raw/marvell_nand.c | 3 +-
> drivers/mtd/nand/raw/pxa3xx_nand.c | 2103 --------------------
> include/linux/platform_data/mtd-nand-pxa3xx.h | 43 +-
> 20 files changed, 43 insertions(+), 2247 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mtd/pxa3xx-nand.txt
> delete mode 100644 drivers/mtd/nand/raw/pxa3xx_nand.c
>
--
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
next prev parent reply other threads:[~2018-02-22 9:39 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-19 22:35 [PATCH v4 0/6] Use the reworked Marvell NAND controller with all boards Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-19 22:35 ` [PATCH v4 1/6] mtd: nand: use Marvell reworked NAND controller driver with all platforms Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-22 9:49 ` Boris Brezillon
2018-02-22 9:49 ` Boris Brezillon
2018-02-23 20:40 ` Robert Jarzmik
2018-02-23 20:40 ` Robert Jarzmik
2018-02-19 22:35 ` [PATCH v4 2/6] mtd: nand: remove deprecated pxa3xx_nand driver Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-19 22:35 ` [PATCH v4 3/6] mtd: nand: remove useless fields from pxa3xx NAND platform data Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-19 22:35 ` [PATCH v4 4/6] dt-bindings: mtd: remove pxa3xx NAND controller documentation Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-19 22:35 ` [PATCH v4 5/6] arm: dts: pxa: use reworked NAND controller driver Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-22 9:46 ` Boris Brezillon
2018-02-22 9:46 ` Boris Brezillon
2018-02-27 20:09 ` Robert Jarzmik
2018-02-27 20:09 ` Robert Jarzmik
2018-02-27 20:42 ` Boris Brezillon
2018-02-27 20:42 ` Boris Brezillon
2018-02-27 22:00 ` Robert Jarzmik
2018-02-27 22:00 ` Robert Jarzmik
2018-03-01 9:04 ` Miquel Raynal
2018-03-01 16:57 ` Boris Brezillon
2018-03-01 20:46 ` Robert Jarzmik
2018-03-05 17:46 ` Boris Brezillon
2018-02-19 22:35 ` [PATCH v4 6/6] MAINTAINERS: remove entry for deleted pxa3xx_nand driver Miquel Raynal
2018-02-19 22:35 ` Miquel Raynal
2018-02-22 9:39 ` Boris Brezillon [this message]
2018-02-22 9:39 ` [PATCH v4 0/6] Use the reworked Marvell NAND controller with all boards Boris Brezillon
2018-02-23 20:42 ` Robert Jarzmik
2018-02-23 20:42 ` Robert Jarzmik
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=20180222103926.40e98f62@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=antoine.tenart@bootlin.com \
--cc=computersforpeace@gmail.com \
--cc=cyrille.pitchen@wedev4u.fr \
--cc=daniel@zonque.org \
--cc=devicetree@vger.kernel.org \
--cc=dwmw2@infradead.org \
--cc=eric.y.miao@gmail.com \
--cc=ezequiel@vanguardiasur.com.ar \
--cc=gregory.clement@bootlin.com \
--cc=haojian.zhuang@gmail.com \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=nadavh@marvell.com \
--cc=richard@nod.at \
--cc=robert.jarzmik@free.fr \
--cc=thomas.petazzoni@bootlin.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.