mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
x86: Intel MID platforms has no microcode update
There is no microcode update available for SoCs used on Intel MID platforms. Use conditional to bypass it. Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
20bfac0599
commit
308c75e08d
1 changed files with 2 additions and 1 deletions
|
@ -248,7 +248,8 @@ static int load_sipi_vector(atomic_t **ap_countp, int num_cpus)
|
|||
if (!stack)
|
||||
return -ENOMEM;
|
||||
params->stack_top = (u32)(stack + size);
|
||||
#if !defined(CONFIG_QEMU) && !defined(CONFIG_HAVE_FSP)
|
||||
#if !defined(CONFIG_QEMU) && !defined(CONFIG_HAVE_FSP) && \
|
||||
!defined(CONFIG_INTEL_MID)
|
||||
params->microcode_ptr = ucode_base;
|
||||
debug("Microcode at %x\n", params->microcode_ptr);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue