aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2014-01-27 15:52:47 -0600
committerAaron Durbin <adurbin@google.com>2014-01-28 19:54:29 +0100
commite6767674af95c7b5e9b508839b3aaf8b477921c4 (patch)
tree44cb61e9a4e336374e681db322b2ef8c28560d9d /src
parentffa81bf29d0e1e98207aa7bb763f78a1e61e91bd (diff)
intel: fix microcode compilation failure in bootblock
When not building with CONFIG_SSE there are not enough registers for ROMCC to use for spilling. The previous changes to this file had too many local variables that needed to be tracked -- thus causing romcc compilation issues. Change-Id: I3dd4b48be707f41ce273285e98ebd397c32a6a25 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/4845 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/cpu/intel/microcode/microcode.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c
index c823eb81dd..947dfd78b9 100644
--- a/src/cpu/intel/microcode/microcode.c
+++ b/src/cpu/intel/microcode/microcode.c
@@ -110,11 +110,10 @@ void intel_microcode_load_unlocked(const void *microcode_patch)
const void *intel_microcode_find(void)
{
struct cbfs_file *microcode_file;
- void *microcode_updates;
+ const struct microcode *ucode_updates;
u32 eax, microcode_len;
u32 pf, rev, sig, update_size;
unsigned int x86_model, x86_family;
- const struct microcode *m;
msr_t msr;
#ifdef __PRE_RAM__
@@ -127,7 +126,7 @@ const void *intel_microcode_find(void)
if (!microcode_file)
return NULL;
- microcode_updates = CBFS_SUBHEADER(microcode_file);
+ ucode_updates = CBFS_SUBHEADER(microcode_file);
microcode_len = ntohl(microcode_file->len);
/* CPUID sets MSR 0x8B iff a microcode update has been loaded. */
@@ -154,12 +153,11 @@ const void *intel_microcode_find(void)
sig, pf, rev);
#endif
- while (microcode_len >= sizeof(*m)) {
- m = microcode_updates;
+ while (microcode_len >= sizeof(*ucode_updates)) {
/* Newer microcode updates include a size field, whereas older
* containers set it at 0 and are exactly 2048 bytes long */
- if (m->total_size) {
- update_size = m->total_size;
+ if (ucode_updates->total_size) {
+ update_size = ucode_updates->total_size;
} else {
#if !defined(__ROMCC__)
printk(BIOS_SPEW, "Microcode size field is 0\n");
@@ -175,10 +173,10 @@ const void *intel_microcode_find(void)
break;
}
- if ((m->sig == sig) && (m->pf & pf))
- return m;
+ if ((ucode_updates->sig == sig) && (ucode_updates->pf & pf))
+ return ucode_updates;
- microcode_updates += update_size;
+ ucode_updates = (void *)((char *)ucode_updates + update_size);
microcode_len -= update_size;
}