From: Haojian Zhuang <haojian.zhuang@linaro.org>
To: Mike Turquette <mturquette@linaro.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>,
Chao Xie <chao.xie@marvell.com>, Chao Xie <xiechao_mail@163.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH V2 00/13] clk: mmp: clock device tree support
Date: Thu, 13 Nov 2014 09:21:37 +0800 [thread overview]
Message-ID: <CAD6h2NTUc7S9K-R-TfUA8Moiv3rnOd=PE_fnO6LDbj2Sk869Mg@mail.gmail.com> (raw)
In-Reply-To: <20141113003537.25314.19238@quantum>
On 13 November 2014 08:35, Mike Turquette <mturquette@linaro.org> wrote:
> Quoting Haojian Zhuang (2014-11-04 00:15:55)
>> On Fri, Oct 31, 2014 at 10:13 AM, Chao Xie <chao.xie@marvell.com> wrote:
>> > From: Chao Xie <chao.xie@marvell.com>
>> >
>> > The patch set focuses at support device tree for clock.
>> >
>> > The first part of the patches
>> > clk: mmp: add prefix "mmp" for structures defined for clk-frac
>> > clk: mmp: add spin lock for clk-frac
>> > clk: mmp: add init callback for clk-frac
>> > clk: mmp: move definiton of mmp_clk_frac to clk.h It enhances the clk-frac.
>> >
>> > The second part of the patches
>> > clk: mmp: add clock type mix
>> > clk: mmp: add mmp private gate clock
>> >
>> > The third part of the patches
>> > clk: mmp: add basic support functions for DT support
>> > clk: mmp: add reset support
>> > clk: mmp: add pxa168 DT support for clock driver
>> > clk: mmp: add pxa910 DT support for clock driver
>> > clk: mmp: add mmp2 DT support for clock driver
>> > It add the device tree support for pxa168, pxa910 and mmp2.
>> >
>> > V1 -> V2:
>> > Add reset support for the clocks that have reset bit.
>> >
>> > Chao Xie (13):
>> > clk: mmp: add prefix "mmp" for structures defined for clk-frac
>> > clk: mmp: add spin lock for clk-frac
>> > clk: mmp: add init callback for clk-frac
>> > clk: mmp: move definiton of mmp_clk_frac to clk.h
>> > clk: mmp: add clock type mix
>> > clk: mmp: add mmp private gate clock
>> > clk: mmp: add basic support functions for DT support
>> > clk: mmp: add reset support
>> > clk: mmp: add pxa168 DT support for clock driver
>> > clk: mmp: add pxa910 DT support for clock driver
>> > clk: mmp: add mmp2 DT support for clock driver
>> > arm: mmp: Make all the dts file to be compiled by Makefile
>> > arm: mmp: Make use of the DT supported clock
>> >
>> > .../devicetree/bindings/clock/marvell,mmp2.txt | 21 +
>> > .../devicetree/bindings/clock/marvell,pxa168.txt | 21 +
>> > .../devicetree/bindings/clock/marvell,pxa910.txt | 21 +
>> > arch/arm/boot/dts/Makefile | 3 +
>> > arch/arm/boot/dts/mmp2-brownstone.dts | 2 +-
>> > arch/arm/boot/dts/mmp2.dtsi | 29 +-
>> > arch/arm/boot/dts/pxa168-aspenite.dts | 2 +-
>> > arch/arm/boot/dts/pxa168.dtsi | 27 +-
>> > arch/arm/boot/dts/pxa910-dkb.dts | 2 +-
>> > arch/arm/boot/dts/pxa910.dtsi | 28 +-
>> > arch/arm/mach-mmp/Kconfig | 12 +-
>> > arch/arm/mach-mmp/mmp-dt.c | 57 +--
>> > arch/arm/mach-mmp/mmp2-dt.c | 26 +-
>> > drivers/clk/mmp/Makefile | 7 +-
>> > drivers/clk/mmp/clk-frac.c | 74 ++-
>> > drivers/clk/mmp/clk-gate.c | 133 ++++++
>> > drivers/clk/mmp/clk-mix.c | 513 +++++++++++++++++++++
>> > drivers/clk/mmp/clk-mmp2.c | 6 +-
>> > drivers/clk/mmp/clk-of-mmp2.c | 334 ++++++++++++++
>> > drivers/clk/mmp/clk-of-pxa168.c | 279 +++++++++++
>> > drivers/clk/mmp/clk-of-pxa910.c | 301 ++++++++++++
>> > drivers/clk/mmp/clk-pxa168.c | 6 +-
>> > drivers/clk/mmp/clk-pxa910.c | 6 +-
>> > drivers/clk/mmp/clk.c | 192 ++++++++
>> > drivers/clk/mmp/clk.h | 226 ++++++++-
>> > drivers/clk/mmp/reset.c | 99 ++++
>> > drivers/clk/mmp/reset.h | 31 ++
>> > include/dt-bindings/clock/marvell,mmp2.h | 74 +++
>> > include/dt-bindings/clock/marvell,pxa168.h | 57 +++
>> > include/dt-bindings/clock/marvell,pxa910.h | 54 +++
>> > 30 files changed, 2538 insertions(+), 105 deletions(-)
>> > create mode 100644 Documentation/devicetree/bindings/clock/marvell,mmp2.txt
>> > create mode 100644 Documentation/devicetree/bindings/clock/marvell,pxa168.txt
>> > create mode 100644 Documentation/devicetree/bindings/clock/marvell,pxa910.txt
>> > create mode 100644 drivers/clk/mmp/clk-gate.c
>> > create mode 100644 drivers/clk/mmp/clk-mix.c
>> > create mode 100644 drivers/clk/mmp/clk-of-mmp2.c
>> > create mode 100644 drivers/clk/mmp/clk-of-pxa168.c
>> > create mode 100644 drivers/clk/mmp/clk-of-pxa910.c
>> > create mode 100644 drivers/clk/mmp/clk.c
>> > create mode 100644 drivers/clk/mmp/reset.c
>> > create mode 100644 drivers/clk/mmp/reset.h
>> > create mode 100644 include/dt-bindings/clock/marvell,mmp2.h
>> > create mode 100644 include/dt-bindings/clock/marvell,pxa168.h
>> > create mode 100644 include/dt-bindings/clock/marvell,pxa910.h
>> >
>> > --
>> > 1.8.3.2
>> >
>>
>> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
>>
>> Mike,
>> Please merge all mach-mmp patches with clock together. Otherwise, it
>> may result in build issue.
>
> Can patches #12 & #13 go through arm-soc?
>
Hi Mike,
I also hope so. But patch #12 makes those dtb files built
automatically. And patch #13
references clocks that are defined in dt-binding files. If I merge
patch #12 & #13, I'll meet
build issue since I'm lack of those new dt-binding files. So it's
better to go through your
clock tree.
Best Regards
Haojian
prev parent reply other threads:[~2014-11-13 1:21 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-31 2:13 [PATCH V2 00/13] clk: mmp: clock device tree support Chao Xie
2014-10-31 2:13 ` [PATCH V2 01/13] clk: mmp: add prefix "mmp" for structures defined for clk-frac Chao Xie
2014-10-31 2:13 ` [PATCH V2 02/13] clk: mmp: add spin lock " Chao Xie
2014-10-31 2:13 ` [PATCH V2 03/13] clk: mmp: add init callback " Chao Xie
2014-10-31 2:13 ` [PATCH V2 04/13] clk: mmp: move definiton of mmp_clk_frac to clk.h Chao Xie
2014-10-31 2:13 ` [PATCH V2 05/13] clk: mmp: add clock type mix Chao Xie
2014-10-31 2:13 ` [PATCH V2 06/13] clk: mmp: add mmp private gate clock Chao Xie
2014-10-31 2:13 ` [PATCH V2 07/13] clk: mmp: add basic support functions for DT support Chao Xie
2014-10-31 2:13 ` [PATCH V2 08/13] clk: mmp: add reset support Chao Xie
2014-10-31 2:13 ` [PATCH V2 09/13] clk: mmp: add pxa168 DT support for clock driver Chao Xie
2014-10-31 2:13 ` [PATCH V2 10/13] clk: mmp: add pxa910 " Chao Xie
2014-10-31 2:13 ` [PATCH V2 11/13] clk: mmp: add mmp2 " Chao Xie
2014-10-31 2:13 ` [PATCH V2 12/13] arm: mmp: Make all the dts file to be compiled by Makefile Chao Xie
2014-10-31 2:13 ` [PATCH V2 13/13] arm: mmp: Make use of the DT supported clock Chao Xie
[not found] ` <1414721633-29508-1-git-send-email-chao.xie-eYqpPyKDWXRBDgjK7y7TUQ@public.gmane.org>
2014-11-04 8:15 ` [PATCH V2 00/13] clk: mmp: clock device tree support Haojian Zhuang
2014-11-13 0:35 ` Mike Turquette
2014-11-13 1:21 ` Haojian Zhuang [this message]
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='CAD6h2NTUc7S9K-R-TfUA8Moiv3rnOd=PE_fnO6LDbj2Sk869Mg@mail.gmail.com' \
--to=haojian.zhuang@linaro.org \
--cc=chao.xie@marvell.com \
--cc=devicetree@vger.kernel.org \
--cc=haojian.zhuang@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=xiechao_mail@163.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 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).