mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
x86: Move microcode code to a common location
This code is used on several Intel CPUs. Move it into a common location. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
1223d737a3
commit
9e66506d33
6 changed files with 8 additions and 4 deletions
|
@ -5,3 +5,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_HAVE_MRC) += car.o
|
obj-$(CONFIG_HAVE_MRC) += car.o
|
||||||
|
ifndef CONFIG_TARGET_EFI
|
||||||
|
obj-y += microcode.o
|
||||||
|
endif
|
||||||
|
|
|
@ -12,12 +12,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <asm/microcode.h>
|
||||||
#include <asm/msr-index.h>
|
#include <asm/msr-index.h>
|
||||||
#include <asm/mtrr.h>
|
#include <asm/mtrr.h>
|
||||||
#include <asm/post.h>
|
#include <asm/post.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/processor-flags.h>
|
#include <asm/processor-flags.h>
|
||||||
#include <asm/arch/microcode.h>
|
|
||||||
|
|
||||||
#define MTRR_PHYS_BASE_MSR(reg) (0x200 + 2 * (reg))
|
#define MTRR_PHYS_BASE_MSR(reg) (0x200 + 2 * (reg))
|
||||||
#define MTRR_PHYS_MASK_MSR(reg) (0x200 + 2 * (reg) + 1)
|
#define MTRR_PHYS_MASK_MSR(reg) (0x200 + 2 * (reg) + 1)
|
||||||
|
|
|
@ -12,10 +12,12 @@
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
#include <libfdt.h>
|
#include <libfdt.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
|
#include <asm/microcode.h>
|
||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/msr-index.h>
|
#include <asm/msr-index.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/arch/microcode.h>
|
|
||||||
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct microcode_update - standard microcode header from Intel
|
* struct microcode_update - standard microcode header from Intel
|
|
@ -13,7 +13,6 @@ obj-y += gma.o
|
||||||
obj-y += lpc.o
|
obj-y += lpc.o
|
||||||
obj-y += me_status.o
|
obj-y += me_status.o
|
||||||
obj-y += model_206ax.o
|
obj-y += model_206ax.o
|
||||||
obj-y += microcode_intel.o
|
|
||||||
obj-y += northbridge.o
|
obj-y += northbridge.o
|
||||||
obj-y += report_platform.o
|
obj-y += report_platform.o
|
||||||
obj-y += sata.o
|
obj-y += sata.o
|
||||||
|
|
|
@ -19,13 +19,13 @@
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/lapic.h>
|
#include <asm/lapic.h>
|
||||||
|
#include <asm/microcode.h>
|
||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/mtrr.h>
|
#include <asm/mtrr.h>
|
||||||
#include <asm/pci.h>
|
#include <asm/pci.h>
|
||||||
#include <asm/post.h>
|
#include <asm/post.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/arch/model_206ax.h>
|
#include <asm/arch/model_206ax.h>
|
||||||
#include <asm/arch/microcode.h>
|
|
||||||
#include <asm/arch/pch.h>
|
#include <asm/arch/pch.h>
|
||||||
#include <asm/arch/sandybridge.h>
|
#include <asm/arch/sandybridge.h>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue