aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/romstage.c
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2017-11-20 16:18:45 -0800
committerVadim Bendebury <vbendeb@chromium.org>2017-11-21 17:53:02 +0000
commit0d0408ad4f94430b04007c1d3eeb93312031cf2d (patch)
tree10e3234ddf5a56d9cb1d8385880b5dc53207b79a /src/soc/intel/apollolake/romstage.c
parentf1eb0ea537af82dba7040586a5a4f4f249b4e63f (diff)
src/soc/intel/apollolake: move TCO1 disable into bootblock
Cr50 reset processing could take long time, up to 30 s in the worst case. The TCO watchdog needs to be disabled before Cr50 driver starts, let's disable it in bootblock. BRANCH=none BUG=b:65867313, b:68729265 TEST=verified that resetting the device while keys are being generated by the TPM does not cause falling into recovery. Change-Id: Iaf1f97924590163e45bcac667b6c607503cc8b87 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://review.coreboot.org/22553 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/apollolake/romstage.c')
-rw-r--r--src/soc/intel/apollolake/romstage.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/soc/intel/apollolake/romstage.c b/src/soc/intel/apollolake/romstage.c
index f315e61096..a003ea0e0e 100644
--- a/src/soc/intel/apollolake/romstage.c
+++ b/src/soc/intel/apollolake/romstage.c
@@ -99,16 +99,6 @@ static void soc_early_romstage_init(void)
lpc_io_setup_comm_a_b();
}
-static void disable_watchdog(void)
-{
- uint32_t reg;
-
- /* Stop TCO timer */
- reg = inl(ACPI_BASE_ADDRESS + TCO1_CNT);
- reg |= TCO_TMR_HLT;
- outl(reg, ACPI_BASE_ADDRESS + TCO1_CNT);
-}
-
/*
* Punit Initialization code. This all isn't documented, but
* this is the recipe.
@@ -202,7 +192,6 @@ asmlinkage void car_stage_entry(void)
timestamp_add_now(TS_START_ROMSTAGE);
soc_early_romstage_init();
- disable_watchdog();
console_init();