summaryrefslogtreecommitdiff
path: root/arch/mips/include/asm/bmips.h
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2013-12-18 13:12:01 (GMT)
committerRalf Baechle <ralf@linux-mips.org>2014-01-22 19:18:51 (GMT)
commit6465460c92a856f78e1f1b950f9d304ec2661e5a (patch)
treedb0e6f531d656d5dd71174ce7cf4012e5eebb3a4 /arch/mips/include/asm/bmips.h
parent68248d0c86c46249336b366baf5547bac68752f0 (diff)
downloadlinux-6465460c92a856f78e1f1b950f9d304ec2661e5a.tar.xz
MIPS: BMIPS: change compile time checks to runtime checks
Allow building for all bmips cpus at the same time by changing ifdefs to checks for the cpu type, or adding appropriate checks to the assembly. Since BMIPS43XX and BMIPS5000 require different IPI implementations, split the SMP ops into one for each, so the runtime overhead is only at registration time for them. Signed-off-by: Jonas Gorski <jogo@openwrt.org> Signed-off-by: John Crispin <blogic@openwrt.org> Patchwork: http://patchwork.linux-mips.org/patch/6241/
Diffstat (limited to 'arch/mips/include/asm/bmips.h')
-rw-r--r--arch/mips/include/asm/bmips.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/include/asm/bmips.h b/arch/mips/include/asm/bmips.h
index 27bd060..880f6aa 100644
--- a/arch/mips/include/asm/bmips.h
+++ b/arch/mips/include/asm/bmips.h
@@ -47,7 +47,8 @@
#include <linux/cpumask.h>
#include <asm/r4kcache.h>
-extern struct plat_smp_ops bmips_smp_ops;
+extern struct plat_smp_ops bmips43xx_smp_ops;
+extern struct plat_smp_ops bmips5000_smp_ops;
extern char bmips_reset_nmi_vec;
extern char bmips_reset_nmi_vec_end;
extern char bmips_smp_movevec;