From 1a164ad304a9888193ea71227bcc6b7c06149cbe Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 12 Apr 2018 04:24:45 +0300 Subject: [PATCH] ARM: qemu-arm: Dynamically determine timer frequency After commit 46fc679ede5f69 ("arm: timer: get frequency for arch timer armv7 in cp15 cntfrq") the ARM architected timer driver knows how to determine the timer frequency at runtime by reading the CNTFRQ register, so we don't need to hardcode the timer frequency anymore. Signed-off-by: Tuomas Tynkkynen --- include/configs/qemu-arm.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h index 839bc10a18..b29a54ef89 100644 --- a/include/configs/qemu-arm.h +++ b/include/configs/qemu-arm.h @@ -19,11 +19,9 @@ #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M) #define CONFIG_SYS_MALLOC_LEN SZ_16M -/* QEMU implements a 62.5MHz architected timer */ -/* FIXME: can we rely on CNTFREQ instead of hardcoding this fact here? */ +/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */ #define CONFIG_SYS_ARCH_TIMER #define CONFIG_SYS_HZ 1000 -#define CONFIG_SYS_HZ_CLOCK 62500000 /* For block devices, QEMU emulates an ICH9 AHCI controller over PCI */ #define CONFIG_SYS_SCSI_MAX_SCSI_ID 6 -- 2.39.2