Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4160
-gerrit
commit 7dca85891fbc07d7e386007d71868ebb142e702a Author: Aaron Durbin adurbin@chromium.org Date: Tue May 7 11:05:06 2013 -0500
haswell: split microcode between ULT and non-ULT
The current microcode blobs contain both ULT and non-ULT revisions. Only include one or the other based off of the CONFIG_INTEL_LYNXPOINT_LP Kconfig option.
Change-Id: I3e4e41d4cd727b1a974361fb469267e6f6022d5a Signed-off-by: Aaron Durbin adurbin@chromium.org Reviewed-on: https://gerrit.chromium.org/gerrit/50318 Reviewed-by: Duncan Laurie dlaurie@chromium.org --- src/cpu/intel/haswell/microcode_blob.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/cpu/intel/haswell/microcode_blob.h b/src/cpu/intel/haswell/microcode_blob.h index fabadee..5b4f74a 100644 --- a/src/cpu/intel/haswell/microcode_blob.h +++ b/src/cpu/intel/haswell/microcode_blob.h @@ -17,11 +17,14 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#if CONFIG_INTEL_LYNXPOINT_LP +#include "microcode-M7240650_ffff000a.h" +#include "microcode-M7240651_0000000a.h" +#else #include "microcode-M32306c1_ffff000d.h" #include "microcode-M32306c2_ffff0003.h" #include "microcode-M3240660_ffff000b.h" -#include "microcode-M7240650_ffff000a.h" -#include "microcode-M7240651_0000000a.h" +#endif /* Dummy terminator */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,