xref: /rk3399_ARM-atf/plat/arm/css/common/css_bl1_setup.c (revision fd116b9f6c26d7fd49c7aa0cdbfb3d93871daec3)
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 <bl_common.h>
8 #include <debug.h>
9 #include <plat_arm.h>
10 #include <platform.h>
11 #include <soc_css.h>
12 
13 void 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