From 053970542f049d3e30dc4be6eb19e92ff1f70f00 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 2 Jan 2014 16:04:38 +0000 Subject: MIPS: lib: strlen_user: Add EVA support In non-EVA mode, strlen_user* aliases are used for the strlen_kernel* symbols since the code is identical. In EVA mode, new strlen_user* symbols are used which use the EVA specific instructions to load values from userspace. Signed-off-by: Markos Chandras --- arch/mips/lib/strlen_user.S | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'arch/mips/lib') diff --git a/arch/mips/lib/strlen_user.S b/arch/mips/lib/strlen_user.S index 6e8bdb373213..bef65c98df59 100644 --- a/arch/mips/lib/strlen_user.S +++ b/arch/mips/lib/strlen_user.S @@ -30,7 +30,11 @@ LEAF(__strlen_\func\()_asm) FEXPORT(__strlen_\func\()_nocheck_asm) move v0, a0 +.ifeqs "\func", "kernel" 1: EX(lbu, v1, (v0), .Lfault\@) +.else +1: EX(lbue, v1, (v0), .Lfault\@) +.endif PTR_ADDIU v0, 1 bnez v1, 1b PTR_SUBU v0, a0 @@ -41,4 +45,20 @@ FEXPORT(__strlen_\func\()_nocheck_asm) jr ra .endm +#ifndef CONFIG_EVA + /* Set aliases */ + .global __strlen_user_asm + .global __strlen_user_nocheck_asm + .set __strlen_user_asm, __strlen_kernel_asm + .set __strlen_user_nocheck_asm, __strlen_kernel_nocheck_asm +#endif + +__BUILD_STRLEN_ASM kernel + +#ifdef CONFIG_EVA + + .set push + .set eva __BUILD_STRLEN_ASM user + .set pop +#endif -- cgit v1.2.3