apollolake: relocate fsp header files to vendorcode

FSP header files should be located in vendorcode, not soc directory.
This patch includes changes any references to the old location to
the new location.

Change-Id: I44270392617418ec1b9dec15ee187863f2503341
Signed-off-by: Brandon Breitenstein <brandon.breitenstein@intel.com>
Reviewed-on: https://review.coreboot.org/16310
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Brandon Breitenstein 2016-08-31 13:46:58 -07:00 committed by Martin Roth
parent c31ba0ef52
commit eb2e688a8e
5 changed files with 3 additions and 2 deletions

View File

@ -22,8 +22,8 @@
* FSP implementations for different chipsets. * FSP implementations for different chipsets.
*/ */
#include <Base.h> #include <Base.h>
#include <soc/fsp/FspmUpd.h> #include <FspmUpd.h>
#include <soc/fsp/FspsUpd.h> #include <FspsUpd.h>
#pragma pack(pop) #pragma pack(pop)

View File

@ -93,6 +93,7 @@ verstage-y += reset.c
verstage-y += spi.c verstage-y += spi.c
CPPFLAGS_common += -I$(src)/soc/intel/apollolake/include CPPFLAGS_common += -I$(src)/soc/intel/apollolake/include
CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp2_0/apollolake
# Since FSP-M runs in CAR we need to relocate it to a specific address # Since FSP-M runs in CAR we need to relocate it to a specific address
$(CONFIG_FSP_M_CBFS)-options := -b $(CONFIG_FSP_M_ADDR) $(CONFIG_FSP_M_CBFS)-options := -b $(CONFIG_FSP_M_ADDR)