2 * linux/arch/m68knommu/platform/5307/entry.S
4 * Copyright (C) 1999-2007, Greg Ungerer (gerg@snapgear.com)
5 * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
6 * Kenneth Albanowski <kjahds@kjahds.com>,
7 * Copyright (C) 2000 Lineo Inc. (www.lineo.com)
8 * Copyright (C) 2004-2006 Macq Electronique SA. (www.macqel.com)
12 * linux/arch/m68k/kernel/entry.S
14 * Copyright (C) 1991, 1992 Linus Torvalds
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file README.legal in the main directory of this archive
20 * Linux/m68k support by Hamish Macdonald
22 * 68060 fixes by Jesper Skov
23 * ColdFire support by Greg Ungerer (gerg@snapgear.com)
24 * 5307 fixes by David W. Miller
25 * linux 2.4 support David McCullough <davidm@snapgear.com>
26 * Bug, speed and maintainability fixes by Philippe De Muyter <phdm@macqel.be>
29 #include <linux/sys.h>
30 #include <linux/linkage.h>
31 #include <asm/unistd.h>
32 #include <asm/thread_info.h>
33 #include <asm/errno.h>
34 #include <asm/setup.h>
35 #include <asm/segment.h>
36 #include <asm/asm-offsets.h>
37 #include <asm/entry.h>
39 #ifdef CONFIG_COLDFIRE_SW_A7
41 * Define software copies of the supervisor and user stack pointers.
48 #endif /* CONFIG_COLDFIRE_SW_A7 */
54 .globl ret_from_exception
55 .globl ret_from_signal
61 mov.l #sys_ni_syscall,%d3
66 move #0x2000,%sr /* enable intrs again */
70 lea sys_call_table,%a0
71 lsll #2,%d0 /* movel %a0@(%d0:l:4),%d3 */
76 movel %sp,%d2 /* get thread_info pointer */
77 andl #-THREAD_SIZE,%d2 /* at start of kernel stack */
79 movel %a0@,%a1 /* save top of frame */
80 movel %sp,%a1@(TASK_THREAD+THREAD_ESP0)
81 btst #(TIF_SYSCALL_TRACE%8),%a0@(TI_FLAGS+(31-TIF_SYSCALL_TRACE)/8)
86 movel %d0,%sp@(PT_OFF_D0) /* save the return value */
87 jra ret_from_exception
89 movel #-ENOSYS,%d2 /* strace needs -ENOSYS in PT_OFF_D0 */
90 movel %d2,PT_OFF_D0(%sp) /* on syscall entry */
93 jbsr syscall_trace_enter
98 movel %d0,%sp@(PT_OFF_D0) /* save the return value */
99 subql #4,%sp /* dummy return address */
101 jbsr syscall_trace_leave
108 move #0x2700,%sr /* disable intrs */
109 btst #5,%sp@(PT_OFF_SR) /* check if returning to kernel */
110 jeq Luser_return /* if so, skip resched, signals */
112 #ifdef CONFIG_PREEMPT
113 movel %sp,%d1 /* get thread_info pointer */
114 andl #-THREAD_SIZE,%d1 /* at base of kernel stack */
116 movel %a0@(TI_FLAGS),%d1 /* get thread_info->flags */
117 andl #(1<<TIF_NEED_RESCHED),%d1
120 movel %a0@(TI_PREEMPTCOUNT),%d1
125 jmp preempt_schedule_irq /* preempt the kernel */
129 moveml %sp@,%d1-%d5/%a0-%a2
130 lea %sp@(32),%sp /* space for 8 regs */
132 addql #4,%sp /* orig d0 */
133 addl %sp@+,%sp /* stk adj */
137 movel %sp,%d1 /* get thread_info pointer */
138 andl #-THREAD_SIZE,%d1 /* at base of kernel stack */
140 movel %a0@(TI_FLAGS),%d1 /* get thread_info->flags */
141 jne Lwork_to_do /* still work to do */
147 movel %a0@(TI_FLAGS),%d1 /* get thread_info->flags */
148 move #0x2000,%sr /* enable intrs again */
149 btst #TIF_NEED_RESCHED,%d1
152 /* GERG: do we need something here for TRACEing?? */
155 subql #4,%sp /* dummy return address */
157 pea %sp@(SWITCH_STACK_SIZE)
165 * This is the generic interrupt handler (for all hardware interrupt
166 * sources). Calls up to high level code to do all the work.
171 movel %d0,%sp@(PT_OFF_ORIG_D0)
173 movew %sp@(PT_OFF_FORMATVEC),%d0 /* put exception # in d0 */
174 andl #0x03fc,%d0 /* mask out vector only */
176 movel %sp,%sp@- /* push regs arg */
177 lsrl #2,%d0 /* calculate real vector # */
178 movel %d0,%sp@- /* push vector number */
179 jbsr do_IRQ /* call high level irq handler */
180 lea %sp@(8),%sp /* pop args off stack */
182 bra ret_from_exception
185 * Beware - when entering resume, prev (the current task) is
186 * in a0, next (the new task) is in a1,so don't change these
187 * registers until their contents are no longer needed.
188 * This is always called in supervisor mode, so don't bother to save
189 * and restore sr; user's process sr is actually in the stack.
192 movel %a0, %d1 /* get prev thread in d1 */
194 movel %a2,%a0@(TASK_THREAD+THREAD_USP)
197 movel %sp,%a0@(TASK_THREAD+THREAD_KSP) /* save kernel stack pointer */
198 movel %a1@(TASK_THREAD+THREAD_KSP),%sp /* restore new thread stack */
201 movel %a1@(TASK_THREAD+THREAD_USP),%a0 /* restore thread user stack */