aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/fsp_broadwell_de
diff options
context:
space:
mode:
authorhcl-coreboot <Coreboot@hcl.com>2019-08-06 15:40:23 +0530
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-08 02:26:51 +0000
commit0ecdf3e5361414bd345f414e922b57ffdd60e898 (patch)
tree86a208c6365f44afa5b13989e5fe8939d9348e60 /src/soc/intel/fsp_broadwell_de
parentf795242f26887e08162b77c5ca2967f6ffcfee02 (diff)
fsp_baytrail/fsp_broadwell_de: Sort entries in Makefile.inc
Change-Id: I12e6ec4aec7dcadcbb886c3fc4c3b9126a0a835c Signed-off-by: Sourabh Kashyap <sourabhka@hcl.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34744 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/intel/fsp_broadwell_de')
-rw-r--r--src/soc/intel/fsp_broadwell_de/Makefile.inc37
1 files changed, 20 insertions, 17 deletions
diff --git a/src/soc/intel/fsp_broadwell_de/Makefile.inc b/src/soc/intel/fsp_broadwell_de/Makefile.inc
index c73c12a430..52f16d3ade 100644
--- a/src/soc/intel/fsp_broadwell_de/Makefile.inc
+++ b/src/soc/intel/fsp_broadwell_de/Makefile.inc
@@ -1,44 +1,47 @@
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 += ../../../cpu/x86/cache
subdirs-y += ../../../lib/fsp
-subdirs-y += fsp
romstage-y += gpio.c
-ramstage-y += cpu.c
-ramstage-y += chip.c
-ramstage-y += northcluster.c
-ramstage-y += ramstage.c
-ramstage-y += tsc_freq.c
romstage-y += memmap.c
-ramstage-y += memmap.c
-ramstage-y += southcluster.c
-ramstage-y += acpi.c
-ramstage-y += smbus_common.c
-ramstage-y += smbus.c
romstage-y += tsc_freq.c
+
postcar-y += tsc_freq.c
-ramstage-y += smi.c
+
+ramstage-y += acpi.c
+ramstage-y += chip.c
+ramstage-y += cpu.c
ramstage-y += gpio.c
ramstage-y += iou_complto.c
-ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
-ramstage-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.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-$(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/
-cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-56-*)
-
endif # ifeq ($(CONFIG_SOC_INTEL_FSP_BROADWELL_DE),y)