diff options
Diffstat (limited to 'arch/mips/kernel/entry.S')
| -rw-r--r-- | arch/mips/kernel/entry.S | 73 | 
1 files changed, 27 insertions, 46 deletions
diff --git a/arch/mips/kernel/entry.S b/arch/mips/kernel/entry.S index ffa331029e0..4353d323f01 100644 --- a/arch/mips/kernel/entry.S +++ b/arch/mips/kernel/entry.S @@ -16,9 +16,6 @@  #include <asm/isadep.h>  #include <asm/thread_info.h>  #include <asm/war.h> -#ifdef CONFIG_MIPS_MT_SMTC -#include <asm/mipsmtregs.h> -#endif  #ifndef CONFIG_PREEMPT  #define resume_kernel	restore_all @@ -36,6 +33,11 @@ FEXPORT(ret_from_exception)  FEXPORT(ret_from_irq)  	LONG_S	s0, TI_REGS($28)  FEXPORT(__ret_from_irq) +/* + * We can be coming here from a syscall done in the kernel space, + * e.g. a failed kernel_execve(). + */ +resume_userspace_check:  	LONG_L	t0, PT_STATUS(sp)		# returning to kernel mode?  	andi	t0, t0, KU_USER  	beqz	t0, resume_kernel @@ -65,6 +67,12 @@ need_resched:  	b	need_resched  #endif +FEXPORT(ret_from_kernel_thread) +	jal	schedule_tail		# a0 = struct task_struct *prev +	move	a0, s1 +	jal	s0 +	j	syscall_exit +  FEXPORT(ret_from_fork)  	jal	schedule_tail		# a0 = struct task_struct *prev @@ -77,47 +85,12 @@ FEXPORT(syscall_exit)  	and	t0, a2, t0  	bnez	t0, syscall_exit_work -FEXPORT(restore_all)			# restore full frame -#ifdef CONFIG_MIPS_MT_SMTC -#ifdef CONFIG_MIPS_MT_SMTC_IM_BACKSTOP -/* Re-arm any temporarily masked interrupts not explicitly "acked" */ -	mfc0	v0, CP0_TCSTATUS -	ori	v1, v0, TCSTATUS_IXMT -	mtc0	v1, CP0_TCSTATUS -	andi	v0, TCSTATUS_IXMT -	_ehb -	mfc0	t0, CP0_TCCONTEXT -	DMT	9				# dmt t1 -	jal	mips_ihb -	mfc0	t2, CP0_STATUS -	andi	t3, t0, 0xff00 -	or	t2, t2, t3 -	mtc0	t2, CP0_STATUS -	_ehb -	andi	t1, t1, VPECONTROL_TE -	beqz	t1, 1f -	EMT -1: -	mfc0	v1, CP0_TCSTATUS -	/* We set IXMT above, XOR should clear it here */ -	xori	v1, v1, TCSTATUS_IXMT -	or	v1, v0, v1 -	mtc0	v1, CP0_TCSTATUS -	_ehb -	xor	t0, t0, t3 -	mtc0	t0, CP0_TCCONTEXT -#endif /* CONFIG_MIPS_MT_SMTC_IM_BACKSTOP */ -/* Detect and execute deferred IPI "interrupts" */ -	LONG_L	s0, TI_REGS($28) -	LONG_S	sp, TI_REGS($28) -	jal	deferred_smtc_ipi -	LONG_S	s0, TI_REGS($28) -#endif /* CONFIG_MIPS_MT_SMTC */ +restore_all:				# restore full frame  	.set	noat  	RESTORE_TEMP  	RESTORE_AT  	RESTORE_STATIC -FEXPORT(restore_partial)		# restore partial frame +restore_partial:		# restore partial frame  #ifdef CONFIG_TRACE_IRQFLAGS  	SAVE_STATIC  	SAVE_AT @@ -162,19 +135,27 @@ work_notifysig:				# deal with pending signals and  	move	a0, sp  	li	a1, 0  	jal	do_notify_resume	# a2 already loaded -	j	resume_userspace +	j	resume_userspace_check -FEXPORT(syscall_exit_work_partial) +FEXPORT(syscall_exit_partial) +	local_irq_disable		# make sure need_resched doesn't +					# change between and return +	LONG_L	a2, TI_FLAGS($28)	# current->work +	li	t0, _TIF_ALLWORK_MASK +	and	t0, a2 +	beqz	t0, restore_partial  	SAVE_STATIC  syscall_exit_work: -	li	t0, _TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT +	LONG_L	t0, PT_STATUS(sp)		# returning to kernel mode? +	andi	t0, t0, KU_USER +	beqz	t0, resume_kernel +	li	t0, _TIF_WORK_SYSCALL_EXIT  	and	t0, a2			# a2 is preloaded with TI_FLAGS  	beqz	t0, work_pending	# trace bit set? -	local_irq_enable		# could let do_syscall_trace() +	local_irq_enable		# could let syscall_trace_leave()  					# call schedule() instead  	move	a0, sp -	li	a1, 1 -	jal	do_syscall_trace +	jal	syscall_trace_leave  	b	resume_userspace  #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_MIPS_MT)  | 
