Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | 0c306cc | 2018-01-10 15:59:31 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | 82cb2c1 | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 09d40e0 | 2018-12-14 00:18:21 +0000 | [diff] [blame^] | 7 | #include <drivers/arm/sp804_delay_timer.h> |
| 8 | #include <drivers/generic_delay_timer.h> |
| 9 | #include <lib/mmio.h> |
| 10 | #include <plat/common/platform.h> |
| 11 | |
Dan Handley | 60eea55 | 2015-03-19 19:17:53 +0000 | [diff] [blame] | 12 | #include <plat_arm.h> |
Ryan Harkin | b49b322 | 2015-03-17 14:54:01 +0000 | [diff] [blame] | 13 | #include <v2m_def.h> |
| 14 | #include "fvp_def.h" |
Dan Handley | 5f0cdb0 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 15 | #include "fvp_private.h" |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 16 | |
Soby Mathew | 0c306cc | 2018-01-10 15:59:31 +0000 | [diff] [blame] | 17 | void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 18 | { |
Soby Mathew | cab0b5b | 2018-01-15 14:45:33 +0000 | [diff] [blame] | 19 | arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 20 | |
| 21 | /* Initialize the platform config for future decision making */ |
Dan Handley | 17a387a | 2014-05-15 14:53:30 +0100 | [diff] [blame] | 22 | fvp_config_setup(); |
Vikram Kanigiri | 6871c5d | 2014-05-16 18:48:12 +0100 | [diff] [blame] | 23 | } |
Ryan Harkin | b49b322 | 2015-03-17 14:54:01 +0000 | [diff] [blame] | 24 | |
| 25 | void bl2_platform_setup(void) |
| 26 | { |
| 27 | arm_bl2_platform_setup(); |
| 28 | |
Antonio Nino Diaz | 32cd95f | 2016-05-17 09:48:10 +0100 | [diff] [blame] | 29 | #if FVP_USE_SP804_TIMER |
Juan Castillo | 540a5ba | 2015-12-01 16:10:15 +0000 | [diff] [blame] | 30 | /* Enable the clock override for SP804 timer 0, which means that no |
| 31 | * clock dividers are applied and the raw (35 MHz) clock will be used */ |
| 32 | mmio_write_32(V2M_SP810_BASE, FVP_SP810_CTRL_TIM0_OV); |
| 33 | |
Ryan Harkin | b49b322 | 2015-03-17 14:54:01 +0000 | [diff] [blame] | 34 | /* Initialize delay timer driver using SP804 dual timer 0 */ |
| 35 | sp804_timer_init(V2M_SP804_TIMER0_BASE, |
| 36 | SP804_TIMER_CLKMULT, SP804_TIMER_CLKDIV); |
Antonio Nino Diaz | 32cd95f | 2016-05-17 09:48:10 +0100 | [diff] [blame] | 37 | #else |
| 38 | generic_delay_timer_init(); |
| 39 | #endif /* FVP_USE_SP804_TIMER */ |
Ryan Harkin | b49b322 | 2015-03-17 14:54:01 +0000 | [diff] [blame] | 40 | } |