diff options
author | Konrad Dybcio <konrad.dybcio@linaro.org> | 2023-04-07 22:14:48 +0200 |
---|---|---|
committer | Georgi Djakov <djakov@kernel.org> | 2023-05-21 09:25:58 +0200 |
commit | a867cf9b65eadc172bc73e56b13458742d4d050e (patch) | |
tree | c327667f8bb8ad00dadfc81b56ff33323e3d39fc /drivers/interconnect/qcom/msm8996.c | |
parent | interconnect: qcom: rpm: Handle interface clocks (diff) | |
download | linux-a867cf9b65eadc172bc73e56b13458742d4d050e.tar.xz linux-a867cf9b65eadc172bc73e56b13458742d4d050e.zip |
interconnect: qcom: icc-rpm: Enforce 2 or 0 bus clocks
For SMD RPM bus scaling to work, we need a pair of sleep-wake clocks.
The variable number of them we previously supported was only a hack
to keep the clocks required for QoS register access, but now that
these are separated, we can leave bus_clks to the actual bus clocks.
In cases where there is no actual bus scaling (such as A0NoC on MSM8996
and GNoC on SDM660 where the HLOS is only supposed to program the QoS
registers and the bus is either static or controlled remotely), allow
for no clock scaling with a boolean property.
Remove all the code related to allowing an arbitrary number of bus_clks,
replace the number by BUS_CLK_MAX (= 2) and guard the bus clock paths
to ensure they are not taken on non-scaling buses.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20230228-topic-qos-v8-6-ee696a2c15a9@linaro.org
Signed-off-by: Georgi Djakov <djakov@kernel.org>
Diffstat (limited to 'drivers/interconnect/qcom/msm8996.c')
-rw-r--r-- | drivers/interconnect/qcom/msm8996.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/interconnect/qcom/msm8996.c b/drivers/interconnect/qcom/msm8996.c index 9aedfc8de4bf..dc9959a87df2 100644 --- a/drivers/interconnect/qcom/msm8996.c +++ b/drivers/interconnect/qcom/msm8996.c @@ -1819,6 +1819,7 @@ static const struct qcom_icc_desc msm8996_a0noc = { .num_nodes = ARRAY_SIZE(a0noc_nodes), .intf_clocks = a0noc_intf_clocks, .num_intf_clocks = ARRAY_SIZE(a0noc_intf_clocks), + .no_clk_scaling = true, .regmap_cfg = &msm8996_a0noc_regmap_config }; |