tegra_delay_timer.c 610 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2015-2017, 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
8
9
#include <drivers/delay_timer.h>
#include <lib/mmio.h>

10
#include <tegra_def.h>
11
#include <tegra_private.h>
12
13
14
15
16
17
18
19
20
21
22
23

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

/*
 * Initialise the on-chip free rolling us counter as the delay
 * timer.
 */
void tegra_delay_timer_init(void)
{
24
25
26
27
28
29
	static const timer_ops_t tegra_timer_ops = {
		.get_timer_value	= tegra_timerus_get_value,
		.clk_mult		= 1,
		.clk_div		= 1,
	};

30
31
	timer_init(&tegra_timer_ops);
}