From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Thu, 14 Apr 2016 19:41:17 +0900 Subject: [U-Boot] [PATCH v2] exynos: Set CNTFRQ In-Reply-To: References: <56BBEF46.40205@samsung.com> <1457615924-236510-1-git-send-email-agraf@suse.de> Message-ID: <570F73CD.6070409@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 11/03/16 01:35, york sun wrote: > On 03/10/2016 05:18 AM, Alexander Graf wrote: >> Commit 73a1cb27 moved the check whether we should set the architected >> timer frequency from CONFIG_SYS_CLK_FREQ to CONFIG_TIMER_CLK_FREQ, but >> did not update all users of it. >> >> The one where I (finally) realized why KVM didn't work is the Arndale >> board, so this patch adds the respective define to it. >> >> Signed-off-by: Alexander Graf >> Fixes: 73a1cb27 >> >> --- >> >> v1 -> v2: >> >> - Map to CONFIG_SYS_CLK_FREQ instead of redefining to the same number >> --- >> include/configs/exynos-common.h | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h >> index 852829c..b61f889 100644 >> --- a/include/configs/exynos-common.h >> +++ b/include/configs/exynos-common.h >> @@ -31,6 +31,7 @@ >> >> /* input clock of PLL: 24MHz input clock */ >> #define CONFIG_SYS_CLK_FREQ 24000000 >> +#define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ >> >> #define CONFIG_SETUP_MEMORY_TAGS >> #define CONFIG_CMDLINE_TAG >> > > Reviewed-by: York Sun > > Applied to u-boot-samsung. Thanks, Minkyu Kang.