commonlib: Add new "ESE completed AUnit loading" TS
[coreboot2.git] / src / cpu / intel / haswell / Makefile.mk
blob7323ed97f08171181d8febafe6b2e793583a0bc9
1 ## SPDX-License-Identifier: GPL-2.0-only
3 ramstage-y += haswell_init.c
5 romstage-y += romstage.c
6 romstage-y += ../car/romstage.c
8 ramstage-y += acpi.c
9 ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
11 smm-y += finalize.c
13 bootblock-y += ../car/non-evict/cache_as_ram.S
14 bootblock-y += ../car/bootblock.c
15 bootblock-y += ../../x86/early_reset.S
16 bootblock-y += bootblock.c
18 postcar-y += ../car/non-evict/exit_car.S
20 subdirs-y += ../microcode
21 subdirs-y += ../turbo
23 ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
24 # Haswell ULT/ULX
25 cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-45-*)
26 ifeq ($(CONFIG_SOC_INTEL_BROADWELL),y)
27 # Broadwell ULT/ULX
28 cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-3d-*)
29 endif
30 else
31 # Haswell Trad
32 cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-3c-*)
33 # Crystal Well (Trad)
34 cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-46-*)
35 # Broadwell Trad
36 cpu_microcode_bins += $(wildcard 3rdparty/intel-microcode/intel-ucode/06-47-*)
37 endif