diff mbox series

[U-Boot,v3,5/9] armv7R: k3: Release all the exclusive devices

Message ID 20190607135447.3551-6-lokeshvutla@ti.com
State Accepted
Commit c0669d28ee5dc06a372e39191d9643de8aa62e9e
Delegated to: Tom Rini
Headers show
Series arm: k3: Allow for exclusive and shared device requests | expand

Commit Message

Lokesh Vutla June 7, 2019, 1:54 p.m. UTC
Release all the exclusive devices held by SPL.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 arch/arm/mach-k3/common.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Tom Rini July 28, 2019, 9:46 p.m. UTC | #1
On Fri, Jun 07, 2019 at 07:24:43PM +0530, Lokesh Vutla wrote:

> Release all the exclusive devices held by SPL.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

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

Patch

diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c
index ee84d44de8..4e7fe2076c 100644
--- a/arch/arm/mach-k3/common.c
+++ b/arch/arm/mach-k3/common.c
@@ -30,8 +30,12 @@  struct ti_sci_handle *get_ti_sci_handle(void)
 #ifdef CONFIG_SYS_K3_SPL_ATF
 void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
 {
+	struct ti_sci_handle *ti_sci = get_ti_sci_handle();
 	int ret;
 
+	/* Release all the exclusive devices held by SPL before starting ATF */
+	ti_sci->ops.dev_ops.release_exclusive_devices(ti_sci);
+
 	/*
 	 * It is assumed that remoteproc device 1 is the corresponding
 	 * Cortex-A core which runs ATF. Make sure DT reflects the same.