summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/x86_64
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-01-16 14:04:08 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2017-02-06 03:38:46 (GMT)
commit1b4086307e5b5c26ac33ad31bb5da60578e5765d (patch)
tree3343d6a8748c77d0b3d7482567b415738cbaf086 /arch/x86/cpu/x86_64
parent45cc9e4cc5a967dba7a3e2592a1959231ee2a4d5 (diff)
downloadu-boot-fsl-qoriq-1b4086307e5b5c26ac33ad31bb5da60578e5765d.tar.xz
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/x86_64')
-rw-r--r--arch/x86/cpu/x86_64/cpu.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/cpu/x86_64/cpu.c b/arch/x86/cpu/x86_64/cpu.c
index 3627229..77cbb56 100644
--- a/arch/x86/cpu/x86_64/cpu.c
+++ b/arch/x86/cpu/x86_64/cpu.c
@@ -59,3 +59,13 @@ int x86_mp_init(void)
/* Not implemented */
return 0;
}
+
+int misc_init_r(void)
+{
+ return 0;
+}
+
+int print_cpuinfo(void)
+{
+ return 0;
+}