From: Stephen Boyd <sboyd@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Michael Turquette <mturquette@baylibre.com>,
linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] more clk changes for the merge window
Date: Thu, 6 Feb 2020 10:44:05 -0800 [thread overview]
Message-ID: <20200206184405.183679-1-sboyd@kernel.org> (raw)
The following changes since commit fc6a15c853085f04c30e08bbba7d49cb611f7773:
dt/bindings: clk: fsl,plldig: Drop 'bindings' from schema id (2020-02-03 10:33:34 -0800)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git tags/clk-for-linus
for you to fetch changes up to 5df867145f8adad9e5cdf9d67db1fbc0f71351e9:
of: clk: Make <linux/of_clk.h> self-contained (2020-02-05 14:52:03 -0800)
----------------------------------------------------------------
A collection of fixes that would be good to get merged before -rc1.
- Make of_clk.h self contained
- Fix new qcom DT bindings that just merged to match the DTS files
- Fix qcom clk driver to properly detect DFS clk frequencies
- Fix the ls1028a driver to not deref a pointer before assigning it
There are some conflicts in the dt bindings files.
----------------------------------------------------------------
Colin Ian King (1):
clk: ls1028a: fix a dereference of pointer 'parent' before a null check
Douglas Anderson (12):
dt-bindings: clk: qcom: Fix self-validation, split, and clean cruft
clk: qcom: rcg2: Don't crash if our parent can't be found; return an error
dt-bindings: clock: Fix qcom,dispcc bindings for sdm845/sc7180
clk: qcom: Get rid of fallback global names for dispcc-sc7180
clk: qcom: Get rid of the test clock for dispcc-sc7180
clk: qcom: Use ARRAY_SIZE in dispcc-sc7180 for parent clocks
dt-bindings: clock: Fix qcom,gpucc bindings for sdm845/sc7180/msm8998
clk: qcom: Get rid of the test clock for gpucc-sc7180
clk: qcom: Use ARRAY_SIZE in gpucc-sc7180 for parent clocks
dt-bindings: clock: Cleanup qcom,videocc bindings for sdm845/sc7180
clk: qcom: Get rid of the test clock for videocc-sc7180
clk: qcom: Use ARRAY_SIZE in videocc-sc7180 for parent clocks
Geert Uytterhoeven (1):
of: clk: Make <linux/of_clk.h> self-contained
Stephen Boyd (1):
clk: qcom: Don't overwrite 'cfg' in clk_rcg2_dfs_populate_freq()
.../bindings/clock/qcom,gcc-apq8064.yaml | 83 ++++++++
.../bindings/clock/qcom,gcc-ipq8074.yaml | 51 +++++
.../bindings/clock/qcom,gcc-msm8996.yaml | 68 ++++++
.../bindings/clock/qcom,gcc-msm8998.yaml | 93 +++++++++
.../devicetree/bindings/clock/qcom,gcc-qcs404.yaml | 51 +++++
.../devicetree/bindings/clock/qcom,gcc-sc7180.yaml | 75 +++++++
.../devicetree/bindings/clock/qcom,gcc-sm8150.yaml | 72 +++++++
.../devicetree/bindings/clock/qcom,gcc.yaml | 230 ++++-----------------
.../devicetree/bindings/clock/qcom,gpucc.yaml | 72 -------
.../{qcom,dispcc.yaml => qcom,msm8998-gpucc.yaml} | 33 ++-
.../bindings/clock/qcom,sc7180-dispcc.yaml | 84 ++++++++
.../bindings/clock/qcom,sc7180-gpucc.yaml | 72 +++++++
.../bindings/clock/qcom,sc7180-videocc.yaml | 63 ++++++
.../bindings/clock/qcom,sdm845-dispcc.yaml | 99 +++++++++
.../bindings/clock/qcom,sdm845-gpucc.yaml | 72 +++++++
...{qcom,videocc.yaml => qcom,sdm845-videocc.yaml} | 27 +--
drivers/clk/clk-plldig.c | 4 +-
drivers/clk/qcom/clk-rcg2.c | 11 +-
drivers/clk/qcom/dispcc-sc7180.c | 45 ++--
drivers/clk/qcom/gpucc-sc7180.c | 4 +-
drivers/clk/qcom/videocc-sc7180.c | 4 +-
include/linux/of_clk.h | 3 +
22 files changed, 979 insertions(+), 337 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-apq8064.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-ipq8074.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-msm8996.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-msm8998.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-qcs404.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-sc7180.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-sm8150.yaml
delete mode 100644 Documentation/devicetree/bindings/clock/qcom,gpucc.yaml
rename Documentation/devicetree/bindings/clock/{qcom,dispcc.yaml => qcom,msm8998-gpucc.yaml} (51%)
create mode 100644 Documentation/devicetree/bindings/clock/qcom,sc7180-dispcc.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,sc7180-gpucc.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,sc7180-videocc.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,sdm845-dispcc.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,sdm845-gpucc.yaml
rename Documentation/devicetree/bindings/clock/{qcom,videocc.yaml => qcom,sdm845-videocc.yaml} (61%)
--
Sent by a computer, using git, on the internet
next reply other threads:[~2020-02-06 18:44 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-06 18:44 Stephen Boyd [this message]
2020-02-07 21:55 ` [GIT PULL] more clk changes for the merge window pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2020-08-12 17:39 [GIT PULL] More " Stephen Boyd
2020-08-12 19:58 ` pr-tracker-bot
2021-11-13 6:36 Stephen Boyd
2021-11-13 21:12 ` Linus Torvalds
2021-11-13 21:19 ` pr-tracker-bot
2022-10-16 3:54 Stephen Boyd
2022-10-16 18:18 ` pr-tracker-bot
2023-07-04 16:21 Stephen Boyd
2023-07-04 18:38 ` pr-tracker-bot
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=20200206184405.183679-1-sboyd@kernel.org \
--to=sboyd@kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=torvalds@linux-foundation.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.