1 /* 2 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <common/bl_common.h> 8 #include <common/debug.h> 9 #include <plat/arm/common/plat_arm.h> 10 #include <plat/arm/soc/common/soc_css.h> 11 #include <plat/common/platform.h> 12 bl1_platform_setup(void)13void bl1_platform_setup(void) 14 { 15 arm_bl1_platform_setup(); 16 /* 17 * Do ARM CSS SoC security setup. 18 * BL1 needs to enable normal world access to memory. 19 */ 20 soc_css_security_setup(); 21 } 22 23