blob: 089afee38582755e254759407777a66e44f12907 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <timer.h>
#include <arch/lib_helpers.h>
void timer_monotonic_get(struct mono_time *mt)
{
uint64_t tvalue = raw_read_cntpct_el0();
uint32_t tfreq = raw_read_cntfrq_el0();
long usecs = (tvalue * 1000000) / tfreq;
mono_time_set_usecs(mt, usecs);
}