diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2015-01-13 18:49:01 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-14 11:37:39 -0500 |
commit | 33d88183506f46ab618d1a5211268ae40df092de (patch) | |
tree | c788ca488d849cc1a6eaf46370ce3809977dd6b0 /configs | |
parent | 9f9d8704b6566c24b6efaa23abc42cfbc5aadb36 (diff) | |
download | u-boot-33d88183506f46ab618d1a5211268ae40df092de.tar.gz |
Kconfig: move CONFIG_SYS_CLK_FREQ to Kconfig
It makes sense to specify CONFIG_SYS_CLK_FREQ in "configs/xx_defconfig"
instead of "include/configs/xxx.h" because then header will be reusable
across boards with different CPU clocks.
Also this nice to have an ability for end user to tune this value
himself via "menuconfig".
For now I'm only applying this change to all ARC configs because
otherwise scope of change will be huge.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Tom Rini <trini@ti.com>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Hans de Goede <hdegoede@redhat.com>
cc: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/arcangel4-be_defconfig | 1 | ||||
-rw-r--r-- | configs/arcangel4_defconfig | 1 | ||||
-rw-r--r-- | configs/axs101_defconfig | 1 | ||||
-rw-r--r-- | configs/tb100_defconfig | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/configs/arcangel4-be_defconfig b/configs/arcangel4-be_defconfig index 867fb1f6d5..0c3ab4e4fc 100644 --- a/configs/arcangel4-be_defconfig +++ b/configs/arcangel4-be_defconfig @@ -1,2 +1,3 @@ CONFIG_ARC=y CONFIG_TARGET_ARCANGEL4_BE=y +CONFIG_SYS_CLK_FREQ=70000000 diff --git a/configs/arcangel4_defconfig b/configs/arcangel4_defconfig index 82b583edc6..a63ef21de8 100644 --- a/configs/arcangel4_defconfig +++ b/configs/arcangel4_defconfig @@ -1,2 +1,3 @@ CONFIG_ARC=y CONFIG_TARGET_ARCANGEL4=y +CONFIG_SYS_CLK_FREQ=70000000 diff --git a/configs/axs101_defconfig b/configs/axs101_defconfig index bfa314e069..5c0ca11fa5 100644 --- a/configs/axs101_defconfig +++ b/configs/axs101_defconfig @@ -1,2 +1,3 @@ CONFIG_ARC=y CONFIG_TARGET_AXS101=y +CONFIG_SYS_CLK_FREQ=750000000
\ No newline at end of file diff --git a/configs/tb100_defconfig b/configs/tb100_defconfig index 9669dc052c..d2de03b649 100644 --- a/configs/tb100_defconfig +++ b/configs/tb100_defconfig @@ -1,2 +1,3 @@ CONFIG_ARC=y CONFIG_TARGET_TB100=y +CONFIG_SYS_CLK_FREQ=500000000
\ No newline at end of file |