diff options
author | Rajesh Patil <rajpat@codeaurora.org> | 2021-06-17 16:40:10 +0530 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2021-09-21 19:41:23 +0000 |
commit | 4744c6ec1a161fb214200eef4136fa2f5a392fa9 (patch) | |
tree | 9899719d1c72742a4255cd25b4d6efd586d0492a | |
parent | bd0984d2a11bc8ba0de28d40e53591156a8fc9ac (diff) |
sc7280: Enable SPI driver
BUG=b:182963902
TEST=Validated on qualcomm sc7280 developement board
Signed-off-by: Rajesh Patil <rajpat@codeaurora.org>
Change-Id: I34a45422e38ea3a47f29e9856fc5679e8aebbcdf
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55962
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
-rw-r--r-- | src/soc/qualcomm/sc7280/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/qualcomm/sc7280/Makefile.inc b/src/soc/qualcomm/sc7280/Makefile.inc index ddb64ee8d7..a88febb08d 100644 --- a/src/soc/qualcomm/sc7280/Makefile.inc +++ b/src/soc/qualcomm/sc7280/Makefile.inc @@ -9,13 +9,14 @@ all-$(CONFIG_SC7280_QSPI) += ../common/qspi.c all-y += ../common/qupv3_config.c all-y += qcom_qup_se.c all-y += ../common/qup_se_handler.c +all-y += ../common/qupv3_spi.c all-y += ../common/qupv3_i2c.c +all-y += ../common/qupv3_spi.c ################################################################################ bootblock-y += bootblock.c bootblock-y += mmu.c bootblock-$(CONFIG_DRIVERS_UART) += ../common/uart_bitbang.c - ################################################################################ romstage-y += cbmem.c romstage-y += ../common/qclib.c |