Drop the Kconfig for hyperthreading to be always able to check at runtime if hyperthreading is supported. Having a Kconfig for this doesn't have any benefit. Change-Id: Ib7b7a437d758f7fe4a09738db1eab8189290b288 Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46507 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
12 lines
276 B
Makefile
12 lines
276 B
Makefile
ramstage-$(CONFIG_CPU_INTEL_COMMON) += common_init.c
|
|
ramstage-$(CONFIG_CPU_INTEL_COMMON) += hyperthreading.c
|
|
|
|
ifeq ($(CONFIG_CPU_INTEL_COMMON_TIMEBASE),y)
|
|
bootblock-y += fsb.c
|
|
verstage-y += fsb.c
|
|
romstage-y += fsb.c
|
|
postcar-y += fsb.c
|
|
ramstage-y += fsb.c
|
|
smm-y += fsb.c
|
|
endif
|