devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Yogesh Narayan Gaur <yogeshnarayan.gaur@nxp.com>
Cc: "linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
	"marek.vasut@gmail.com" <marek.vasut@gmail.com>,
	"linux-spi@vger.kernel.org" <linux-spi@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Mark Brown <broonie@kernel.org>,
	"robh@kernel.org" <robh@kernel.org>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"shawnguo@kernel.org" <shawnguo@kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"computersforpeace@gmail.com" <computersforpeace@gmail.com>,
	"frieder.schrempf@exceet.de" <frieder.schrempf@exceet.de>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 0/5] spi: spi-mem: Add driver for NXP FlexSPI controller
Date: Mon, 22 Oct 2018 13:50:15 +0200	[thread overview]
Message-ID: <20181022135015.1b13cdbd@bbrezillon> (raw)
In-Reply-To: <VI1PR04MB1038034CFABEE936C6892D7D99F40@VI1PR04MB1038.eurprd04.prod.outlook.com>

On Mon, 22 Oct 2018 11:43:40 +0000
Yogesh Narayan Gaur <yogeshnarayan.gaur@nxp.com> wrote:

> + Mark Brown
> 
> Complete patch series[1]
> [1] https://patchwork.ozlabs.org/project/linux-mtd/list/?series=70210

Please resend the patch series with a "PATCH RESEND v4" prefix and
explain why you resend it in the cover letter.

> 
> --
> Regards,
> Yogesh Gaur
> 
> > -----Original Message-----
> > From: Yogesh Narayan Gaur [mailto:yogeshnarayan.gaur@nxp.com]
> > Sent: Thursday, October 11, 2018 4:30 PM
> > To: linux-mtd@lists.infradead.org; boris.brezillon@bootlin.com;
> > marek.vasut@gmail.com; linux-spi@vger.kernel.org;
> > devicetree@vger.kernel.org
> > Cc: robh@kernel.org; mark.rutland@arm.com; shawnguo@kernel.org; linux-
> > arm-kernel@lists.infradead.org; computersforpeace@gmail.com;
> > frieder.schrempf@exceet.de; linux-kernel@vger.kernel.org; Yogesh Narayan
> > Gaur <yogeshnarayan.gaur@nxp.com>
> > Subject: [PATCH v4 0/5] spi: spi-mem: Add driver for NXP FlexSPI controller
> > 
> > - Add driver for NXP FlexSPI host controller
> > 
> >  FlexSPI is a flexsible SPI host controller [1], Chapter 30 page 1475,  which
> > supports two SPI channels and up to 4 external devices.
> >  Each channel supports Single/Dual/Quad/Octal mode data transfer (1/2/4/8
> > bidirectional data lines)  i.e. FlexSPI acts as an interface to external devices,
> > maximum 4, each with up to 8  bidirectional data lines.
> > 
> > - Tested this driver with mtd_debug(Erase/Write/Read) utility and JFFS2
> > filesystem mounting and booting on NXP LX2160ARDB[2] and LX2160AQDS
> > targets.
> >  LX2160ARDB is having two NOR slave device connected on single bus A  i.e. A0
> > and A1 (CS0 and CS1).
> >  LX2160AQDS is having two NOR slave device connected on separate buses  one
> > flash on A0 and second on B1 i.e. (CS0 and CS3).
> >  Verified this driver on following SPI NOR flashes:
> >    Micron, mt35xu512aba[3], [Read - 1 bit mode]
> >    Cypress, s25fl512s, [Read - 1/2/4 bit mode]
> > 
> > [1] https://www.nxp.com/docs/en/reference-manual/IMXRT1050RM.pdf
> > [2] https://patchwork.kernel.org/project/linux-arm-kernel/list/?series=26689
> > [3] https://patchwork.ozlabs.org/project/linux-mtd/list/?series=70179
> > 
> > Yogesh Gaur (5):
> >   spi: spi-mem: Add driver for NXP FlexSPI controller
> >   dt-bindings: spi: add binding file for NXP FlexSPI controller
> >   arm64: dts: lx2160a: add FlexSPI node property
> >   arm64: defconfig: enable NXP FlexSPI driver
> >   MAINTAINERS: add maintainers for the NXP FlexSPI driver
> > 
> > Changes for v4:
> > - Incorporated review comments for
> >   patch 'spi: spi-mem: Add driver for NXP FlexSPI controller'.
> > - Incorporated binding file review comments.
> > Changes for v3:
> > - Incorporated review comments for
> >   patch 'spi: spi-mem: Add driver for NXP FlexSPI controller'.
> > Changes for v2:
> > - Incorporated Boris review comments and drop below patches as per the
> > comments.
> >  - Patch 'spi: add slave device size in spi_device struct'
> >  - Patch 'spi: add flags for octal I/O data transfer'
> > - Incorporated DTS and Binding file review comments of Shawn Guo and Rob
> > Herring.
> > 
> >  .../devicetree/bindings/spi/spi-nxp-fspi.txt       |   39 +
> >  MAINTAINERS                                        |    6 +
> >  arch/arm64/boot/dts/freescale/fsl-lx2160a-rdb.dts  |   22 +
> >  arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi     |   12 +
> >  arch/arm64/configs/defconfig                       |    1 +
> >  drivers/spi/Kconfig                                |   10 +
> >  drivers/spi/Makefile                               |    1 +
> >  drivers/spi/spi-nxp-fspi.c                         | 1158 ++++++++++++++++++++
> >  8 files changed, 1249 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
> >  create mode 100644 drivers/spi/spi-nxp-fspi.c
> > 
> > --
> > 2.7.4  
> 

  reply	other threads:[~2018-10-22 11:50 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-11 11:00 [PATCH v4 0/5] spi: spi-mem: Add driver for NXP FlexSPI controller Yogesh Narayan Gaur
2018-10-11 11:00 ` [PATCH v4 1/5] " Yogesh Narayan Gaur
2018-10-11 11:00 ` [PATCH v4 2/5] dt-bindings: spi: add binding file " Yogesh Narayan Gaur
2018-10-11 22:17   ` Rob Herring
2018-10-11 11:00 ` [PATCH v4 3/5] arm64: dts: lx2160a: add FlexSPI node property Yogesh Narayan Gaur
2018-10-11 11:00 ` [PATCH v4 4/5] arm64: defconfig: enable NXP FlexSPI driver Yogesh Narayan Gaur
2018-10-11 11:00 ` [PATCH 5/5] MAINTAINERS: add maintainers for the " Yogesh Narayan Gaur
2018-10-22 11:43 ` [PATCH v4 0/5] spi: spi-mem: Add driver for NXP FlexSPI controller Yogesh Narayan Gaur
2018-10-22 11:50   ` Boris Brezillon [this message]
2018-10-22 11:51     ` Yogesh Narayan Gaur
  -- strict thread matches above, loose matches on Subject: below --
2018-10-08 11:11 Yogesh Gaur

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=20181022135015.1b13cdbd@bbrezillon \
    --to=boris.brezillon@bootlin.com \
    --cc=broonie@kernel.org \
    --cc=computersforpeace@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=frieder.schrempf@exceet.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=marek.vasut@gmail.com \
    --cc=mark.rutland@arm.com \
    --cc=robh@kernel.org \
    --cc=shawnguo@kernel.org \
    --cc=yogeshnarayan.gaur@nxp.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 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).