aa3d78d5e6
Revere memory resource within SA, also perform necessary routine for initialization during ramstage. Change-Id: Ibaa7334b0d94fedc87e707a136c9537e2e6f57cb Signed-off-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/20914 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
31 lines
907 B
Makefile
31 lines
907 B
Makefile
ifeq ($(CONFIG_SOC_INTEL_CANNONLAKE),y)
|
|
|
|
subdirs-y += romstage
|
|
subdirs-y += ../../../cpu/intel/microcode
|
|
subdirs-y += ../../../cpu/x86/mtrr
|
|
subdirs-y += ../../../cpu/x86/tsc
|
|
|
|
bootblock-$(CONFIG_DRIVERS_UART_8250MEM) += uart.c
|
|
bootblock-y += bootblock/bootblock.c
|
|
bootblock-y += bootblock/cpu.c
|
|
bootblock-y += bootblock/pch.c
|
|
bootblock-y += bootblock/report_platform.c
|
|
bootblock-y += gpio.c
|
|
bootblock-y += memmap.c
|
|
|
|
romstage-y += memmap.c
|
|
romstage-y += reset.c
|
|
romstage-$(CONFIG_DRIVERS_UART_8250MEM) += uart.c
|
|
|
|
ramstage-y += cbmem.c
|
|
ramstage-$(CONFIG_PLATFORM_USES_FSP2_0) += reset.c
|
|
ramstage-y += systemagent.c
|
|
ramstage-$(CONFIG_DRIVERS_UART_8250MEM) += uart.c
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/cannonlake/include/fsp20
|
|
CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp2_0/cannonlake
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/cannonlake
|
|
CPPFLAGS_common += -I$(src)/soc/intel/cannonlake/include
|
|
|
|
endif
|