tsp_timer.c 3 KB
Newer Older
1
/*
Paul Beesley's avatar
Paul Beesley committed
2
 * Copyright (c) 2014-2019, 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
#include <assert.h>
8
9
10
11

#include <arch_helpers.h>
#include <plat/common/platform.h>

12
#include "tsp_private.h"
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

/*******************************************************************************
 * Data structure to keep track of per-cpu secure generic timer context across
 * power management operations.
 ******************************************************************************/
typedef struct timer_context {
	uint64_t cval;
	uint32_t ctl;
} timer_context_t;

static timer_context_t pcpu_timer_context[PLATFORM_CORE_COUNT];

/*******************************************************************************
 * This function initializes the generic timer to fire every 0.5 second
 ******************************************************************************/
28
void tsp_generic_timer_start(void)
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
	uint64_t cval;
	uint32_t ctl = 0;

	/* The timer will fire every 0.5 second */
	cval = read_cntpct_el0() + (read_cntfrq_el0() >> 1);
	write_cntps_cval_el1(cval);

	/* Enable the secure physical timer */
	set_cntp_ctl_enable(ctl);
	write_cntps_ctl_el1(ctl);
}

/*******************************************************************************
 * This function deasserts the timer interrupt and sets it up again
 ******************************************************************************/
45
void tsp_generic_timer_handler(void)
46
47
48
49
{
	/* Ensure that the timer did assert the interrupt */
	assert(get_cntp_ctl_istatus(read_cntps_ctl_el1()));

50
51
52
53
54
	/*
	 * Disable the timer and reprogram it. The barriers ensure that there is
	 * no reordering of instructions around the reprogramming code.
	 */
	isb();
55
56
	write_cntps_ctl_el1(0);
	tsp_generic_timer_start();
57
	isb();
58
59
60
61
62
}

/*******************************************************************************
 * This function deasserts the timer interrupt prior to cpu power down
 ******************************************************************************/
63
void tsp_generic_timer_stop(void)
64
65
66
67
68
69
70
71
{
	/* Disable the timer */
	write_cntps_ctl_el1(0);
}

/*******************************************************************************
 * This function saves the timer context prior to cpu suspension
 ******************************************************************************/
72
void tsp_generic_timer_save(void)
73
{
74
	uint32_t linear_id = plat_my_core_pos();
75
76
77
78
79
80
81
82

	pcpu_timer_context[linear_id].cval = read_cntps_cval_el1();
	pcpu_timer_context[linear_id].ctl = read_cntps_ctl_el1();
	flush_dcache_range((uint64_t) &pcpu_timer_context[linear_id],
			   sizeof(pcpu_timer_context[linear_id]));
}

/*******************************************************************************
Paul Beesley's avatar
Paul Beesley committed
83
 * This function restores the timer context post cpu resumption
84
 ******************************************************************************/
85
void tsp_generic_timer_restore(void)
86
{
87
	uint32_t linear_id = plat_my_core_pos();
88
89
90
91

	write_cntps_cval_el1(pcpu_timer_context[linear_id].cval);
	write_cntps_ctl_el1(pcpu_timer_context[linear_id].ctl);
}