From: Tomasz Figa <t.figa@samsung.com>
To: "Heiko Stübner" <heiko@sntech.de>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
mturquette@linaro.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
Thomas Abraham <thomas.abraham@linaro.org>
Subject: Re: [PATCH v3 0/5] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
Date: Mon, 09 Dec 2013 18:20:55 +0100 [thread overview]
Message-ID: <4578558.zGLnaeVPQ1@amdc1227> (raw)
In-Reply-To: <201312031619.58062.heiko@sntech.de>
Hi Heiko,
On Tuesday 03 of December 2013 16:19:57 Heiko Stübner wrote:
> Resurrecting this series again after to much time.
>
> Changed is the pll registration to follow the new system and getting the
> external clocks from dt fixed-rate clocks.
>
> Hopefully I did address all comments received for v2 in july.
>
> Tested on both non-dt and dt s3c2416. As s3c2443 is working the same way it
> should work, but is only compile tested.
>
> Heiko Stuebner (5):
> clk: samsung: add pll_6552 variant for s3c2416
> clk: samsung: add plls used by the s3c2443
> dt-bindings: add binding for clock-controller of s3c2443 and following
> clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450
> ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
>
> .../bindings/clock/samsung,s3c2443-clock.txt | 46 ++
> arch/arm/boot/dts/s3c2416-smdk2416.dts | 9 +
> arch/arm/boot/dts/s3c2416.dtsi | 48 ++
> arch/arm/mach-s3c24xx/Kconfig | 14 +-
> arch/arm/mach-s3c24xx/Makefile | 5 +-
> arch/arm/mach-s3c24xx/clock-s3c2416.c | 171 -----
> arch/arm/mach-s3c24xx/clock-s3c2443.c | 212 ------
> arch/arm/mach-s3c24xx/common-s3c2443.c | 675 --------------------
> arch/arm/mach-s3c24xx/common.c | 16 +-
> arch/arm/mach-s3c24xx/common.h | 6 +
> arch/arm/mach-s3c24xx/mach-s3c2416-dt.c | 39 +-
> arch/arm/mach-s3c24xx/mach-smdk2416.c | 9 +-
> arch/arm/mach-s3c24xx/mach-smdk2443.c | 9 +-
> drivers/clk/samsung/Makefile | 1 +
> drivers/clk/samsung/clk-pll.c | 84 ++-
> drivers/clk/samsung/clk-pll.h | 3 +
> drivers/clk/samsung/clk-s3c2443.c | 417 ++++++++++++
> include/dt-bindings/clock/samsung,s3c2443-clock.h | 92 +++
> 18 files changed, 742 insertions(+), 1114 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/samsung,s3c2443-clock.txt
> delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2416.c
> delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2443.c
> delete mode 100644 arch/arm/mach-s3c24xx/common-s3c2443.c
> create mode 100644 drivers/clk/samsung/clk-s3c2443.c
> create mode 100644 include/dt-bindings/clock/samsung,s3c2443-clock.h
Thanks for you great work on S3C24xx.
Except for my (minor) comments on patches 3 and 5:
Acked-by: Tomasz Figa <t.figa@samsung.com>
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: t.figa@samsung.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/5] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
Date: Mon, 09 Dec 2013 18:20:55 +0100 [thread overview]
Message-ID: <4578558.zGLnaeVPQ1@amdc1227> (raw)
In-Reply-To: <201312031619.58062.heiko@sntech.de>
Hi Heiko,
On Tuesday 03 of December 2013 16:19:57 Heiko St?bner wrote:
> Resurrecting this series again after to much time.
>
> Changed is the pll registration to follow the new system and getting the
> external clocks from dt fixed-rate clocks.
>
> Hopefully I did address all comments received for v2 in july.
>
> Tested on both non-dt and dt s3c2416. As s3c2443 is working the same way it
> should work, but is only compile tested.
>
> Heiko Stuebner (5):
> clk: samsung: add pll_6552 variant for s3c2416
> clk: samsung: add plls used by the s3c2443
> dt-bindings: add binding for clock-controller of s3c2443 and following
> clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450
> ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
>
> .../bindings/clock/samsung,s3c2443-clock.txt | 46 ++
> arch/arm/boot/dts/s3c2416-smdk2416.dts | 9 +
> arch/arm/boot/dts/s3c2416.dtsi | 48 ++
> arch/arm/mach-s3c24xx/Kconfig | 14 +-
> arch/arm/mach-s3c24xx/Makefile | 5 +-
> arch/arm/mach-s3c24xx/clock-s3c2416.c | 171 -----
> arch/arm/mach-s3c24xx/clock-s3c2443.c | 212 ------
> arch/arm/mach-s3c24xx/common-s3c2443.c | 675 --------------------
> arch/arm/mach-s3c24xx/common.c | 16 +-
> arch/arm/mach-s3c24xx/common.h | 6 +
> arch/arm/mach-s3c24xx/mach-s3c2416-dt.c | 39 +-
> arch/arm/mach-s3c24xx/mach-smdk2416.c | 9 +-
> arch/arm/mach-s3c24xx/mach-smdk2443.c | 9 +-
> drivers/clk/samsung/Makefile | 1 +
> drivers/clk/samsung/clk-pll.c | 84 ++-
> drivers/clk/samsung/clk-pll.h | 3 +
> drivers/clk/samsung/clk-s3c2443.c | 417 ++++++++++++
> include/dt-bindings/clock/samsung,s3c2443-clock.h | 92 +++
> 18 files changed, 742 insertions(+), 1114 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/samsung,s3c2443-clock.txt
> delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2416.c
> delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2443.c
> delete mode 100644 arch/arm/mach-s3c24xx/common-s3c2443.c
> create mode 100644 drivers/clk/samsung/clk-s3c2443.c
> create mode 100644 include/dt-bindings/clock/samsung,s3c2443-clock.h
Thanks for you great work on S3C24xx.
Except for my (minor) comments on patches 3 and 5:
Acked-by: Tomasz Figa <t.figa@samsung.com>
Best regards,
Tomasz
next prev parent reply other threads:[~2013-12-09 17:21 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-03 15:19 [PATCH v3 0/5] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework Heiko Stübner
2013-12-03 15:19 ` Heiko Stübner
2013-12-03 15:20 ` [PATCH v3 1/5] clk: samsung: add pll_6552 variant for s3c2416 Heiko Stübner
2013-12-03 15:20 ` Heiko Stübner
2013-12-03 15:21 ` [PATCH v3 2/5] clk: samsung: add plls used by the s3c2443 Heiko Stübner
2013-12-03 15:21 ` Heiko Stübner
2013-12-03 15:23 ` [PATCH v3 3/5] dt-bindings: add binding for clock-controller of s3c2443 and following Heiko Stübner
2013-12-03 15:23 ` Heiko Stübner
2013-12-09 17:03 ` Tomasz Figa
2013-12-09 17:03 ` Tomasz Figa
2013-12-03 15:23 ` [PATCH v3 4/5] clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450 Heiko Stübner
2013-12-03 15:23 ` Heiko Stübner
2013-12-03 15:24 ` [PATCH v3 5/5] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework Heiko Stübner
2013-12-03 15:24 ` Heiko Stübner
2013-12-09 17:19 ` Tomasz Figa
2013-12-09 17:19 ` Tomasz Figa
2013-12-10 10:57 ` Heiko Stübner
2013-12-10 10:57 ` Heiko Stübner
2013-12-09 17:20 ` Tomasz Figa [this message]
2013-12-09 17:20 ` [PATCH v3 0/5] " Tomasz Figa
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=4578558.zGLnaeVPQ1@amdc1227 \
--to=t.figa@samsung.com \
--cc=heiko@sntech.de \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=thomas.abraham@linaro.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.