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