aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sdm845/Makefile.inc
diff options
context:
space:
mode:
authorDavid Dai <daidavid1@codeaurora.org>2018-05-09 14:37:02 -0700
committerJulius Werner <jwerner@chromium.org>2018-08-01 23:19:38 +0000
commit09fbaaaff7778732709c2d87b88e617fb9af48f0 (patch)
tree234654faa1164bb6af6ddefa126f94a0907f6d08 /src/soc/qualcomm/sdm845/Makefile.inc
parent3044af7adc652f41670f8de0c3c54bc09f632079 (diff)
sdm845: Add GPIO API
Introduces new and required GPIO APIs, using common pinmux definitions for GPIO configuration. TEST=build & run Change-Id: I8cef9dae2072da32cb0678efefeb8f0070cdde9c Signed-off-by: David Dai <daidavid1@codeaurora.org> Reviewed-on: https://review.coreboot.org/26233 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/qualcomm/sdm845/Makefile.inc')
-rw-r--r--src/soc/qualcomm/sdm845/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sdm845/Makefile.inc b/src/soc/qualcomm/sdm845/Makefile.inc
index 9eacbf5a88..1fddb56345 100644
--- a/src/soc/qualcomm/sdm845/Makefile.inc
+++ b/src/soc/qualcomm/sdm845/Makefile.inc
@@ -6,21 +6,25 @@ bootblock-y += bootblock.c
bootblock-y += spi.c
bootblock-y += mmu.c
bootblock-y += timer.c
+bootblock-y += gpio.c
################################################################################
verstage-y += spi.c
verstage-y += timer.c
+verstage-y += gpio.c
################################################################################
romstage-y += spi.c
romstage-y += cbmem.c
romstage-y += timer.c
+romstage-y += gpio.c
################################################################################
ramstage-y += soc.c
ramstage-y += spi.c
ramstage-y += cbmem.c
ramstage-y += timer.c
+ramstage-y += gpio.c
################################################################################