diff options
author | Iain Paton <ipaton0@gmail.com> | 2015-03-28 10:26:38 +0000 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-03-29 13:36:03 +0200 |
commit | e71b422bd71b03868abfc5e2087281710a0d52ee (patch) | |
tree | e395f5f51781a177a8c5a05d6fe048eb757cfb64 /arch/arm | |
parent | 7a140117ef5081e8dfef95150c788c93dabb8124 (diff) | |
download | u-boot-imx-e71b422bd71b03868abfc5e2087281710a0d52ee.zip u-boot-imx-e71b422bd71b03868abfc5e2087281710a0d52ee.tar.gz u-boot-imx-e71b422bd71b03868abfc5e2087281710a0d52ee.tar.bz2 |
sunxi: use CONFIG_SYS_CLK_FREQ to set cpu clock
make the CPU clock selectable via Kconfig
this removes the sunxi specific CONFIG_CLK_FULL_SPEED defined in each
soc header and replaces it's use in board/sunxi/board.c with
CONFIG_SYS_CLK_FREQ from Kconfig which allows us to configure board
specific frequency on boot
Signed-off-by: Iain Paton <ipaton0@gmail.com>
[hdegoede@redhat.com s/CONFIG_SYS_CLK_FREQ/CONFIG_TIMER_CLK_FREQ/ for the
arch-timer clk speed on sun7i to fix mis-compile on sun7i]
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/psci.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/psci.S b/arch/arm/cpu/armv7/sunxi/psci.S index 5be497b..e0a524e 100644 --- a/arch/arm/cpu/armv7/sunxi/psci.S +++ b/arch/arm/cpu/armv7/sunxi/psci.S @@ -37,7 +37,7 @@ .arch_extension sec -#define ONE_MS (CONFIG_SYS_CLK_FREQ / 1000) +#define ONE_MS (CONFIG_TIMER_CLK_FREQ / 1000) #define TEN_MS (10 * ONE_MS) #define GICD_BASE 0x1c81000 #define GICC_BASE 0x1c82000 |