summaryrefslogtreecommitdiff
path: root/plat/marvell/common/plat_delay_timer.c
blob: dfc77c7fef6d66b4df3aee7656fa225cf51a2fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (C) 2018 Marvell International Ltd.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 * https://spdx.org/licenses
 */

#include <arch_helpers.h>
#include <delay_timer.h>
#include <mvebu_def.h>

#define SYS_COUNTER_FREQ_IN_MHZ	(COUNTER_FREQUENCY/1000000)

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);
}