summaryrefslogtreecommitdiff
path: root/plat/nvidia/tegra/common/tegra_delay_timer.c
blob: 56c9851630de4f9291b9ca859cb7fec403e80315 (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
/*
 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <delay_timer.h>
#include <mmio.h>
#include <tegra_def.h>

static uint32_t tegra_timerus_get_value(void)
{
	return mmio_read_32(TEGRA_TMRUS_BASE);
}

static const timer_ops_t tegra_timer_ops = {
	.get_timer_value	= tegra_timerus_get_value,
	.clk_mult		= 1,
	.clk_div		= 1,
};

/*
 * Initialise the on-chip free rolling us counter as the delay
 * timer.
 */
void tegra_delay_timer_init(void)
{
	timer_init(&tegra_timer_ops);
}