From c6da59acc1fbd4fc7626d25f7df692a9c31ff7fb Mon Sep 17 00:00:00 2001 From: Akashdeep Kaur Date: Wed, 4 Feb 2026 23:02:58 +0530 Subject: [PATCH] PENDING: fix(ti): Update the mode value used for RTC only mode Update the value of RTC Only mode used to trigger entry into poweroff mode. This has to be updated as per changes in firmware. Fixes: 40660e2a494f("PENDING: feat(ti): Add support to handle poweroff request for AM62L") Change-Id: Ie5f3540fcf62fa76945f7f7fadf8ea1d0362935a Signed-off-by: Akashdeep Kaur --- plat/ti/k3/common/am62l_psci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plat/ti/k3/common/am62l_psci.c b/plat/ti/k3/common/am62l_psci.c index c4a5fe7bac..ef9b4081c5 100644 --- a/plat/ti/k3/common/am62l_psci.c +++ b/plat/ti/k3/common/am62l_psci.c @@ -157,8 +157,8 @@ static void __dead2 am62l_system_off(void) { INFO("%s: Initiating system poweroff sequence\n", __func__); - /* Notify TIFS to prepare for poweroff (mode = 3 for RTC Only mode) */ - ti_sci_prepare_sleep(0x3, 0, 0); + /* Notify TIFS to prepare for poweroff (mode = 7 for RTC Only mode) */ + ti_sci_prepare_sleep(0x7, 0, 0); /* Enter poweroff by configuring PMIC control register */ mmio_write_32(WKUP_CTRL_MMR_SEC_5_BASE + WKUP_CTRL_PMCTRL_SYS, 0x0U);