fvp_bl2_setup.c 1.07 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
#include <generic_delay_timer.h>
Juan Castillo's avatar
Juan Castillo committed
8
#include <mmio.h>
9
#include <plat_arm.h>
Soby Mathew's avatar
Soby Mathew committed
10
#include <platform.h>
Ryan Harkin's avatar
Ryan Harkin committed
11
12
13
#include <sp804_delay_timer.h>
#include <v2m_def.h>
#include "fvp_def.h"
14
#include "fvp_private.h"
15

16
void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3)
17
{
18
	arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
19
20

	/* Initialize the platform config for future decision making */
21
	fvp_config_setup();
22
}
Ryan Harkin's avatar
Ryan Harkin committed
23
24
25
26
27

void bl2_platform_setup(void)
{
	arm_bl2_platform_setup();

28
#if FVP_USE_SP804_TIMER
Juan Castillo's avatar
Juan Castillo committed
29
30
31
32
	/* Enable the clock override for SP804 timer 0, which means that no
	 * clock dividers are applied and the raw (35 MHz) clock will be used */
	mmio_write_32(V2M_SP810_BASE, FVP_SP810_CTRL_TIM0_OV);

Ryan Harkin's avatar
Ryan Harkin committed
33
34
35
	/* Initialize delay timer driver using SP804 dual timer 0 */
	sp804_timer_init(V2M_SP804_TIMER0_BASE,
			SP804_TIMER_CLKMULT, SP804_TIMER_CLKDIV);
36
37
38
#else
	generic_delay_timer_init();
#endif /* FVP_USE_SP804_TIMER */
Ryan Harkin's avatar
Ryan Harkin committed
39
}