summaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sc7280/bootblock.c
diff options
context:
space:
mode:
authorRajesh Patil <rajpat@codeaurora.org>2021-06-22 15:00:33 +0530
committerShelley Chen <shchen@google.com>2021-09-21 19:19:28 +0000
commit4f96b064f2674e3e44b22b33e2258b9b76567d69 (patch)
treee3bd4ae35e81d50d22acb895c04c25b09e4e65ba /src/soc/qualcomm/sc7280/bootblock.c
parent16612c483515bb09796ea2dad0e8ba24cd425069 (diff)
sc7280: Refactor QUP driver
Enable common qup driver in sc7280 BUG=b:182963902 TEST=Validated on qualcomm sc7280 development board Signed-off-by: Rajesh Patil <rajpat@codeaurora.org> Change-Id: I0e9049557ff63898037210e72333e1739ab62413 Reviewed-on: https://review.coreboot.org/c/coreboot/+/55960 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/soc/qualcomm/sc7280/bootblock.c')
-rw-r--r--src/soc/qualcomm/sc7280/bootblock.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7280/bootblock.c b/src/soc/qualcomm/sc7280/bootblock.c
index ce86151145..365b7d4460 100644
--- a/src/soc/qualcomm/sc7280/bootblock.c
+++ b/src/soc/qualcomm/sc7280/bootblock.c
@@ -3,9 +3,11 @@
#include <bootblock_common.h>
#include <soc/clock.h>
#include <soc/qspi_common.h>
+#include <soc/qupv3_config_common.h>
void bootblock_soc_init(void)
{
clock_init();
quadspi_init(37500 * KHz);
+ qupv3_fw_init();
}