1 #include <linux/config.h> /* for CONFIG_ARCH_xxxx */
2 #include <linux/linkage.h>
4 #include <asm/assembler.h>
5 #include <asm/constants.h>
7 #include <asm/hardware.h>
8 #include <asm/arch/irqs.h>
9 #include <asm/arch/entry-macro.S>
16 #ifdef CONFIG_FRAME_POINTER
26 #define BAD_PREFETCH 0
28 #define BAD_ADDREXCPTN 2
30 #define BAD_UNDEFINSTR 4
32 #define PT_TRACESYS 0x00000002
34 @ OS version number used in SWIs
39 #define ARMSWI_OFFSET 0x000f0000
42 @ Stack format (ensured by USER_* and SVC_*)
44 #define S_FRAME_SIZE 72
66 .macro set_cpsr_c, reg, mode
70 #if __LINUX_ARM_ARCH__ >= 6
71 .macro disable_irq, temp
75 .macro enable_irq, temp
79 .macro disable_irq, temp
80 set_cpsr_c \temp, #PSR_I_BIT | MODE_SVC
83 .macro enable_irq, temp
84 set_cpsr_c \temp, #MODE_SVC
89 sub sp, sp, #S_FRAME_SIZE
90 stmia sp, {r0 - r12} @ Calling r0 - r12
92 stmdb r8, {sp, lr}^ @ Calling sp, lr
93 mrs r8, spsr @ called from non-FIQ mode, so ok.
94 str lr, [sp, #S_PC] @ Save calling PC
95 str r8, [sp, #S_PSR] @ Save CPSR
96 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
99 .macro restore_user_regs
100 ldr r1, [sp, #S_PSR] @ Get calling cpsr
101 disable_irq ip @ disable IRQs
102 ldr lr, [sp, #S_PC]! @ Get PC
103 msr spsr_cxsf, r1 @ save in spsr_svc
104 ldmdb sp, {r0 - lr}^ @ Get calling r0 - lr
106 add sp, sp, #S_FRAME_SIZE - S_PC
107 movs pc, lr @ return & move spsr_svc into cpsr
111 * Must be called with IRQs already disabled.
113 .macro fast_restore_user_regs
114 ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr
115 ldr lr, [sp, #S_OFF + S_PC]! @ get pc
116 msr spsr_cxsf, r1 @ save in spsr_svc
117 ldmdb sp, {r1 - lr}^ @ get calling r1 - lr
119 add sp, sp, #S_FRAME_SIZE - S_PC
120 movs pc, lr @ return & move spsr_svc into cpsr
124 * Must be called with IRQs already disabled.
126 .macro slow_restore_user_regs
127 ldr r1, [sp, #S_PSR] @ get calling cpsr
128 ldr lr, [sp, #S_PC]! @ get pc
129 msr spsr_cxsf, r1 @ save in spsr_svc
130 ldmdb sp, {r0 - lr}^ @ get calling r1 - lr
132 add sp, sp, #S_FRAME_SIZE - S_PC
133 movs pc, lr @ return & move spsr_svc into cpsr
136 .macro mask_pc, rd, rm
139 .macro get_thread_info, rd
141 mov \rd, \rd, lsl #13
144 .macro alignment_trap, rbase, rtemp, sym
145 #ifdef CONFIG_ALIGNMENT_TRAP
146 #define OFF_CR_ALIGNMENT(x) cr_alignment - x
148 ldr \rtemp, [\rbase, #OFF_CR_ALIGNMENT(\sym)]
149 mcr p15, 0, \rtemp, c1, c0
155 * These are the registers used in the syscall handler, and allow us to
156 * have in theory up to 7 arguments to a function - r0 to r6.
158 * r7 is reserved for the system call number for thumb mode.
160 * Note that tbl == why is intentional.
162 * We must set at least "tsk" and "why" when calling ret_with_reschedule.
164 scno .req r7 @ syscall number
165 tbl .req r8 @ syscall table pointer
166 why .req r8 @ Linux syscall (!= 0)
167 tsk .req r9 @ current thread_info
170 * Get the system call number.
173 #ifdef CONFIG_ARM_THUMB
174 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
175 addne scno, r7, #OS_NUMBER << 20 @ put OS number in
176 ldreq scno, [lr, #-4]
180 ldr scno, [lr, #-4] @ get SWI instruction