xref: /openbmc/u-boot/arch/mips/cpu/time.c (revision 664ab2c992d1e06c4381f66c93d2e155fc7722e1)
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 #include <asm/mipsregs.h>
10 
11 unsigned long notrace timer_read_counter(void)
12 {
13 	return read_c0_count();
14 }
15 
16 ulong notrace get_tbclk(void)
17 {
18 	return CONFIG_SYS_MIPS_TIMER_FREQ;
19 }
20