summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-01-16 07:03:57 -0700
committerBin Meng <bmeng.cn@gmail.com>2017-02-06 11:38:46 +0800
commitbe059e8813082d6c07be5f69cb7febe37411ca47 (patch)
tree248dcfa08ac3da6ad3ac4eb7baf16718994a1293 /arch/x86/include/asm
parent4bbc02454fb84310eb755f68fa17d2eb36d976fe (diff)
downloadu-boot-imx-be059e8813082d6c07be5f69cb7febe37411ca47.zip
u-boot-imx-be059e8813082d6c07be5f69cb7febe37411ca47.tar.gz
u-boot-imx-be059e8813082d6c07be5f69cb7febe37411ca47.tar.bz2
x86: Move the i386 code into its own directory
Much of the cpu and interrupt code cannot be compiled on 64-bit x86. Move it into its own directory and build it only in 32-bit mode. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r--arch/x86/include/asm/mp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/include/asm/mp.h b/arch/x86/include/asm/mp.h
index 2e6c312..83b99dc 100644
--- a/arch/x86/include/asm/mp.h
+++ b/arch/x86/include/asm/mp.h
@@ -90,4 +90,7 @@ int mp_init(struct mp_params *params);
/* Probes the CPU device */
int mp_init_cpu(struct udevice *cpu, void *unused);
+/* Set up additional CPUs */
+int x86_mp_init(void);
+
#endif /* _X86_MP_H_ */