xref: /rk3399_ARM-atf/plat/arm/board/fvp/fvp_bl2u_setup.c (revision 70b0f2789e93f253bec5cbd2986d0de023c1bdf4)
1 /*
2  * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <plat/arm/common/plat_arm.h>
8 #include <plat/common/platform.h>
9 #include <platform_def.h>
10 
11 #include "fvp_private.h"
12 
13 void bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info)
14 {
15 	arm_bl2u_early_platform_setup(mem_layout, plat_info);
16 
17 	/* Initialize the platform config for future decision making */
18 	fvp_config_setup();
19 }
20