summaryrefslogtreecommitdiff
path: root/code/ecp/fe310/time.c
blob: 455c762bcc24c88ef80cdfb08804d7acb229710c (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
#include <core.h>
#include <tr.h>

#include <eos/timer.h>

#include "encoding.h"
#include "platform.h"

ecp_cts_t ecp_tm_abstime_ms(ecp_cts_t msec) {
    volatile uint64_t *mtime = (uint64_t *) (CLINT_CTRL_ADDR + CLINT_MTIME);
    
    uint64_t now_ms = *mtime * 1000 / RTC_FREQ;
    return now_ms + msec;
}

void ecp_tm_sleep_ms(ecp_cts_t msec) {
    volatile uint64_t *mtime = (uint64_t *) (CLINT_CTRL_ADDR + CLINT_MTIME);
    
    uint64_t now_ms = *mtime * 1000 / RTC_FREQ;
    while (*mtime * 1000 / RTC_FREQ < now_ms + msec);
}

void ecp_tm_timer_set(ecp_cts_t next) {
    volatile uint64_t *mtime = (uint64_t *) (CLINT_CTRL_ADDR + CLINT_MTIME);
    uint64_t tick = *mtime + next * (uint64_t)RTC_FREQ / 1000;
    eos_timer_set(tick, EOS_TIMER_ETYPE_ECP, 1);
}