aboutsummaryrefslogtreecommitdiff
path: root/product/sgm775
diff options
context:
space:
mode:
authorJim Quigley <jim.quigley@arm.com>2020-04-27 13:38:37 +0100
committerChris Kay <chris@cjkay.com>2020-05-01 15:05:22 +0100
commit7d44052814e1344b279b584882d951605992d651 (patch)
tree9509eecc55119d309be6dc86e2de7b9b6c4132eb /product/sgm775
parentf0d0578f2bb2f39f27be1d60ca0b270768b89f5e (diff)
SCMI: Add NOTIFY_LEVEL/_LIMIT SCMI commands
This patch adds the SCMI performance protocol NOTIFY_LIMITS and NOTIFY_LEVELS functionality. Change-Id: I2d0e3173696617e050a846fd6452c60e01ca94ac Signed-off-by: Jim Quigley <jim.quigley@arm.com>
Diffstat (limited to 'product/sgm775')
-rw-r--r--product/sgm775/scp_ramfw/config_dvfs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/product/sgm775/scp_ramfw/config_dvfs.c b/product/sgm775/scp_ramfw/config_dvfs.c
index 1c01c851..4b4928bf 100644
--- a/product/sgm775/scp_ramfw/config_dvfs.c
+++ b/product/sgm775/scp_ramfw/config_dvfs.c
@@ -26,6 +26,7 @@ static const struct mod_dvfs_domain_config cpu_group_little = {
.clock_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_CLOCK, 1),
.alarm_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_TIMER, 0,
CONFIG_TIMER_DVFS_CPU_GROUP_LITTLE),
+ .notification_id = FWK_ID_NONE_INIT,
.retry_ms = 1,
.latency = 1200,
.sustained_idx = 2,
@@ -59,6 +60,7 @@ static const struct mod_dvfs_domain_config cpu_group_big = {
.clock_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_CLOCK, 0),
.alarm_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_TIMER, 0,
CONFIG_TIMER_DVFS_CPU_GROUP_BIG),
+ .notification_id = FWK_ID_NONE_INIT,
.retry_ms = 1,
.latency = 1200,
.sustained_idx = 2,
@@ -92,6 +94,7 @@ static const struct mod_dvfs_domain_config gpu = {
.clock_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_CLOCK, 2),
.alarm_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_TIMER, 0,
CONFIG_TIMER_DVFS_GPU),
+ .notification_id = FWK_ID_NONE_INIT,
.retry_ms = 1,
.latency = 1200,
.sustained_idx = 4,