time.c 321 B

12345678910111213141516171819
  1. /*
  2. * (C) Copyright 2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/mipsregs.h>
  9. unsigned long notrace timer_read_counter(void)
  10. {
  11. return read_c0_count();
  12. }
  13. ulong notrace get_tbclk(void)
  14. {
  15. return CONFIG_SYS_MIPS_TIMER_FREQ;
  16. }