* [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
@ 2026-03-08 4:26 Alexander Koskovich
2026-03-08 8:48 ` Krzysztof Kozlowski
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Alexander Koskovich @ 2026-03-08 4:26 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Dmitry Baryshkov, Thara Gopinath
Cc: linux-arm-msm, devicetree, linux-kernel, Alexander Koskovich
This resolves the following error seen on the ASUS ROG Phone 3:
cpu cpu7: Voltage update failed freq=3091200
cpu cpu7: failed to update OPP for freq=3091200
Fixes: 8e0e8016cb79 ("arm64: dts: qcom: sm8250: Add CPU opp tables")
Signed-off-by: Alexander Koskovich <akoskovich@pm.me>
---
arch/arm64/boot/dts/qcom/sm8250.dtsi | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8250.dtsi b/arch/arm64/boot/dts/qcom/sm8250.dtsi
index c7dffa440074..37c41cc1abdd 100644
--- a/arch/arm64/boot/dts/qcom/sm8250.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8250.dtsi
@@ -665,6 +665,11 @@ cpu7_opp20: opp-2841600000 {
opp-hz = /bits/ 64 <2841600000>;
opp-peak-kBps = <8368000 51609600>;
};
+
+ cpu7_opp21: opp-3091200000 {
+ opp-hz = /bits/ 64 <3091200000>;
+ opp-peak-kBps = <8368000 51609600>;
+ };
};
firmware {
---
base-commit: 11439c4635edd669ae435eec308f4ab8a0804808
change-id: 20260307-sm8250-cpu7-opp-d34e2ed9d0a4
Best regards,
--
Alexander Koskovich <akoskovich@pm.me>
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
2026-03-08 4:26 [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Alexander Koskovich
@ 2026-03-08 8:48 ` Krzysztof Kozlowski
2026-03-08 18:03 ` Alexander Koskovich
2026-03-11 13:13 ` Konrad Dybcio
2026-03-30 16:01 ` Bjorn Andersson
2 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2026-03-08 8:48 UTC (permalink / raw)
To: Alexander Koskovich, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Dmitry Baryshkov,
Thara Gopinath
Cc: linux-arm-msm, devicetree, linux-kernel
On 08/03/2026 05:26, Alexander Koskovich wrote:
> This resolves the following error seen on the ASUS ROG Phone 3:
git grep "ASUS ROG Phone" gives me zero results so this is insufficient
argument considering you are changing multiple other devices which might
not support that.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
2026-03-08 8:48 ` Krzysztof Kozlowski
@ 2026-03-08 18:03 ` Alexander Koskovich
2026-03-09 11:03 ` Konrad Dybcio
0 siblings, 1 reply; 6+ messages in thread
From: Alexander Koskovich @ 2026-03-08 18:03 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Dmitry Baryshkov, Thara Gopinath, linux-arm-msm,
devicetree, linux-kernel
On Sunday, March 8th, 2026 at 4:48 AM, Krzysztof Kozlowski <krzk@kernel.org> wrote:
> git grep "ASUS ROG Phone" gives me zero results so this is insufficient
> argument considering you are changing multiple other devices which might
> not support that.
Also I'm not 100% sure that this applies to all SM8250 devices, should I just fold this into the ROG 3 DTS submission later and put it in the board specific DTS? As I can't validate it on any other SM8250.
Thanks,
Alex
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
2026-03-08 18:03 ` Alexander Koskovich
@ 2026-03-09 11:03 ` Konrad Dybcio
0 siblings, 0 replies; 6+ messages in thread
From: Konrad Dybcio @ 2026-03-09 11:03 UTC (permalink / raw)
To: Alexander Koskovich, Krzysztof Kozlowski
Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Dmitry Baryshkov, Thara Gopinath, linux-arm-msm,
devicetree, linux-kernel
On 3/8/26 7:03 PM, Alexander Koskovich wrote:
> On Sunday, March 8th, 2026 at 4:48 AM, Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
>> git grep "ASUS ROG Phone" gives me zero results so this is insufficient
>> argument considering you are changing multiple other devices which might
>> not support that.
>
> Also I'm not 100% sure that this applies to all SM8250 devices, should I just fold this into the ROG 3 DTS submission later and put it in the board specific DTS? As I can't validate it on any other SM8250.
The qcom-cpufreq-hw driver reads out the LUT that has been programmed
into the device and only considers OPPs that match those entries, so no
worries here.
This is the case for all Qualcomm SoCs starting with SDM845.
For reference, SDM630/MSM8998 use the same hardware, but need
programming from the HLOS which is notoriously long and annoying, there
you can actually make mistakes that result in instability.
Konrad
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
2026-03-08 4:26 [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Alexander Koskovich
2026-03-08 8:48 ` Krzysztof Kozlowski
@ 2026-03-11 13:13 ` Konrad Dybcio
2026-03-30 16:01 ` Bjorn Andersson
2 siblings, 0 replies; 6+ messages in thread
From: Konrad Dybcio @ 2026-03-11 13:13 UTC (permalink / raw)
To: Alexander Koskovich, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Dmitry Baryshkov,
Thara Gopinath
Cc: linux-arm-msm, devicetree, linux-kernel
On 3/8/26 5:26 AM, Alexander Koskovich wrote:
> This resolves the following error seen on the ASUS ROG Phone 3:
>
> cpu cpu7: Voltage update failed freq=3091200
> cpu cpu7: failed to update OPP for freq=3091200
>
> Fixes: 8e0e8016cb79 ("arm64: dts: qcom: sm8250: Add CPU opp tables")
> Signed-off-by: Alexander Koskovich <akoskovich@pm.me>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
2026-03-08 4:26 [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Alexander Koskovich
2026-03-08 8:48 ` Krzysztof Kozlowski
2026-03-11 13:13 ` Konrad Dybcio
@ 2026-03-30 16:01 ` Bjorn Andersson
2 siblings, 0 replies; 6+ messages in thread
From: Bjorn Andersson @ 2026-03-30 16:01 UTC (permalink / raw)
To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Dmitry Baryshkov, Thara Gopinath, Alexander Koskovich
Cc: linux-arm-msm, devicetree, linux-kernel, Alexander Koskovich
On Sun, 08 Mar 2026 04:26:37 +0000, Alexander Koskovich wrote:
> This resolves the following error seen on the ASUS ROG Phone 3:
>
> cpu cpu7: Voltage update failed freq=3091200
> cpu cpu7: failed to update OPP for freq=3091200
>
>
Applied, thanks!
[1/1] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP
commit: b683730e27ba4f91986c4c92f5cb7297f1e01a6d
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-30 16:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-08 4:26 [PATCH] arm64: dts: qcom: sm8250: Add missing CPU7 3.09GHz OPP Alexander Koskovich
2026-03-08 8:48 ` Krzysztof Kozlowski
2026-03-08 18:03 ` Alexander Koskovich
2026-03-09 11:03 ` Konrad Dybcio
2026-03-11 13:13 ` Konrad Dybcio
2026-03-30 16:01 ` Bjorn Andersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox