diff mbox series

[U-Boot,05/41] arm: global_data: introduce ipc_channel_handle

Message ID 20180528122526.20597-6-peng.fan@nxp.com
State Superseded
Delegated to: Stefano Babic
Headers show
Series imx: add i.MX8QXP support | expand

Commit Message

Peng Fan May 28, 2018, 12:24 p.m. UTC
Introduce ipc_channel_handle holding the communication between
Acore and SCU.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
 arch/arm/include/asm/global_data.h | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index 287a7bd5b1..4bdf1abaf4 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -74,6 +74,10 @@  struct arch_global_data {
 #if defined(CONFIG_FSL_LSCH3) && defined(CONFIG_SYS_FSL_HAS_DP_DDR)
 	unsigned long mem2_clk;
 #endif
+
+#ifdef CONFIG_ARCH_IMX8
+	u64 ipc_channel_handle;
+#endif
 };
 
 #include <asm-generic/global_data.h>