aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/qcs405/Makefile.inc
diff options
context:
space:
mode:
authorPranav Agrawal <pranava@codeaurora.org>2018-11-20 18:16:26 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-03-26 20:41:52 +0000
commite651e01518d904bf661db90fb986af82db04a843 (patch)
tree8912a58ab5e0341625ef4686498f1018bf30814a /src/soc/qualcomm/qcs405/Makefile.inc
parentea4c7d0719cc4549fe811826bcf188c7f4a1d921 (diff)
qcs405: clock: Adding the clock support for qcs405
Add basic clock support and enable UART, SPI clocks. Change-Id: I991bdde5f69e1c0f6ec5d6961275a1c077bc5bae Signed-off-by: Nitheesh Sekar <nsekar@codeaurora.org> Signed-off-by: Pranav Agrawal <pranava@codeaurora.org> Signed-off-by: Sricharan R <sricharan@codeaurora.org> Signed-off-by: Nitheesh Sekar <nsekar@codeaurora.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/29962 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/qualcomm/qcs405/Makefile.inc')
-rw-r--r--src/soc/qualcomm/qcs405/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/qualcomm/qcs405/Makefile.inc b/src/soc/qualcomm/qcs405/Makefile.inc
index c702264739..89a7354557 100644
--- a/src/soc/qualcomm/qcs405/Makefile.inc
+++ b/src/soc/qualcomm/qcs405/Makefile.inc
@@ -7,17 +7,20 @@ bootblock-y += timer.c
bootblock-y += spi.c
bootblock-y += mmu.c
bootblock-y += gpio.c
+bootblock-y += clock.c
################################################################################
verstage-y += timer.c
verstage-y += spi.c
verstage-y += gpio.c
+verstage-y += clock.c
################################################################################
romstage-y += timer.c
romstage-y += spi.c
romstage-y += cbmem.c
romstage-y += gpio.c
+romstage-y += clock.c
################################################################################
ramstage-y += soc.c
@@ -25,6 +28,7 @@ ramstage-y += timer.c
ramstage-y += spi.c
ramstage-y += cbmem.c
ramstage-y += gpio.c
+ramstage-y += clock.c
################################################################################