From: chao.xie@marvell.com (Chao Xie)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/12] clk: mmp: clock device tree support
Date: Tue, 26 Aug 2014 12:38:12 +0800 [thread overview]
Message-ID: <1409027904-21859-1-git-send-email-chao.xie@marvell.com> (raw)
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 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.
The final part of the patches
arm: mmp: Make all the dts file to be compiled by Makefile
arm: mmp: Make use of the DT supported clock
It changes the mmp platform to use device tree to parse the clocks.
Chao Xie (12):
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 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
.../bindings/clock/marvell-mmp2-clock.txt | 20 +
.../bindings/clock/marvell-pxa168-clock.txt | 20 +
.../bindings/clock/marvell-pxa910-clock.txt | 20 +
arch/arm/boot/dts/Makefile | 3 +
arch/arm/boot/dts/mmp2-brownstone.dts | 2 +-
arch/arm/boot/dts/mmp2.dtsi | 20 +-
arch/arm/boot/dts/pxa168-aspenite.dts | 2 +-
arch/arm/boot/dts/pxa168.dtsi | 19 +-
arch/arm/boot/dts/pxa910-dkb.dts | 2 +-
arch/arm/boot/dts/pxa910.dtsi | 20 +-
arch/arm/mach-mmp/Kconfig | 10 +-
arch/arm/mach-mmp/mmp-dt.c | 57 +--
arch/arm/mach-mmp/mmp2-dt.c | 26 +-
drivers/clk/mmp/Makefile | 5 +-
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 | 307 ++++++++++++
drivers/clk/mmp/clk-of-pxa168.c | 251 ++++++++++
drivers/clk/mmp/clk-of-pxa910.c | 260 +++++++++++
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 ++++++++-
include/dt-bindings/clock/marvell-mmp2.h | 74 +++
include/dt-bindings/clock/marvell-pxa168.h | 57 +++
include/dt-bindings/clock/marvell-pxa910.h | 54 +++
28 files changed, 2280 insertions(+), 105 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/marvell-mmp2-clock.txt
create mode 100644 Documentation/devicetree/bindings/clock/marvell-pxa168-clock.txt
create mode 100644 Documentation/devicetree/bindings/clock/marvell-pxa910-clock.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 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
next reply other threads:[~2014-08-26 4:38 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-26 4:38 Chao Xie [this message]
2014-08-26 4:38 ` [PATCH 01/12] clk: mmp: add prefix "mmp" for structures defined for clk-frac Chao Xie
2014-08-26 4:38 ` [PATCH 02/12] clk: mmp: add spin lock " Chao Xie
2014-09-03 18:04 ` Mike Turquette
2014-09-10 1:30 ` Chao Xie
2014-08-26 4:38 ` [PATCH 03/12] clk: mmp: add init callback " Chao Xie
2014-08-26 4:38 ` [PATCH 04/12] clk: mmp: move definiton of mmp_clk_frac to clk.h Chao Xie
2014-08-26 4:38 ` [PATCH 05/12] clk: mmp: add clock type mix Chao Xie
2014-08-26 4:38 ` [PATCH 06/12] clk: mmp: add mmp private gate clock Chao Xie
2014-09-03 17:55 ` Mike Turquette
2014-09-04 4:02 ` Chao Xie
2014-09-04 4:16 ` Chen-Yu Tsai
2014-08-26 4:38 ` [PATCH 07/12] clk: mmp: add basic support functions for DT support Chao Xie
2014-08-26 4:38 ` [PATCH 08/12] clk: mmp: add pxa168 DT support for clock driver Chao Xie
2014-08-26 4:38 ` [PATCH 09/12] clk: mmp: add pxa910 " Chao Xie
2014-08-26 4:38 ` [PATCH 10/12] clk: mmp: add mmp2 " Chao Xie
2014-08-26 4:38 ` [PATCH 11/12] arm: mmp: Make all the dts file to be compiled by Makefile Chao Xie
2014-08-26 4:38 ` [PATCH 12/12] arm: mmp: Make use of the DT supported clock Chao Xie
2014-08-26 4:55 ` [PATCH 00/12] clk: mmp: clock device tree support Haojian Zhuang
-- strict thread matches above, loose matches on Subject: below --
2014-06-10 1:27 Chao Xie
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=1409027904-21859-1-git-send-email-chao.xie@marvell.com \
--to=chao.xie@marvell.com \
--cc=linux-arm-kernel@lists.infradead.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).