blob: 52d5335f6569376577957045652abebde8fd1422 [file] [log] [blame]
Angel Ponsa2ee7612020-04-04 18:51:15 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Gabe Black396b0722013-09-26 16:22:09 -07002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Gabe Blackeb623ab2013-10-06 10:54:53 -07004#include <soc/addressmap.h>
Gabe Black396b0722013-09-26 16:22:09 -07005#include <timer.h>
6
7void timer_monotonic_get(struct mono_time *mt)
8{
Gabe Blackeb623ab2013-10-06 10:54:53 -07009 mono_time_set_usecs(mt, read32((void *)TEGRA_TMRUS_BASE));
Gabe Black396b0722013-09-26 16:22:09 -070010}