* [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc
@ 2025-08-22 9:26 Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc Neil Armstrong
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Bryan O'Donoghue, Konrad Dybcio, Dmitry Baryshkov,
Vladimir Zapolskiy, Taniya Das, Dmitry Baryshkov
This is a continuation of [1] ("clk: qcom: Add support to attach multiple power domains in cc probe"),
where all the clock changes were merged and the DT changes are lying
on the lists for allmost 4 months now.
I kindly asked for those patches to be re-send separately [2], but was
ignored, and the lack of those causes a bunch of DT check errors, hopefully they can
be picked for the next revision.
I did apply them on current next and fixed a patch 4 that
didn't apply cleanly.
[1] https://lore.kernel.org/all/20250530-videocc-pll-multi-pd-voting-v5-0-02303b3a582d@quicinc.com/
[2] https://lore.kernel.org/all/8e56e1a8-7b26-44df-ad57-e2092cb5c9ab@linaro.org/
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
Changes in v2:
- Fixed patch 5 commit msg
- Link to v1: https://lore.kernel.org/r/20250821-topic-sm8x50-upstream-pll-multi-pd-voting-dt-v1-0-a510c72da096@linaro.org
---
Jagadeesh Kona (5):
arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc
arm64: dts: qcom: sm8550: Additionally manage MXC power domain in videocc
arm64: dts: qcom: sm8650: Additionally manage MXC power domain in videocc
arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc
arm64: dts: qcom: sm8650: Additionally manage MXC power domain in camcc
Vladimir Zapolskiy (1):
arm64: dts: qcom: sm8550: Additionally manage MXC power domain in camcc
arch/arm64/boot/dts/qcom/sm8450.dtsi | 12 ++++++++----
arch/arm64/boot/dts/qcom/sm8550.dtsi | 12 ++++++++----
arch/arm64/boot/dts/qcom/sm8650.dtsi | 6 ++++--
3 files changed, 20 insertions(+), 10 deletions(-)
---
base-commit: 6f66e22d741775dbd54e174560ae76b46750e570
change-id: 20250821-topic-sm8x50-upstream-pll-multi-pd-voting-dt-a56291d959ea
Best regards,
--
Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 2/6] arm64: dts: qcom: sm8550: " Neil Armstrong
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Bryan O'Donoghue, Konrad Dybcio, Dmitry Baryshkov
From: Jagadeesh Kona <quic_jkona@quicinc.com>
Videocc requires both MMCX and MXC rails to be powered ON to configure
the video PLLs on SM8450 platform. Hence add MXC power domain to videocc
node on SM8450.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8450.dtsi | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index 2baef6869ed7c17efb239e86013c15ef6ef5f48f..8f6db0d78f738b14c776735d6b3ae9233b165026 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -3199,8 +3199,10 @@ videocc: clock-controller@aaf0000 {
reg = <0 0x0aaf0000 0 0x10000>;
clocks = <&rpmhcc RPMH_CXO_CLK>,
<&gcc GCC_VIDEO_AHB_CLK>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
- required-opps = <&rpmhpd_opp_low_svs>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
+ required-opps = <&rpmhpd_opp_low_svs>,
+ <&rpmhpd_opp_low_svs>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/6] arm64: dts: qcom: sm8550: Additionally manage MXC power domain in videocc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 3/6] arm64: dts: qcom: sm8650: " Neil Armstrong
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Bryan O'Donoghue, Konrad Dybcio, Dmitry Baryshkov
From: Jagadeesh Kona <quic_jkona@quicinc.com>
Videocc requires both MMCX and MXC rails to be powered ON to configure
the video PLLs on SM8550 platform. Hence add MXC power domain to videocc
node on SM8550.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8550.dtsi | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi
index 38d139d1dd4a994287c03d064ca01d59a11ac771..d4bffcc244c98e87464cb2a4075c21f3cd368482 100644
--- a/arch/arm64/boot/dts/qcom/sm8550.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi
@@ -3307,8 +3307,10 @@ videocc: clock-controller@aaf0000 {
reg = <0 0x0aaf0000 0 0x10000>;
clocks = <&bi_tcxo_div2>,
<&gcc GCC_VIDEO_AHB_CLK>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
- required-opps = <&rpmhpd_opp_low_svs>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
+ required-opps = <&rpmhpd_opp_low_svs>,
+ <&rpmhpd_opp_low_svs>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 3/6] arm64: dts: qcom: sm8650: Additionally manage MXC power domain in videocc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 2/6] arm64: dts: qcom: sm8550: " Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 4/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc Neil Armstrong
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Bryan O'Donoghue, Konrad Dybcio, Dmitry Baryshkov
From: Jagadeesh Kona <quic_jkona@quicinc.com>
Videocc requires both MMCX and MXC rails to be powered ON to configure
the video PLLs on SM8650 platform. Hence add MXC power domain to videocc
node on SM8650.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8650.dtsi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8650.dtsi b/arch/arm64/boot/dts/qcom/sm8650.dtsi
index d6794901f06b50e8629afd081cb7d229ea342f84..99b7c6603f284df54b0a4e0ed554817fa8ce6f35 100644
--- a/arch/arm64/boot/dts/qcom/sm8650.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8650.dtsi
@@ -5236,7 +5236,8 @@ videocc: clock-controller@aaf0000 {
reg = <0 0x0aaf0000 0 0x10000>;
clocks = <&bi_tcxo_div2>,
<&gcc GCC_VIDEO_AHB_CLK>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 4/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
` (2 preceding siblings ...)
2025-08-22 9:26 ` [PATCH v2 3/6] arm64: dts: qcom: sm8650: " Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 5/6] arm64: dts: qcom: sm8550: " Neil Armstrong
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Konrad Dybcio, Dmitry Baryshkov, Bryan O'Donoghue
From: Jagadeesh Kona <quic_jkona@quicinc.com>
Camcc requires both MMCX and MXC rails to be powered ON to configure
the camera PLLs on SM8450 platform. Hence add MXC power domain to
camcc node on SM8450.
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8450.dtsi | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index 8f6db0d78f738b14c776735d6b3ae9233b165026..dad1395c8c6712d233e5acd558e67f1e53d678ee 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -3293,8 +3293,10 @@ camcc: clock-controller@ade0000 {
<&rpmhcc RPMH_CXO_CLK>,
<&rpmhcc RPMH_CXO_CLK_A>,
<&sleep_clk>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
- required-opps = <&rpmhpd_opp_low_svs>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
+ required-opps = <&rpmhpd_opp_low_svs>,
+ <&rpmhpd_opp_low_svs>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 5/6] arm64: dts: qcom: sm8550: Additionally manage MXC power domain in camcc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
` (3 preceding siblings ...)
2025-08-22 9:26 ` [PATCH v2 4/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 6/6] arm64: dts: qcom: sm8650: " Neil Armstrong
2025-09-01 19:46 ` [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Bjorn Andersson
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Vladimir Zapolskiy, Taniya Das, Konrad Dybcio, Dmitry Baryshkov,
Bryan O'Donoghue
From: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
Camcc requires both MMCX and MXC rails to be powered ON to configure
the camera PLLs on SM8550 platform. Hence add MXC power domain to
camcc node on SM8550.
Fixes: e271b59e39a6f ("arm64: dts: qcom: sm8550: Add camera clock controller")
Reviewed-by: Taniya Das <quic_tdas@quicinc.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8550.dtsi | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi
index d4bffcc244c98e87464cb2a4075c21f3cd368482..54ea21e1778a7c104cdf6865f84a7f8b5a8691ca 100644
--- a/arch/arm64/boot/dts/qcom/sm8550.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi
@@ -3625,8 +3625,10 @@ camcc: clock-controller@ade0000 {
<&bi_tcxo_div2>,
<&bi_tcxo_ao_div2>,
<&sleep_clk>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
- required-opps = <&rpmhpd_opp_low_svs>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
+ required-opps = <&rpmhpd_opp_low_svs>,
+ <&rpmhpd_opp_low_svs>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 6/6] arm64: dts: qcom: sm8650: Additionally manage MXC power domain in camcc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
` (4 preceding siblings ...)
2025-08-22 9:26 ` [PATCH v2 5/6] arm64: dts: qcom: sm8550: " Neil Armstrong
@ 2025-08-22 9:26 ` Neil Armstrong
2025-09-01 19:46 ` [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Bjorn Andersson
6 siblings, 0 replies; 8+ messages in thread
From: Neil Armstrong @ 2025-08-22 9:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jagadeesh Kona, Dmitry Baryshkov
Cc: linux-arm-msm, devicetree, linux-kernel, Neil Armstrong,
Konrad Dybcio, Dmitry Baryshkov, Bryan O'Donoghue
From: Jagadeesh Kona <quic_jkona@quicinc.com>
Camcc requires both MMCX and MXC rails to be powered ON to configure
the camera PLLs on SM8650 platform. Hence add MXC power domain to
camcc node on SM8650.
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Jagadeesh Kona <quic_jkona@quicinc.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8650.dtsi | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8650.dtsi b/arch/arm64/boot/dts/qcom/sm8650.dtsi
index 99b7c6603f284df54b0a4e0ed554817fa8ce6f35..890c4341179a471416bd63308d13b0e313188142 100644
--- a/arch/arm64/boot/dts/qcom/sm8650.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8650.dtsi
@@ -5349,7 +5349,8 @@ camcc: clock-controller@ade0000 {
<&bi_tcxo_div2>,
<&bi_tcxo_ao_div2>,
<&sleep_clk>;
- power-domains = <&rpmhpd RPMHPD_MMCX>;
+ power-domains = <&rpmhpd RPMHPD_MMCX>,
+ <&rpmhpd RPMHPD_MXC>;
#clock-cells = <1>;
#reset-cells = <1>;
#power-domain-cells = <1>;
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
` (5 preceding siblings ...)
2025-08-22 9:26 ` [PATCH v2 6/6] arm64: dts: qcom: sm8650: " Neil Armstrong
@ 2025-09-01 19:46 ` Bjorn Andersson
6 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2025-09-01 19:46 UTC (permalink / raw)
To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Jagadeesh Kona, Dmitry Baryshkov, Neil Armstrong
Cc: linux-arm-msm, devicetree, linux-kernel, Bryan O'Donoghue,
Konrad Dybcio, Dmitry Baryshkov, Vladimir Zapolskiy, Taniya Das
On Fri, 22 Aug 2025 11:26:32 +0200, Neil Armstrong wrote:
> This is a continuation of [1] ("clk: qcom: Add support to attach multiple power domains in cc probe"),
> where all the clock changes were merged and the DT changes are lying
> on the lists for allmost 4 months now.
>
> I kindly asked for those patches to be re-send separately [2], but was
> ignored, and the lack of those causes a bunch of DT check errors, hopefully they can
> be picked for the next revision.
>
> [...]
Applied, thanks!
[1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc
commit: 235399565582d092ff8fb5757eee63b1367ea6b9
[2/6] arm64: dts: qcom: sm8550: Additionally manage MXC power domain in videocc
commit: d49e683574537d416aa0fb022d800430e7c045b6
[3/6] arm64: dts: qcom: sm8650: Additionally manage MXC power domain in videocc
commit: 086079090571910ead0510e756cea14ff3759d4e
[4/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc
commit: ad43a5317a8bda7fd9d6ad5f0b6248ba11900b44
[5/6] arm64: dts: qcom: sm8550: Additionally manage MXC power domain in camcc
commit: 169ccd7cec9b702778ffb58a436f757db23154f2
[6/6] arm64: dts: qcom: sm8650: Additionally manage MXC power domain in camcc
commit: 673fa9a42606a755068e7ab6ab92cf61db243149
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-09-01 19:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-22 9:26 [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 1/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in videocc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 2/6] arm64: dts: qcom: sm8550: " Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 3/6] arm64: dts: qcom: sm8650: " Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 4/6] arm64: dts: qcom: sm8450: Additionally manage MXC power domain in camcc Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 5/6] arm64: dts: qcom: sm8550: " Neil Armstrong
2025-08-22 9:26 ` [PATCH v2 6/6] arm64: dts: qcom: sm8650: " Neil Armstrong
2025-09-01 19:46 ` [PATCH v2 0/6] arm64: dts: qcom: Add multiple power domains in videocc/gpucc Bjorn Andersson
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).