Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / arch / mips / cpu / time.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2003
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  */
6
7 #include <common.h>
8 #include <time.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 __weak get_tbclk(void)
17 {
18         return CONFIG_SYS_MIPS_TIMER_FREQ;
19 }