Commit 0d440d81 authored by Dmitry Baryshkov's avatar Dmitry Baryshkov Committed by Bjorn Andersson

arm64: dts: qcom: msm8996: fix GPU OPP table

Fix Adreno OPP table according to the msm-3.18. Enable 624 MHz for the
speed bin 3 and 560 MHz for bins 2 and 3.

Fixes: 69cc3114 ("arm64: dts: Add Adreno GPU definitions")
Signed-off-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Acked-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220724140421.1933004-7-dmitry.baryshkov@linaro.org
parent f1646de4
...@@ -1233,17 +1233,17 @@ gpu_opp_table: opp-table { ...@@ -1233,17 +1233,17 @@ gpu_opp_table: opp-table {
compatible = "operating-points-v2"; compatible = "operating-points-v2";
/* /*
* 624Mhz and 560Mhz are only available on speed * 624Mhz is only available on speed bins 0 and 3.
* bin (1 << 0). All the rest are available on * 560Mhz is only available on speed bins 0, 2 and 3.
* all bins of the hardware * All the rest are available on all bins of the hardware.
*/ */
opp-624000000 { opp-624000000 {
opp-hz = /bits/ 64 <624000000>; opp-hz = /bits/ 64 <624000000>;
opp-supported-hw = <0x01>; opp-supported-hw = <0x09>;
}; };
opp-560000000 { opp-560000000 {
opp-hz = /bits/ 64 <560000000>; opp-hz = /bits/ 64 <560000000>;
opp-supported-hw = <0x01>; opp-supported-hw = <0x0d>;
}; };
opp-510000000 { opp-510000000 {
opp-hz = /bits/ 64 <510000000>; opp-hz = /bits/ 64 <510000000>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment