1 /* SPDX-License-Identifier: GPL-2.0
3 * arch/sh/kernel/cpu/sh2a/entry.S
5 * The SH-2A exception entry
7 * Copyright (C) 2008 Yoshinori Sato
8 * Based on arch/sh/kernel/cpu/sh2/entry.S
11 #include <linux/linkage.h>
12 #include <asm/asm-offsets.h>
13 #include <asm/thread_info.h>
14 #include <cpu/mmu_context.h>
15 #include <asm/unistd.h>
16 #include <asm/errno.h>
19 /* Offsets to the stack */
20 OFF_R0 = 0 /* Return value. New ABI also arg4 */
21 OFF_R1 = 4 /* New ABI: arg5 */
22 OFF_R2 = 8 /* New ABI: arg6 */
23 OFF_R3 = 12 /* New ABI: syscall_nr */
24 OFF_R4 = 16 /* New ABI: arg0 */
25 OFF_R5 = 20 /* New ABI: arg1 */
26 OFF_R6 = 24 /* New ABI: arg2 */
27 OFF_R7 = 28 /* New ABI: arg3 */
33 #include <asm/entry-macros.S>
35 ENTRY(exception_handler)
42 ! r1 = vector (pseudo EXPEVT / INTEVT / TRA)
46 bld.b #6,@(0,r2) !previus SR.MD
47 bst.b #6,@(4*4,r15) !set cpu mode to SR.MD
49 ! switch to kernel mode
50 bset.b #6,@(0,r2) !set SR.MD
51 mov.l $current_thread_info,r2
53 mov #(THREAD_SIZE >> 8),r0
55 add r2,r0 ! r0 = kernel stack tail
56 mov r15,r2 ! r2 = user stack top
57 mov r0,r15 ! switch kernel stack
63 mov.l r0,@-r15 ! original SR
66 mov.l r0,@-r15 ! original PC
68 add #(3+2)*4,r0 ! rewind r0 - r3 + exception frame
69 lds r0,pr ! pr = original SP
70 movmu.l r3,@-r15 ! save regs
71 mov r2,r8 ! r8 = previus stack top
72 mov r1,r9 ! r9 = interrupt vector
73 ! restore previous stack
82 add #-((OFF_TRA + 4) - OFF_PC) + 5*4,r15
84 mov r2,r8 ! r8 = previous stack top
85 mov r1,r9 ! r9 = interrupt vector
86 ! restore exception frame & regs
87 mov.l @r8+,r2 ! old R2
88 mov.l @r8+,r0 ! old R0
89 mov.l @r8+,r1 ! old R1
90 mov.l @r8+,r10 ! old PC
91 mov.l @r8+,r11 ! old SR
93 mov.l r10,@(OFF_PC,r15)
94 mov.l r11,@(OFF_SR,r15)
95 mov.l r8,@(OFF_SP,r15) ! save old sp
105 ! dispatch exception / interrupt
108 bt interrupt_entry ! vec >= 64 is interrupt
111 bt trap_entry ! 64 > vec >= 31 is trap
117 mov.l @r8,r8 ! exception handler address
120 mov.l 8f,r8 ! unhandled exception
135 4: .long exception_handling_table
136 5: .long ret_from_exception
137 6: .long ret_from_irq
139 8: .long exception_error
143 cmp/ge r8,r9 ! vector 0x1f-0x2f is systemcall
145 mov #0x1f,r9 ! convert to unified SH2/3/4 trap number
148 bra system_call ! jump common systemcall entry
151 #if defined(CONFIG_SH_STANDARD_BIOS)
152 /* Unwind the stack and jmp to the debug entry */
153 ENTRY(sh_bios_handler)
160 mov.l @(OFF_SP,r0),r1
161 mov.l @(OFF_SR,r2),r3
163 mov.l @(OFF_SP,r2),r3
180 1: .long gdb_vbr_vector
181 #endif /* CONFIG_SH_STANDARD_BIOS */
183 ENTRY(address_error_trap_handler)
185 mov.l @(OFF_PC,r15),r6 ! pc
188 mov #0,r5 ! writeaccess is unknown
191 1: .long do_address_error
196 ldc r0,sr ! all interrupt block (same BL = 1)
197 ! restore special register
198 ! overlap exception frame
208 bld.b #6,@(OFF_SR,r15)
209 bst.b #6,@(0,r2) ! save CPU mode
210 mov.l @(OFF_SR,r0),r1
212 shlr2 r1 ! clear MD bit
213 mov.l @(OFF_SP,r0),r2
215 mov.l r2,@(OFF_SP,r0) ! point exception frame top
216 mov.l r1,@(4,r2) ! set sr
217 mov.l @(OFF_PC,r0),r1
218 mov.l r1,@r2 ! set pc
219 get_current_thread_info r0, r1
220 mov.l $current_thread_info,r1
228 $current_thread_info:
229 .long __current_thread_info
233 ! common exception handler
234 #include "../../entry-common.S"
238 ! bit30 = MD (compatible SH3/4)
243 __current_thread_info:
246 ENTRY(exception_handling_table)