diff options
author | Simon Glass | 2017-01-16 07:04:08 -0700 |
---|---|---|
committer | Bin Meng | 2017-02-06 11:38:46 +0800 |
commit | 1b4086307e5b5c26ac33ad31bb5da60578e5765d (patch) | |
tree | 3343d6a8748c77d0b3d7482567b415738cbaf086 /arch/x86/cpu/ivybridge/Makefile | |
parent | 45cc9e4cc5a967dba7a3e2592a1959231ee2a4d5 (diff) |
x86: ivybridge: Provide a dummy SDRAM init for 64-bit
We don't support SDRAM init in 64-bit mode since it is essentially
impossible to get into that mode before SDRAM set up. Provide dummy functions
for now. At some point we will need to pass the SDRAM parameters through from
SPL.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/ivybridge/Makefile')
-rw-r--r-- | arch/x86/cpu/ivybridge/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/cpu/ivybridge/Makefile b/arch/x86/cpu/ivybridge/Makefile index 1a526c8f0f5..25fbd599db0 100644 --- a/arch/x86/cpu/ivybridge/Makefile +++ b/arch/x86/cpu/ivybridge/Makefile @@ -16,5 +16,8 @@ ifndef CONFIG_SPL_BUILD obj-y += sata.o endif obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += sdram.o +ifndef CONFIG_$(SPL_)X86_32BIT_INIT +obj-y += sdram_nop.o +endif endif obj-y += bd82x6x.o |