All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
To: Jason Cooper <jason@lakedaemon.net>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
	devicetree@vger.kernel.org,
	Mike Turquette <mturquette@linaro.org>,
	Tawfik Bayouk <tawfik@marvell.com>, Andrew Lunn <andrew@lunn.ch>,
	Seif Mazareeb <seif@marvell.com>,
	Lior Amsalem <alior@marvell.com>,
	linux-mtd@lists.infradead.org,
	Gregory Clement <gregory.clement@free-electrons.com>,
	linux-arm-kernel@lists.infradead.org,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Subject: Re: [PATCH 0/6] Armada 380 NAND support
Date: Thu, 13 Mar 2014 16:25:13 -0300	[thread overview]
Message-ID: <20140313192513.GA25600@arch.cereza> (raw)
In-Reply-To: <20140313191925.GE7811@titan.lakedaemon.net>

On Mar 13, Jason Cooper wrote:
> Ezequiel,
> 
> On Wed, Mar 12, 2014 at 12:16:38PM -0300, Ezequiel Garcia wrote:
> > This patchset adds support for the NAND on Armada 380/385 SoCs.
> > 
> > The first patch adds a new "armada-380-corediv-clock" compatible
> > string, with its proper SoC-specific structure, adding the register
> > layout for this SoC family.
> > 
> > The second and third patches add the devicetree changes to support
> > the Core Divider clock.
> > 
> > After adding its clock source, the fourth and fifth patches add
> > the NAND devicetree changes. The NAND controller is compatible with
> > the Armada 370 controller, so we are currently support it using the
> > same compatible string.
> > 
> > The last patch updates the binding documentation for the Core Divider
> > clock, which is missing the information about the already supported
> > Armada 375 compatible string.
> > 
> > This series is based on linux-next 20140307. I expect it will apply
> > cleanly on v3.15-rc1; if that's not the case, I'll send a rebased patchset.
> > 
> > The clock and devicetree changes are mostly independent so they
> > can be merged through the clock and mvebu tree respectively.
> > 
> > Ezequiel Garcia (6):
> >   clk: mvebu: Support Armada 380 SoC on the core divider clock
> >   ARM: mvebu: Add a 2 GHz fixed-clock on Armada 38x SoCs
> >   ARM: mvebu: Add the Core Divider clock to Armada 38x SoCs
> >   ARM: mvebu: Add support for NAND controller in Armada 38x SoC
> >   ARM: mvebu: Enable NAND controller in Armada 385-DB
> >   clk: mvebu: Update binding documentation for the core divider clock
> > 
> >  .../bindings/clock/mvebu-corediv-clock.txt         |  5 ++++-
> >  arch/arm/boot/dts/armada-385-db.dts                | 21 ++++++++++++++++++
> >  arch/arm/boot/dts/armada-38x.dtsi                  | 25 ++++++++++++++++++++++
> >  drivers/clk/mvebu/clk-corediv.c                    | 23 ++++++++++++++++++++
> >  4 files changed, 73 insertions(+), 1 deletion(-)
> 
> This clock changes looks really clean and simple.  Mike says he has time
> for one more pull.  Can you fixup the s/nand/flash/ and resend?  I'd
> like to pull this and your fix in and possibly send a pull request for
> v3.15 tomorrow.
> 

Right away.

-- 
Ezequiel García, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com

WARNING: multiple messages have this Message-ID (diff)
From: ezequiel.garcia@free-electrons.com (Ezequiel Garcia)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] Armada 380 NAND support
Date: Thu, 13 Mar 2014 16:25:13 -0300	[thread overview]
Message-ID: <20140313192513.GA25600@arch.cereza> (raw)
In-Reply-To: <20140313191925.GE7811@titan.lakedaemon.net>

On Mar 13, Jason Cooper wrote:
> Ezequiel,
> 
> On Wed, Mar 12, 2014 at 12:16:38PM -0300, Ezequiel Garcia wrote:
> > This patchset adds support for the NAND on Armada 380/385 SoCs.
> > 
> > The first patch adds a new "armada-380-corediv-clock" compatible
> > string, with its proper SoC-specific structure, adding the register
> > layout for this SoC family.
> > 
> > The second and third patches add the devicetree changes to support
> > the Core Divider clock.
> > 
> > After adding its clock source, the fourth and fifth patches add
> > the NAND devicetree changes. The NAND controller is compatible with
> > the Armada 370 controller, so we are currently support it using the
> > same compatible string.
> > 
> > The last patch updates the binding documentation for the Core Divider
> > clock, which is missing the information about the already supported
> > Armada 375 compatible string.
> > 
> > This series is based on linux-next 20140307. I expect it will apply
> > cleanly on v3.15-rc1; if that's not the case, I'll send a rebased patchset.
> > 
> > The clock and devicetree changes are mostly independent so they
> > can be merged through the clock and mvebu tree respectively.
> > 
> > Ezequiel Garcia (6):
> >   clk: mvebu: Support Armada 380 SoC on the core divider clock
> >   ARM: mvebu: Add a 2 GHz fixed-clock on Armada 38x SoCs
> >   ARM: mvebu: Add the Core Divider clock to Armada 38x SoCs
> >   ARM: mvebu: Add support for NAND controller in Armada 38x SoC
> >   ARM: mvebu: Enable NAND controller in Armada 385-DB
> >   clk: mvebu: Update binding documentation for the core divider clock
> > 
> >  .../bindings/clock/mvebu-corediv-clock.txt         |  5 ++++-
> >  arch/arm/boot/dts/armada-385-db.dts                | 21 ++++++++++++++++++
> >  arch/arm/boot/dts/armada-38x.dtsi                  | 25 ++++++++++++++++++++++
> >  drivers/clk/mvebu/clk-corediv.c                    | 23 ++++++++++++++++++++
> >  4 files changed, 73 insertions(+), 1 deletion(-)
> 
> This clock changes looks really clean and simple.  Mike says he has time
> for one more pull.  Can you fixup the s/nand/flash/ and resend?  I'd
> like to pull this and your fix in and possibly send a pull request for
> v3.15 tomorrow.
> 

Right away.

-- 
Ezequiel Garc?a, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com

WARNING: multiple messages have this Message-ID (diff)
From: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
To: Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
Cc: Mike Turquette
	<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	Thomas Petazzoni
	<thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
	Gregory Clement
	<gregory.clement-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
	Tawfik Bayouk <tawfik-eYqpPyKDWXRBDgjK7y7TUQ@public.gmane.org>,
	Lior Amsalem <alior-eYqpPyKDWXRBDgjK7y7TUQ@public.gmane.org>,
	Sebastian Hesselbarth
	<sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>,
	Seif Mazareeb <seif-eYqpPyKDWXRBDgjK7y7TUQ@public.gmane.org>
Subject: Re: [PATCH 0/6] Armada 380 NAND support
Date: Thu, 13 Mar 2014 16:25:13 -0300	[thread overview]
Message-ID: <20140313192513.GA25600@arch.cereza> (raw)
In-Reply-To: <20140313191925.GE7811-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>

On Mar 13, Jason Cooper wrote:
> Ezequiel,
> 
> On Wed, Mar 12, 2014 at 12:16:38PM -0300, Ezequiel Garcia wrote:
> > This patchset adds support for the NAND on Armada 380/385 SoCs.
> > 
> > The first patch adds a new "armada-380-corediv-clock" compatible
> > string, with its proper SoC-specific structure, adding the register
> > layout for this SoC family.
> > 
> > The second and third patches add the devicetree changes to support
> > the Core Divider clock.
> > 
> > After adding its clock source, the fourth and fifth patches add
> > the NAND devicetree changes. The NAND controller is compatible with
> > the Armada 370 controller, so we are currently support it using the
> > same compatible string.
> > 
> > The last patch updates the binding documentation for the Core Divider
> > clock, which is missing the information about the already supported
> > Armada 375 compatible string.
> > 
> > This series is based on linux-next 20140307. I expect it will apply
> > cleanly on v3.15-rc1; if that's not the case, I'll send a rebased patchset.
> > 
> > The clock and devicetree changes are mostly independent so they
> > can be merged through the clock and mvebu tree respectively.
> > 
> > Ezequiel Garcia (6):
> >   clk: mvebu: Support Armada 380 SoC on the core divider clock
> >   ARM: mvebu: Add a 2 GHz fixed-clock on Armada 38x SoCs
> >   ARM: mvebu: Add the Core Divider clock to Armada 38x SoCs
> >   ARM: mvebu: Add support for NAND controller in Armada 38x SoC
> >   ARM: mvebu: Enable NAND controller in Armada 385-DB
> >   clk: mvebu: Update binding documentation for the core divider clock
> > 
> >  .../bindings/clock/mvebu-corediv-clock.txt         |  5 ++++-
> >  arch/arm/boot/dts/armada-385-db.dts                | 21 ++++++++++++++++++
> >  arch/arm/boot/dts/armada-38x.dtsi                  | 25 ++++++++++++++++++++++
> >  drivers/clk/mvebu/clk-corediv.c                    | 23 ++++++++++++++++++++
> >  4 files changed, 73 insertions(+), 1 deletion(-)
> 
> This clock changes looks really clean and simple.  Mike says he has time
> for one more pull.  Can you fixup the s/nand/flash/ and resend?  I'd
> like to pull this and your fix in and possibly send a pull request for
> v3.15 tomorrow.
> 

Right away.

-- 
Ezequiel García, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2014-03-13 19:25 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-12 15:16 [PATCH 0/6] Armada 380 NAND support Ezequiel Garcia
2014-03-12 15:16 ` Ezequiel Garcia
2014-03-12 15:16 ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 1/6] clk: mvebu: Support Armada 380 SoC on the core divider clock Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 2/6] ARM: mvebu: Add a 2 GHz fixed-clock on Armada 38x SoCs Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 3/6] ARM: mvebu: Add the Core Divider clock to " Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 4/6] ARM: mvebu: Add support for NAND controller in Armada 38x SoC Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 21:17   ` Sergei Shtylyov
2014-03-12 21:17     ` Sergei Shtylyov
2014-03-12 21:17     ` Sergei Shtylyov
2014-03-12 20:30     ` Ezequiel Garcia
2014-03-12 20:30       ` Ezequiel Garcia
2014-03-12 20:30       ` Ezequiel Garcia
2014-03-12 21:39       ` Sergei Shtylyov
2014-03-12 21:39         ` Sergei Shtylyov
2014-03-12 21:39         ` Sergei Shtylyov
2014-03-12 21:29         ` Ezequiel Garcia
2014-03-12 21:29           ` Ezequiel Garcia
2014-03-12 21:29           ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 5/6] ARM: mvebu: Enable NAND controller in Armada 385-DB Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16 ` [PATCH 6/6] clk: mvebu: Update binding documentation for the core divider clock Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-12 15:16   ` Ezequiel Garcia
2014-03-13 19:19 ` [PATCH 0/6] Armada 380 NAND support Jason Cooper
2014-03-13 19:19   ` Jason Cooper
2014-03-13 19:19   ` Jason Cooper
2014-03-13 19:25   ` Ezequiel Garcia [this message]
2014-03-13 19:25     ` Ezequiel Garcia
2014-03-13 19:25     ` Ezequiel Garcia

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=20140313192513.GA25600@arch.cereza \
    --to=ezequiel.garcia@free-electrons.com \
    --cc=alior@marvell.com \
    --cc=andrew@lunn.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@free-electrons.com \
    --cc=jason@lakedaemon.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=mturquette@linaro.org \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=seif@marvell.com \
    --cc=tawfik@marvell.com \
    --cc=thomas.petazzoni@free-electrons.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.