summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/common
diff options
context:
space:
mode:
authorVenkat Thogaru <quic_thogaru@quicinc.com>2022-09-07 17:17:39 +0530
committerFelix Held <felix-coreboot@felixheld.de>2022-09-13 13:05:46 +0000
commitfec9abc697006a9d374cefe84a037db2d9dc9c88 (patch)
treead755530210d17c518aa8936183dda27ae277040 /src/soc/qualcomm/common
parentbec412156af23603289e56944bcda2df94af15e9 (diff)
downloadcoreboot-fec9abc697006a9d374cefe84a037db2d9dc9c88.tar.gz
coreboot-fec9abc697006a9d374cefe84a037db2d9dc9c88.tar.bz2
coreboot-fec9abc697006a9d374cefe84a037db2d9dc9c88.zip
sc7180: Fix DDR training failure during warm reset with OTA
Problem: OTA is triggering warmboot, where DDR is in self-refresh mode. Due to which DDR training is not going well. Change: Verify reboot type in case of OTA. If it is warmboot, will force for cold boot inorder to trigger DDR training BUG=b:236990316 TEST=Validated on qualcomm sc7180 development board. Test observation: Cold boot is triggered forcefully, if current reboot is warmboot in case of OTA Signed-off-by: Venkat Thogaru <quic_thogaru@quicinc.com> Change-Id: I908370662292d9f768d1ac89452775178e07fc78 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67406 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/qualcomm/common')
-rw-r--r--src/soc/qualcomm/common/include/soc/qclib_common.h1
-rw-r--r--src/soc/qualcomm/common/qclib.c6
2 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/qualcomm/common/include/soc/qclib_common.h b/src/soc/qualcomm/common/include/soc/qclib_common.h
index f38ed77a0d52..19966e27a395 100644
--- a/src/soc/qualcomm/common/include/soc/qclib_common.h
+++ b/src/soc/qualcomm/common/include/soc/qclib_common.h
@@ -44,6 +44,7 @@ struct qclib_cb_if_table_entry {
/* GA_BMASK_VALUES (global_attributes bit mask values) */
#define QCLIB_GA_ENABLE_UART_LOGGING 0x00000001
+#define QCLIB_GA_FORCE_COLD_REBOOT BIT(3)
#define QCLIB_INTERFACE_VERSION 0x00000001
#define QCLIB_MAX_NUMBER_OF_ENTRIES 16
diff --git a/src/soc/qualcomm/common/qclib.c b/src/soc/qualcomm/common/qclib.c
index 90bcc20a7d91..0c7ace247d7b 100644
--- a/src/soc/qualcomm/common/qclib.c
+++ b/src/soc/qualcomm/common/qclib.c
@@ -16,6 +16,7 @@
#include <security/vboot/misc.h>
#include <vb2_api.h>
#include <commonlib/bsd/mem_chip_info.h>
+#include <include/reset.h>
#define QCLIB_VERSION 0
@@ -276,6 +277,11 @@ void qclib_load_and_run(void)
mmu_restore_context(&pre_qclib_mmu_context);
mmu_enable();
+ if (qclib_cb_if_table.global_attributes & QCLIB_GA_FORCE_COLD_REBOOT) {
+ printk(BIOS_NOTICE, "QcLib requested cold reboot\n");
+ board_reset();
+ }
+
/* step through I/F table, handling return values */
for (i = 0; i < qclib_cb_if_table.num_entries; i++)
if (qclib_cb_if_table.te[i].blob_attributes &