aboutsummaryrefslogtreecommitdiff
path: root/product/sgm775
diff options
context:
space:
mode:
authorChris Kay <chris.kay@arm.com>2019-08-29 12:08:50 +0100
committerjimqui01 <54316584+jimqui01@users.noreply.github.com>2020-03-24 17:42:51 +0000
commita3516fa9f47d0934dc724af9171a6ee9e00ea9f2 (patch)
tree06acb713b47b11f4141e4dac9b221aca6b65440e /product/sgm775
parentf15afcef27dc63433985a2c10e5ec5981ffe55ca (diff)
scmi: Add extended logs
This commit expands the detail of the log output of the SCMI module in order to aid in debugging. Details that were previously missing, including the message token and the service name, are now included. Change-Id: I00075b3e4474328f27dc7f6be5b0df21c18c0cfb Signed-off-by: Chris Kay <chris.kay@arm.com>
Diffstat (limited to 'product/sgm775')
-rw-r--r--product/sgm775/scp_ramfw/config_scmi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/product/sgm775/scp_ramfw/config_scmi.c b/product/sgm775/scp_ramfw/config_scmi.c
index b81fc04b..45379688 100644
--- a/product/sgm775/scp_ramfw/config_scmi.c
+++ b/product/sgm775/scp_ramfw/config_scmi.c
@@ -17,7 +17,7 @@
static const struct fwk_element service_table[] = {
[SGM775_SCMI_SERVICE_IDX_PSCI] = {
- .name = "SERVICE0",
+ .name = "PSCI",
.data = &((struct mod_scmi_service_config) {
.transport_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_SMT,
SGM775_SCMI_SERVICE_IDX_PSCI),
@@ -30,7 +30,7 @@ static const struct fwk_element service_table[] = {
}),
},
[SGM775_SCMI_SERVICE_IDX_OSPM_0] = {
- .name = "SERVICE1",
+ .name = "OSPM-0",
.data = &((struct mod_scmi_service_config) {
.transport_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_SMT,
SGM775_SCMI_SERVICE_IDX_OSPM_0),
@@ -43,7 +43,7 @@ static const struct fwk_element service_table[] = {
}),
},
[SGM775_SCMI_SERVICE_IDX_OSPM_1] = {
- .name = "SERVICE2",
+ .name = "OSPM-1",
.data = &((struct mod_scmi_service_config) {
.transport_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_SMT,
SGM775_SCMI_SERVICE_IDX_OSPM_1),