xref: /rk3399_ARM-atf/plat/arm/board/fvp/fvp_bl2u_setup.c (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1dcda29f6SYatharth Kochar /*
21af540efSRoberto Vargas  * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3dcda29f6SYatharth Kochar  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5dcda29f6SYatharth Kochar  */
6dcda29f6SYatharth Kochar 
7*09d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
8*09d40e0eSAntonio Nino Diaz 
9dcda29f6SYatharth Kochar #include <plat_arm.h>
10dcda29f6SYatharth Kochar #include "fvp_def.h"
11dcda29f6SYatharth Kochar #include "fvp_private.h"
12dcda29f6SYatharth Kochar 
136c77e749SSandrine Bailleux void bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info)
14dcda29f6SYatharth Kochar {
15dcda29f6SYatharth Kochar 	arm_bl2u_early_platform_setup(mem_layout, plat_info);
16dcda29f6SYatharth Kochar 
17dcda29f6SYatharth Kochar 	/* Initialize the platform config for future decision making */
18dcda29f6SYatharth Kochar 	fvp_config_setup();
19dcda29f6SYatharth Kochar }
20