mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 17:37:02 +02:00
To make software license auditing simpler, use SPDX[0] license identifiers instead of duplicating the license text in every file. NOTE: Files that have been imported by FreeBSD have not been modified. [0]: https://spdx.org/ Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
31 lines
709 B
C
31 lines
709 B
C
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <arch_helpers.h>
|
|
#include <delay_timer.h>
|
|
#include <platform_def.h>
|
|
|
|
static uint32_t plat_get_timer_value(void)
|
|
{
|
|
/*
|
|
* Generic delay timer implementation expects the timer to be a down
|
|
* counter. We apply bitwise NOT operator to the tick values returned
|
|
* by read_cntpct_el0() to simulate the down counter.
|
|
*/
|
|
return (uint32_t)(~read_cntpct_el0());
|
|
}
|
|
|
|
static const timer_ops_t plat_timer_ops = {
|
|
.get_timer_value = plat_get_timer_value,
|
|
.clk_mult = 1,
|
|
.clk_div = SYS_COUNTER_FREQ_IN_MHZ,
|
|
};
|
|
|
|
void plat_delay_timer_init(void)
|
|
{
|
|
timer_init(&plat_timer_ops);
|
|
}
|