| 88 | static unsigned counter_get_timecount(struct timecounter *tc); |
| 89 | |
| 90 | void |
| 91 | mips_timer_early_init(uint64_t clock_hz) |
| 92 | { |
| 93 | /* Initialize clock early so that we can use DELAY sooner */ |
| 94 | counter_freq = clock_hz; |
| 95 | cycles_per_usec = (clock_hz / (1000 * 1000)); |
| 96 | } |
| 97 | |
| 98 | void |
| 99 | platform_initclocks(void) |
no outgoing calls
no test coverage detected