xref: /rk3399_ARM-atf/plat/arm/css/common/css_bl1_setup.c (revision 73a9605197ba04aaf02d436a2a4ad56e695b426c)
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