2015-05-06 00:07:29 +02:00
|
|
|
ifeq ($(CONFIG_SOC_INTEL_BRASWELL),y)
|
|
|
|
|
|
|
|
subdirs-y += romstage
|
|
|
|
subdirs-y += ../../../cpu/x86/lapic
|
|
|
|
subdirs-y += ../../../cpu/x86/mtrr
|
|
|
|
subdirs-y += ../../../cpu/x86/smm
|
|
|
|
subdirs-y += ../../../cpu/x86/tsc
|
|
|
|
subdirs-y += ../../../cpu/intel/microcode
|
|
|
|
subdirs-y += ../../../cpu/intel/turbo
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
romstage-y += gpio_support.c
|
|
|
|
romstage-y += iosf.c
|
2015-07-02 20:55:18 +02:00
|
|
|
romstage-y += lpc_init.c
|
2015-05-06 00:07:29 +02:00
|
|
|
romstage-y += memmap.c
|
|
|
|
romstage-y += tsc_freq.c
|
2015-04-21 00:20:28 +02:00
|
|
|
|
|
|
|
ramstage-y += acpi.c
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += chip.c
|
2015-04-21 00:20:28 +02:00
|
|
|
ramstage-y += cpu.c
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
|
|
ramstage-y += emmc.c
|
|
|
|
ramstage-y += gpio.c
|
|
|
|
ifeq ($(CONFIG_GOP_SUPPORT),n)
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += gfx.c
|
2015-04-21 00:20:28 +02:00
|
|
|
endif
|
|
|
|
ramstage-y += hda.c
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += iosf.c
|
2015-04-21 00:20:28 +02:00
|
|
|
ramstage-y += lpe.c
|
|
|
|
ramstage-y += lpss.c
|
|
|
|
ramstage-y += memmap.c
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += northcluster.c
|
2015-04-21 00:20:28 +02:00
|
|
|
ramstage-y += pcie.c
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += pmutil.c
|
2015-04-21 00:20:28 +02:00
|
|
|
ramstage-y += ramstage.c
|
2015-05-06 00:07:29 +02:00
|
|
|
ramstage-y += sata.c
|
|
|
|
ramstage-y += scc.c
|
|
|
|
ramstage-y += sd.c
|
2015-04-21 00:20:28 +02:00
|
|
|
ramstage-y += smm.c
|
|
|
|
ramstage-y += southcluster.c
|
|
|
|
ramstage-y += spi.c
|
|
|
|
ramstage-$(CONFIG_ALT_CBFS_LOAD_PAYLOAD) += spi_loading.c
|
|
|
|
ramstage-y += tsc_freq.c
|
2015-05-06 00:07:29 +02:00
|
|
|
|
|
|
|
# Remove as ramstage gets fleshed out
|
|
|
|
ramstage-y += placeholders.c
|
|
|
|
|
2015-07-02 20:55:18 +02:00
|
|
|
smm-y += lpc_init.c
|
2015-04-21 00:20:28 +02:00
|
|
|
smm-y += pmutil.c
|
|
|
|
smm-y += smihandler.c
|
|
|
|
smm-y += spi.c
|
|
|
|
smm-y += tsc_freq.c
|
|
|
|
|
2015-09-10 07:38:06 +02:00
|
|
|
# cpu_microcode_bins += ???
|
|
|
|
|
2015-04-21 00:20:28 +02:00
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/braswell/
|
|
|
|
CPPFLAGS_common += -I$(src)/soc/intel/braswell/include
|
2015-11-19 00:32:27 +01:00
|
|
|
CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp1_1/braswell
|
2015-04-21 00:20:28 +02:00
|
|
|
|
|
|
|
CPPFLAGS_common += -I3rdparty/blobs/mainboard/$(CONFIG_MAINBOARD_DIR)
|
|
|
|
|
2015-05-06 00:07:29 +02:00
|
|
|
endif
|