diff mbox series

[U-Boot,v2,2/3] arm: psci: add a weak function psci_arch_cpu_entry

Message ID 1523866404-10884-2-git-send-email-patrick.delaunay@st.com
State Accepted
Commit 486daaa618e114333d13a90b6d7fb52d75baf0c5
Delegated to: Tom Rini
Headers show
Series [U-Boot,v2,1/3] arm: psci: save context id for cpu_on PSCI command | expand

Commit Message

Patrick DELAUNAY April 16, 2018, 8:13 a.m. UTC
The added function psci_arch_cpu_entry() is called
during psci_cpu_entry() and can be used by arch to handle
PSCI state transition from ON_PENDING to ON.

The default weak function is empty: not behavior change.

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
---

Changes in v2: None

 arch/arm/cpu/armv7/psci.S | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Tom Rini May 8, 2018, 12:44 a.m. UTC | #1
On Mon, Apr 16, 2018 at 10:13:23AM +0200, Patrick Delaunay wrote:

> The added function psci_arch_cpu_entry() is called
> during psci_cpu_entry() and can be used by arch to handle
> PSCI state transition from ON_PENDING to ON.
> 
> The default weak function is empty: not behavior change.
> 
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/arch/arm/cpu/armv7/psci.S b/arch/arm/cpu/armv7/psci.S
index 35fd955..08b5088 100644
--- a/arch/arm/cpu/armv7/psci.S
+++ b/arch/arm/cpu/armv7/psci.S
@@ -321,11 +321,18 @@  ENTRY(psci_arch_init)
 ENDPROC(psci_arch_init)
 .weak psci_arch_init
 
+ENTRY(psci_arch_cpu_entry)
+	mov	pc, lr
+ENDPROC(psci_arch_cpu_entry)
+.weak psci_arch_cpu_entry
+
 ENTRY(psci_cpu_entry)
 	bl	psci_enable_smp
 
 	bl	_nonsec_init
 
+	bl	psci_arch_cpu_entry
+
 	bl	psci_get_cpu_id			@ CPU ID => r0
 	mov	r2, r0				@ CPU ID => r2
 	bl	psci_get_context_id		@ context id => r0