Refactor the code and split it into Xeon common and CPU-specific code. Move most Skylake-SP code into skx/ and keep common code in the current folder. This is a preparation for future work that will enable next generation server CPU. TEST=Tested on OCP Tioga Pass. There does not seem to be degradation of stability as far as I could tell. Signed-off-by: Andrey Petrov <anpetrov@fb.com> Change-Id: I448e6cfd6a85efb83d132ad26565557fe55a265a Reviewed-on: https://review.coreboot.org/c/coreboot/+/39601 Reviewed-by: David Hendricks <david.hendricks@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
29 lines
933 B
Makefile
29 lines
933 B
Makefile
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; either version 2 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
|
|
ifeq ($(CONFIG_XEON_SP_COMMON_BASE),y)
|
|
|
|
subdirs-$(CONFIG_SOC_INTEL_SKYLAKE_SP) += skx
|
|
|
|
bootblock-y += bootblock.c spi.c lpc.c
|
|
romstage-y += romstage.c reset.c util.c spi.c
|
|
ramstage-y += uncore.c reset.c util.c lpc.c spi.c
|
|
postcar-y += spi.c
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/xeon_sp/include
|
|
CPPFLAGS_common += -I$(CONFIG_FSP_HEADER_PATH)
|
|
|
|
endif ## XEON_SP_COMMON_BASE
|