soc/intel: Add skeleton infrastructure for Apollolake SOC

This is the very very minimum needed to compile the code.

Change-Id: I7f9e5f564181071591a4640019f59f91a4c456c6
Signed-off-by: Alexandru Gagniuc <alexandrux.gagniuc@intel.com>
Reviewed-on: https://review.coreboot.org/13297
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Alexandru Gagniuc
2015-10-06 10:33:49 -07:00
committed by Stefan Reinauer
parent 6be6c8f282
commit 7e86cd4bb2
3 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
ifeq ($(CONFIG_SOC_INTEL_APOLLOLAKE),y)
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
romstage-y += placeholders.c
smm-y += placeholders.c
ramstage-y += placeholders.c
endif