summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorSean Rhodes <sean@starlabs.systems>2022-07-13 08:09:59 +0100
committerMartin L Roth <gaumless@tutanota.com>2022-07-19 19:01:43 +0000
commit8f296038e5520f196c8c0515820b4cd1d80c42ac (patch)
tree743f1d30e617c4511fe839c80be1864112f45450 /payloads
parent900be57aee1485611d875187cb9ca720febcbde6 (diff)
downloadcoreboot-8f296038e5520f196c8c0515820b4cd1d80c42ac.tar.gz
coreboot-8f296038e5520f196c8c0515820b4cd1d80c42ac.tar.bz2
coreboot-8f296038e5520f196c8c0515820b4cd1d80c42ac.zip
payloads/tianocore: Increase default timeout for SD MMC init to 10ms
Firstly, change the unit of `μs` to `ms` so it's easier to read. This patch changes the default amount of time allowed to initialise SD Card Readers and eMMC drives from 1ms to 10ms. Having a timeout too short will stop certain devices from booting, which was seen on google/akemi; it throws an exception when attempting to boot from the internal eMMC drive. This new value is still lower than upstream edk2's value of 1s. Signed-off-by: Sean Rhodes <sean@starlabs.systems> Change-Id: Id1f66d5d50f889f07a34836ab2932b28ef7fb245 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65813 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/external/tianocore/Kconfig6
-rw-r--r--payloads/external/tianocore/Makefile2
2 files changed, 4 insertions, 4 deletions
diff --git a/payloads/external/tianocore/Kconfig b/payloads/external/tianocore/Kconfig
index d30386e0644b..1de7c71f188e 100644
--- a/payloads/external/tianocore/Kconfig
+++ b/payloads/external/tianocore/Kconfig
@@ -169,11 +169,11 @@ config TIANOCORE_PS2_SUPPORT
Include support for PS/2 keyboards
config TIANOCORE_SD_MMC_TIMEOUT
- int "Timeout in μs for initializing SD Card reader"
- default 1000
+ int "Timeout in ms for initializing SD and eMMC devices"
+ default 10
help
The amount of time allowed to initialize the SD Card reader and/or eMMC drive.
- Most only require 1000μs, but certain readers can take 1000000μs.
+ Most only require 10ms, but certain readers can take 1s.
config TIANOCORE_SERIAL_SUPPORT
bool "Support serial output"
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile
index 7a3119ed77d9..49e49ddb962c 100644
--- a/payloads/external/tianocore/Makefile
+++ b/payloads/external/tianocore/Makefile
@@ -78,7 +78,7 @@ BUILD_STR += -D USE_CBMEM_FOR_CONSOLE=TRUE
endif
# SD_MMC_TIMEOUT = 1000000
ifneq ($(CONFIG_TIANOCORE_SD_MMC_TIMEOUT),)
-BUILD_STR += -D SD_MMC_TIMEOUT=$(CONFIG_TIANOCORE_SD_MMC_TIMEOUT)
+BUILD_STR += -D SD_MMC_TIMEOUT=$(call int-multiply, $(CONFIG_TIANOCORE_SD_MMC_TIMEOUT) 1000)
endif
#
# EDKII has the below PCDs that are revalant to coreboot: