summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mvebu
diff options
context:
space:
mode:
authorTony Dinh <mibodhi@gmail.com>2023-03-02 19:27:29 -0800
committerStefan Roese <sr@denx.de>2023-03-24 08:43:42 +0100
commit21f622779f317342dab3d59c0ff35133ade0f9a4 (patch)
tree5c28d7d8477bbea7c5377aeefb84de0a33cc92e9 /arch/arm/mach-mvebu
parent9d890da56d5adf659c1c61351fcf939575242ff6 (diff)
downloadu-boot-21f622779f317342dab3d59c0ff35133ade0f9a4.tar.gz
arm: mvebu: Set common SPI flash default speed and mode
CONFIG_SF_DEFAULT_SPEED is used in SPL SPI to configure and probe the flash device during DM SPI uclass probing process, if the spi-max-frequency is not available in the DTB. Currently the max frequency is not available, because of the probing mechanism in SPI uclass has not been fully updated to DM. The CONFIG_SF_DEFAULT_SPEED is set to 1Mhz if a board defconfig does not specify it. This speed is too slow and result in a few seconds delay while the u-boot image is loaded from flash. Based on a survey of the device tree specifications for MVEBU boards, a sane default value should be 10Mhz. The default of 10Mhz enables an almost instantaneously loading of the u-boot image. Note that this patch depends on this patch series (has been merged to u-boot-marvell/next): https://lists.denx.de/pipermail/u-boot/2023-March/511038.html - RESEND: correct spelling of SF_DEFAULT_MODE Signed-off-by: Tony Dinh <mibodhi@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/arm/mach-mvebu')
-rw-r--r--arch/arm/mach-mvebu/Kconfig10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig
index fb3cff43f7..1f0dbef1c6 100644
--- a/arch/arm/mach-mvebu/Kconfig
+++ b/arch/arm/mach-mvebu/Kconfig
@@ -423,6 +423,16 @@ config SECURED_MODE_CSK_INDEX
default 0
depends on SECURED_MODE_IMAGE
+config SF_DEFAULT_SPEED
+ int "Default speed for SPI flash in Hz"
+ default 10000000
+ depends on MVEBU_SPL_BOOT_DEVICE_SPI
+
+config SF_DEFAULT_MODE
+ hex "Default mode for SPI flash"
+ default 0x0
+ depends on MVEBU_SPL_BOOT_DEVICE_SPI
+
source "board/solidrun/clearfog/Kconfig"
source "board/kobol/helios4/Kconfig"