From: Kukjin Kim <kgene.kim@samsung.com>
To: "'Heiko Stübner'" <heiko@sntech.de>
Cc: mturquette@linaro.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
'Thomas Abraham' <thomas.abraham@linaro.org>,
t.figa@samsung.com
Subject: RE: [PATCH v4 0/7] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
Date: Tue, 24 Dec 2013 10:37:23 +0900 [thread overview]
Message-ID: <1af701cf0048$b175b3c0$14611b40$@samsung.com> (raw)
In-Reply-To: <201312231411.35417.heiko@sntech.de>
Heiko Stübner wrote:
>
> Hi Kukjin,
>
Hi,
> it seems you didn't have the time for this series during your 2nd round.
>
> I'm not sure what your plans/time constraint are, but according to the -
> rc5
> release mail from Linus [0], 3.13 will at least reach -rc8 so it seems as
> if
> there is still a bit of time to for 3.14 stuff.
>
Good news to us :-)
> This series would really be a nice base for not only the other ccf-
> conversions
> (the already submitted s3c2410 and the s3c2412 which I'm currently working
> on)
> but also for broadening the dt-support, with the auxdata gone from the dt-
> board file.
>
I agreed, let me try to send one more pull-request for 3.14 after finishing review of your patches.
Thanks and Merry Christmas,
Kukjin
>
> Thanks
> Heiko
>
>
>
> [0] https://lkml.org/lkml/2013/12/22/70
>
> Am Dienstag, 10. Dezember 2013, 16:14:29 schrieb Heiko Stübner:
> > Next try, this time with less time between submissions.
> >
> > Tested on both non-dt and dt s3c2416.
> >
> > Changes since v3:
> > - address comments from Tomasz Figa (binding documentation, etc)
> > - prevent conflicts with unconverted s3c24xx socs
> > Changes since v2
> > - address comments from Tomasz Figa
> > - use new pll registration mechanism
> > - use fixed-rate clocks for xti etc
> >
> > Heiko Stuebner (7):
> > 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: prevent conflicts between ccf and non-ccf s3c24xx-socs
> > ARM: dt: add clock data for s3c2416
> > ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework
> >
> > .../bindings/clock/samsung,s3c2443-clock.txt | 56 ++
> > arch/arm/boot/dts/s3c2416-smdk2416.dts | 13 +
> > arch/arm/boot/dts/s3c2416.dtsi | 42 ++
> > arch/arm/mach-s3c24xx/Kconfig | 18 +-
> > 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 |
> > 18 +-
> > 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, 756 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
next prev parent reply other threads:[~2013-12-24 1:37 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-10 15:14 [PATCH v4 0/7] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework Heiko Stübner
2013-12-10 15:15 ` [PATCH v4 1/7] clk: samsung: add pll_6552 variant for s3c2416 Heiko Stübner
2013-12-23 20:07 ` Mike Turquette
2013-12-10 15:15 ` [PATCH v4 2/7] clk: samsung: add plls used by the s3c2443 Heiko Stübner
2013-12-23 20:07 ` Mike Turquette
2013-12-31 20:03 ` Heiko Stübner
2013-12-10 15:17 ` [PATCH v4 3/7] dt-bindings: add binding for clock-controller of s3c2443 and following Heiko Stübner
2013-12-10 15:17 ` [PATCH v4 4/7] clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450 Heiko Stübner
2013-12-10 15:18 ` [PATCH v4 5/7] ARM: S3C24XX: prevent conflicts between ccf and non-ccf s3c24xx-socs Heiko Stübner
2013-12-10 15:19 ` [PATCH v4 6/7] ARM: dt: add clock data for s3c2416 Heiko Stübner
2013-12-10 15:20 ` [PATCH v4 7/7] ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework Heiko Stübner
2013-12-10 15:27 ` [PATCH v4 0/7] " Tomasz Figa
2013-12-23 13:11 ` Heiko Stübner
2013-12-24 1:37 ` Kukjin Kim [this message]
2013-12-24 10:20 ` Sachin Kamat
2014-01-10 8:30 ` kgene
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='1af701cf0048$b175b3c0$14611b40$@samsung.com' \
--to=kgene.kim@samsung.com \
--cc=heiko@sntech.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=t.figa@samsung.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox