blob: 648cfff93138bdc1df9e025efef31dbc1211a821 [file] [log] [blame]
Russell Kingbce495d2005-04-26 15:21:02 +01001#include <linux/config.h>
2#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <linux/linkage.h>
4
5#include <asm/assembler.h>
Sam Ravnborge6ae7442005-09-09 21:08:59 +02006#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <asm/errno.h>
Russell Kingbce495d2005-04-26 15:21:02 +01008#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10@ Bad Abort numbers
11@ -----------------
12@
13#define BAD_PREFETCH 0
14#define BAD_DATA 1
15#define BAD_ADDREXCPTN 2
16#define BAD_IRQ 3
17#define BAD_UNDEFINSTR 4
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019@
Russell King925c8a12005-04-26 15:18:59 +010020@ Most of the stack format comes from struct pt_regs, but with
21@ the addition of 8 bytes for storing syscall args 5 and 6.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022@
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define S_OFF 8
24
Russell King925c8a12005-04-26 15:18:59 +010025/*
26 * The SWI code relies on the fact that R0 is at the bottom of the stack
27 * (due to slow/fast restore user regs).
28 */
29#if S_R0 != 0
30#error "Please fix"
31#endif
32
Russell Kingbce495d2005-04-26 15:21:02 +010033 .macro zero_fp
34#ifdef CONFIG_FRAME_POINTER
35 mov fp, #0
36#endif
37 .endm
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#if __LINUX_ARM_ARCH__ >= 6
Russell King1ec42c02005-04-26 15:18:26 +010040 .macro disable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 cpsid i
42 .endm
43
Russell King1ec42c02005-04-26 15:18:26 +010044 .macro enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 cpsie i
46 .endm
47#else
Russell King1ec42c02005-04-26 15:18:26 +010048 .macro disable_irq
49 msr cpsr_c, #PSR_I_BIT | SVC_MODE
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 .endm
51
Russell King1ec42c02005-04-26 15:18:26 +010052 .macro enable_irq
53 msr cpsr_c, #SVC_MODE
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .endm
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .macro get_thread_info, rd
58 mov \rd, sp, lsr #13
59 mov \rd, \rd, lsl #13
60 .endm
61
Russell King49f680e2005-05-31 18:02:00 +010062 .macro alignment_trap, rtemp
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_ALIGNMENT_TRAP
Russell King49f680e2005-05-31 18:02:00 +010064 ldr \rtemp, .LCcralign
65 ldr \rtemp, [\rtemp]
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 mcr p15, 0, \rtemp, c1, c0
67#endif
68 .endm
69
70
71/*
72 * These are the registers used in the syscall handler, and allow us to
73 * have in theory up to 7 arguments to a function - r0 to r6.
74 *
75 * r7 is reserved for the system call number for thumb mode.
76 *
77 * Note that tbl == why is intentional.
78 *
79 * We must set at least "tsk" and "why" when calling ret_with_reschedule.
80 */
81scno .req r7 @ syscall number
82tbl .req r8 @ syscall table pointer
83why .req r8 @ Linux syscall (!= 0)
84tsk .req r9 @ current thread_info