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/common/platform.h> 10 11 #include <plat_arm.h> 12 #include <soc_css.h> 13 14 void bl1_platform_setup(void) 15 { 16 arm_bl1_platform_setup(); 17 /* 18 * Do ARM CSS SoC security setup. 19 * BL1 needs to enable normal world access to memory. 20 */ 21 soc_css_security_setup(); 22 } 23 24