blob: bf3f3cee636086a4d24887ec2466492e4b87b068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/lib_helpers.h>
#include <commonlib/helpers.h>
#include <delay.h>
#include <soc/timer.h>
void init_timer(void)
{
timer_prepare();
raw_write_cntfrq_el0(GPT_MHZ * MHz);
}
|