blob: ad678b7fe511e6c0e1a2503894bed550e1c4e372 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/mmio.h>
#include <arch/encoding.h>
#include <console/console.h>
#include <timer.h>
#include <mcall.h>
void timer_monotonic_get(struct mono_time *mt)
{
if (HLS()->time == NULL)
die("time not set in HLS");
mono_time_set_usecs(mt, (long)read64((void *)(HLS()->time)));
}