blob: 22eb3022f9ee83f449e313a7715845df8b52bdad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Greg Ungerer6f4a8852014-08-21 22:10:31 +10002 * entry.S - non-mmu 68360 interrupt and exceptions entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2001 SED Systems, a Division of Calian Ltd.
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file README.legal in the main directory of this archive
9 * for more details.
10 *
11 * Linux/m68k support by Hamish Macdonald
12 * M68360 Port by SED Systems, and Lineo.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/linkage.h>
16#include <asm/thread_info.h>
17#include <asm/unistd.h>
18#include <asm/errno.h>
19#include <asm/setup.h>
20#include <asm/segment.h>
21#include <asm/traps.h>
22#include <asm/asm-offsets.h>
23#include <asm/entry.h>
24
25.text
26
27.globl system_call
28.globl resume
29.globl ret_from_exception
30.globl ret_from_signal
31.globl sys_call_table
Linus Torvalds1da177e2005-04-16 15:20:36 -070032.globl bad_interrupt
33.globl inthandler
34
35badsys:
Greg Ungererc84b5642009-09-20 21:32:32 +100036 movel #-ENOSYS,%sp@(PT_OFF_D0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 jra ret_from_exception
38
39do_trace:
Greg Ungererc84b5642009-09-20 21:32:32 +100040 movel #-ENOSYS,%sp@(PT_OFF_D0) /* needed for strace*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 subql #4,%sp
42 SAVE_SWITCH_STACK
Greg Ungerer55f411d2010-10-22 15:12:34 +100043 jbsr syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 RESTORE_SWITCH_STACK
45 addql #4,%sp
Greg Ungererc84b5642009-09-20 21:32:32 +100046 movel %sp@(PT_OFF_ORIG_D0),%d1
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 movel #-ENOSYS,%d0
48 cmpl #NR_syscalls,%d1
49 jcc 1f
50 lsl #2,%d1
51 lea sys_call_table, %a0
52 jbsr %a0@(%d1)
53
Greg Ungererc84b5642009-09-20 21:32:32 +1000541: movel %d0,%sp@(PT_OFF_D0) /* save the return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 subql #4,%sp /* dummy return address */
56 SAVE_SWITCH_STACK
Greg Ungerer55f411d2010-10-22 15:12:34 +100057 jbsr syscall_trace_leave
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59ret_from_signal:
60 RESTORE_SWITCH_STACK
61 addql #4,%sp
62 jra ret_from_exception
63
64ENTRY(system_call)
Greg Ungerer61619b12011-06-22 13:50:44 +100065 SAVE_ALL_SYS
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /* save top of frame*/
68 pea %sp@
69 jbsr set_esp0
70 addql #4,%sp
71
Philippe De Muyterc8a27862010-08-17 18:58:29 +020072 movel %sp@(PT_OFF_ORIG_D0),%d0
73
74 movel %sp,%d1 /* get thread_info pointer */
75 andl #-THREAD_SIZE,%d1
76 movel %d1,%a2
Greg Ungereraa4d1f82011-03-29 15:55:36 +100077 btst #(TIF_SYSCALL_TRACE%8),%a2@(TINFO_FLAGS+(31-TIF_SYSCALL_TRACE)/8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 jne do_trace
79 cmpl #NR_syscalls,%d0
80 jcc badsys
81 lsl #2,%d0
82 lea sys_call_table,%a0
83 movel %a0@(%d0), %a0
84 jbsr %a0@
Greg Ungererc84b5642009-09-20 21:32:32 +100085 movel %d0,%sp@(PT_OFF_D0) /* save the return value*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87ret_from_exception:
Greg Ungererc84b5642009-09-20 21:32:32 +100088 btst #5,%sp@(PT_OFF_SR) /* check if returning to kernel*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 jeq Luser_return /* if so, skip resched, signals*/
90
91Lkernel_return:
92 RESTORE_ALL
93
94Luser_return:
95 /* only allow interrupts when we are really the last one on the*/
96 /* kernel stack, otherwise stack overflow can occur during*/
97 /* heavy interrupt load*/
98 andw #ALLOWINT,%sr
99
100 movel %sp,%d1 /* get thread_info pointer */
Greg Ungerer8410a542005-09-02 10:42:52 +1000101 andl #-THREAD_SIZE,%d1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 movel %d1,%a2
Al Virod1574df2010-10-11 23:29:28 -04001031:
Greg Ungereraa4d1f82011-03-29 15:55:36 +1000104 move %a2@(TINFO_FLAGS),%d1 /* thread_info->flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 jne Lwork_to_do
106 RESTORE_ALL
107
108Lwork_to_do:
Greg Ungereraa4d1f82011-03-29 15:55:36 +1000109 movel %a2@(TINFO_FLAGS),%d1 /* thread_info->flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 btst #TIF_NEED_RESCHED,%d1
111 jne reschedule
112
113Lsignal_return:
114 subql #4,%sp /* dummy return address*/
115 SAVE_SWITCH_STACK
116 pea %sp@(SWITCH_STACK_SIZE)
Al Viroa54f1652012-04-24 01:46:23 -0400117 bsrw do_notify_resume
Al Viro710e91e2010-10-11 17:09:20 -0400118 addql #4,%sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 RESTORE_SWITCH_STACK
120 addql #4,%sp
Al Virod1574df2010-10-11 23:29:28 -0400121 jra 1b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/*
Greg Ungerer2502b6672007-07-19 01:49:12 -0700124 * This is the main interrupt handler, responsible for calling do_IRQ()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
126inthandler:
Greg Ungerer61619b12011-06-22 13:50:44 +1000127 SAVE_ALL_INT
Philippe De Muytereb497e72010-08-30 13:17:17 +0200128 movew %sp@(PT_OFF_FORMATVEC), %d0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 and.l #0x3ff, %d0
130 lsr.l #0x02, %d0
131
132 movel %sp,%sp@-
133 movel %d0,%sp@- /* put vector # on stack*/
Thomas Gleixner09f90f62013-11-11 21:01:03 +0100134 jbsr do_IRQ /* process the IRQ */
135 addql #8,%sp /* pop parameters off stack*/
136 jra ret_from_exception
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/*
139 * Handler for uninitialized and spurious interrupts.
140 */
141bad_interrupt:
Geert Uytterhoeven8c9f08f2011-07-13 20:29:24 +0200142 addql #1,irq_err_count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 rte
144
145/*
146 * Beware - when entering resume, prev (the current task) is
Greg Ungererf941f5c2011-05-05 22:32:12 +1000147 * in a0, next (the new task) is in a1, so don't change these
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * registers until their contents are no longer needed.
149 */
150ENTRY(resume)
151 movel %a0,%d1 /* save prev thread in d1 */
152 movew %sr,%a0@(TASK_THREAD+THREAD_SR) /* save sr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 SAVE_SWITCH_STACK
154 movel %sp,%a0@(TASK_THREAD+THREAD_KSP) /* save kernel stack */
Greg Ungererf941f5c2011-05-05 22:32:12 +1000155 movel %usp,%a3 /* save usp */
156 movel %a3,%a0@(TASK_THREAD+THREAD_USP)
157
158 movel %a1@(TASK_THREAD+THREAD_USP),%a3 /* restore user stack */
159 movel %a3,%usp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 movel %a1@(TASK_THREAD+THREAD_KSP),%sp /* restore new thread stack */
161 RESTORE_SWITCH_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 movew %a1@(TASK_THREAD+THREAD_SR),%sr /* restore thread status reg */
163 rts
164