From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv2 0/6] Add a driver for the atmel ram controller
Date: Tue, 8 Jul 2014 18:39:25 +0200 [thread overview]
Message-ID: <53BC1EBD.3030306@atmel.com> (raw)
In-Reply-To: <1404836476-23787-1-git-send-email-alexandre.belloni@free-electrons.com>
On 08/07/2014 18:21, Alexandre Belloni :
> The atmel ram controller needs one or more clocks to work. For now the
> CLK_IGNORE_UNUSED flag is used on those clocks. This patch set introduce a
> driver that will take care of taking those clocks.
>
> The final goal is also to move the ioremap done in mach-at91 to that driver with
> a proper power management driver.
Yes, okay for that series:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Changes in v2:
> - use ATMEL_SDRAMC instead of ATMEL_RAMC
> - use "atmel,sama5d3-ddramc" instead of "atmel,sama5d3-mpddramc"
> - not getting mpddrck is now an error
> - handle "atmel,sama5d3-ddramc" in mach-at91/setup.c
>
> Alexandre Belloni (6):
> ARM: at91: Add new binding for sama5d3-ddramc
> memory: add a driver for atmel ram controllers
> ARM: at91: select ATMEL_SDRAMC when using OF
> ARM: at91/dt: sama5d3: define mpddr clock and ramc clocks
> ARM: at91/dt: at91sam9: use ddrck in ramc
> clk: at91: remove the useless CLK_IGNORE_UNUSED flag
>
> .../devicetree/bindings/arm/atmel-at91.txt | 1 +
> arch/arm/boot/dts/at91sam9n12.dtsi | 2 +
> arch/arm/boot/dts/at91sam9x5.dtsi | 2 +
> arch/arm/boot/dts/sama5d3.dtsi | 9 +-
> arch/arm/mach-at91/Kconfig | 4 +
> arch/arm/mach-at91/setup.c | 1 +
> drivers/clk/at91/clk-system.c | 8 +-
> drivers/memory/Kconfig | 10 +++
> drivers/memory/Makefile | 1 +
> drivers/memory/atmel-sdramc.c | 98 ++++++++++++++++++++++
> 10 files changed, 128 insertions(+), 8 deletions(-)
> create mode 100644 drivers/memory/atmel-sdramc.c
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
Boris Brezillon <boris.brezillon@free-electrons.com>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCHv2 0/6] Add a driver for the atmel ram controller
Date: Tue, 8 Jul 2014 18:39:25 +0200 [thread overview]
Message-ID: <53BC1EBD.3030306@atmel.com> (raw)
In-Reply-To: <1404836476-23787-1-git-send-email-alexandre.belloni@free-electrons.com>
On 08/07/2014 18:21, Alexandre Belloni :
> The atmel ram controller needs one or more clocks to work. For now the
> CLK_IGNORE_UNUSED flag is used on those clocks. This patch set introduce a
> driver that will take care of taking those clocks.
>
> The final goal is also to move the ioremap done in mach-at91 to that driver with
> a proper power management driver.
Yes, okay for that series:
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Changes in v2:
> - use ATMEL_SDRAMC instead of ATMEL_RAMC
> - use "atmel,sama5d3-ddramc" instead of "atmel,sama5d3-mpddramc"
> - not getting mpddrck is now an error
> - handle "atmel,sama5d3-ddramc" in mach-at91/setup.c
>
> Alexandre Belloni (6):
> ARM: at91: Add new binding for sama5d3-ddramc
> memory: add a driver for atmel ram controllers
> ARM: at91: select ATMEL_SDRAMC when using OF
> ARM: at91/dt: sama5d3: define mpddr clock and ramc clocks
> ARM: at91/dt: at91sam9: use ddrck in ramc
> clk: at91: remove the useless CLK_IGNORE_UNUSED flag
>
> .../devicetree/bindings/arm/atmel-at91.txt | 1 +
> arch/arm/boot/dts/at91sam9n12.dtsi | 2 +
> arch/arm/boot/dts/at91sam9x5.dtsi | 2 +
> arch/arm/boot/dts/sama5d3.dtsi | 9 +-
> arch/arm/mach-at91/Kconfig | 4 +
> arch/arm/mach-at91/setup.c | 1 +
> drivers/clk/at91/clk-system.c | 8 +-
> drivers/memory/Kconfig | 10 +++
> drivers/memory/Makefile | 1 +
> drivers/memory/atmel-sdramc.c | 98 ++++++++++++++++++++++
> 10 files changed, 128 insertions(+), 8 deletions(-)
> create mode 100644 drivers/memory/atmel-sdramc.c
>
--
Nicolas Ferre
next prev parent reply other threads:[~2014-07-08 16:39 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-08 16:21 [PATCHv2 0/6] Add a driver for the atmel ram controller Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 1/6] ARM: at91: Add new binding for sama5d3-ddramc Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 2/6] memory: add a driver for atmel ram controllers Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 3/6] ARM: at91: select ATMEL_SDRAMC when using OF Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 4/6] ARM: at91/dt: sama5d3: define mpddr clock and ramc clocks Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 5/6] ARM: at91/dt: at91sam9: use ddrck in ramc Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:21 ` [PATCHv2 6/6] clk: at91: remove the useless CLK_IGNORE_UNUSED flag Alexandre Belloni
2014-07-08 16:21 ` Alexandre Belloni
2014-07-08 16:39 ` Nicolas Ferre [this message]
2014-07-08 16:39 ` [PATCHv2 0/6] Add a driver for the atmel ram controller Nicolas Ferre
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=53BC1EBD.3030306@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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.