From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: Mike Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@codeaurora.org>
Cc: linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Chen-Yu Tsai <wens@csie.org>
Subject: [GIT PULL] arm: Allwinner clocks changes for 4.6
Date: Fri, 26 Feb 2016 11:48:30 -0800 [thread overview]
Message-ID: <20160226194830.GA21652@lukather> (raw)
[-- Attachment #1: Type: text/plain, Size: 3648 bytes --]
The following changes since commit 92e963f50fc74041b5e9e744c330dca48e04f08d:
Linux 4.5-rc1 (2016-01-24 13:06:47 -0800)
are available in the git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git tags/sunxi-clocks-for-4.6
for you to fetch changes up to 6e17b4181603d183d20c73f4535529ddf2a2a020:
clk: sunxi: Add apb0 gates for H3 (2016-02-25 11:30:32 -0800)
----------------------------------------------------------------
Allwinner clocks additions for 4.6
A bunch of things, mostly:
- Finally switched everything over to OF_CLK_DECLARE, which should remove
orphans clocks entirely
- Reworked the clk-factors to be able to add new parameters
- Improved the error reporting
- A bunch of new clocks for new SoCs.
----------------------------------------------------------------
Andre Przywara (4):
clk: sunxi: improve error reporting for the mux clock
clk: sunxi: improve mux_clk error handling and reporting
clk: sunxi: improve divider_clk error handling and reporting
clk: sunxi: Improve divs_clk error handling and reporting
Arnd Bergmann (1):
clk: sunxi: don't mark sun6i_ar100_data __initconst
Chen-Yu Tsai (11):
clk: sunxi: usb: Sort clk providers by chip family and name
clk: sunxi: factors: Make struct clk_factors_config table const
clk: sunxi: factors: Add clk cleanup in sunxi_factors_register() error path
clk: sunxi: factors: Add unregister function
clk: sunxi: factors: Consolidate get_factors parameters into a struct
clk: sunxi: factors: Support custom formulas
clk: sunxi: factors: Drop round_rate from clk ops
clk: sunxi: rewrite sun6i-a31-ahb1-clk using factors clk with custom recalc
clk: sunxi: rewrite sun6i-ar100 using factors clk
clk: sunxi: rewrite sun8i-a23-mbus-clk using the simpler composite clk
clk: sunxi: Fix sun8i-a23-apb0-clk divider flags
Krzysztof Adamski (1):
clk: sunxi: Add apb0 gates for H3
Maxime Ripard (5):
clk: sunxi: Make clocks setup functions return their clock
clk: sunxi: Make clocks setup functions take const pointer
clk: sunxi: convert current clocks registration to CLK_OF_DECLARE
clk: sunxi: Remove old probe and protection code
clk: sunxi: Remove clk_register_clkdev calls
Stephen Boyd (1):
clk: sunxi: Drop clk.h include
Vishnu Patekar (2):
clk: sunxi: Add apb0 gates for A83T
clk: sunxi: add bus gates for A83T
Documentation/devicetree/bindings/clock/sunxi.txt | 4 +
drivers/clk/sunxi/clk-a10-hosc.c | 3 +-
drivers/clk/sunxi/clk-a20-gmac.c | 2 -
drivers/clk/sunxi/clk-factors.c | 123 ++-
drivers/clk/sunxi/clk-factors.h | 26 +-
drivers/clk/sunxi/clk-mod0.c | 23 +-
drivers/clk/sunxi/clk-simple-gates.c | 4 +
drivers/clk/sunxi/clk-sun6i-apb0-gates.c | 2 -
drivers/clk/sunxi/clk-sun6i-ar100.c | 235 ++----
drivers/clk/sunxi/clk-sun8i-apb0.c | 2 +-
drivers/clk/sunxi/clk-sun8i-bus-gates.c | 3 +-
drivers/clk/sunxi/clk-sun8i-mbus.c | 127 ++--
drivers/clk/sunxi/clk-sun9i-core.c | 86 +--
drivers/clk/sunxi/clk-sunxi.c | 863 ++++++++++------------
drivers/clk/sunxi/clk-usb.c | 24 +-
15 files changed, 691 insertions(+), 836 deletions(-)
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] arm: Allwinner clocks changes for 4.6
Date: Fri, 26 Feb 2016 11:48:30 -0800 [thread overview]
Message-ID: <20160226194830.GA21652@lukather> (raw)
The following changes since commit 92e963f50fc74041b5e9e744c330dca48e04f08d:
Linux 4.5-rc1 (2016-01-24 13:06:47 -0800)
are available in the git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git tags/sunxi-clocks-for-4.6
for you to fetch changes up to 6e17b4181603d183d20c73f4535529ddf2a2a020:
clk: sunxi: Add apb0 gates for H3 (2016-02-25 11:30:32 -0800)
----------------------------------------------------------------
Allwinner clocks additions for 4.6
A bunch of things, mostly:
- Finally switched everything over to OF_CLK_DECLARE, which should remove
orphans clocks entirely
- Reworked the clk-factors to be able to add new parameters
- Improved the error reporting
- A bunch of new clocks for new SoCs.
----------------------------------------------------------------
Andre Przywara (4):
clk: sunxi: improve error reporting for the mux clock
clk: sunxi: improve mux_clk error handling and reporting
clk: sunxi: improve divider_clk error handling and reporting
clk: sunxi: Improve divs_clk error handling and reporting
Arnd Bergmann (1):
clk: sunxi: don't mark sun6i_ar100_data __initconst
Chen-Yu Tsai (11):
clk: sunxi: usb: Sort clk providers by chip family and name
clk: sunxi: factors: Make struct clk_factors_config table const
clk: sunxi: factors: Add clk cleanup in sunxi_factors_register() error path
clk: sunxi: factors: Add unregister function
clk: sunxi: factors: Consolidate get_factors parameters into a struct
clk: sunxi: factors: Support custom formulas
clk: sunxi: factors: Drop round_rate from clk ops
clk: sunxi: rewrite sun6i-a31-ahb1-clk using factors clk with custom recalc
clk: sunxi: rewrite sun6i-ar100 using factors clk
clk: sunxi: rewrite sun8i-a23-mbus-clk using the simpler composite clk
clk: sunxi: Fix sun8i-a23-apb0-clk divider flags
Krzysztof Adamski (1):
clk: sunxi: Add apb0 gates for H3
Maxime Ripard (5):
clk: sunxi: Make clocks setup functions return their clock
clk: sunxi: Make clocks setup functions take const pointer
clk: sunxi: convert current clocks registration to CLK_OF_DECLARE
clk: sunxi: Remove old probe and protection code
clk: sunxi: Remove clk_register_clkdev calls
Stephen Boyd (1):
clk: sunxi: Drop clk.h include
Vishnu Patekar (2):
clk: sunxi: Add apb0 gates for A83T
clk: sunxi: add bus gates for A83T
Documentation/devicetree/bindings/clock/sunxi.txt | 4 +
drivers/clk/sunxi/clk-a10-hosc.c | 3 +-
drivers/clk/sunxi/clk-a20-gmac.c | 2 -
drivers/clk/sunxi/clk-factors.c | 123 ++-
drivers/clk/sunxi/clk-factors.h | 26 +-
drivers/clk/sunxi/clk-mod0.c | 23 +-
drivers/clk/sunxi/clk-simple-gates.c | 4 +
drivers/clk/sunxi/clk-sun6i-apb0-gates.c | 2 -
drivers/clk/sunxi/clk-sun6i-ar100.c | 235 ++----
drivers/clk/sunxi/clk-sun8i-apb0.c | 2 +-
drivers/clk/sunxi/clk-sun8i-bus-gates.c | 3 +-
drivers/clk/sunxi/clk-sun8i-mbus.c | 127 ++--
drivers/clk/sunxi/clk-sun9i-core.c | 86 +--
drivers/clk/sunxi/clk-sunxi.c | 863 ++++++++++------------
drivers/clk/sunxi/clk-usb.c | 24 +-
15 files changed, 691 insertions(+), 836 deletions(-)
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160226/30547b3f/attachment-0001.sig>
next reply other threads:[~2016-02-26 19:48 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-26 19:48 Maxime Ripard [this message]
2016-02-26 19:48 ` [GIT PULL] arm: Allwinner clocks changes for 4.6 Maxime Ripard
2016-03-02 0:20 ` [PATCH] clk: sunxi: Remove use of VLAIS Stephen Boyd
2016-03-03 18:07 ` Chen-Yu Tsai
2016-03-03 19:16 ` Stephen Boyd
2016-03-04 15:27 ` Maxime Ripard
2016-03-04 17:18 ` Stephen Boyd
2016-03-08 22:13 ` Maxime Ripard
2016-03-15 22:16 ` Stephen Boyd
2016-03-16 8:51 ` Mason
2016-03-16 20:30 ` Stephen Boyd
2016-03-16 20:44 ` Mason
2016-03-18 17:47 ` Maxime Ripard
2016-03-08 12:26 ` Mason
2016-03-02 1:46 ` [GIT PULL] arm: Allwinner clocks changes for 4.6 Stephen Boyd
2016-03-02 1:46 ` Stephen Boyd
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=20160226194830.GA21652@lukather \
--to=maxime.ripard@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=sboyd@codeaurora.org \
--cc=wens@csie.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 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.