summaryrefslogtreecommitdiff
path: root/src/cpu/intel/haswell/microcode_blob.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/intel/haswell/microcode_blob.c')
-rw-r--r--src/cpu/intel/haswell/microcode_blob.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/cpu/intel/haswell/microcode_blob.c b/src/cpu/intel/haswell/microcode_blob.c
index 992ee18422..df54ddbe8d 100644
--- a/src/cpu/intel/haswell/microcode_blob.c
+++ b/src/cpu/intel/haswell/microcode_blob.c
@@ -18,5 +18,13 @@
*/
unsigned microcode[] = {
-#include "microcode_blob.h"
+ /*
+ * FIXME: Can we just include both microcodes regardless, or is there
+ * a very good reason why we only use one at a time?
+ */
+ #if CONFIG_INTEL_LYNXPOINT_LP
+ #include "../../../../3rdparty/cpu/intel/model_4065x/microcode.h"
+ #else
+ #include "../../../../3rdparty/cpu/intel/model_306cx/microcode.h"
+ #endif
};