devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Haojian Zhuang <haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Robert Jarzmik <robert.jarzmik-GANU6spQydw@public.gmane.org>
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Mike Turquette
	<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Eric Miao <eric.y.miao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
	"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
	<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
	Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
Subject: Re: [PATCH v3 0/6] Migrate PXA27x platforms to clock framework
Date: Sat, 2 Aug 2014 20:27:21 +0800	[thread overview]
Message-ID: <CAN1soZwDDwiLuVkT7kRJX-wy-UmyDj-2yiReGrpBrTOJkKpuSA@mail.gmail.com> (raw)
In-Reply-To: <1406753464-15000-1-git-send-email-robert.jarzmik-GANU6spQydw@public.gmane.org>

On Thu, Jul 31, 2014 at 4:50 AM, Robert Jarzmik <robert.jarzmik-GANU6spQydw@public.gmane.org> wrote:
> This is the third opus of this serie.
> From the previous one :
>  - the boot ordering was fixed
>    For DT, we rely on time_init() in arch/arm
>    For non-DT, we keep the postcore_init() until all 3 PXA variants are
>    converted, and meanwhile I'll discuss with Haojian where to call directly the
>    clocks init function.
>  - the section mismatches were fixed
>    A split is done between CKEN clock descriptor and CKEN clock structure
>
> The result was tested with a Mitac MIO A701 :
>  - with the upstream platform-data based machine code
>  - with the device-tree version
>
> As for the patches, if they are carried fully by Mike, I think there will be a
> minor conflict in arch/arm/mach-pxa/Makefile with the clocksource patches I
> submitted earlier.
>
> As before, the goal remains the same :
>  - keeping legacy platforms working (ie. without device-tree)
>  - enable PXA27x to work with a device-tree kernel, and hence
>    open the way to drivers conversion
>  - be robust enough to support pxa25x and pxa3xx later inclusion
>    with almost no change to clk-pxa-dt.c.
>
> Robert Jarzmik (6):
>   clk: add pxa clocks infrastructure
>   clk: dts: document pxa clock binding
>   arm: pxa: add clock pll selection bits
>   clk: add pxa27x clock drivers
>   dts: add devicetree bindings for pxa27x clocks
>   arm: pxa: Transition pxa27x to clk framework
>
>  .../devicetree/bindings/clock/pxa-clock.txt        |  16 +
>  arch/arm/Kconfig                                   |   1 +
>  arch/arm/boot/dts/pxa27x.dtsi                      |  20 +-
>  arch/arm/mach-pxa/Makefile                         |   8 +-
>  arch/arm/mach-pxa/include/mach/pxa2xx-regs.h       |  10 +
>  arch/arm/mach-pxa/pxa27x.c                         | 186 +----------
>  drivers/clk/Makefile                               |   1 +
>  drivers/clk/pxa/Makefile                           |   2 +
>  drivers/clk/pxa/clk-pxa.c                          |  97 ++++++
>  drivers/clk/pxa/clk-pxa.h                          | 107 ++++++
>  drivers/clk/pxa/clk-pxa27x.c                       | 370 +++++++++++++++++++++
>  include/dt-bindings/clock/pxa-clock.h              |  77 +++++
>  12 files changed, 716 insertions(+), 179 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/clock/pxa-clock.txt
>  create mode 100644 drivers/clk/pxa/Makefile
>  create mode 100644 drivers/clk/pxa/clk-pxa.c
>  create mode 100644 drivers/clk/pxa/clk-pxa.h
>  create mode 100644 drivers/clk/pxa/clk-pxa27x.c
>  create mode 100644 include/dt-bindings/clock/pxa-clock.h
>
> --
> 2.0.0.rc2
>

Acked-by: Haojian Zhuang <haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Only with a small comment.

Regards
Haojian
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2014-08-02 12:27 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-30 20:50 [PATCH v3 0/6] Migrate PXA27x platforms to clock framework Robert Jarzmik
     [not found] ` <1406753464-15000-1-git-send-email-robert.jarzmik-GANU6spQydw@public.gmane.org>
2014-07-30 20:50   ` [PATCH v3 1/6] clk: add pxa clocks infrastructure Robert Jarzmik
     [not found]     ` <1406753464-15000-2-git-send-email-robert.jarzmik-GANU6spQydw@public.gmane.org>
2014-08-02 12:00       ` Haojian Zhuang
     [not found]         ` <CAN1soZyST84DNvK=zyj6EhOt0fswZ4SvOmMnWiCZsYmapxkhOg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-08-02 16:46           ` Robert Jarzmik
2014-07-30 20:51   ` [PATCH v3 2/6] clk: dts: document pxa clock binding Robert Jarzmik
2014-07-30 20:51   ` [PATCH v3 3/6] arm: pxa: add clock pll selection bits Robert Jarzmik
2014-07-30 20:51   ` [PATCH v3 4/6] clk: add pxa27x clock drivers Robert Jarzmik
2014-07-30 20:51   ` [PATCH v3 5/6] dts: add devicetree bindings for pxa27x clocks Robert Jarzmik
2014-07-30 20:51   ` [PATCH v3 6/6] arm: pxa: Transition pxa27x to clk framework Robert Jarzmik
2014-08-02 12:27   ` Haojian Zhuang [this message]
     [not found]     ` <CAN1soZwDDwiLuVkT7kRJX-wy-UmyDj-2yiReGrpBrTOJkKpuSA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-08-23 16:05       ` [PATCH v3 0/6] Migrate PXA27x platforms to clock framework Robert Jarzmik
     [not found]         ` <87ha1342ei.fsf-GANU6spQydw@public.gmane.org>
2014-08-23 18:54           ` Arnd Bergmann
2014-08-24  9:49             ` Robert Jarzmik
     [not found]               ` <87d2bq43pc.fsf-GANU6spQydw@public.gmane.org>
2014-08-24 11:13                 ` Daniel Mack
2014-08-24 12:08                 ` Arnd Bergmann
     [not found]                   ` <201408241408.19861.arnd-r2nGTMty4D4@public.gmane.org>
2014-09-03 18:49                     ` Mike Turquette
2014-09-03 19:33                       ` Arnd Bergmann
2014-09-04 19:29                         ` Mike Turquette
2014-09-04 21:49                           ` Arnd Bergmann
2014-09-05  4:15                       ` Re : " robert.jarzmik-GANU6spQydw
2014-09-20 16:13                       ` Robert Jarzmik
     [not found]                         ` <874mw2xoau.fsf-GANU6spQydw@public.gmane.org>
2014-09-30 19:52                           ` Mike Turquette
2014-09-30 22:02                             ` Robert Jarzmik
     [not found]                               ` <87iok4bwcj.fsf-GANU6spQydw@public.gmane.org>
2014-09-30 22:10                                 ` Mike Turquette

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=CAN1soZwDDwiLuVkT7kRJX-wy-UmyDj-2yiReGrpBrTOJkKpuSA@mail.gmail.com \
    --to=haojian.zhuang-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=eric.y.miao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
    --cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=robert.jarzmik-GANU6spQydw@public.gmane.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;
as well as URLs for NNTP newsgroup(s).