GPT timer init is no longer needed after DRAM blob is switching to ARM arch timer. BUG=b:229800119 TEST=boot to kernel Change-Id: Iec1f93c96e791220feed4225959ef15c074ba577 Signed-off-by: Yidi Lin <yidilin@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77388 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
14 lines
234 B
C
14 lines
234 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <arch/lib_helpers.h>
|
|
#include <commonlib/helpers.h>
|
|
#include <delay.h>
|
|
#include <soc/timer_common.h>
|
|
|
|
void init_timer(void)
|
|
{
|
|
timer_prepare();
|
|
|
|
raw_write_cntfrq_el0(13 * MHz);
|
|
}
|