Skip to content
Snippets Groups Projects
Commit 4c6fe075 authored by Patrick Delaunay's avatar Patrick Delaunay Committed by Tom Rini
Browse files

tegra: psci: save context id in cpu_on command


Replace the psci_save_target_pc call by the new function
psci_save(cpu, pc,context_id)

Signed-off-by: default avatarPatrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: default avatarStephen Warren <swarren@nvidia.com>
parent 47ec6b4e
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,8 @@ ENTRY(psci_cpu_on) ...@@ -89,7 +89,8 @@ ENTRY(psci_cpu_on)
mov r4, r1 mov r4, r1
mov r0, r1 mov r0, r1
mov r1, r2 mov r1, r2
bl psci_save_target_pc @ store target PC mov r2, r3
bl psci_save @ store target PC and context id
mov r1, r4 mov r1, r4
ldr r6, =TEGRA_RESET_EXCEPTION_VECTOR ldr r6, =TEGRA_RESET_EXCEPTION_VECTOR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment