diff options
author | Simon Glass <sjg@chromium.org> | 2016-03-16 07:44:37 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-03-17 10:27:27 +0800 |
commit | 65dd1507e3b744954d43811a1e4d9f194d1bda64 (patch) | |
tree | 806d07c276af859adf947f6f0541adc097e4fe9b /arch/x86/cpu/intel_common/Makefile | |
parent | 7e4a6ae62c7ee567ae43e94445e561b3ec8343b9 (diff) | |
download | u-boot-imx-65dd1507e3b744954d43811a1e4d9f194d1bda64.zip u-boot-imx-65dd1507e3b744954d43811a1e4d9f194d1bda64.tar.gz u-boot-imx-65dd1507e3b744954d43811a1e4d9f194d1bda64.tar.bz2 |
x86: Add common SDRAM-init code
The code to call the memory reference code is common to several Intel CPUs.
Add common code for performing this init. Intel calls this 'Pre-EFI-Init'
(PEI), where EFI stands for Extensible Firmware Interface.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/intel_common/Makefile')
-rw-r--r-- | arch/x86/cpu/intel_common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/intel_common/Makefile b/arch/x86/cpu/intel_common/Makefile index 74b097a..804c539 100644 --- a/arch/x86/cpu/intel_common/Makefile +++ b/arch/x86/cpu/intel_common/Makefile @@ -13,3 +13,4 @@ obj-y += microcode.o endif obj-y += pch.o obj-$(CONFIG_HAVE_MRC) += report_platform.o +obj-$(CONFIG_HAVE_MRC) += mrc.o |