blob: dc51e007563e03e5b74ff94ef91b5d55264d8ef1 (
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
|
#ifndef UTIL_TIME_H
#define UTIL_TIME_H
void routing_core0cntv_to_core0fiq(void);
void routing_core0cntv_to_core0irq(void);
unsigned long read_core0timer_pending(void);
unsigned long long read_cntvct(void);
unsigned long long read_cntvoff(void);
unsigned long read_cntv_tval(void);
void write_cntv_tval(unsigned long val);
unsigned long read_cntfrq(void);
unsigned long long get_time(void);
static inline void enablecntv(void)
{
unsigned long cntv_ctl;
cntv_ctl = 1;
asm volatile ("mcr p15, 0, %0, c14, c3, 1" :: "r"(cntv_ctl) ); // write CNTV_CTL
}
static inline void disablecntv(void)
{
unsigned long cntv_ctl;
cntv_ctl = 0;
asm volatile ("mcr p15, 0, %0, c14, c3, 1" :: "r"(cntv_ctl) ); // write CNTV_CTL
}
#endif
|