From 17e090357d8b4e8523e4af360d97ff6af27ba494 Mon Sep 17 00:00:00 2001 From: Monalisa Jena Date: Wed, 6 Apr 2022 11:58:51 +0530 Subject: [PATCH] Add changes for tc0-2022.02.25 release Added VOLTAGE_PROTOCOL as supported protocols. Changed implementation version from 2.8 to 2.9 Replaced performance domain name MAKALU with MATTERHORN. Replaced voltage domain names from USB to DUMMY_VOLTD. Signed-off-by: Monalisa Jena --- platform/linux/tc/include/pal_base_expected.h | 5 +++-- platform/linux/tc/include/pal_performance_expected.h | 4 ++-- platform/linux/tc/include/pal_voltage_expected.h | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/platform/linux/tc/include/pal_base_expected.h b/platform/linux/tc/include/pal_base_expected.h index 61a6ae3..e856304 100644 --- a/platform/linux/tc/include/pal_base_expected.h +++ b/platform/linux/tc/include/pal_base_expected.h @@ -26,7 +26,8 @@ static uint32_t supported_protocols[] = { BASE_PROTOCOL_ID, PWR_DOMAIN_PROTOCOL_ID, PERFORMANCE_PROTOCOL_ID, - CLOCK_PROTOCOL_ID + CLOCK_PROTOCOL_ID, + VOLTAGE_PROTOCOL }; static char *agents[] = { @@ -37,6 +38,6 @@ static char *agents[] = { static char *vendor_name = "arm"; static char *subvendor_name = "arm"; -static uint32_t implementation_version = VERSION_ENCODE32(2, 8, 0); +static uint32_t implementation_version = VERSION_ENCODE32(2, 9, 0); #endif /* __PAL_BASE_EXPECTED_H__ */ diff --git a/platform/linux/tc/include/pal_performance_expected.h b/platform/linux/tc/include/pal_performance_expected.h index bebecae..93cbf91 100644 --- a/platform/linux/tc/include/pal_performance_expected.h +++ b/platform/linux/tc/include/pal_performance_expected.h @@ -30,8 +30,8 @@ static uint32_t perf_num_performance_levels[] = { static char *performance_domain_names[] = { "CPU_GROUP_KLEIN", - "CPU_GROUP_MAKALU", - "CPU_GROUP_MAKALU_ELP" + "CPU_GROUP_MATTERHORN", + "CPU_GROUP_MATTERHORN_ELP" }; uint32_t statistics_address_low_perf = 0; diff --git a/platform/linux/tc/include/pal_voltage_expected.h b/platform/linux/tc/include/pal_voltage_expected.h index 8114048..33ee49a 100755 --- a/platform/linux/tc/include/pal_voltage_expected.h +++ b/platform/linux/tc/include/pal_voltage_expected.h @@ -23,7 +23,7 @@ uint32_t num_voltage_domains = 0x01; static char *voltage_domain_names[] = { - "USB", + "DUMMY_VOLTD", }; #endif -- GitLab