summaryrefslogtreecommitdiff
path: root/code/ecp/fe310/time.c
blob: fedd23afc19ef4aed8fbea41fe962931e0d7cd95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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) {}

void ecp_tm_timer_set(ecp_cts_t next) {
    uint32_t tick = next * (uint64_t)RTC_FREQ / 1000;
    eos_timer_set(tick, 1);
}