From 4da8d8d7fe9474c4f3e86bfa7aad44432b7690e8 Mon Sep 17 00:00:00 2001 From: Nitheesh Sekar Date: Fri, 14 Sep 2018 19:14:40 +0530 Subject: qcs405: Add Timer support Init frequency to 19.2 MHz TEST=build Change-Id: I566c7ff2b7085c9dd89ea74a08f3ba862feab2ab Signed-off-by: Sricharan R Signed-off-by: Nitheesh Sekar Reviewed-on: https://review.coreboot.org/c/coreboot/+/29952 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/soc/qualcomm/qcs405/Kconfig | 1 + src/soc/qualcomm/qcs405/timer.c | 10 +++------- 2 files changed, 4 insertions(+), 7 deletions(-) (limited to 'src/soc/qualcomm') diff --git a/src/soc/qualcomm/qcs405/Kconfig b/src/soc/qualcomm/qcs405/Kconfig index bcf8d62321..3e8c1ba5be 100644 --- a/src/soc/qualcomm/qcs405/Kconfig +++ b/src/soc/qualcomm/qcs405/Kconfig @@ -10,6 +10,7 @@ config SOC_QUALCOMM_QCS405 select GENERIC_GPIO_LIB select GENERIC_UDELAY select HAVE_MONOTONIC_TIMER + select ARM64_USE_ARCH_TIMER if SOC_QUALCOMM_QCS405 diff --git a/src/soc/qualcomm/qcs405/timer.c b/src/soc/qualcomm/qcs405/timer.c index 8fb84c855f..5df24301c1 100644 --- a/src/soc/qualcomm/qcs405/timer.c +++ b/src/soc/qualcomm/qcs405/timer.c @@ -13,15 +13,11 @@ * GNU General Public License for more details. */ -#include #include - -void timer_monotonic_get(struct mono_time *mt) -{ - -} +#include +#include void init_timer(void) { - + raw_write_cntfrq_el0(19200*KHz); } -- cgit v1.2.3