diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2021-04-16 11:24:33 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-19 06:31:53 +0000 |
commit | 54888e8d7d949a56d9f1ec8e47cabd7c399ebbc1 (patch) | |
tree | f8e32b70d0db9ce3eb29aaed47db9e057a577e97 /src | |
parent | 9605136bc6b661ea340391100e616abeb26b39a1 (diff) | |
download | coreboot-54888e8d7d949a56d9f1ec8e47cabd7c399ebbc1.tar.xz |
Revert "soc/amd/cezanne: Add support to perform early EC sync"
This reverts commit ad7c33abd21dfdde75c6ffa23c31cbe46826d2d5. With EFS2
already enabled in EC, enabling early EC sync is not required. Also a
workaround has been added in payload to address any boot issues.
BUG=b:185277224
TEST=Build and boot to OS in Guybrush in both normal and recovery mode.
Cq-Depend: chromium:2832032
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Change-Id: I34f8433739754365c8e5a10fdf7e58e3d1e7e797
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52419
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/cezanne/romstage.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/amd/cezanne/romstage.c b/src/soc/amd/cezanne/romstage.c index 573b353c79..d3e1bd7a65 100644 --- a/src/soc/amd/cezanne/romstage.c +++ b/src/soc/amd/cezanne/romstage.c @@ -9,16 +9,12 @@ #include <console/console.h> #include <fsp/api.h> #include <program_loading.h> -#include <security/vboot/vboot_common.h> asmlinkage void car_stage_entry(void) { post_code(0x40); console_init(); - if (CONFIG(VBOOT_EARLY_EC_SYNC)) - vboot_sync_ec(); - post_code(0x41); /* Snapshot chipset state prior to any FSP call */ |