Remove dependency of Haswell on cpu/intel/socket_rpga989 code, which is a carry-over from Sandy Bridge/Ivy Bridge and older coreboot conventions where features were structured around socket types. Add CPU-specific options to Kconfig and required subdirs to Makefile.inc which are curently included with socket_rpga989. TEST=successfully built and booted on google/panther Change-Id: Ic788e2928df107d11ea2d2eca7613490aaed395c Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: http://review.coreboot.org/10037 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
25 lines
703 B
Makefile
25 lines
703 B
Makefile
ramstage-y += haswell_init.c
|
|
ramstage-y += tsc_freq.c
|
|
romstage-y += romstage.c
|
|
romstage-y += tsc_freq.c
|
|
|
|
ramstage-y += acpi.c
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c
|
|
ramstage-$(CONFIG_MONOTONIC_TIMER_MSR) += monotonic_timer.c
|
|
|
|
cpu_microcode-$(CONFIG_CPU_MICROCODE_CBFS_GENERATE) += microcode_blob.c
|
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c
|
|
smm-$(CONFIG_MONOTONIC_TIMER_MSR) += monotonic_timer.c
|
|
|
|
cpu_incs += $(src)/cpu/intel/haswell/cache_as_ram.inc
|
|
|
|
subdirs-y += ../../x86/tsc
|
|
subdirs-y += ../../x86/mtrr
|
|
subdirs-y += ../../x86/lapic
|
|
subdirs-y += ../../x86/cache
|
|
subdirs-y += ../../x86/smm
|
|
subdirs-y += ../microcode
|
|
subdirs-y += ../turbo
|