| /* |
| * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved. |
| * |
| * SPDX-License-Identifier: BSD-3-Clause |
| */ |
| |
| #include <drivers/arm/sp804_delay_timer.h> |
| #include <drivers/generic_delay_timer.h> |
| #include <lib/mmio.h> |
| #include <plat/arm/common/plat_arm.h> |
| #include <plat/common/platform.h> |
| #include <platform_def.h> |
| |
| #include "fvp_private.h" |
| |
| void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3) |
| { |
| arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1); |
| |
| /* Initialize the platform config for future decision making */ |
| fvp_config_setup(); |
| } |
| |
| void bl2_platform_setup(void) |
| { |
| arm_bl2_platform_setup(); |
| |
| /* Initialize System level generic or SP804 timer */ |
| fvp_timer_init(); |
| } |