diff options
author | Wealian Liao <whliao@nuvoton.corp-partner.google.com> | 2021-03-18 13:49:52 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-03-24 17:27:45 +0000 |
commit | 09d0027924a74efaa8d1b55805af11377962d180 (patch) | |
tree | 3547d606ff36ed9a2f4c1f6fa0b2fec1ed06f5b9 | |
parent | a0c17c7dd977be43e78355319e76f00433a9312a (diff) | |
download | chrome-ec-09d0027924a74efaa8d1b55805af11377962d180.tar.gz |
zephyr: kconfig: set BOARD_RESET_AFTER_POWER_ON default disable
CONFIG_BOARD_RESET_AFTER_POWER_ON default disable in config.h.
Moreover, the early delay mechanism hasn't been implemented for
CONFIG_BOARD_RESET_AFTER_POWER_ON feature delay. Set to default disable
to avoid misconfigure it.
BUG=b:182875520
BRANCH=None.
TEST=zmake testall
Signed-off-by: Wealian Liao <whliao@nuvoton.corp-partner.google.com>
Change-Id: I65100f3a5a1b7ceb1907f17142cd0ace130aeea5
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2771129
Reviewed-by: Keith Short <keithshort@chromium.org>
Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Commit-Queue: Keith Short <keithshort@chromium.org>
Tested-by: Keith Short <keithshort@chromium.org>
-rw-r--r-- | zephyr/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/zephyr/Kconfig b/zephyr/Kconfig index 54a64690d3..b054d85372 100644 --- a/zephyr/Kconfig +++ b/zephyr/Kconfig @@ -98,7 +98,6 @@ config PLATFORM_EC_AP_RESET_LOG config PLATFORM_EC_BOARD_RESET_AFTER_POWER_ON bool "Work around H1 reset issue" - default y help Enable this if H1 resets the EC after power-on. This is needed so the EC can delay its start-up until the reset happens. Without this option |