From: "Heiko Stübner" <heiko@sntech.de>
To: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
t.figa@samsung.com, linux-samsung-soc@vger.kernel.org,
mturquette@linaro.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 0/5] ARM: S3C24XX: convert s3c2412 to common clock framework
Date: Sun, 23 Feb 2014 01:29:20 +0100 [thread overview]
Message-ID: <2112473.9LIChJWDSQ@phil> (raw)
In-Reply-To: <530937A4.3010301@gmail.com>
Hi Tomasz,
Am Sonntag, 23. Februar 2014, 00:49:56 schrieb Tomasz Figa:
> Hi,
>
> On 22.02.2014 23:45, Heiko Stübner wrote:
> > Second incarnation of the series converting s3c2412/s3c2413 to the common
> > clock framework. As before the conversion is done by a mix of datasheet
> > data and the pre-existing clock code and as this time I have no hardware
> > of this type, it is compile-tested only. So hopefully somebody with
> > s3c2412
> > hw will be able to test it for real.
> >
> > The conversion of s3c2412 now moved in front of the
> > s3c2410/s3c2440/s3c2442
> > one, as I'll need a bit more time for the clockout changes suggested by
> > Tomasz Figa.
> >
> > This series builds on top of the previous submitted s3c2443/s3c2416
> > series.
> >
> >
> > Changes since v1:
> > - move in front of s3c2410 conversion, therefore move 2 necessary patches
> >
> > that also got ACKs, from there into this series
> >
> > - adapt to Samsung clock pm rework from Tomasz Figa
> > - apply some changes suggested by Tomasz Figa in the s3c2410 clock driver
> >
> > that also apply to this driver.
> >
> > Heiko Stuebner (5):
> > ARM: S3C24XX: only store clock registers when old clock code is active
> > clk: samsung: add plls used by the early s3c24xx cpus
> > dt-bindings: add documentation for s3c2412 clock controller
> > clk: samsung: add clock controller driver for s3c2412
> > ARM: S3C24XX: convert s3c2412 to common clock framework
> >
> > .../bindings/clock/samsung,s3c2412-clock.txt | 50 ++
> > arch/arm/mach-s3c24xx/Kconfig | 8 +-
> > arch/arm/mach-s3c24xx/Makefile | 2 +-
> > arch/arm/mach-s3c24xx/clock-s3c2412.c | 761
> > --------------------- arch/arm/mach-s3c24xx/common.c
> > | 9 +-
> > arch/arm/mach-s3c24xx/common.h | 4 +
> > arch/arm/mach-s3c24xx/mach-jive.c | 9 +-
> > arch/arm/mach-s3c24xx/mach-smdk2413.c | 9 +-
> > arch/arm/mach-s3c24xx/mach-vstms.c | 9 +-
> > arch/arm/mach-s3c24xx/pm.c | 13 +-
> > arch/arm/mach-s3c24xx/s3c2412.c | 43 --
> > drivers/clk/samsung/Makefile | 1 +
> > drivers/clk/samsung/clk-pll.c | 182 +++++
> > drivers/clk/samsung/clk-pll.h | 3 +
> > drivers/clk/samsung/clk-s3c2412.c | 268 ++++++++
> > include/dt-bindings/clock/s3c2412.h | 73 ++
> > 16 files changed, 627 insertions(+), 817 deletions(-)
> > create mode 100644
> > Documentation/devicetree/bindings/clock/samsung,s3c2412-clock.txt
> > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2412.c
> > create mode 100644 drivers/clk/samsung/clk-s3c2412.c
> > create mode 100644 include/dt-bindings/clock/s3c2412.h
>
> For mach and DT patches:
>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
>
> Kukjin, I'll take binding and clock patches to Samsung clock tree as
> soon as DT bindings get acked by one of DT maintainers. I will prepare a
> branch for you to apply mach patches on top. Is it fine for you?
I think Kukjin already applied the s3c2416/s3c2443 series on top of your
clock-pm-changes in the linux-samsung tree [1], so it might be best to just
pile this series on top of it.
Heiko
[1] https://git.kernel.org/cgit/linux/kernel/git/kgene/linux-samsung.git/?h=v3.15-next/clk-s3c24xx
WARNING: multiple messages have this Message-ID (diff)
From: heiko@sntech.de (Heiko Stübner)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/5] ARM: S3C24XX: convert s3c2412 to common clock framework
Date: Sun, 23 Feb 2014 01:29:20 +0100 [thread overview]
Message-ID: <2112473.9LIChJWDSQ@phil> (raw)
In-Reply-To: <530937A4.3010301@gmail.com>
Hi Tomasz,
Am Sonntag, 23. Februar 2014, 00:49:56 schrieb Tomasz Figa:
> Hi,
>
> On 22.02.2014 23:45, Heiko St?bner wrote:
> > Second incarnation of the series converting s3c2412/s3c2413 to the common
> > clock framework. As before the conversion is done by a mix of datasheet
> > data and the pre-existing clock code and as this time I have no hardware
> > of this type, it is compile-tested only. So hopefully somebody with
> > s3c2412
> > hw will be able to test it for real.
> >
> > The conversion of s3c2412 now moved in front of the
> > s3c2410/s3c2440/s3c2442
> > one, as I'll need a bit more time for the clockout changes suggested by
> > Tomasz Figa.
> >
> > This series builds on top of the previous submitted s3c2443/s3c2416
> > series.
> >
> >
> > Changes since v1:
> > - move in front of s3c2410 conversion, therefore move 2 necessary patches
> >
> > that also got ACKs, from there into this series
> >
> > - adapt to Samsung clock pm rework from Tomasz Figa
> > - apply some changes suggested by Tomasz Figa in the s3c2410 clock driver
> >
> > that also apply to this driver.
> >
> > Heiko Stuebner (5):
> > ARM: S3C24XX: only store clock registers when old clock code is active
> > clk: samsung: add plls used by the early s3c24xx cpus
> > dt-bindings: add documentation for s3c2412 clock controller
> > clk: samsung: add clock controller driver for s3c2412
> > ARM: S3C24XX: convert s3c2412 to common clock framework
> >
> > .../bindings/clock/samsung,s3c2412-clock.txt | 50 ++
> > arch/arm/mach-s3c24xx/Kconfig | 8 +-
> > arch/arm/mach-s3c24xx/Makefile | 2 +-
> > arch/arm/mach-s3c24xx/clock-s3c2412.c | 761
> > --------------------- arch/arm/mach-s3c24xx/common.c
> > | 9 +-
> > arch/arm/mach-s3c24xx/common.h | 4 +
> > arch/arm/mach-s3c24xx/mach-jive.c | 9 +-
> > arch/arm/mach-s3c24xx/mach-smdk2413.c | 9 +-
> > arch/arm/mach-s3c24xx/mach-vstms.c | 9 +-
> > arch/arm/mach-s3c24xx/pm.c | 13 +-
> > arch/arm/mach-s3c24xx/s3c2412.c | 43 --
> > drivers/clk/samsung/Makefile | 1 +
> > drivers/clk/samsung/clk-pll.c | 182 +++++
> > drivers/clk/samsung/clk-pll.h | 3 +
> > drivers/clk/samsung/clk-s3c2412.c | 268 ++++++++
> > include/dt-bindings/clock/s3c2412.h | 73 ++
> > 16 files changed, 627 insertions(+), 817 deletions(-)
> > create mode 100644
> > Documentation/devicetree/bindings/clock/samsung,s3c2412-clock.txt
> > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2412.c
> > create mode 100644 drivers/clk/samsung/clk-s3c2412.c
> > create mode 100644 include/dt-bindings/clock/s3c2412.h
>
> For mach and DT patches:
>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
>
> Kukjin, I'll take binding and clock patches to Samsung clock tree as
> soon as DT bindings get acked by one of DT maintainers. I will prepare a
> branch for you to apply mach patches on top. Is it fine for you?
I think Kukjin already applied the s3c2416/s3c2443 series on top of your
clock-pm-changes in the linux-samsung tree [1], so it might be best to just
pile this series on top of it.
Heiko
[1] https://git.kernel.org/cgit/linux/kernel/git/kgene/linux-samsung.git/?h=v3.15-next/clk-s3c24xx
next prev parent reply other threads:[~2014-02-23 0:30 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-22 22:45 [PATCH v2 0/5] ARM: S3C24XX: convert s3c2412 to common clock framework Heiko Stübner
2014-02-22 22:45 ` Heiko Stübner
2014-02-22 22:45 ` [PATCH v2 1/5] ARM: S3C24XX: only store clock registers when old clock code is active Heiko Stübner
2014-02-22 22:45 ` Heiko Stübner
2014-02-22 22:46 ` [PATCH v2 2/5] clk: samsung: add plls used by the early s3c24xx cpus Heiko Stübner
2014-02-22 22:46 ` Heiko Stübner
2014-02-22 22:48 ` [PATCH v2 3/5] dt-bindings: add documentation for s3c2412 clock controller Heiko Stübner
2014-02-22 22:48 ` Heiko Stübner
2014-02-22 22:49 ` [PATCH v2 4/5] clk: samsung: add clock controller driver for s3c2412 Heiko Stübner
2014-02-22 22:49 ` Heiko Stübner
2014-02-22 22:50 ` [PATCH v2 5/5] ARM: S3C24XX: convert s3c2412 to common clock framework Heiko Stübner
2014-02-22 22:50 ` Heiko Stübner
2014-02-22 23:49 ` [PATCH v2 0/5] " Tomasz Figa
2014-02-22 23:49 ` Tomasz Figa
2014-02-23 0:29 ` Heiko Stübner [this message]
2014-02-23 0:29 ` Heiko Stübner
2014-02-23 0:48 ` Tomasz Figa
2014-02-23 0:48 ` Tomasz Figa
2014-02-24 0:06 ` Mike Turquette
2014-02-24 0:06 ` Mike Turquette
2014-02-25 0:45 ` Kukjin Kim
2014-02-25 0:45 ` Kukjin Kim
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=2112473.9LIChJWDSQ@phil \
--to=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=t.figa@samsung.com \
--cc=tomasz.figa@gmail.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.