From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
To: Yassine Oudjana <y.oudjana@protonmail.com>,
Georgi Djakov <djakov@kernel.org>, Andy Gross <agross@kernel.org>,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Rob Herring <robh+dt@kernel.org>
Cc: AngeloGioacchino Del Regno
<angelogioacchino.delregno@somainline.org>,
Marijn Suijten <marijn.suijten@somainline.org>,
Konrad Dybcio <konrad.dybcio@somainline.org>,
Shawn Guo <shawn.guo@linaro.org>,
linux-arm-msm@vger.kernel.org, linux-pm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
~postmarketos/upstreaming@lists.sr.ht
Subject: Re: [PATCH RESEND v5 0/5] interconnect: qcom: Add MSM8996 interconnect driver
Date: Thu, 21 Oct 2021 22:20:52 +0300 [thread overview]
Message-ID: <73fbfa8b-8f71-53b2-f5b6-0f17f4941a91@linaro.org> (raw)
In-Reply-To: <20211021132329.234942-1-y.oudjana@protonmail.com>
On 21/10/2021 16:24, Yassine Oudjana wrote:
> This series adds a driver for interconnects on MSM8996. This fixes some rare display underflows
> and provides a slight heat reduction.
>
> Resending because some addresses in CC got mixed up.
>
> Changes since v4:
> - Rebase on Dmitry's icc-rpm patches[1].
> - Combine SDM660 bindings into the RPM interconnect schema.
> - Clean up qcom_icc_node structs by removing unused properties, moving links to external
> arrays and using the same arrays for multiple nodes where possible.
> - Add support for Aggregate 0 NoC (a0noc).
> Changes since v3:
> - Expand DEFINE_QNODE macros in msm8996.c.
> - Commonize probe function.
> - Don't rename qcom_icc_set in icc-rpmh since it's no longer needed.
> - Code style fixes.
> Changes since v2:
> - Dual-license qcom,msm8996.h and move it to the dt bindings patch
> - Remove interconnect paths from CPUs since cpufreq driver doesn't support icc scaling yet.
> Changes since v1:
> - Split first patch into 2 patches, one for renaming qcom_icc_set in icc-rpmh, and another
> one for the actual commonization.
> - Revert unnecessary move of include line in sdm660.c
>
> [1] https://lore.kernel.org/linux-arm-msm/20210903232421.1384199-1-dmitry.baryshkov@linaro.org/
For the whole series:
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Tested-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> #db820c
>
> Yassine Oudjana (5):
> dt-bindings: interconnect: Combine SDM660 bindings into RPM schema
> interconnect: icc-rpm: Add support for bus power domain
> dt-bindings: interconnect: Add Qualcomm MSM8996 DT bindings
> interconnect: qcom: Add MSM8996 interconnect provider driver
> arm64: dts: qcom: msm8996: Add interconnect support
>
> .../bindings/interconnect/qcom,rpm.yaml | 143 +-
> .../bindings/interconnect/qcom,sdm660.yaml | 185 --
> arch/arm64/boot/dts/qcom/msm8996.dtsi | 93 +
> drivers/interconnect/qcom/Kconfig | 9 +
> drivers/interconnect/qcom/Makefile | 2 +
> drivers/interconnect/qcom/icc-rpm.c | 7 +
> drivers/interconnect/qcom/icc-rpm.h | 1 +
> drivers/interconnect/qcom/msm8996.c | 2113 +++++++++++++++++
> drivers/interconnect/qcom/msm8996.h | 149 ++
> .../dt-bindings/interconnect/qcom,msm8996.h | 163 ++
> 10 files changed, 2673 insertions(+), 192 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sdm660.yaml
> create mode 100644 drivers/interconnect/qcom/msm8996.c
> create mode 100644 drivers/interconnect/qcom/msm8996.h
> create mode 100644 include/dt-bindings/interconnect/qcom,msm8996.h
>
--
With best wishes
Dmitry
prev parent reply other threads:[~2021-10-21 19:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-21 13:24 [PATCH RESEND v5 0/5] interconnect: qcom: Add MSM8996 interconnect driver Yassine Oudjana
2021-10-21 13:24 ` [PATCH RESEND v5 1/5] dt-bindings: interconnect: Combine SDM660 bindings into RPM schema Yassine Oudjana
2021-10-27 20:35 ` Rob Herring
2021-10-21 13:24 ` [PATCH RESEND v5 2/5] interconnect: icc-rpm: Add support for bus power domain Yassine Oudjana
2021-10-21 13:24 ` [PATCH RESEND v5 3/5] dt-bindings: interconnect: Add Qualcomm MSM8996 DT bindings Yassine Oudjana
2021-10-27 20:36 ` Rob Herring
2021-10-21 13:25 ` [PATCH RESEND v5 4/5] interconnect: qcom: Add MSM8996 interconnect provider driver Yassine Oudjana
2021-11-22 18:52 ` Georgi Djakov
2021-10-21 13:25 ` [PATCH RESEND v5 5/5] arm64: dts: qcom: msm8996: Add interconnect support Yassine Oudjana
2022-07-07 2:31 ` (subset) " Bjorn Andersson
2021-10-21 19:20 ` Dmitry Baryshkov [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=73fbfa8b-8f71-53b2-f5b6-0f17f4941a91@linaro.org \
--to=dmitry.baryshkov@linaro.org \
--cc=agross@kernel.org \
--cc=angelogioacchino.delregno@somainline.org \
--cc=bjorn.andersson@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=djakov@kernel.org \
--cc=konrad.dybcio@somainline.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=marijn.suijten@somainline.org \
--cc=robh+dt@kernel.org \
--cc=shawn.guo@linaro.org \
--cc=y.oudjana@protonmail.com \
--cc=~postmarketos/upstreaming@lists.sr.ht \
/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).