aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSibi Sankar <[email protected]>2024-03-12 15:17:25 +0530
committerViresh Kumar <[email protected]>2024-03-15 11:19:26 +0530
commita897575e79d7a2ec79abe942b50ecd1d1cdd821b (patch)
tree993a9131fc0316fc20ad3c6f2bdeab4912dc3ede
parent480c64ae1c36b999a863174e94e825705390642f (diff)
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 <[email protected]> Reviewed-by: Sudeep Holla <[email protected]> Signed-off-by: Sibi Sankar <[email protected]> Reviewed-by: Dhruva Gole <[email protected]> Signed-off-by: Viresh Kumar <[email protected]>
-rw-r--r--drivers/firmware/arm_scmi/perf.c3
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;