aboutsummaryrefslogtreecommitdiff
path: root/drivers/arm/timer/system_timer.c
blob: 3415e41b33c578402cf7d44ec39ba4ab966c956f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * Copyright (c) 2018, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <arch.h>
#include <arch_helpers.h>
#include <arm_gic.h>
#include <assert.h>
#include <debug.h>
#include <gic_v2.h>
#include <irq.h>
#include <mmio.h>
#include <system_timer.h>

static uintptr_t g_systimer_base;

int program_systimer(unsigned long time_out_ms)
{
	unsigned int cntp_ctl;
	unsigned long long count_val;
	unsigned int freq;

	/* Check timer base is initialised */
	assert(g_systimer_base);

	count_val = mmio_read_64(g_systimer_base + CNTPCT_LO);
	freq = read_cntfrq_el0();
	count_val += (freq * time_out_ms) / 1000;
	mmio_write_64(g_systimer_base + CNTP_CVAL_LO, count_val);

	/* Enable the timer */
	cntp_ctl = mmio_read_32(g_systimer_base + CNTP_CTL);
	set_cntp_ctl_enable(cntp_ctl);
	clr_cntp_ctl_imask(cntp_ctl);
	mmio_write_32(g_systimer_base + CNTP_CTL, cntp_ctl);

	/*
	 * Ensure that we have programmed a timer interrupt for a time in
	 * future. Else we will have to wait for the systimer to rollover
	 * for the interrupt to fire (which is 64 years).
	 */
	if (count_val < mmio_read_64(g_systimer_base + CNTPCT_LO))
		panic();

	VERBOSE("%s : interrupt requested at sys_counter: %lld "
		"time_out_ms: %ld\n", __func__, count_val, time_out_ms);

	return 0;
}

static void disable_systimer(void)
{
	uint32_t val;

	/* Check timer base is initialised */
	assert(g_systimer_base);

	/* Deassert and disable the timer interrupt */
	val = 0;
	set_cntp_ctl_imask(val);
	mmio_write_32(g_systimer_base + CNTP_CTL, val);
}

int cancel_systimer(void)
{
	disable_systimer();
	return 0;
}

int handler_systimer(void)
{
	disable_systimer();
	return 0;
}

int init_systimer(uintptr_t systimer_base)
{
	/* Check timer base is not initialised */
	assert(!g_systimer_base);

	g_systimer_base = systimer_base;

	/* Disable the timer as the reset value is unknown */
	disable_systimer();

	/* Initialise CVAL to zero */
	mmio_write_64(g_systimer_base + CNTP_CVAL_LO, 0);

	return 0;
}