2 * linux/arch/nios2/kernel/entry.S
4 * Copyright (C) 2013-2014 Altera Corporation
5 * Copyright (C) 2009, Wind River Systems Inc
7 * Implemented by fredrik.markstrom@gmail.com and ivarholmqvist@gmail.com
9 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
10 * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
11 * Kenneth Albanowski <kjahds@kjahds.com>,
12 * Copyright (C) 2000 Lineo Inc. (www.lineo.com)
13 * Copyright (C) 2004 Microtronix Datacom Ltd.
15 * This file is subject to the terms and conditions of the GNU General Public
16 * License. See the file "COPYING" in the main directory of this archive
19 * Linux/m68k support by Hamish Macdonald
21 * 68060 fixes by Jesper Skov
22 * ColdFire support by Greg Ungerer (gerg@snapgear.com)
23 * 5307 fixes by David W. Miller
24 * linux 2.4 support David McCullough <davidm@snapgear.com>
27 #include <linux/sys.h>
28 #include <linux/linkage.h>
29 #include <asm/asm-offsets.h>
30 #include <asm/asm-macros.h>
31 #include <asm/thread_info.h>
32 #include <asm/errno.h>
33 #include <asm/setup.h>
34 #include <asm/entry.h>
35 #include <asm/unistd.h>
36 #include <asm/processor.h>
38 .macro GET_THREAD_INFO reg
39 .if THREAD_SIZE & 0xffff0000
40 andhi \reg, sp, %hi(~(THREAD_SIZE-1))
42 addi \reg, r0, %lo(~(THREAD_SIZE-1))
47 .macro kuser_cmpxchg_check
49 * Make sure our user space atomic helper is restarted if it was
50 * interrupted in a critical region.
51 * ea-4 = address of interrupted insn (ea must be preserved).
53 * cmpxchg_ldw = first critical insn, cmpxchg_stw = last critical insn.
54 * If ea <= cmpxchg_stw and ea > cmpxchg_ldw then saved EA is set to
57 /* et = cmpxchg_stw + 4 */
58 movui et, (KUSER_BASE + 4 + (cmpxchg_stw - __kuser_helper_start))
61 subi et, et, (cmpxchg_stw - cmpxchg_ldw) /* et = cmpxchg_ldw + 4 */
63 stw et, PT_EA(sp) /* fix up EA */
71 .word unhandled_exception /* 0 - Reset */
72 .word unhandled_exception /* 1 - Processor-only Reset */
73 .word external_interrupt /* 2 - Interrupt */
74 .word handle_trap /* 3 - Trap Instruction */
76 .word instruction_trap /* 4 - Unimplemented instruction */
77 .word handle_illegal /* 5 - Illegal instruction */
78 .word handle_unaligned /* 6 - Misaligned data access */
79 .word handle_unaligned /* 7 - Misaligned destination address */
81 .word handle_diverror /* 8 - Division error */
82 .word protection_exception_ba /* 9 - Supervisor-only instr. address */
83 .word protection_exception_instr /* 10 - Supervisor only instruction */
84 .word protection_exception_ba /* 11 - Supervisor only data address */
86 .word unhandled_exception /* 12 - Double TLB miss (data) */
87 .word protection_exception_pte /* 13 - TLB permission violation (x) */
88 .word protection_exception_pte /* 14 - TLB permission violation (r) */
89 .word protection_exception_pte /* 15 - TLB permission violation (w) */
91 .word unhandled_exception /* 16 - MPU region violation */
94 .word handle_system_call /* 0 */
95 .word instruction_trap /* 1 */
96 .word instruction_trap /* 2 */
97 .word instruction_trap /* 3 */
98 .word instruction_trap /* 4 */
99 .word instruction_trap /* 5 */
100 .word instruction_trap /* 6 */
101 .word instruction_trap /* 7 */
102 .word instruction_trap /* 8 */
103 .word instruction_trap /* 9 */
104 .word instruction_trap /* 10 */
105 .word instruction_trap /* 11 */
106 .word instruction_trap /* 12 */
107 .word instruction_trap /* 13 */
108 .word instruction_trap /* 14 */
109 .word instruction_trap /* 15 */
110 .word instruction_trap /* 16 */
111 .word instruction_trap /* 17 */
112 .word instruction_trap /* 18 */
113 .word instruction_trap /* 19 */
114 .word instruction_trap /* 20 */
115 .word instruction_trap /* 21 */
116 .word instruction_trap /* 22 */
117 .word instruction_trap /* 23 */
118 .word instruction_trap /* 24 */
119 .word instruction_trap /* 25 */
120 .word instruction_trap /* 26 */
121 .word instruction_trap /* 27 */
122 .word instruction_trap /* 28 */
123 .word instruction_trap /* 29 */
124 .word instruction_trap /* 30 */
125 .word handle_breakpoint /* 31 */
136 /* Clear EH bit before we get a new excpetion in the kernel
137 * and after we have saved it to the exception frame. This is done
138 * whether it's trap, tlb-miss or interrupt. If we don't do this
139 * estatus is not updated the next exception.
142 movi r9, %lo(~STATUS_EH)
146 /* Read cause and vector and branch to the associated handler */
149 movia r9, exception_table
155 /***********************************************************************
157 ***********************************************************************
160 ldw r24, -4(ea) /* instruction that caused the exception */
169 /***********************************************************************
170 * Handle system calls
171 ***********************************************************************
173 ENTRY(handle_system_call)
174 /* Enable interrupts */
176 ori r10, r10, STATUS_PIE
179 /* Reload registers destroyed by common code. */
184 /* Check that the requested system call is within limits */
185 movui r1, __NR_syscalls
186 bgeu r2, r1, ret_invsyscall
188 movhi r11, %hiadj(sys_call_table)
190 ldw r1, %lo(sys_call_table)(r1)
191 beq r1, r0, ret_invsyscall
193 /* Check if we are being traced */
195 ldw r11,TI_FLAGS(r11)
196 BTBNZ r11,r11,TIF_SYSCALL_TRACE,traced_system_call
198 /* Execute the system call */
201 /* If the syscall returns a negative result:
202 * Set r7 to 1 to indicate error,
203 * Negate r2 to get a positive error code
204 * If the syscall returns zero or a positive value:
206 * The sigreturn system calls will skip the code below by
207 * adding to register ra. To avoid destroying registers
209 translate_rc_and_ret:
217 end_translate_rc_and_ret:
220 ldw r1, PT_ESTATUS(sp)
221 /* if so, skip resched, signals */
222 TSTBNZ r1, r1, ESTATUS_EU, Luser_return
225 rdctl r10, status /* disable intrs */
226 andi r10, r10, %lo(~STATUS_PIE)
231 /* If the syscall number was invalid return ENOSYS */
234 br translate_rc_and_ret
236 /* This implements the same as above, except it calls
237 * do_syscall_trace_enter and do_syscall_trace_exit before and after the
238 * syscall in order for utilities like strace and gdb to work.
242 call do_syscall_trace_enter
245 /* Create system call register arguments. The 5th and 6th
246 arguments on stack are already in place at the beginning
254 /* Fetch the syscall function, we don't need to check the boundaries
255 * since this is already done.
258 movhi r11,%hiadj(sys_call_table)
260 ldw r1, %lo(sys_call_table)(r1)
264 /* If the syscall returns a negative result:
265 * Set r7 to 1 to indicate error,
266 * Negate r2 to get a positive error code
267 * If the syscall returns zero or a positive value:
269 * The sigreturn system calls will skip the code below by
270 * adding to register ra. To avoid destroying registers
272 translate_rc_and_ret2:
280 end_translate_rc_and_ret2:
282 call do_syscall_trace_exit
284 br ret_from_exception
287 GET_THREAD_INFO r11 /* get thread_info pointer */
288 ldw r10, TI_FLAGS(r11) /* get thread_info->flags */
289 ANDI32 r11, r10, _TIF_WORK_MASK
290 beq r11, r0, restore_all /* Nothing to do */
291 BTBZ r1, r10, TIF_NEED_RESCHED, Lsignal_return
293 /* Reschedule work */
295 br ret_from_exception
298 ANDI32 r1, r10, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME
299 beq r1, r0, restore_all
300 mov r4, sp /* pt_regs */
302 call do_notify_resume
303 beq r2, r0, no_work_pending
305 /* prepare restart syscall here without leaving kernel */
306 ldw r2, PT_R2(sp) /* reload syscall number in r2 */
307 ldw r4, PT_R4(sp) /* reload syscall arguments r4-r9 */
313 br local_restart /* restart syscall */
317 br ret_from_exception
319 /***********************************************************************
320 * Handle external interrupts.
321 ***********************************************************************
324 * This is the generic interrupt handler (for all hardware interrupt
325 * sources). It figures out the vector number and calls the appropriate
326 * interrupt service routine directly.
332 /* skip if no interrupt is pending */
333 beq r12, r0, ret_from_interrupt
336 stw r24, PT_ORIG_R2(sp)
339 * Process an external hardware interrupt.
342 addi ea, ea, -4 /* re-issue the interrupted instruction */
344 2: movi r4, %lo(-1) /* Start from bit position 0,
346 /* This is the IRQ # for handler call */
347 1: andi r10, r12, 1 /* Isolate bit we are interested in */
348 srli r12, r12, 1 /* shift count is costly without hardware
352 mov r5, sp /* Setup pt_regs pointer for handler call */
354 rdctl r12, ipending /* check again if irq still pending */
355 rdctl r9, ienable /* Isolate possible interrupts */
358 /* br ret_from_interrupt */ /* fall through to ret_from_interrupt */
360 ENTRY(ret_from_interrupt)
361 ldw r1, PT_ESTATUS(sp) /* check if returning to kernel */
362 TSTBNZ r1, r1, ESTATUS_EU, Luser_return
364 #ifdef CONFIG_PREEMPT
366 ldw r4, TI_PREEMPT_COUNT(r1)
367 bne r4, r0, restore_all
368 ldw r4, TI_FLAGS(r1) /* ? Need resched set */
369 BTBZ r10, r4, TIF_NEED_RESCHED, restore_all
370 ldw r4, PT_ESTATUS(sp) /* ? Interrupts off */
371 andi r10, r4, ESTATUS_EPIE
372 beq r10, r0, restore_all
373 call preempt_schedule_irq
377 /***********************************************************************
378 * A few syscall wrappers
379 ***********************************************************************
382 * int clone(unsigned long clone_flags, unsigned long newsp,
383 * int __user * parent_tidptr, int __user * child_tidptr,
389 stw r7, 0(sp) /* Pass 5th arg thru stack */
390 mov r7, r6 /* 4th arg is 3rd of clone() */
391 mov r6, zero /* 3rd arg always 0 */
397 ENTRY(sys_rt_sigreturn)
402 addi ra, ra, (end_translate_rc_and_ret - translate_rc_and_ret)
405 /***********************************************************************
406 * A few other wrappers and stubs
407 ***********************************************************************
409 protection_exception_pte:
413 br ret_from_exception
415 protection_exception_ba:
418 br ret_from_exception
420 protection_exception_instr:
421 call handle_supervisor_instr
422 br ret_from_exception
426 br ret_from_exception
428 #ifdef CONFIG_NIOS2_ALIGNMENT_TRAP
431 call handle_unaligned_c
433 br ret_from_exception
436 call handle_unaligned_c
437 br ret_from_exception
441 call handle_illegal_c
442 br ret_from_exception
445 call handle_diverror_c
446 br ret_from_exception
449 * Beware - when entering resume, prev (the current task) is
450 * in r4, next (the new task) is in r5, don't change these
455 rdctl r7, status /* save thread status reg */
456 stw r7, TASK_THREAD + THREAD_KPSR(r4)
458 andi r7, r7, %lo(~STATUS_PIE) /* disable interrupts */
462 stw sp, TASK_THREAD + THREAD_KSP(r4)/* save kernel stack pointer */
463 ldw sp, TASK_THREAD + THREAD_KSP(r5)/* restore new thread stack */
464 movia r24, _current_thread /* save thread */
469 ldw r7, TASK_THREAD + THREAD_KPSR(r5)/* restore thread status reg */
475 br ret_from_exception
477 ENTRY(ret_from_kernel_thread)
480 callr r16 /* function */
481 br ret_from_exception
484 * Kernel user helpers.
486 * Each segment is 64-byte aligned and will be mapped to the <User space>.
487 * New segments (if ever needed) must be added after the existing ones.
488 * This mechanism should be used only for things that are really small and
489 * justified, and not be abused freely.
493 /* Filling pads with undefined instructions. */
494 .macro kuser_pad sym size
496 .rept (4 - (. - \sym) & 3)
500 .rept ((\size - (. - \sym)) / 4)
506 .globl __kuser_helper_start
507 __kuser_helper_start:
509 __kuser_helper_version: /* @ 0x1000 */
510 .word ((__kuser_helper_end - __kuser_helper_start) >> 6)
512 __kuser_cmpxchg: /* @ 0x1004 */
514 * r4 pointer to exchange variable
519 ldw r2, 0(r4) /* load current value */
520 sub r2, r2, r5 /* compare with old value */
521 bne r2, zero, cmpxchg_ret
523 /* We had a match, store the new value */
529 kuser_pad __kuser_cmpxchg, 64
531 .globl __kuser_sigtramp
533 movi r2, __NR_rt_sigreturn
536 kuser_pad __kuser_sigtramp, 64
538 .globl __kuser_helper_end