diff options
| author | Quentin Perret <quentin.perret@arm.com> | 2018-09-10 12:28:10 -0400 |
|---|---|---|
| committer | Sudeep Holla <sudeep.holla@arm.com> | 2018-09-10 12:37:06 -0400 |
| commit | 1a63fe9a2b1f47af5b2b7436b41824b14999c17a (patch) | |
| tree | b9f7f4b738b24ceb09bccad92b7e7266bbdd55e5 /include/linux | |
| parent | ca64b719a1e665ac7449b6a968059176af7365a8 (diff) | |
firmware: arm_scmi: add a getter for power of performance states
The SCMI protocol can be used to get power estimates from firmware
corresponding to each performance state of a device. Although these power
costs are already managed by the SCMI firmware driver, they are not
exposed to any external subsystem yet.
Fix this by adding a new get_power() interface to the exisiting perf_ops
defined for the SCMI protocol.
Signed-off-by: Quentin Perret <quentin.perret@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/scmi_protocol.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/scmi_protocol.h b/include/linux/scmi_protocol.h index f4c9fc0fc755..3105055c00a7 100644 --- a/include/linux/scmi_protocol.h +++ b/include/linux/scmi_protocol.h | |||
| @@ -91,6 +91,8 @@ struct scmi_clk_ops { | |||
| 91 | * to sustained performance level mapping | 91 | * to sustained performance level mapping |
| 92 | * @freq_get: gets the frequency for a given device using sustained frequency | 92 | * @freq_get: gets the frequency for a given device using sustained frequency |
| 93 | * to sustained performance level mapping | 93 | * to sustained performance level mapping |
| 94 | * @est_power_get: gets the estimated power cost for a given performance domain | ||
| 95 | * at a given frequency | ||
| 94 | */ | 96 | */ |
| 95 | struct scmi_perf_ops { | 97 | struct scmi_perf_ops { |
| 96 | int (*limits_set)(const struct scmi_handle *handle, u32 domain, | 98 | int (*limits_set)(const struct scmi_handle *handle, u32 domain, |
| @@ -110,6 +112,8 @@ struct scmi_perf_ops { | |||
| 110 | unsigned long rate, bool poll); | 112 | unsigned long rate, bool poll); |
| 111 | int (*freq_get)(const struct scmi_handle *handle, u32 domain, | 113 | int (*freq_get)(const struct scmi_handle *handle, u32 domain, |
| 112 | unsigned long *rate, bool poll); | 114 | unsigned long *rate, bool poll); |
| 115 | int (*est_power_get)(const struct scmi_handle *handle, u32 domain, | ||
| 116 | unsigned long *rate, unsigned long *power); | ||
| 113 | }; | 117 | }; |
| 114 | 118 | ||
| 115 | /** | 119 | /** |
