Skip to content

Commit c95e672

Browse files
kwillis01praneethbajjuri
authored andcommitted
fix(Release_Specific_Workarounds): Update diff for RTC + DDR entry
Update the RTC Only + DDR entry method diff to be current with SDK 11.2. Signed-off-by: Kendall Willis <[email protected]>
1 parent 0a4654a commit c95e672

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

source/devices/AM62LX/linux/Release_Specific_Workarounds.rst

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,17 @@ For rebuilding U-Boot and generating the new :file:`tispl.bin` follow :ref:`Buil
1515
.. code-block:: diff
1616
1717
diff --git a/plat/ti/k3/common/am62l_psci.c b/plat/ti/k3/common/am62l_psci.c
18-
index 70f2aecdd..115729f4a 100644
18+
index 3df4986e5..945da5908 100644
1919
--- a/plat/ti/k3/common/am62l_psci.c
2020
+++ b/plat/ti/k3/common/am62l_psci.c
21-
@@ -133,7 +133,7 @@ static void am62l_pwr_domain_suspend(const psci_power_state_t *target_state)
22-
/* TODO: Pass the mode passed from kernel using s2idle
23-
* For now make mode=6 for RTC only + DDR and mdoe=0 for deepsleep
24-
*/
25-
- uint32_t mode = 0;
26-
+ uint32_t mode = 6;
27-
28-
core = plat_my_core_pos();
29-
proc_id = PLAT_PROC_START_ID + core;
21+
@@ -317,6 +317,7 @@ static void am62l_pwr_domain_suspend(const psci_power_state_t *target_state)
22+
* mode=6 for RTC only + DDR and mode=0 for deepsleep
23+
*/
24+
uint32_t mode = am62l_lpm_state;
25+
+ mode = 6;
26+
27+
core = plat_my_core_pos();
28+
proc_id = PLAT_PROC_START_ID + core;
3029
3130
This modifies :file:`plat/ti/k3/common/am62l_psci.c`, which is the new Power
3231
State Coordination Interface (PSCI) driver for AM62L in Arm Trusted Firmware.

0 commit comments

Comments
 (0)