Andrey Petrov (andrey.petrov@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13803
-gerrit
commit fdfdafec4f6820deabf43f1493151c6aa5c006fc Author: Andrey Petrov andrey.petrov@intel.com Date: Thu Feb 25 17:14:29 2016 -0800
cpu/intel: Compile FIT table for romstage as well
On Apollolake FIT needs to be accessed during romstage, so the fit_pointer symbol can be used as well.
Change-Id: Id910ec8e2729ccd2f1e5caa0a847c8790638175a Signed-off-by: Andrey Petrov andrey.petrov@intel.com --- src/cpu/intel/fit/Makefile.inc | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/cpu/intel/fit/Makefile.inc b/src/cpu/intel/fit/Makefile.inc index 4b540ba..7f92806 100644 --- a/src/cpu/intel/fit/Makefile.inc +++ b/src/cpu/intel/fit/Makefile.inc @@ -1 +1,2 @@ bootblock-y += fit.S +romstage-y += fit.S