aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/qcs405/Makefile.inc
diff options
context:
space:
mode:
authorNitheesh Sekar <nsekar@codeaurora.org>2018-09-16 19:01:01 +0530
committerPatrick Georgi <pgeorgi@google.com>2019-03-26 20:39:27 +0000
commitea4c7d0719cc4549fe811826bcf188c7f4a1d921 (patch)
tree353c6089eebf0bea7d12b9b48fbb512074a9dbca /src/soc/qualcomm/qcs405/Makefile.inc
parent0ef562feee2bfd14aa23278da6beec8846246fa0 (diff)
qcs405: Add GPIO API
Introduce new and required GPIO APIs, using common pinmux definitions for GPIO configuration. TEST=build & run Change-Id: I85ce9007c545b44371c4704a0456774d0eff12a8 Signed-off-by: Sricharan R <sricharan@codeaurora.org> Signed-off-by: Nitheesh Sekar <nsekar@codeaurora.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/29955 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 2d1f842f95..c702264739 100644
--- a/src/soc/qualcomm/qcs405/Makefile.inc
+++ b/src/soc/qualcomm/qcs405/Makefile.inc
@@ -6,21 +6,25 @@ bootblock-y += bootblock.c
bootblock-y += timer.c
bootblock-y += spi.c
bootblock-y += mmu.c
+bootblock-y += gpio.c
################################################################################
verstage-y += timer.c
verstage-y += spi.c
+verstage-y += gpio.c
################################################################################
romstage-y += timer.c
romstage-y += spi.c
romstage-y += cbmem.c
+romstage-y += gpio.c
################################################################################
ramstage-y += soc.c
ramstage-y += timer.c
ramstage-y += spi.c
ramstage-y += cbmem.c
+ramstage-y += gpio.c
################################################################################