2018-10-17 08:25:01 +02:00
|
|
|
ifeq ($(CONFIG_SOC_INTEL_ICELAKE),y)
|
|
|
|
|
|
|
|
subdirs-y += romstage
|
|
|
|
subdirs-y += ../../../cpu/intel/microcode
|
|
|
|
subdirs-y += ../../../cpu/intel/turbo
|
|
|
|
subdirs-y += ../../../cpu/x86/lapic
|
|
|
|
subdirs-y += ../../../cpu/x86/mtrr
|
|
|
|
subdirs-y += ../../../cpu/x86/smm
|
|
|
|
subdirs-y += ../../../cpu/x86/tsc
|
|
|
|
|
2019-11-01 12:02:01 +01:00
|
|
|
# all (bootblock, verstage, romstage, postcar, ramstage)
|
|
|
|
all-y += gspi.c
|
|
|
|
all-y += i2c.c
|
|
|
|
all-y += pmutil.c
|
|
|
|
all-y += spi.c
|
|
|
|
all-y += uart.c
|
|
|
|
|
2018-10-17 08:25:01 +02:00
|
|
|
bootblock-y += bootblock/bootblock.c
|
|
|
|
bootblock-y += bootblock/cpu.c
|
|
|
|
bootblock-y += bootblock/pch.c
|
|
|
|
bootblock-y += bootblock/report_platform.c
|
2018-10-31 18:38:14 +01:00
|
|
|
bootblock-y += espi.c
|
2018-10-17 08:25:01 +02:00
|
|
|
bootblock-y += gpio.c
|
|
|
|
bootblock-y += p2sb.c
|
|
|
|
|
2018-10-31 18:38:14 +01:00
|
|
|
romstage-y += espi.c
|
2018-10-17 08:25:01 +02:00
|
|
|
romstage-y += gpio.c
|
|
|
|
romstage-y += reset.c
|
|
|
|
|
|
|
|
ramstage-y += acpi.c
|
|
|
|
ramstage-y += chip.c
|
|
|
|
ramstage-y += cpu.c
|
2019-04-29 09:58:11 +02:00
|
|
|
ramstage-y += elog.c
|
2018-10-31 18:38:14 +01:00
|
|
|
ramstage-y += espi.c
|
2018-10-17 08:25:01 +02:00
|
|
|
ramstage-y += finalize.c
|
|
|
|
ramstage-y += fsp_params.c
|
|
|
|
ramstage-y += gpio.c
|
|
|
|
ramstage-y += graphics.c
|
|
|
|
ramstage-y += lockdown.c
|
|
|
|
ramstage-y += p2sb.c
|
|
|
|
ramstage-y += pmc.c
|
2019-10-24 00:19:45 +02:00
|
|
|
ramstage-y += reset.c
|
2018-10-17 08:25:01 +02:00
|
|
|
ramstage-y += smmrelocate.c
|
|
|
|
ramstage-y += systemagent.c
|
|
|
|
ramstage-y += sd.c
|
|
|
|
|
|
|
|
smm-y += gpio.c
|
|
|
|
smm-y += p2sb.c
|
2019-08-05 19:33:09 +02:00
|
|
|
smm-y += pmc.c
|
2018-10-17 08:25:01 +02:00
|
|
|
smm-y += pmutil.c
|
|
|
|
smm-y += smihandler.c
|
2018-11-11 02:51:14 +01:00
|
|
|
smm-y += uart.c
|
2018-10-17 08:25:01 +02:00
|
|
|
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/icelake
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/icelake/include
|
|
|
|
|
|
|
|
endif
|