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