diff --git a/platform/linux/tc/include/pal_base_expected.h b/platform/linux/tc/include/pal_base_expected.h index f6fa8c91d4cf23a90411aa131261261e0f2f7235..de512ed84e127fd69df519b1c402e8163479ffc2 100644 --- a/platform/linux/tc/include/pal_base_expected.h +++ b/platform/linux/tc/include/pal_base_expected.h @@ -37,11 +37,11 @@ static char *agents[] = { static char *vendor_name = "arm"; static char *subvendor_name = "arm"; -#ifdef TC4 +#if defined(TC3) || defined(TC4) #define VERSION_MINOR 14 #else #define VERSION_MINOR 12 #endif static uint32_t implementation_version = VERSION_ENCODE32(2, VERSION_MINOR, 0); -#endif /* __PAL_BASE_EXPECTED_H__ */ +#endif /* __PAL_BASE_EXPECTED_H__ */ \ No newline at end of file diff --git a/platform/linux/tc/include/pal_performance_expected.h b/platform/linux/tc/include/pal_performance_expected.h index 11fd6216354e79fe9a1be50b8d5db867adc10855..64b58e85851dc28e3e06e4c342ac86e21e1fdfdf 100644 --- a/platform/linux/tc/include/pal_performance_expected.h +++ b/platform/linux/tc/include/pal_performance_expected.h @@ -23,19 +23,24 @@ static uint32_t num_perf_domains = 0x04; static uint32_t perf_num_performance_levels[] = { -#if defined(TC4) 5, /* CPU_GROUP_CORTEX_A520 */ 5, /* CPU_GROUP_CORTEX_A720 */ 5, /* CPU_GROUP_CORTEX_X4 */ +#if defined(TC4) 2 /* GPU */ #else - 5, /* CPU_GROUP_CORTEX_A520 */ - 5, /* CPU_GROUP_CORTEX_A720 */ - 5, /* CPU_GROUP_CORTEX_X4 */ 4 /* GPU */ #endif }; -#if defined(TC4) + +#if defined(TC3) +static char *performance_domain_names[] = { + "CPU_GROUP_CORTEX_A520", + "CPU_GROUP_CORTEX_A725", + "CPU_GROUP_CORTEX_X925", + "GPU" +}; +#elif defined(TC4) static char *performance_domain_names[] = { "CPU_GROUP_NEVIS", "CPU_GROUP_GELAS",