From: Bjorn Andersson <andersson@kernel.org>
To: Andy Gross <agross@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Georgi Djakov <djakov@kernel.org>, Leo Yan <leo.yan@linaro.org>,
Evan Green <evgreen@chromium.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>
Cc: Marijn Suijten <marijn.suijten@somainline.org>,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-clk@vger.kernel.org, linux-pm@vger.kernel.org,
devicetree@vger.kernel.org,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Stephan Gerhold <stephan@gerhold.net>
Subject: Re: [PATCH v7 00/22] Restructure RPM SMD ICC
Date: Sat, 15 Jul 2023 10:09:36 -0700 [thread overview]
Message-ID: <168944095056.1619705.13623986680500066147.b4-ty@kernel.org> (raw)
In-Reply-To: <20230526-topic-smd_icc-v7-0-09c78c175546@linaro.org>
On Mon, 19 Jun 2023 15:04:25 +0200, Konrad Dybcio wrote:
> This series reshuffles things around, moving the management of SMD RPM
> bus clocks to the interconnect framework where they belong. This helps
> us solve a couple of issues:
>
> 1. We can work towards unused clk cleanup of RPMCC without worrying
> about it killing some NoC bus, resulting in the SoC dying.
> Deasserting actually unused RPM clocks (among other things) will
> let us achieve "true SoC-wide power collapse states", also known as
> VDD_LOW and VDD_MIN.
>
> [...]
Applied, thanks!
[01/22] dt-bindings: interconnect: Add Qcom RPM ICC bindings
commit: 7296bd3f0046f87e089499865345ab337598f5ab
[02/22] soc: qcom: smd-rpm: Add QCOM_SMD_RPM_STATE_NUM
commit: cb0116090e4cff6da2e9abd1c29b8e16491af176
[03/22] soc: qcom: smd-rpm: Use tabs for defines
commit: 82a793e2d3e3da748f23a0fbe0b4615292625fe8
[04/22] clk: qcom: smd-rpm: Move some RPM resources to the common header
commit: e1e1267413d2e9fbe3a34c5a5f701b0f5fb0bf2c
[05/22] soc: qcom: smd-rpm: Move icc_smd_rpm registration to clk-smd-rpm
commit: 410da7e344a69faf65af8a1e80d9963648a9e6a3
[06/22] interconnect: qcom: icc-rpm: Introduce keep_alive
commit: b979049c38e170286158e97290c892957c836903
[07/22] interconnect: qcom: Add missing headers in icc-rpm.h
commit: 40cdeed66933abc80a9b133f062770af616ce50a
[08/22] interconnect: qcom: Fold smd-rpm.h into icc-rpm.h
commit: 19ced2aec6cdff7d227e012f7ac63d28dae07288
[09/22] interconnect: qcom: smd-rpm: Add rpmcc handling skeleton code
commit: a927eb09d49c73f5250d61d5b7a0b5de09ab6a28
[10/22] interconnect: qcom: Define RPM bus clocks
commit: 918b86042b48da5ea86d0a12495dff95241dedd3
[11/22] interconnect: qcom: sdm660: Hook up RPM bus clk definitions
commit: 70ab8dee97d66560cacf0c58ac6adfcdcab43922
[12/22] interconnect: qcom: msm8996: Hook up RPM bus clk definitions
commit: 9258801ef94f166b519c3f4364f72c7766b9e7e4
[13/22] interconnect: qcom: qcs404: Hook up RPM bus clk definitions
commit: a923b8bbeb145ba192b3f1402de1582eab5adc50
[14/22] interconnect: qcom: msm8939: Hook up RPM bus clk definitions
commit: 258a64f26679523dadb8fd60e9dd1538cab811f1
[15/22] interconnect: qcom: msm8916: Hook up RPM bus clk definitions
commit: 6424985edee17772a83c8e8d1313f511e458f649
[16/22] interconnect: qcom: qcm2290: Hook up RPM bus clk definitions
commit: 9d0a282c3e26c59c5a90d5fb4c167fe103f53bc8
[17/22] interconnect: qcom: icc-rpm: Control bus rpmcc from icc
commit: 11f63efe58a052da3f4d179ba6fdccd128bc95ee
[18/22] clk: qcom: smd-rpm: Separate out interconnect bus clocks
commit: d6edc31f3a68d8d0636e0cfcd9eced7460ad32f4
[19/22] interconnect: qcom: icc-rpm: Fix bucket number
commit: 6ed0e5e60e444c135ce56169784695b5f5fcd1f9
[20/22] interconnect: qcom: icc-rpm: Set bandwidth on both contexts
commit: 32846c4a8f2a80c0138aee07543e7c305d75abea
[21/22] interconnect: qcom: icc-rpm: Set correct bandwidth through RPM bw req
commit: 3b7480106bf8ac2666d901e42bf9835959f79e7f
[22/22] interconnect: qcom: icc-rpm: Fix bandwidth calculations
commit: 17fc623e0f728c35b82a0e79cd4f3b8aab495663
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
prev parent reply other threads:[~2023-07-15 17:06 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-19 13:04 [PATCH v7 00/22] Restructure RPM SMD ICC Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 01/22] dt-bindings: interconnect: Add Qcom RPM ICC bindings Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 02/22] soc: qcom: smd-rpm: Add QCOM_SMD_RPM_STATE_NUM Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 03/22] soc: qcom: smd-rpm: Use tabs for defines Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 04/22] clk: qcom: smd-rpm: Move some RPM resources to the common header Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 05/22] soc: qcom: smd-rpm: Move icc_smd_rpm registration to clk-smd-rpm Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 06/22] interconnect: qcom: icc-rpm: Introduce keep_alive Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 07/22] interconnect: qcom: Add missing headers in icc-rpm.h Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 08/22] interconnect: qcom: Fold smd-rpm.h into icc-rpm.h Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 09/22] interconnect: qcom: smd-rpm: Add rpmcc handling skeleton code Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 10/22] interconnect: qcom: Define RPM bus clocks Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 11/22] interconnect: qcom: sdm660: Hook up RPM bus clk definitions Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 12/22] interconnect: qcom: msm8996: " Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 13/22] interconnect: qcom: qcs404: " Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 14/22] interconnect: qcom: msm8939: " Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 15/22] interconnect: qcom: msm8916: " Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 16/22] interconnect: qcom: qcm2290: " Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 17/22] interconnect: qcom: icc-rpm: Control bus rpmcc from icc Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 18/22] clk: qcom: smd-rpm: Separate out interconnect bus clocks Konrad Dybcio
2023-06-30 4:59 ` Stephen Boyd
2023-06-19 13:04 ` [PATCH v7 19/22] interconnect: qcom: icc-rpm: Fix bucket number Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 20/22] interconnect: qcom: icc-rpm: Set bandwidth on both contexts Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 21/22] interconnect: qcom: icc-rpm: Set correct bandwidth through RPM bw req Konrad Dybcio
2023-06-19 13:04 ` [PATCH v7 22/22] interconnect: qcom: icc-rpm: Fix bandwidth calculations Konrad Dybcio
2023-07-13 17:37 ` [PATCH v7 00/22] Restructure RPM SMD ICC Georgi Djakov
2023-07-15 17:09 ` Bjorn Andersson
2023-07-15 17:09 ` Bjorn Andersson [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=168944095056.1619705.13623986680500066147.b4-ty@kernel.org \
--to=andersson@kernel.org \
--cc=agross@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=djakov@kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=evgreen@chromium.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=leo.yan@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=marijn.suijten@somainline.org \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=stephan@gerhold.net \
/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