aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sdm845/Makefile.inc
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-11-10 16:02:16 -0800
committerJulius Werner <jwerner@chromium.org>2020-11-12 01:43:14 +0000
commit2b5bdaea630ecd35e22473816cd4000dd8f8916e (patch)
treebaeb8346c68d463515f67ca0ffc252722fa6da7a /src/soc/qualcomm/sdm845/Makefile.inc
parent9c50462fd7ce12cb9b3ef94f5bef39dcfa24ca6c (diff)
Delete soc/qualcomm/sdm845
Work on this SoC was abandoned and never finished. It's not really usable in its current state, so let's get rid of it. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: I23453e3e47ac336ab61687004470e5e79172cafe Reviewed-on: https://review.coreboot.org/c/coreboot/+/47428 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/qualcomm/sdm845/Makefile.inc')
-rw-r--r--src/soc/qualcomm/sdm845/Makefile.inc50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/soc/qualcomm/sdm845/Makefile.inc b/src/soc/qualcomm/sdm845/Makefile.inc
deleted file mode 100644
index 4449a69023..0000000000
--- a/src/soc/qualcomm/sdm845/Makefile.inc
+++ /dev/null
@@ -1,50 +0,0 @@
-
-ifeq ($(CONFIG_SOC_QUALCOMM_SDM845),y)
-
-################################################################################
-bootblock-y += bootblock.c
-bootblock-y += spi.c
-bootblock-y += mmu.c
-bootblock-y += timer.c
-bootblock-y += gpio.c
-bootblock-y += clock.c
-bootblock-$(CONFIG_SDM845_QSPI) += qspi.c
-
-################################################################################
-verstage-y += spi.c
-verstage-y += timer.c
-verstage-y += gpio.c
-verstage-y += clock.c
-verstage-$(CONFIG_SDM845_QSPI) += qspi.c
-
-################################################################################
-romstage-y += spi.c
-romstage-y += cbmem.c
-romstage-y += timer.c
-romstage-y += gpio.c
-romstage-y += clock.c
-romstage-$(CONFIG_SDM845_QSPI) += qspi.c
-romstage-y += usb.c
-romstage-y += ../common/qclib.c
-romstage-y += qclib.c
-romstage-y += ../common/mmu.c
-romstage-y += mmu.c
-
-################################################################################
-ramstage-y += soc.c
-ramstage-y += spi.c
-ramstage-y += timer.c
-ramstage-y += gpio.c
-ramstage-y += clock.c
-ramstage-$(CONFIG_SDM845_QSPI) += qspi.c
-ramstage-y += usb.c
-ramstage-y += gpio.c
-ramstage-y += clock.c
-ramstage-y += aop_load_reset.c
-
-################################################################################
-
-CPPFLAGS_common += -Isrc/soc/qualcomm/sdm845/include
-CPPFLAGS_common += -Isrc/soc/qualcomm/common/include
-
-endif