diff options
author | Xiubo Li <Li.Xiubo@freescale.com> | 2014-11-21 17:40:55 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-12-11 09:41:45 -0800 |
commit | 73a1cb27c0d9e93d97cd7a344fd341f638ba3a2a (patch) | |
tree | eb23effa0293214ada8f650877544efd5a18ce75 /include/configs/sun7i.h | |
parent | b8e5c7f94af6b178946ae01ba36ac7fac1e86ec7 (diff) | |
download | u-boot-73a1cb27c0d9e93d97cd7a344fd341f638ba3a2a.tar.gz u-boot-73a1cb27c0d9e93d97cd7a344fd341f638ba3a2a.tar.bz2 u-boot-73a1cb27c0d9e93d97cd7a344fd341f638ba3a2a.zip |
ARM: HYP/non-sec: Fix the ARCH Timer frequency setting.
For some SoCs, the system clock frequency may not equal to the
ARCH Timer's frequency.
This patch uses the CONFIG_TIMER_CLK_FREQ instead of
CONFIG_SYS_CLK_FREQ, then the system clock macro and arch timer
macor could be set separately and without interfering each other.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/configs/sun7i.h')
-rw-r--r-- | include/configs/sun7i.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/sun7i.h b/include/configs/sun7i.h index f6b1b3edc1..4426d24e57 100644 --- a/include/configs/sun7i.h +++ b/include/configs/sun7i.h @@ -25,6 +25,7 @@ #define CONFIG_ARMV7_PSCI 1 #define CONFIG_ARMV7_SECURE_BASE SUNXI_SRAM_B_BASE #define CONFIG_SYS_CLK_FREQ 24000000 +#define CONFIG_SYS_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ /* * Include common sunxi configuration where most the settings are |