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