diff options
author | 2024-03-12 15:17:25 +0530 | |
---|---|---|
committer | 2024-03-15 11:19:26 +0530 | |
commit | a897575e79d7a2ec79abe942b50ecd1d1cdd821b (patch) | |
tree | 993a9131fc0316fc20ad3c6f2bdeab4912dc3ede | |
parent | Merge branch 'opp/boost-data' into cpufreq/arm/linux-next (diff) | |
download | wireguard-linux-a897575e79d7a2ec79abe942b50ecd1d1cdd821b.tar.xz wireguard-linux-a897575e79d7a2ec79abe942b50ecd1d1cdd821b.zip |
firmware: arm_scmi: Add support for marking certain frequencies as turbo
All opps above the sustained frequency are treated as turbo, so mark them
accordingly.
Suggested-by: Sudeep Holla <sudeep.holla@arm.com>
Reviewed-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Sibi Sankar <quic_sibis@quicinc.com>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
-rw-r--r-- | drivers/firmware/arm_scmi/perf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/firmware/arm_scmi/perf.c b/drivers/firmware/arm_scmi/perf.c index be1801fb848d..280b29c0a903 100644 --- a/drivers/firmware/arm_scmi/perf.c +++ b/drivers/firmware/arm_scmi/perf.c @@ -819,6 +819,9 @@ static int scmi_dvfs_device_opps_add(const struct scmi_protocol_handle *ph, else freq = dom->opp[idx].indicative_freq * dom->mult_factor; + /* All OPPs above the sustained frequency are treated as turbo */ + data.turbo = freq > dom->sustained_freq_khz * 1000; + data.level = dom->opp[idx].perf; data.freq = freq; |