From: Peng Fan Date: Thu, 18 Oct 2018 12:28:10 +0000 (+0200) Subject: arm: global_data: add scu_dev for i.MX8 X-Git-Tag: v2018.11-rc3~6^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60b9de4f708ce1eae1eeb362e9b9ea32a63e4ebd;p=platform%2Fkernel%2Fu-boot.git arm: global_data: add scu_dev for i.MX8 Add scu_dev for i.MX8, this will be used as a handle to communite with SCU from A35. Signed-off-by: Peng Fan Reviewed-by: Anatolij Gustschin Cc: Stefano Babic --- diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h index 287a7bd..c3ee5f0 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 + struct udevice *scu_dev; +#endif }; #include