From: jbrunet@baylibre.com (Jerome Brunet)
To: linus-amlogic@lists.infradead.org
Subject: [GIT PULL] Amlogic clock driver updates for v4.12 - 2nd batch
Date: Mon, 10 Apr 2017 09:42:01 +0200 [thread overview]
Message-ID: <1491810121.3480.36.camel@baylibre.com> (raw)
Dear clock maintainers,
Below is a request to pull a 2nd batch of update to the Amlogic clock driver. It
is based on the previous PR sent by Kevin.
Cheers
The following changes since commit 3a429818a2e48928ae0114df5fb3b0612dd57001:
? Merge branch 'v4.12/clk-drivers' into v4.12/clk (2017-04-04 15:58:11 -0700)
are available in the git repository at:
? git://github.com/BayLibre/clk-meson.git tags/meson-clk-for-4.12
for you to fetch changes up to b609338b26f5653aa211fc7af83477e2df6e3f0b:
? clk: meson: mpll: use 64bit math in rate_from_params (2017-04-07 17:45:30
+0200)
----------------------------------------------------------------
2nd Amlogic clock driver update for 4.12:
* Protect against holes in onecell_data
* Fix divison by zero and overflow in the mpll driver
* Add audio clock divider driver for i2s clocks
* Add i2s and spdif master clocks
----------------------------------------------------------------
Jerome Brunet (6):
??????MAINTAINERS: Add maintainers for the meson clock driver
??????clk: meson: gxbb: protect against holes in the onecell_data array
??????clk: meson: add audio clock divider support
??????clk: meson: gxbb: add cts_amclk
??????clk: meson: gxbb: add cts_mclk_i958
??????clk: meson: gxbb: add cts_i958 clock
Martin Blumenstingl (2):
??????clk: meson: mpll: fix division by zero in rate_from_params
??????clk: meson: mpll: use 64bit math in rate_from_params
?MAINTAINERS???????????????????????????|??10 +++
?drivers/clk/meson/Makefile????????????|???2 +-
?drivers/clk/meson/clk-audio-divider.c | 144 ++++++++++++++++++++++++++++++++++
?drivers/clk/meson/clk-mpll.c??????????|??26 +++---
?drivers/clk/meson/clkc.h??????????????|??10 +++
?drivers/clk/meson/gxbb.c??????????????| 144 ++++++++++++++++++++++++++++++++++
?drivers/clk/meson/gxbb.h??????????????|???9 ++-
?7 files changed, 332 insertions(+), 13 deletions(-)
?create mode 100644 drivers/clk/meson/clk-audio-divider.c
WARNING: multiple messages have this Message-ID (diff)
From: Jerome Brunet <jbrunet@baylibre.com>
To: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@codeaurora.org>
Cc: Kevin Hilman <khilman@baylibre.com>,
Neil Armstrong <narmstrong@baylibre.com>,
"linux-clk@vger.kernel.org" <linux-clk@vger.kernel.org>,
"open list:ARM/Amlogic Meson..."
<linux-amlogic@lists.infradead.org>
Subject: [GIT PULL] Amlogic clock driver updates for v4.12 - 2nd batch
Date: Mon, 10 Apr 2017 09:42:01 +0200 [thread overview]
Message-ID: <1491810121.3480.36.camel@baylibre.com> (raw)
Dear clock maintainers,
Below is a request to pull a 2nd batch of update to the Amlogic clock driver. It
is based on the previous PR sent by Kevin.
Cheers
The following changes since commit 3a429818a2e48928ae0114df5fb3b0612dd57001:
Merge branch 'v4.12/clk-drivers' into v4.12/clk (2017-04-04 15:58:11 -0700)
are available in the git repository at:
git://github.com/BayLibre/clk-meson.git tags/meson-clk-for-4.12
for you to fetch changes up to b609338b26f5653aa211fc7af83477e2df6e3f0b:
clk: meson: mpll: use 64bit math in rate_from_params (2017-04-07 17:45:30
+0200)
----------------------------------------------------------------
2nd Amlogic clock driver update for 4.12:
* Protect against holes in onecell_data
* Fix divison by zero and overflow in the mpll driver
* Add audio clock divider driver for i2s clocks
* Add i2s and spdif master clocks
----------------------------------------------------------------
Jerome Brunet (6):
MAINTAINERS: Add maintainers for the meson clock driver
clk: meson: gxbb: protect against holes in the onecell_data array
clk: meson: add audio clock divider support
clk: meson: gxbb: add cts_amclk
clk: meson: gxbb: add cts_mclk_i958
clk: meson: gxbb: add cts_i958 clock
Martin Blumenstingl (2):
clk: meson: mpll: fix division by zero in rate_from_params
clk: meson: mpll: use 64bit math in rate_from_params
MAINTAINERS | 10 +++
drivers/clk/meson/Makefile | 2 +-
drivers/clk/meson/clk-audio-divider.c | 144 ++++++++++++++++++++++++++++++++++
drivers/clk/meson/clk-mpll.c | 26 +++---
drivers/clk/meson/clkc.h | 10 +++
drivers/clk/meson/gxbb.c | 144 ++++++++++++++++++++++++++++++++++
drivers/clk/meson/gxbb.h | 9 ++-
7 files changed, 332 insertions(+), 13 deletions(-)
create mode 100644 drivers/clk/meson/clk-audio-divider.c
next reply other threads:[~2017-04-10 7:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-10 7:42 Jerome Brunet [this message]
2017-04-10 7:42 ` [GIT PULL] Amlogic clock driver updates for v4.12 - 2nd batch Jerome Brunet
2017-04-12 12:52 ` Michael Turquette
2017-04-12 12:52 ` Michael 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=1491810121.3480.36.camel@baylibre.com \
--to=jbrunet@baylibre.com \
--cc=linus-amlogic@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 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.