| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | /* | 
					
						
							|  |  |  |  * Low Level Interrupts/Traps/Exceptions(non-TLB) Handling for ARC | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify
 | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-23 16:30:36 +05:30
										 |  |  |  * vineetg: May 2011 | 
					
						
							|  |  |  |  *  -Userspace unaligned access emulation | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  |  * vineetg: Feb 2011 (ptrace low level code fixes) | 
					
						
							|  |  |  |  *  -traced syscall return code (r0) was not saved into pt_regs for restoring | 
					
						
							|  |  |  |  *   into user reg-file when traded task rets to user space. | 
					
						
							|  |  |  |  *  -syscalls needing arch-wrappers (mainly for passing sp as pt_regs) | 
					
						
							|  |  |  |  *   were not invoking post-syscall trace hook (jumping directly into | 
					
						
							|  |  |  |  *   ret_from_system_call) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  |  * vineetg: Nov 2010: | 
					
						
							|  |  |  |  *  -Vector table jumps (@8 bytes) converted into branches (@4 bytes)
 | 
					
						
							|  |  |  |  *  -To maintain the slot size of 8 bytes/vector, added nop, which is | 
					
						
							|  |  |  |  *   not executed at runtime. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * vineetg: Nov 2009 (Everything needed for TIF_RESTORE_SIGMASK) | 
					
						
							|  |  |  |  *  -do_signal()invoked upon TIF_RESTORE_SIGMASK as well | 
					
						
							|  |  |  |  *  -Wrappers for sys_{,rt_}sigsuspend() nolonger needed as they don't | 
					
						
							|  |  |  |  *   need ptregs anymore | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Vineetg: Oct 2009 | 
					
						
							|  |  |  |  *  -In a rare scenario, Process gets a Priv-V exception and gets scheduled | 
					
						
							|  |  |  |  *   out. Since we don't do FAKE RTIE for Priv-V, CPU excpetion state remains | 
					
						
							|  |  |  |  *   active (AE bit enabled).  This causes a double fault for a subseq valid | 
					
						
							|  |  |  |  *   exception. Thus FAKE RTIE needed in low level Priv-Violation handler. | 
					
						
							|  |  |  |  *   Instr Error could also cause similar scenario, so same there as well. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  |  * Vineetg: March 2009 (Supporting 2 levels of Interrupts) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  |  * Vineetg: Aug 28th 2008: Bug #94984 | 
					
						
							|  |  |  |  *  -Zero Overhead Loop Context shd be cleared when entering IRQ/EXcp/Trap | 
					
						
							|  |  |  |  *   Normally CPU does this automatically, however when doing FAKE rtie, | 
					
						
							|  |  |  |  *   we need to explicitly do this. The problem in macros | 
					
						
							|  |  |  |  *   FAKE_RET_FROM_EXCPN and FAKE_RET_FROM_EXCPN_LOCK_IRQ was that this bit | 
					
						
							|  |  |  |  *   was being "CLEARED" rather then "SET". Since it is Loop INHIBIT Bit, | 
					
						
							|  |  |  |  *   setting it and not clearing it clears ZOL context | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-02-11 19:52:57 +05:30
										 |  |  |  * Vineetg: May 16th, 2008 | 
					
						
							|  |  |  |  *  - r25 now contains the Current Task when in kernel | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  |  * Vineetg: Dec 22, 2007 | 
					
						
							|  |  |  |  *    Minor Surgery of Low Level ISR to make it SMP safe | 
					
						
							|  |  |  |  *    - MMU_SCRATCH0 Reg used for freeing up r9 in Level 1 ISR | 
					
						
							|  |  |  |  *    - _current_task is made an array of NR_CPUS | 
					
						
							|  |  |  |  *    - Access of _current_task wrapped inside a macro so that if hardware | 
					
						
							|  |  |  |  *       team agrees for a dedicated reg, no other code is touched | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Amit Bhor, Rahul Trivedi, Kanika Nema, Sameer Dhavale : Codito Tech 2004 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*------------------------------------------------------------------ | 
					
						
							|  |  |  |  *    Function                            ABI | 
					
						
							|  |  |  |  *------------------------------------------------------------------ | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Arguments                           r0 - r7 | 
					
						
							|  |  |  |  *  Caller Saved Registers              r0 - r12 | 
					
						
							|  |  |  |  *  Callee Saved Registers              r13- r25 | 
					
						
							|  |  |  |  *  Global Pointer (gp)                 r26 | 
					
						
							|  |  |  |  *  Frame Pointer (fp)                  r27 | 
					
						
							|  |  |  |  *  Stack Pointer (sp)                  r28 | 
					
						
							|  |  |  |  *  Interrupt link register (ilink1)    r29 | 
					
						
							|  |  |  |  *  Interrupt link register (ilink2)    r30 | 
					
						
							|  |  |  |  *  Branch link register (blink)        r31 | 
					
						
							|  |  |  |  *------------------------------------------------------------------ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.cpu A7
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;############################ Vector Table #################################
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .macro VECTOR  lbl | 
					
						
							|  |  |  | #if 1   /* Just in case, build breaks */ | 
					
						
							|  |  |  | 	j   \lbl | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | 	b   \lbl | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | .endm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.section .vector, "ax",@progbits
 | 
					
						
							|  |  |  | 	.align 4
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Each entry in the vector table must occupy 2 words. Since it is a jump | 
					
						
							|  |  |  |  * across sections (.vector to .text) we are gauranteed that 'j somewhere' | 
					
						
							|  |  |  |  * will use the 'j limm' form of the intrsuction as long as somewhere is in | 
					
						
							|  |  |  |  * a section other than .vector. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ; ********* Critical System Events **********************
 | 
					
						
							|  |  |  | VECTOR   res_service             ; 0x0, Restart Vector  (0x0)
 | 
					
						
							|  |  |  | VECTOR   mem_service             ; 0x8, Mem exception   (0x1)
 | 
					
						
							|  |  |  | VECTOR   instr_service           ; 0x10, Instrn Error   (0x2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ; ******************** Device ISRs **********************
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #ifdef CONFIG_ARC_IRQ3_LV2 | 
					
						
							|  |  |  | VECTOR   handle_interrupt_level2 | 
					
						
							|  |  |  | #else | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | VECTOR   handle_interrupt_level1 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | VECTOR   handle_interrupt_level1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #ifdef CONFIG_ARC_IRQ5_LV2 | 
					
						
							|  |  |  | VECTOR   handle_interrupt_level2 | 
					
						
							|  |  |  | #else | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | VECTOR   handle_interrupt_level1 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #ifdef CONFIG_ARC_IRQ6_LV2 | 
					
						
							|  |  |  | VECTOR   handle_interrupt_level2 | 
					
						
							|  |  |  | #else | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | VECTOR   handle_interrupt_level1 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | .rept   25
 | 
					
						
							|  |  |  | VECTOR   handle_interrupt_level1 ; Other devices
 | 
					
						
							|  |  |  | .endr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* FOR ARC600: timer = 0x3, uart = 0x8, emac = 0x10 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ; ******************** Exceptions **********************
 | 
					
						
							|  |  |  | VECTOR   EV_MachineCheck         ; 0x100, Fatal Machine check   (0x20)
 | 
					
						
							|  |  |  | VECTOR   EV_TLBMissI             ; 0x108, Intruction TLB miss   (0x21)
 | 
					
						
							|  |  |  | VECTOR   EV_TLBMissD             ; 0x110, Data TLB miss         (0x22)
 | 
					
						
							|  |  |  | VECTOR   EV_TLBProtV             ; 0x118, Protection Violation  (0x23)
 | 
					
						
							|  |  |  | 				 ;         or Misaligned Access
 | 
					
						
							|  |  |  | VECTOR   EV_PrivilegeV           ; 0x120, Privilege Violation   (0x24)
 | 
					
						
							|  |  |  | VECTOR   EV_Trap                 ; 0x128, Trap exception        (0x25)
 | 
					
						
							|  |  |  | VECTOR   EV_Extension            ; 0x130, Extn Intruction Excp  (0x26)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .rept   24
 | 
					
						
							|  |  |  | VECTOR   reserved                ; Reserved Exceptions
 | 
					
						
							|  |  |  | .endr | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | #include <linux/linkage.h>   /* {EXTRY,EXIT} */ | 
					
						
							| 
									
										
										
										
											2013-06-11 18:56:54 +05:30
										 |  |  | #include <asm/entry.h>       /* SAVE_ALL_{INT1,INT2,SYS...} */ | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | #include <asm/errno.h> | 
					
						
							|  |  |  | #include <asm/arcregs.h> | 
					
						
							|  |  |  | #include <asm/irqflags.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;##################### Scratch Mem for IRQ stack switching #############
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:25 +05:30
										 |  |  | ARCFP_DATA int1_saved_reg | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	.align 32
 | 
					
						
							|  |  |  | 	.type   int1_saved_reg, @object
 | 
					
						
							|  |  |  | 	.size   int1_saved_reg, 4 | 
					
						
							|  |  |  | int1_saved_reg: | 
					
						
							|  |  |  | 	.zero 4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | /* Each Interrupt level needs it's own scratch */ | 
					
						
							|  |  |  | #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:25 +05:30
										 |  |  | ARCFP_DATA int2_saved_reg | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	.type   int2_saved_reg, @object
 | 
					
						
							|  |  |  | 	.size   int2_saved_reg, 4 | 
					
						
							|  |  |  | int2_saved_reg: | 
					
						
							|  |  |  | 	.zero 4
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | 	.section .text, "ax",@progbits
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | res_service:		; processor restart
 | 
					
						
							|  |  |  | 	flag    0x1     ; not implemented
 | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 	nop | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | reserved:		; processor restart
 | 
					
						
							|  |  |  | 	rtie            ; jump to processor initializations
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;##################### Interrupt Handling ##############################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ;  Level 2 ISR: Can interrupt a Level 1 ISR
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(handle_interrupt_level2) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; TODO-vineetg for SMP this wont work
 | 
					
						
							|  |  |  | 	; free up r9 as scratchpad
 | 
					
						
							|  |  |  | 	st  r9, [@int2_saved_reg]
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;Which mode (user/kernel) was the system in when intr occured
 | 
					
						
							|  |  |  | 	lr  r9, [status32_l2] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SWITCH_TO_KERNEL_STK | 
					
						
							|  |  |  | 	SAVE_ALL_INT2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;------------------------------------------------------
 | 
					
						
							|  |  |  | 	; if L2 IRQ interrupted a L1 ISR, disable preemption
 | 
					
						
							|  |  |  | 	;------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ld r9, [sp, PT_status32]        ; get statu32_l2 (saved in pt_regs)
 | 
					
						
							|  |  |  | 	bbit0 r9, STATUS_A1_BIT, 1f     ; L1 not active when L2 IRQ, so normal
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; A1 is set in status32_l2
 | 
					
						
							|  |  |  | 	; bump thread_info->preempt_count (Disable preemption)
 | 
					
						
							|  |  |  | 	GET_CURR_THR_INFO_FROM_SP   r10 | 
					
						
							|  |  |  | 	ld      r9, [r10, THREAD_INFO_PREEMPT_COUNT] | 
					
						
							|  |  |  | 	add     r9, r9, 1 | 
					
						
							|  |  |  | 	st      r9, [r10, THREAD_INFO_PREEMPT_COUNT] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 1: | 
					
						
							|  |  |  | 	;------------------------------------------------------
 | 
					
						
							|  |  |  | 	; setup params for Linux common ISR and invoke it
 | 
					
						
							|  |  |  | 	;------------------------------------------------------
 | 
					
						
							|  |  |  | 	lr  r0, [icause2] | 
					
						
							|  |  |  | 	and r0, r0, 0x1f | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bl.d  @arch_do_IRQ
 | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mov r8,0x2 | 
					
						
							|  |  |  | 	sr r8, [AUX_IRQ_LV12]       ; clear bit in Sticky Status Reg
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(handle_interrupt_level2) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ;  Level 1 ISR
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(handle_interrupt_level1) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* free up r9 as scratchpad */ | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:23 +05:30
										 |  |  | #ifdef CONFIG_SMP | 
					
						
							|  |  |  | 	sr  r9, [ARC_REG_SCRATCH_DATA0] | 
					
						
							|  |  |  | #else | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	st   r9, [@int1_saved_reg]
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:23 +05:30
										 |  |  | #endif | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	;Which mode (user/kernel) was the system in when intr occured
 | 
					
						
							|  |  |  | 	lr  r9, [status32_l1] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SWITCH_TO_KERNEL_STK | 
					
						
							|  |  |  | 	SAVE_ALL_INT1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lr  r0, [icause1] | 
					
						
							|  |  |  | 	and r0, r0, 0x1f | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 14:18:17 +05:30
										 |  |  | #ifdef CONFIG_TRACE_IRQFLAGS | 
					
						
							|  |  |  | 	; icause1 needs to be read early, before calling tracing, which
 | 
					
						
							|  |  |  | 	; can clobber scratch regs, hence use of stack to stash it
 | 
					
						
							|  |  |  | 	push r0 | 
					
						
							|  |  |  | 	TRACE_ASM_IRQ_DISABLE | 
					
						
							|  |  |  | 	pop  r0 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl.d  @arch_do_IRQ
 | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mov r8,0x1 | 
					
						
							|  |  |  | 	sr r8, [AUX_IRQ_LV12]       ; clear bit in Sticky Status Reg
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(handle_interrupt_level1) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ;################### Non TLB Exception Handling #############################
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Instruction Error Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(instr_service) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r9 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bl  do_insterror_or_kprobe | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(instr_service) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Memory Error Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(mem_service) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r9 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl  do_memory_error | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(mem_service) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Machine Check Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(EV_MachineCheck) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r2, [ecr] | 
					
						
							|  |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lsr  	r3, r2, 8 | 
					
						
							| 
									
										
										
										
											2013-05-28 15:24:30 +05:30
										 |  |  | 	bmsk 	r3, r3, 7 | 
					
						
							|  |  |  | 	brne    r3, ECR_C_MCHK_DUP_TLB, 1f | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl      do_tlb_overlap_fault | 
					
						
							|  |  |  | 	b       ret_from_exception | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 1: | 
					
						
							|  |  |  | 	; DEAD END: can't do much, display Regs and HALT
 | 
					
						
							|  |  |  | 	SAVE_CALLEE_SAVED_USER | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GET_CURR_TASK_FIELD_PTR   TASK_THREAD, r10 | 
					
						
							|  |  |  | 	st  sp, [r10, THREAD_CALLEE_REG] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j  do_machine_check_fault | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(EV_MachineCheck) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Protection Violation Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(EV_TLBProtV) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	;---------(3) Save some more regs-----------------
 | 
					
						
							|  |  |  | 	;  vineetg: Mar 6th: Random Seg Fault issue #1
 | 
					
						
							|  |  |  | 	;  ecr and efa were not saved in case an Intr sneaks in
 | 
					
						
							|  |  |  | 	;  after fake rtie
 | 
					
						
							| 
									
										
										
										
											2013-09-18 16:25:40 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 13:49:02 +05:30
										 |  |  | 	lr  r2, [ecr] | 
					
						
							| 
									
										
										
										
											2013-09-18 16:25:40 +05:30
										 |  |  | 	lr  r0, [efa]	; Faulting Data address
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; --------(4) Return from CPU Exception Mode ---------
 | 
					
						
							|  |  |  | 	;  Fake a rtie, but rtie to next label
 | 
					
						
							|  |  |  | 	;  That way, subsequently, do_page_fault ( ) executes in pure kernel
 | 
					
						
							|  |  |  | 	;  mode with further Exceptions enabled
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r9 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 16:25:40 +05:30
										 |  |  | 	mov   r1, sp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	;------ (5) Type of Protection Violation? ----------
 | 
					
						
							|  |  |  | 	;
 | 
					
						
							|  |  |  | 	; ProtV Hardware Exception is triggered for Access Faults of 2 types
 | 
					
						
							| 
									
										
										
										
											2013-05-28 15:24:30 +05:30
										 |  |  | 	;   -Access Violaton	: 00_23_(00|01|02|03)_00
 | 
					
						
							|  |  |  | 	;			         x  r  w  r+w
 | 
					
						
							|  |  |  | 	;   -Unaligned Access	: 00_23_04_00
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	;
 | 
					
						
							| 
									
										
										
										
											2013-05-28 15:24:30 +05:30
										 |  |  | 	bbit1 r2, ECR_C_BIT_PROTV_MISALIG_DATA, 4f | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	;========= (6a) Access Violation Processing ========
 | 
					
						
							|  |  |  | 	bl  do_page_fault | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;========== (6b) Non aligned access ============
 | 
					
						
							|  |  |  | 4: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-23 16:30:36 +05:30
										 |  |  | 	SAVE_CALLEE_SAVED_USER | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	mov r2, sp              ; callee_regs
 | 
					
						
							| 
									
										
										
										
											2013-01-23 16:30:36 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl  do_misaligned_access | 
					
						
							| 
									
										
										
										
											2013-01-23 16:30:36 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-06 17:11:58 +05:30
										 |  |  | 	; TBD: optimize - do this only if a callee reg was involved
 | 
					
						
							|  |  |  | 	; either a dst of emulated LD/ST or src with address-writeback
 | 
					
						
							|  |  |  | 	RESTORE_CALLEE_SAVED_USER | 
					
						
							| 
									
										
										
										
											2013-01-23 16:30:36 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	b   ret_from_exception | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(EV_TLBProtV) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Privilege Violation Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(EV_PrivilegeV) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r9 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bl  do_privilege_fault | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(EV_PrivilegeV) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							|  |  |  | ; Extension Instruction Exception Handler
 | 
					
						
							|  |  |  | ; ---------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(EV_Extension) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r9 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl  do_extension_fault | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(EV_Extension) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | ;######################### System Call Tracing #########################
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tracesys: | 
					
						
							|  |  |  | 	; save EFA in case tracer wants the PC of traced task
 | 
					
						
							|  |  |  | 	; using ERET won't work since next-PC has already committed
 | 
					
						
							|  |  |  | 	lr  r12, [efa] | 
					
						
							|  |  |  | 	GET_CURR_TASK_FIELD_PTR   TASK_THREAD, r11 | 
					
						
							| 
									
										
										
										
											2013-03-20 16:53:14 +05:30
										 |  |  | 	st  r12, [r11, THREAD_FAULT_ADDR]	; thread.fault_address
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; PRE Sys Call Ptrace hook
 | 
					
						
							|  |  |  | 	mov r0, sp			; pt_regs needed
 | 
					
						
							|  |  |  | 	bl  @syscall_trace_entry
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Tracing code now returns the syscall num (orig or modif)
 | 
					
						
							|  |  |  | 	mov r8, r0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Do the Sys Call as we normally would.
 | 
					
						
							|  |  |  | 	; Validate the Sys Call number
 | 
					
						
							|  |  |  | 	cmp     r8,  NR_syscalls | 
					
						
							|  |  |  | 	mov.hi  r0, -ENOSYS | 
					
						
							|  |  |  | 	bhi     tracesys_exit | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Restore the sys-call args. Mere invocation of the hook abv could have
 | 
					
						
							|  |  |  | 	; clobbered them (since they are in scratch regs). The tracer could also
 | 
					
						
							|  |  |  | 	; have deliberately changed the syscall args: r0-r7
 | 
					
						
							|  |  |  | 	ld  r0, [sp, PT_r0] | 
					
						
							|  |  |  | 	ld  r1, [sp, PT_r1] | 
					
						
							|  |  |  | 	ld  r2, [sp, PT_r2] | 
					
						
							|  |  |  | 	ld  r3, [sp, PT_r3] | 
					
						
							|  |  |  | 	ld  r4, [sp, PT_r4] | 
					
						
							|  |  |  | 	ld  r5, [sp, PT_r5] | 
					
						
							|  |  |  | 	ld  r6, [sp, PT_r6] | 
					
						
							|  |  |  | 	ld  r7, [sp, PT_r7] | 
					
						
							|  |  |  | 	ld.as   r9, [sys_call_table, r8] | 
					
						
							|  |  |  | 	jl      [r9]        ; Entry into Sys Call Handler
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tracesys_exit: | 
					
						
							|  |  |  | 	st  r0, [sp, PT_r0]     ; sys call return value in pt_regs
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;POST Sys Call Ptrace Hook
 | 
					
						
							|  |  |  | 	bl  @syscall_trace_exit
 | 
					
						
							|  |  |  | 	b   ret_from_exception ; NOT ret_from_system_call at is saves r0 which
 | 
					
						
							|  |  |  | 	; we'd done before calling post hook above
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | ;################### Break Point TRAP ##########################
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; ======= (5b) Trap is due to Break-Point =========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | trap_with_param: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-11 20:01:24 +05:30
										 |  |  | 	; stop_pc info by gdb needs this info
 | 
					
						
							| 
									
										
										
										
											2013-06-12 15:13:40 +05:30
										 |  |  | 	lr  r0, [efa] | 
					
						
							|  |  |  | 	mov r1, sp | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; Now that we have read EFA, its safe to do "fake" rtie
 | 
					
						
							|  |  |  | 	;   and get out of CPU exception mode
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r11 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Save callee regs in case gdb wants to have a look
 | 
					
						
							|  |  |  | 	; SP will grow up by size of CALLEE Reg-File
 | 
					
						
							|  |  |  | 	; NOTE: clobbers r12
 | 
					
						
							|  |  |  | 	SAVE_CALLEE_SAVED_USER | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; save location of saved Callee Regs @ thread_struct->pc
 | 
					
						
							|  |  |  | 	GET_CURR_TASK_FIELD_PTR   TASK_THREAD, r10 | 
					
						
							|  |  |  | 	st  sp, [r10, THREAD_CALLEE_REG] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Call the trap handler
 | 
					
						
							|  |  |  | 	bl  do_non_swi_trap | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; unwind stack to discard Callee saved Regs
 | 
					
						
							|  |  |  | 	DISCARD_CALLEE_SAVED_USER | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b   ret_from_exception | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;##################### Trap Handling ##############################
 | 
					
						
							|  |  |  | ;
 | 
					
						
							|  |  |  | ; EV_Trap caused by TRAP_S and TRAP0 instructions.
 | 
					
						
							|  |  |  | ;------------------------------------------------------------------
 | 
					
						
							|  |  |  | ;   (1) System Calls
 | 
					
						
							|  |  |  | ;       :parameters in r0-r7.
 | 
					
						
							|  |  |  | ;       :r8 has the system call number
 | 
					
						
							|  |  |  | ;   (2) Break Points
 | 
					
						
							|  |  |  | ;------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(EV_Trap) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 15:07:13 +05:30
										 |  |  | 	EXCEPTION_PROLOGUE | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	;------- (4) What caused the Trap --------------
 | 
					
						
							|  |  |  | 	lr     r12, [ecr] | 
					
						
							| 
									
										
										
										
											2013-05-28 15:24:30 +05:30
										 |  |  | 	bmsk.f 0, r12, 7 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bnz    trap_with_param | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; ======= (5a) Trap is due to System Call ========
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Before doing anything, return from CPU Exception Mode
 | 
					
						
							|  |  |  | 	FAKE_RET_FROM_EXCPN r11 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	; If syscall tracing ongoing, invoke pre-pos-hooks
 | 
					
						
							|  |  |  | 	GET_CURR_THR_INFO_FLAGS   r10 | 
					
						
							|  |  |  | 	btst r10, TIF_SYSCALL_TRACE | 
					
						
							|  |  |  | 	bnz tracesys  ; this never comes back
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	;============ This is normal System Call case ==========
 | 
					
						
							|  |  |  | 	; Sys-call num shd not exceed the total system calls avail
 | 
					
						
							|  |  |  | 	cmp     r8,  NR_syscalls | 
					
						
							|  |  |  | 	mov.hi  r0, -ENOSYS | 
					
						
							|  |  |  | 	bhi     ret_from_system_call | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Offset into the syscall_table and call handler
 | 
					
						
							|  |  |  | 	ld.as   r9,[sys_call_table, r8] | 
					
						
							|  |  |  | 	jl      [r9]        ; Entry into Sys Call Handler
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; fall through to ret_from_system_call
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(EV_Trap) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(ret_from_system_call) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	st  r0, [sp, PT_r0]     ; sys call return value in pt_regs
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; fall through yet again to ret_from_exception
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;############# Return from Intr/Excp/Trap (Linux Specifics) ##############
 | 
					
						
							|  |  |  | ;
 | 
					
						
							|  |  |  | ; If ret to user mode do we need to handle signals, schedule() et al.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(ret_from_exception) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; Pre-{IRQ,Trap,Exception} K/U mode from pt_regs->status32
 | 
					
						
							|  |  |  | 	ld  r8, [sp, PT_status32]   ; returning to User/Kernel Mode
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bbit0  r8, STATUS_U_BIT, resume_kernel_mode | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Before returning to User mode check-for-and-complete any pending work
 | 
					
						
							|  |  |  | 	; such as rescheduling/signal-delivery etc.
 | 
					
						
							|  |  |  | resume_user_mode_begin: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Disable IRQs to ensures that chk for pending work itself is atomic
 | 
					
						
							|  |  |  | 	; (and we don't end up missing a NEED_RESCHED/SIGPENDING due to an
 | 
					
						
							|  |  |  | 	; interim IRQ).
 | 
					
						
							|  |  |  | 	IRQ_DISABLE	r10 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Fast Path return to user mode if no pending work
 | 
					
						
							|  |  |  | 	GET_CURR_THR_INFO_FLAGS   r9 | 
					
						
							|  |  |  | 	and.f  0,  r9, _TIF_WORK_MASK | 
					
						
							|  |  |  | 	bz     restore_regs | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; --- (Slow Path #1) task preemption ---
 | 
					
						
							|  |  |  | 	bbit0  r9, TIF_NEED_RESCHED, .Lchk_pend_signals | 
					
						
							|  |  |  | 	mov    blink, resume_user_mode_begin  ; tail-call to U mode ret chks
 | 
					
						
							|  |  |  | 	b      @schedule 	; BTST+Bnz causes relo error in link
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .Lchk_pend_signals: | 
					
						
							|  |  |  | 	IRQ_ENABLE	r10 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; --- (Slow Path #2) pending signal  ---
 | 
					
						
							|  |  |  | 	mov r0, sp	; pt_regs for arg to do_signal()/do_notify_resume()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 14:18:17 +05:30
										 |  |  | 	GET_CURR_THR_INFO_FLAGS   r9 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bbit0  r9, TIF_SIGPENDING, .Lchk_notify_resume | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:19 +05:30
										 |  |  | 	; Normal Trap/IRQ entry only saves Scratch (caller-saved) regs
 | 
					
						
							|  |  |  | 	; in pt_reg since the "C" ABI (kernel code) will automatically
 | 
					
						
							|  |  |  | 	; save/restore callee-saved regs.
 | 
					
						
							|  |  |  | 	;
 | 
					
						
							|  |  |  | 	; However, here we need to explicitly save callee regs because
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	; (i)  If this signal causes coredump - full regfile needed
 | 
					
						
							|  |  |  | 	; (ii) If signal is SIGTRAP/SIGSTOP, task is being traced thus
 | 
					
						
							|  |  |  | 	;      tracer might call PEEKUSR(CALLEE reg)
 | 
					
						
							|  |  |  | 	;
 | 
					
						
							|  |  |  | 	; NOTE: SP will grow up by size of CALLEE Reg-File
 | 
					
						
							|  |  |  | 	SAVE_CALLEE_SAVED_USER		; clobbers r12
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; save location of saved Callee Regs @ thread_struct->callee
 | 
					
						
							|  |  |  | 	GET_CURR_TASK_FIELD_PTR   TASK_THREAD, r10 | 
					
						
							|  |  |  | 	st  sp, [r10, THREAD_CALLEE_REG] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bl  @do_signal
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:19 +05:30
										 |  |  | 	; Ideally we want to discard the Callee reg above, however if this was
 | 
					
						
							|  |  |  | 	; a tracing signal, tracer could have done a POKEUSR(CALLEE reg)
 | 
					
						
							|  |  |  | 	RESTORE_CALLEE_SAVED_USER | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	b      resume_user_mode_begin	; loop back to start of U mode ret
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; --- (Slow Path #3) notify_resume ---
 | 
					
						
							|  |  |  | .Lchk_notify_resume: | 
					
						
							|  |  |  | 	btst   r9, TIF_NOTIFY_RESUME | 
					
						
							|  |  |  | 	blnz   @do_notify_resume
 | 
					
						
							|  |  |  | 	b      resume_user_mode_begin	; unconditionally back to U mode ret chks
 | 
					
						
							|  |  |  | 					; for single exit point from this block
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | resume_kernel_mode: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-14 18:30:50 +05:30
										 |  |  | #ifdef CONFIG_PREEMPT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 17:06:40 +05:30
										 |  |  | 	; This is a must for preempt_schedule_irq()
 | 
					
						
							|  |  |  | 	IRQ_DISABLE	r9 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	; Can't preempt if preemption disabled
 | 
					
						
							|  |  |  | 	GET_CURR_THR_INFO_FROM_SP   r10 | 
					
						
							|  |  |  | 	ld  r8, [r10, THREAD_INFO_PREEMPT_COUNT] | 
					
						
							|  |  |  | 	brne  r8, 0, restore_regs | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; check if this task's NEED_RESCHED flag set
 | 
					
						
							|  |  |  | 	ld  r9, [r10, THREAD_INFO_FLAGS] | 
					
						
							|  |  |  | 	bbit0  r9, TIF_NEED_RESCHED, restore_regs | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Invoke PREEMPTION
 | 
					
						
							|  |  |  | 	bl      preempt_schedule_irq | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; preempt_schedule_irq() always returns with IRQ disabled
 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; fall through
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ;############# Return from Intr/Excp/Trap (ARC Specifics) ##############
 | 
					
						
							|  |  |  | ;
 | 
					
						
							|  |  |  | ; Restore the saved sys context (common exit-path for EXCPN/IRQ/Trap)
 | 
					
						
							|  |  |  | ; IRQ shd definitely not happen between now and rtie
 | 
					
						
							| 
									
										
										
										
											2013-07-09 17:06:40 +05:30
										 |  |  | ; All 2 entry points to here already disable interrupts
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | restore_regs : | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 14:18:17 +05:30
										 |  |  | 	TRACE_ASM_IRQ_ENABLE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 17:06:40 +05:30
										 |  |  | 	lr	r10, [status32] | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	; Restore REG File. In case multiple Events outstanding,
 | 
					
						
							|  |  |  | 	; use the same priorty as rtie: EXCPN, L2 IRQ, L1 IRQ, None
 | 
					
						
							|  |  |  | 	; Note that we use realtime STATUS32 (not pt_regs->status32) to
 | 
					
						
							|  |  |  | 	; decide that.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; if Returning from Exception
 | 
					
						
							|  |  |  | 	bbit0  r10, STATUS_AE_BIT, not_exception | 
					
						
							|  |  |  | 	RESTORE_ALL_SYS | 
					
						
							|  |  |  | 	rtie | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; Not Exception so maybe Interrupts (Level 1 or 2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | not_exception: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-11 18:56:54 +05:30
										 |  |  | 	; Level 2 interrupt return Path - from hardware standpoint
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	bbit0  r10, STATUS_A2_BIT, not_level2_interrupt | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-11 18:56:54 +05:30
										 |  |  | 	;------------------------------------------------------------------
 | 
					
						
							|  |  |  | 	; However the context returning might not have taken L2 intr itself
 | 
					
						
							|  |  |  | 	; e.g. Task'A' user-code -> L2 intr -> schedule -> 'B' user-code ret
 | 
					
						
							|  |  |  | 	; Special considerations needed for the context which took L2 intr
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ld   r9, [sp, PT_event]        ; Ensure this is L2 intr context
 | 
					
						
							|  |  |  | 	brne r9, event_IRQ2, 149f | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	;------------------------------------------------------------------
 | 
					
						
							|  |  |  | 	; if L2 IRQ interrupted a L1 ISR,  we'd disbaled preemption earlier
 | 
					
						
							|  |  |  | 	; so that sched doesnt move to new task, causing L1 to be delayed
 | 
					
						
							|  |  |  | 	; undeterministically. Now that we've achieved that, lets reset
 | 
					
						
							|  |  |  | 	; things to what they were, before returning from L2 context
 | 
					
						
							|  |  |  | 	;----------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ld r9, [sp, PT_status32]       ; get statu32_l2 (saved in pt_regs)
 | 
					
						
							|  |  |  | 	bbit0 r9, STATUS_A1_BIT, 149f  ; L1 not active when L2 IRQ, so normal
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; decrement thread_info->preempt_count (re-enable preemption)
 | 
					
						
							|  |  |  | 	GET_CURR_THR_INFO_FROM_SP   r10 | 
					
						
							|  |  |  | 	ld      r9, [r10, THREAD_INFO_PREEMPT_COUNT] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; paranoid check, given A1 was active when A2 happened, preempt count
 | 
					
						
							| 
									
										
										
										
											2013-06-11 18:56:54 +05:30
										 |  |  | 	; must not be 0 because we would have incremented it.
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	; If this does happen we simply HALT as it means a BUG !!!
 | 
					
						
							|  |  |  | 	cmp     r9, 0 | 
					
						
							|  |  |  | 	bnz     2f | 
					
						
							|  |  |  | 	flag 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 2: | 
					
						
							|  |  |  | 	sub     r9, r9, 1 | 
					
						
							|  |  |  | 	st      r9, [r10, THREAD_INFO_PREEMPT_COUNT] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 149: | 
					
						
							|  |  |  | 	;return from level 2
 | 
					
						
							|  |  |  | 	RESTORE_ALL_INT2 | 
					
						
							|  |  |  | debug_marker_l2: | 
					
						
							|  |  |  | 	rtie | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | not_level2_interrupt: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bbit0  r10, STATUS_A1_BIT, not_level1_interrupt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;return from level 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RESTORE_ALL_INT1 | 
					
						
							|  |  |  | debug_marker_l1: | 
					
						
							|  |  |  | 	rtie | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | not_level1_interrupt: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	;this case is for syscalls or Exceptions (with fake rtie)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RESTORE_ALL_SYS | 
					
						
							|  |  |  | debug_marker_syscall: | 
					
						
							|  |  |  | 	rtie | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(ret_from_exception) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(ret_from_fork) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	; when the forked child comes here from the __switch_to function
 | 
					
						
							|  |  |  | 	; r0 has the last task pointer.
 | 
					
						
							|  |  |  | 	; put last task in scheduler queue
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	bl   @schedule_tail
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	; If kernel thread, jump to it's entry-point
 | 
					
						
							|  |  |  | 	ld   r9, [sp, PT_status32] | 
					
						
							|  |  |  | 	brne r9, 0, 1f | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	jl.d [r14] | 
					
						
							|  |  |  | 	mov  r0, r13		; arg to payload
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 1: | 
					
						
							|  |  |  | 	; special case of kernel_thread entry point returning back due to
 | 
					
						
							|  |  |  | 	; kernel_execve() - pretend return from syscall to ret to userland
 | 
					
						
							|  |  |  | 	b    ret_from_exception | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(ret_from_fork) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | ;################### Special Sys Call Wrappers ##########################
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | ENTRY(sys_clone_wrapper) | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	SAVE_CALLEE_SAVED_USER | 
					
						
							|  |  |  | 	bl  @sys_clone
 | 
					
						
							|  |  |  | 	DISCARD_CALLEE_SAVED_USER | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:22 +05:30
										 |  |  | 	GET_CURR_THR_INFO_FLAGS   r10 | 
					
						
							|  |  |  | 	btst r10, TIF_SYSCALL_TRACE | 
					
						
							|  |  |  | 	bnz  tracesys_exit | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 15:12:18 +05:30
										 |  |  | 	b ret_from_system_call | 
					
						
							| 
									
										
										
										
											2014-02-07 13:47:43 +05:30
										 |  |  | END(sys_clone_wrapper) | 
					
						
							| 
									
										
										
										
											2013-01-22 17:03:19 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_ARC_DW2_UNWIND | 
					
						
							|  |  |  | ; Workaround for bug 94179 (STAR ):
 | 
					
						
							|  |  |  | ; Despite -fasynchronous-unwind-tables, linker is not making dwarf2 unwinder
 | 
					
						
							|  |  |  | ; section (.debug_frame) as loadable. So we force it here.
 | 
					
						
							|  |  |  | ; This also fixes STAR 9000487933 where the prev-workaround (objcopy --setflag)
 | 
					
						
							|  |  |  | ; would not work after a clean build due to kernel build system dependencies.
 | 
					
						
							|  |  |  | .section .debug_frame, "wa",@progbits
 | 
					
						
							|  |  |  | #endif |