From afbf5ab393a3e387a31deecf43ad34778488adfb Mon Sep 17 00:00:00 2001 From: goukon01 Date: Mon, 23 Dec 2024 18:25:09 +0530 Subject: [PATCH] tc: Update expected num_power_domains to be 1 Since OSPM will no longer have access to CPUs, change expected power domains to be 1; the GPU. Signed-off-by: Gourish Kondeti --- platform/linux/tc/include/pal_power_domain_expected.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/linux/tc/include/pal_power_domain_expected.h b/platform/linux/tc/include/pal_power_domain_expected.h index dfd9fa0..a6398ea 100644 --- a/platform/linux/tc/include/pal_power_domain_expected.h +++ b/platform/linux/tc/include/pal_power_domain_expected.h @@ -20,8 +20,8 @@ /* Expected POWER DOMAIN parameters */ #ifdef POWER_DOMAIN_PROTOCOL -#ifdef TC4 -static uint32_t num_power_domains = 0x0a; +#if defined(TC3) || defined(TC4) +static uint32_t num_power_domains = 0x01; #else static uint32_t num_power_domains = 0x0b; #endif -- GitLab