summaryrefslogtreecommitdiff
path: root/src/soc/intel/fsp_broadwell_de/Makefile.inc
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-11-19 18:50:20 +0100
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-11-21 06:43:29 +0000
commitf67c81fc7030e278cf3dbc906f9ba5e265d843f0 (patch)
treec89f4856690b80e8aa3c53a51ff2e4dfd553c84f /src/soc/intel/fsp_broadwell_de/Makefile.inc
parent433471244b7313dde6bb07d58943bfd0d9957c59 (diff)
downloadcoreboot-f67c81fc7030e278cf3dbc906f9ba5e265d843f0.tar.xz
soc/intel/fsp_broadwell_de: Drop support
Relocatable ramstage, postcar stage and C_ENVIRONMENT_BOOTBLOCK are now mandatory features, which this platform lacks. Change-Id: I8b6502b0894f9e2b8b1334871d7b6cde65cba7d4 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36984 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/soc/intel/fsp_broadwell_de/Makefile.inc')
-rw-r--r--src/soc/intel/fsp_broadwell_de/Makefile.inc51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/soc/intel/fsp_broadwell_de/Makefile.inc b/src/soc/intel/fsp_broadwell_de/Makefile.inc
deleted file mode 100644
index f0944da175..0000000000
--- a/src/soc/intel/fsp_broadwell_de/Makefile.inc
+++ /dev/null
@@ -1,51 +0,0 @@
-ifeq ($(CONFIG_SOC_INTEL_FSP_BROADWELL_DE),y)
-
-subdirs-y += fsp
-subdirs-y += romstage
-subdirs-y += ../../../cpu/intel/microcode
-subdirs-y += ../../../cpu/intel/turbo
-subdirs-y += ../../../cpu/x86/cache
-subdirs-y += ../../../cpu/x86/lapic
-subdirs-y += ../../../cpu/x86/mtrr
-subdirs-y += ../../../cpu/x86/smm
-subdirs-y += ../../../cpu/x86/tsc
-subdirs-y += ../../../lib/fsp
-
-romstage-y += gpio.c
-romstage-y += memmap.c
-romstage-y += tsc_freq.c
-romstage-y += smbus-imc.c
-romstage-y += ubox.c
-romstage-y += vtd.c
-
-postcar-y += tsc_freq.c
-
-ramstage-y += acpi.c
-ramstage-y += chip.c
-ramstage-y += cpu.c
-ramstage-y += gpio.c
-ramstage-y += iou_complto.c
-ramstage-y += memmap.c
-ramstage-y += northcluster.c
-ramstage-y += ramstage.c
-ramstage-y += smbus.c
-ramstage-y += smbus_common.c
-ramstage-y += smi.c
-ramstage-y += southcluster.c
-ramstage-y += tsc_freq.c
-ramstage-y += vtd.c
-ramstage-y += ubox.c
-ramstage-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.c
-ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
-
-smm-y += pmutil.c
-smm-y += smihandler.c
-smm-y += tsc_freq.c
-
-cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-56-*)
-
-CPPFLAGS_common += -I$(src)/soc/intel/fsp_broadwell_de/include
-CPPFLAGS_common += -I$(src)/soc/intel/fsp_broadwell_de/fsp
-CPPFLAGS_common += -I$(src)/soc/intel/fsp_broadwell_de/
-
-endif # ifeq ($(CONFIG_SOC_INTEL_FSP_BROADWELL_DE),y)