sh: Setup the frame register in asm code
[deliverable/linux.git] / arch / sh / kernel / entry-common.S
CommitLineData
336f1d32 1/*
de398406 2 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
336f1d32 3 * Copyright (C) 2003 - 2008 Paul Mundt
de398406
YS
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 *
9 */
10
11! NOTE:
12! GNU as (as of 2.9.1) changes bf/s into bt/s and bra, when the address
13! to be jumped is too far, but it causes illegal slot exception.
14
15/*
16 * entry.S contains the system-call and fault low-level handling routines.
17 * This also contains the timer-interrupt handler, as well as all interrupts
18 * and faults that can result in a task-switch.
19 *
20 * NOTE: This code handles signal-recognition, which happens every time
21 * after a timer-interrupt and after each system call.
22 *
23 * NOTE: This code uses a convention that instructions in the delay slot
24 * of a transfer-control instruction are indented by an extra space, thus:
25 *
26 * jmp @k0 ! control-transfer instruction
27 * ldc k1, ssr ! delay slot
28 *
29 * Stack layout in 'ret_from_syscall':
30 * ptrace needs to have all regs on the stack.
31 * if the order here is changed, it needs to be
32 * updated in ptrace.c and ptrace.h
33 *
34 * r0
35 * ...
36 * r15 = stack pointer
37 * spc
38 * pr
39 * ssr
40 * gbr
41 * mach
42 * macl
43 * syscall #
44 *
45 */
46
47#if defined(CONFIG_PREEMPT)
fd78a76a 48# define preempt_stop() cli ; TRACE_IRQS_OFF
de398406
YS
49#else
50# define preempt_stop()
51# define resume_kernel __restore_all
52#endif
53
de398406
YS
54
55 .align 2
56ENTRY(exception_error)
57 !
fd78a76a 58 TRACE_IRQS_ON
de398406 59 sti
f413d0d9 60 mov.l 1f, r0
de398406
YS
61 jmp @r0
62 nop
63
de398406 64 .align 2
f413d0d9 651: .long do_exception_error
de398406
YS
66
67 .align 2
68ret_from_exception:
69 preempt_stop()
70ENTRY(ret_from_irq)
71 !
72 mov #OFF_SR, r0
73 mov.l @(r0,r15), r0 ! get status register
fd78a76a
SM
74
75 shlr2 r0
76 and #0x3c, r0
77 cmp/eq #0x3c, r0
78 bt 9f
79 TRACE_IRQS_ON
809:
81 mov #OFF_SR, r0
82 mov.l @(r0,r15), r0 ! get status register
de398406
YS
83 shll r0
84 shll r0 ! kernel space?
85 get_current_thread_info r8, r0
86 bt resume_kernel ! Yes, it's from kernel, go back soon
87
88#ifdef CONFIG_PREEMPT
89 bra resume_userspace
90 nop
91ENTRY(resume_kernel)
323b8c41 92 cli
de398406
YS
93 mov.l @(TI_PRE_COUNT,r8), r0 ! current_thread_info->preempt_count
94 tst r0, r0
95 bf noresched
96need_resched:
97 mov.l @(TI_FLAGS,r8), r0 ! current_thread_info->flags
98 tst #_TIF_NEED_RESCHED, r0 ! need_resched set?
99 bt noresched
100
101 mov #OFF_SR, r0
102 mov.l @(r0,r15), r0 ! get status register
103 and #0xf0, r0 ! interrupts off (exception path)?
104 cmp/eq #0xf0, r0
105 bt noresched
afbfb52e 106 mov.l 3f, r0
323b8c41 107 jsr @r0 ! call preempt_schedule_irq
afbfb52e 108 nop
de398406
YS
109 bra need_resched
110 nop
afbfb52e 111
de398406
YS
112noresched:
113 bra __restore_all
114 nop
115
116 .align 2
1171: .long PREEMPT_ACTIVE
1182: .long schedule
323b8c41 1193: .long preempt_schedule_irq
de398406
YS
120#endif
121
122ENTRY(resume_userspace)
123 ! r8: current_thread_info
124 cli
fd78a76a 125 TRACE_IRQS_OfF
de398406 126 mov.l @(TI_FLAGS,r8), r0 ! current_thread_info->flags
c652d780 127 tst #(_TIF_WORK_MASK & 0xff), r0
de398406
YS
128 bt/s __restore_all
129 tst #_TIF_NEED_RESCHED, r0
130
131 .align 2
132work_pending:
133 ! r0: current_thread_info->flags
134 ! r8: current_thread_info
135 ! t: result of "tst #_TIF_NEED_RESCHED, r0"
136 bf/s work_resched
137 tst #(_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), r0
138work_notifysig:
139 bt/s __restore_all
140 mov r15, r4
141 mov r12, r5 ! set arg1(save_r0)
142 mov r0, r6
143 mov.l 2f, r1
144 mov.l 3f, r0
145 jmp @r1
146 lds r0, pr
147work_resched:
de398406
YS
148 mov.l 1f, r1
149 jsr @r1 ! schedule
150 nop
151 cli
fd78a76a 152 TRACE_IRQS_OFF
de398406
YS
153 !
154 mov.l @(TI_FLAGS,r8), r0 ! current_thread_info->flags
c652d780 155 tst #(_TIF_WORK_MASK & 0xff), r0
de398406
YS
156 bt __restore_all
157 bra work_pending
158 tst #_TIF_NEED_RESCHED, r0
159
160 .align 2
1611: .long schedule
1622: .long do_notify_resume
0b1689cf 1633: .long resume_userspace
de398406
YS
164
165 .align 2
166syscall_exit_work:
167 ! r0: current_thread_info->flags
168 ! r8: current_thread_info
c652d780 169 tst #(_TIF_WORK_SYSCALL_MASK & 0xff), r0
de398406
YS
170 bt/s work_pending
171 tst #_TIF_NEED_RESCHED, r0
fd78a76a 172 TRACE_IRQS_ON
de398406 173 sti
1322b9de 174 mov r15, r4
ab99c733 175 mov.l 8f, r0 ! do_syscall_trace_leave
de398406
YS
176 jsr @r0
177 nop
178 bra resume_userspace
179 nop
180
181 .align 2
182syscall_trace_entry:
183 ! Yes it is traced.
1322b9de 184 mov r15, r4
ab99c733 185 mov.l 7f, r11 ! Call do_syscall_trace_enter which notifies
de398406
YS
186 jsr @r11 ! superior (will chomp R[0-7])
187 nop
ab99c733 188 mov.l r0, @(OFF_R0,r15) ! Save return value
de398406
YS
189 ! Reload R0-R4 from kernel stack, where the
190 ! parent may have modified them using
191 ! ptrace(POKEUSR). (Note that R0-R2 are
192 ! used by the system call handler directly
193 ! from the kernel stack anyway, so don't need
194 ! to be reloaded here.) This allows the parent
195 ! to rewrite system calls and args on the fly.
196 mov.l @(OFF_R4,r15), r4 ! arg0
197 mov.l @(OFF_R5,r15), r5
198 mov.l @(OFF_R6,r15), r6
199 mov.l @(OFF_R7,r15), r7 ! arg3
200 mov.l @(OFF_R3,r15), r3 ! syscall_nr
e0969e0c 201 !
de398406
YS
202 mov.l 2f, r10 ! Number of syscalls
203 cmp/hs r10, r3
204 bf syscall_call
205 mov #-ENOSYS, r0
206 bra syscall_exit
207 mov.l r0, @(OFF_R0,r15) ! Return value
208
209__restore_all:
afbfb52e 210 mov.l 1f, r0
de398406
YS
211 jmp @r0
212 nop
213
214 .align 2
2151: .long restore_all
216
e0969e0c
SM
217 .align 2
218syscall_badsys: ! Bad syscall number
561c2bcc 219 get_current_thread_info r8, r0
e0969e0c
SM
220 mov #-ENOSYS, r0
221 bra resume_userspace
222 mov.l r0, @(OFF_R0,r15) ! Return value
f413d0d9
PM
223
224/*
225 * The main debug trap handler.
226 *
227 * r8=TRA (not the trap number!)
228 *
229 * Note: This assumes that the trapa value is left in its original
230 * form (without the shlr2 shift) so the calculation for the jump
231 * call table offset remains a simple in place mask.
232 */
233debug_trap:
234 mov r8, r0
235 and #(0xf << 2), r0
236 mov.l 1f, r8
237 add r0, r8
238 mov.l @r8, r8
336f1d32
PM
239 jsr @r8
240 nop
241 bra __restore_all
f413d0d9
PM
242 nop
243
244 .align 2
2451: .long debug_trap_table
e0969e0c 246
de398406
YS
247/*
248 * Syscall interface:
249 *
250 * Syscall #: R3
251 * Arguments #0 to #3: R4--R7
252 * Arguments #4 to #6: R0, R1, R2
f413d0d9 253 * TRA: (number of arguments + ABI revision) x 4
de398406
YS
254 *
255 * This code also handles delegating other traps to the BIOS/gdb stub
256 * according to:
257 *
258 * Trap number
f413d0d9
PM
259 * (TRA>>2) Purpose
260 * -------- -------
261 * 0x00-0x0f original SH-3/4 syscall ABI (not in general use).
262 * 0x10-0x1f general SH-3/4 syscall ABI.
263 * 0x20-0x2f syscall ABI for SH-2 parts.
264 * 0x30-0x3f debug traps used by the kernel.
265 * 0x40-0xff Not supported by all parts, so left unhandled.
de398406
YS
266 *
267 * Note: When we're first called, the TRA value must be shifted
268 * right 2 bits in order to get the value that was used as the "trapa"
269 * argument.
270 */
271
272 .align 2
273 .globl ret_from_fork
274ret_from_fork:
275 mov.l 1f, r8
276 jsr @r8
277 mov r0, r4
278 bra syscall_exit
279 nop
280 .align 2
2811: .long schedule_tail
f413d0d9
PM
282
283/*
284 * The poorly named main trapa decode and dispatch routine, for
285 * system calls and debug traps through their respective jump tables.
286 */
de398406 287ENTRY(system_call)
0b930489 288 setup_frame_reg
de398406
YS
289#if !defined(CONFIG_CPU_SH2)
290 mov.l 1f, r9
291 mov.l @r9, r8 ! Read from TRA (Trap Address) Register
292#endif
ab6e570b
PM
293
294 mov #OFF_TRA, r10
295 add r15, r10
296 mov.l r8, @r10 ! set TRA value to tra
297
f413d0d9
PM
298 /*
299 * Check the trap type
300 */
301 mov #((0x20 << 2) - 1), r9
de398406 302 cmp/hi r9, r8
f413d0d9 303 bt/s debug_trap ! it's a debug trap..
ab6e570b
PM
304 nop
305
fd78a76a 306 TRACE_IRQS_ON
de398406 307 sti
afbfb52e 308
de398406 309 !
e0969e0c 310 get_current_thread_info r8, r10
de398406 311 mov.l @(TI_FLAGS,r8), r8
c652d780
MF
312 mov #(_TIF_WORK_SYSCALL_MASK & 0xff), r10
313 mov #(_TIF_WORK_SYSCALL_MASK >> 8), r9
de398406 314 tst r10, r8
c652d780
MF
315 shll8 r9
316 bf syscall_trace_entry
317 tst r9, r8
de398406
YS
318 bf syscall_trace_entry
319 !
e0969e0c
SM
320 mov.l 2f, r8 ! Number of syscalls
321 cmp/hs r8, r3
322 bt syscall_badsys
323 !
de398406 324syscall_call:
e0969e0c 325 shll2 r3 ! x4
de398406 326 mov.l 3f, r8 ! Load the address of sys_call_table
e0969e0c
SM
327 add r8, r3
328 mov.l @r3, r8
de398406
YS
329 jsr @r8 ! jump to specific syscall handler
330 nop
331 mov.l @(OFF_R0,r15), r12 ! save r0
332 mov.l r0, @(OFF_R0,r15) ! save the return value
333 !
334syscall_exit:
335 cli
fd78a76a 336 TRACE_IRQS_OFF
de398406
YS
337 !
338 get_current_thread_info r8, r0
339 mov.l @(TI_FLAGS,r8), r0 ! current_thread_info->flags
c652d780
MF
340 tst #(_TIF_ALLWORK_MASK & 0xff), r0
341 mov #(_TIF_ALLWORK_MASK >> 8), r1
342 bf syscall_exit_work
343 shlr8 r0
344 tst r0, r1
de398406
YS
345 bf syscall_exit_work
346 bra __restore_all
347 nop
348 .align 2
349#if !defined(CONFIG_CPU_SH2)
3501: .long TRA
351#endif
3522: .long NR_syscalls
3533: .long sys_call_table
ab99c733
PM
3547: .long do_syscall_trace_enter
3558: .long do_syscall_trace_leave
This page took 0.266614 seconds and 5 git commands to generate.