From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 00/12] CCF support for Renesas r7s72100
Date: Fri, 07 Mar 2014 17:14:01 +0100 [thread overview]
Message-ID: <2368991.bjBJjms8qn@avalon> (raw)
In-Reply-To: <1394208048-32495-1-git-send-email-wsa@the-dreams.de>
Hi Wolfram,
Thank you for the patches.
Beside the comment to patch 06/12, I would have moved patches 06/12 to 08/12
to the beginning of the series, in order to avoid adding a clock workaround
for the serial clock only to remove it a couple of patches later.
Oh, and one might ask you to fix the 80 columns checkpatch warnings for patch
01/12 :-)
On Friday 07 March 2014 17:00:36 Wolfram Sang wrote:
> This series moves the r7s72100 platfrom from the legacy clock implementation
> to the common clock framework.
>
> This series has been tested with the renesas-devel-v3.14-rc5-20140307v2 tag.
> If you want to boot into a console, you have a runtime dependency [1].
>
> Patches 1-5 is the minimal set to activate CCF and get the board booting
> into a console. Patches 6-8 add SCIF support, 9+10 I2C support, and 11+12
> SPI support.
>
> Changes since V2:
>
> Patches 1+3 got updates, patch 12 was not send out last time due to sendmail
> error.
>
> Patch 1 should probably go via clock tree (it has no dependencies). The rest
> via shmobile. Please apply.
>
> Wolfram
>
> PS: A tree can be found here with this series only:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/r7s-ccf
>
> And here with a quick hack to make the system bootable:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
> renesas/r7s-ccf-bootable
>
> [1] http://lkml.org/lkml/2014/2/20/205 ([PATCH V7 0/3] clocksource:
> Consolidate SH and ARM mach-shmobile Kconfig bits)
>
>
> Wolfram Sang (12):
> clk: shmobile: add CPG driver for rz-platforms
> ARM: shmobile: r7s72100: document MSTP clock support
> ARM: shmobile: r7s72100: add essential clock nodes to dtsi
> ARM: shmobile: r7s72100: genmai: populate nodes for external clocks
> ARM: shmobile: r7s72100: use workaround for non DT-clocks
> ARM: shmobile: r7s72100: add scif nodes to dtsi
> ARM: shmobile: r7s72100: genmai: activate scif2 for console output
> ARM: shmobile: r7s72100: genmai: platform scif devices only for legacy
> support
> ARM: shmobile: r7s72100: add i2c clocks to dtsi
> ARM: shmobile: r7s72100: remove I2C DT clocks from legacy clock
> support
> ARM: shmobile: r7s72100: add spi clocks to dtsi
> ARM: shmobile: r7s72100: remove SPI DT clocks from legacy clock
> support
>
> .../bindings/clock/renesas,cpg-mstp-clocks.txt | 1 +
> .../bindings/clock/renesas,rz-cpg-clocks.txt | 29 +++
> arch/arm/boot/dts/r7s72100-genmai-reference.dts | 12 ++
> arch/arm/boot/dts/r7s72100.dtsi | 223
> ++++++++++++++++++++- arch/arm/mach-shmobile/board-genmai-reference.c |
> 14 +-
> arch/arm/mach-shmobile/board-genmai.c | 44 ++++
> arch/arm/mach-shmobile/clock-r7s72100.c | 9 -
> arch/arm/mach-shmobile/setup-r7s72100.c | 43 ----
> drivers/clk/shmobile/Makefile | 1 +
> drivers/clk/shmobile/clk-rz.c | 103 ++++++++++
> include/dt-bindings/clock/r7s72100-clock.h | 40 ++++
> 11 files changed, 464 insertions(+), 55 deletions(-)
> create mode 100644
> Documentation/devicetree/bindings/clock/renesas,rz-cpg-clocks.txt create
> mode 100644 drivers/clk/shmobile/clk-rz.c
> create mode 100644 include/dt-bindings/clock/r7s72100-clock.h
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2014-03-07 16:14 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-07 16:00 [PATCH V3 00/12] CCF support for Renesas r7s72100 Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 01/12] clk: shmobile: add CPG driver for rz-platforms Wolfram Sang
2014-03-21 1:26 ` Mike Turquette
2014-03-07 16:00 ` [PATCH V3 02/12] ARM: shmobile: r7s72100: document MSTP clock support Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 03/12] ARM: shmobile: r7s72100: add essential clock nodes to dtsi Wolfram Sang
2014-03-07 16:22 ` Ben Dooks
2014-03-07 16:33 ` Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 04/12] ARM: shmobile: r7s72100: genmai: populate nodes for external clocks Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 05/12] ARM: shmobile: r7s72100: use workaround for non DT-clocks Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 06/12] ARM: shmobile: r7s72100: add scif nodes to dtsi Wolfram Sang
2014-03-07 16:13 ` Laurent Pinchart
2014-03-07 16:25 ` Wolfram Sang
2014-03-07 16:37 ` Laurent Pinchart
2014-03-07 16:44 ` Wolfram Sang
2014-03-07 16:48 ` Laurent Pinchart
2014-03-07 16:48 ` Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 07/12] ARM: shmobile: r7s72100: genmai: activate scif2 for console output Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 08/12] ARM: shmobile: r7s72100: genmai: platform scif devices only for legacy support Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 09/12] ARM: shmobile: r7s72100: add i2c clocks to dtsi Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 10/12] ARM: shmobile: r7s72100: remove I2C DT clocks from legacy clock support Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 11/12] ARM: shmobile: r7s72100: add spi clocks to dtsi Wolfram Sang
2014-03-07 16:00 ` [PATCH V3 12/12] ARM: shmobile: r7s72100: remove SPI DT clocks from legacy clock support Wolfram Sang
2014-03-07 16:14 ` Laurent Pinchart [this message]
2014-03-07 16:29 ` [PATCH V3 00/12] CCF support for Renesas r7s72100 Wolfram Sang
2014-03-07 16:36 ` Laurent Pinchart
2014-03-07 16:47 ` Wolfram Sang
2014-03-07 16:59 ` Laurent Pinchart
2014-03-10 7:27 ` Wolfram Sang
2014-03-10 11:59 ` Laurent Pinchart
2014-03-27 6:46 ` Wolfram Sang
2014-03-27 10:56 ` Laurent Pinchart
2014-03-27 11:36 ` Wolfram Sang
2014-03-27 12:50 ` Laurent Pinchart
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=2368991.bjBJjms8qn@avalon \
--to=laurent.pinchart@ideasonboard.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox