blob: ef548510b951b306d7b70cb941d08dc0dec3e4dd [file] [log] [blame]
Michal Simekca545022009-05-26 16:30:21 +02001/*
2 * Low-level system-call handling, trap handlers and context-switching
3 *
4 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
5 * Copyright (C) 2008-2009 PetaLogix
6 * Copyright (C) 2003 John Williams <jwilliams@itee.uq.edu.au>
7 * Copyright (C) 2001,2002 NEC Corporation
8 * Copyright (C) 2001,2002 Miles Bader <miles@gnu.org>
9 *
10 * This file is subject to the terms and conditions of the GNU General
11 * Public License. See the file COPYING in the main directory of this
12 * archive for more details.
13 *
14 * Written by Miles Bader <miles@gnu.org>
15 * Heavily modified by John Williams for Microblaze
16 */
17
18#include <linux/sys.h>
19#include <linux/linkage.h>
20
21#include <asm/entry.h>
22#include <asm/current.h>
23#include <asm/processor.h>
24#include <asm/exceptions.h>
25#include <asm/asm-offsets.h>
26#include <asm/thread_info.h>
27
28#include <asm/page.h>
29#include <asm/unistd.h>
30
31#include <linux/errno.h>
32#include <asm/signal.h>
33
Michal Simek11d51362009-12-07 08:21:34 +010034#undef DEBUG
35
Michal Simekd8748e72011-01-31 15:04:43 +010036#ifdef DEBUG
37/* Create space for syscalls counting. */
38.section .data
39.global syscall_debug_table
40.align 4
41syscall_debug_table:
42 .space (__NR_syscalls * 4)
43#endif /* DEBUG */
44
Michal Simekca545022009-05-26 16:30:21 +020045#define C_ENTRY(name) .globl name; .align 4; name
46
47/*
48 * Various ways of setting and clearing BIP in flags reg.
49 * This is mucky, but necessary using microblaze version that
50 * allows msr ops to write to BIP
51 */
52#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
53 .macro clear_bip
Michal Simek66f7de862010-06-22 17:52:47 +020054 msrclr r0, MSR_BIP
Michal Simekca545022009-05-26 16:30:21 +020055 .endm
56
57 .macro set_bip
Michal Simek66f7de862010-06-22 17:52:47 +020058 msrset r0, MSR_BIP
Michal Simekca545022009-05-26 16:30:21 +020059 .endm
60
61 .macro clear_eip
Michal Simek66f7de862010-06-22 17:52:47 +020062 msrclr r0, MSR_EIP
Michal Simekca545022009-05-26 16:30:21 +020063 .endm
64
65 .macro set_ee
Michal Simek66f7de862010-06-22 17:52:47 +020066 msrset r0, MSR_EE
Michal Simekca545022009-05-26 16:30:21 +020067 .endm
68
69 .macro disable_irq
Michal Simek66f7de862010-06-22 17:52:47 +020070 msrclr r0, MSR_IE
Michal Simekca545022009-05-26 16:30:21 +020071 .endm
72
73 .macro enable_irq
Michal Simek66f7de862010-06-22 17:52:47 +020074 msrset r0, MSR_IE
Michal Simekca545022009-05-26 16:30:21 +020075 .endm
76
77 .macro set_ums
Michal Simek66f7de862010-06-22 17:52:47 +020078 msrset r0, MSR_UMS
Michal Simek66f7de862010-06-22 17:52:47 +020079 msrclr r0, MSR_VMS
Michal Simekca545022009-05-26 16:30:21 +020080 .endm
81
82 .macro set_vms
Michal Simek66f7de862010-06-22 17:52:47 +020083 msrclr r0, MSR_UMS
Michal Simek66f7de862010-06-22 17:52:47 +020084 msrset r0, MSR_VMS
Michal Simekca545022009-05-26 16:30:21 +020085 .endm
86
Michal Simekb3180672010-06-22 17:46:27 +020087 .macro clear_ums
Michal Simek66f7de862010-06-22 17:52:47 +020088 msrclr r0, MSR_UMS
Michal Simekb3180672010-06-22 17:46:27 +020089 .endm
90
Michal Simekca545022009-05-26 16:30:21 +020091 .macro clear_vms_ums
Michal Simek66f7de862010-06-22 17:52:47 +020092 msrclr r0, MSR_VMS | MSR_UMS
Michal Simekca545022009-05-26 16:30:21 +020093 .endm
94#else
95 .macro clear_bip
96 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +020097 andi r11, r11, ~MSR_BIP
98 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +020099 .endm
100
101 .macro set_bip
102 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200103 ori r11, r11, MSR_BIP
104 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200105 .endm
106
107 .macro clear_eip
108 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200109 andi r11, r11, ~MSR_EIP
110 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200111 .endm
112
113 .macro set_ee
114 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200115 ori r11, r11, MSR_EE
116 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200117 .endm
118
119 .macro disable_irq
120 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200121 andi r11, r11, ~MSR_IE
122 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200123 .endm
124
125 .macro enable_irq
126 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200127 ori r11, r11, MSR_IE
128 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200129 .endm
130
131 .macro set_ums
132 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200133 ori r11, r11, MSR_VMS
134 andni r11, r11, MSR_UMS
135 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200136 .endm
137
138 .macro set_vms
139 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200140 ori r11, r11, MSR_VMS
141 andni r11, r11, MSR_UMS
142 mts rmsr, r11
Michal Simekca545022009-05-26 16:30:21 +0200143 .endm
144
Michal Simekb3180672010-06-22 17:46:27 +0200145 .macro clear_ums
146 mfs r11, rmsr
Michal Simekb3180672010-06-22 17:46:27 +0200147 andni r11, r11, MSR_UMS
148 mts rmsr,r11
Michal Simekb3180672010-06-22 17:46:27 +0200149 .endm
150
Michal Simekca545022009-05-26 16:30:21 +0200151 .macro clear_vms_ums
152 mfs r11, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200153 andni r11, r11, (MSR_VMS|MSR_UMS)
154 mts rmsr,r11
Michal Simekca545022009-05-26 16:30:21 +0200155 .endm
156#endif
157
158/* Define how to call high-level functions. With MMU, virtual mode must be
159 * enabled when calling the high-level function. Clobbers R11.
160 * VM_ON, VM_OFF, DO_JUMP_BIPCLR, DO_CALL
161 */
162
163/* turn on virtual protected mode save */
164#define VM_ON \
Michal Simeka4a94db2010-06-22 13:15:53 +0200165 set_ums; \
Michal Simekca545022009-05-26 16:30:21 +0200166 rted r0, 2f; \
Michal Simeka4a94db2010-06-22 13:15:53 +0200167 nop; \
1682:
Michal Simekca545022009-05-26 16:30:21 +0200169
170/* turn off virtual protected mode save and user mode save*/
171#define VM_OFF \
Michal Simeka4a94db2010-06-22 13:15:53 +0200172 clear_vms_ums; \
Michal Simekca545022009-05-26 16:30:21 +0200173 rted r0, TOPHYS(1f); \
Michal Simeka4a94db2010-06-22 13:15:53 +0200174 nop; \
1751:
Michal Simekca545022009-05-26 16:30:21 +0200176
177#define SAVE_REGS \
Michal Simek6e835572011-01-31 15:10:04 +0100178 swi r2, r1, PT_R2; /* Save SDA */ \
179 swi r3, r1, PT_R3; \
180 swi r4, r1, PT_R4; \
181 swi r5, r1, PT_R5; \
182 swi r6, r1, PT_R6; \
183 swi r7, r1, PT_R7; \
184 swi r8, r1, PT_R8; \
185 swi r9, r1, PT_R9; \
186 swi r10, r1, PT_R10; \
187 swi r11, r1, PT_R11; /* save clobbered regs after rval */\
188 swi r12, r1, PT_R12; \
189 swi r13, r1, PT_R13; /* Save SDA2 */ \
190 swi r14, r1, PT_PC; /* PC, before IRQ/trap */ \
191 swi r15, r1, PT_R15; /* Save LP */ \
192 swi r16, r1, PT_R16; \
193 swi r17, r1, PT_R17; \
194 swi r18, r1, PT_R18; /* Save asm scratch reg */ \
195 swi r19, r1, PT_R19; \
196 swi r20, r1, PT_R20; \
197 swi r21, r1, PT_R21; \
198 swi r22, r1, PT_R22; \
199 swi r23, r1, PT_R23; \
200 swi r24, r1, PT_R24; \
201 swi r25, r1, PT_R25; \
202 swi r26, r1, PT_R26; \
203 swi r27, r1, PT_R27; \
204 swi r28, r1, PT_R28; \
205 swi r29, r1, PT_R29; \
206 swi r30, r1, PT_R30; \
207 swi r31, r1, PT_R31; /* Save current task reg */ \
Michal Simekca545022009-05-26 16:30:21 +0200208 mfs r11, rmsr; /* save MSR */ \
Michal Simek6e835572011-01-31 15:10:04 +0100209 swi r11, r1, PT_MSR;
Michal Simekca545022009-05-26 16:30:21 +0200210
211#define RESTORE_REGS \
Michal Simek6e835572011-01-31 15:10:04 +0100212 lwi r11, r1, PT_MSR; \
Michal Simekca545022009-05-26 16:30:21 +0200213 mts rmsr , r11; \
Michal Simek6e835572011-01-31 15:10:04 +0100214 lwi r2, r1, PT_R2; /* restore SDA */ \
215 lwi r3, r1, PT_R3; \
216 lwi r4, r1, PT_R4; \
217 lwi r5, r1, PT_R5; \
218 lwi r6, r1, PT_R6; \
219 lwi r7, r1, PT_R7; \
220 lwi r8, r1, PT_R8; \
221 lwi r9, r1, PT_R9; \
222 lwi r10, r1, PT_R10; \
223 lwi r11, r1, PT_R11; /* restore clobbered regs after rval */\
224 lwi r12, r1, PT_R12; \
225 lwi r13, r1, PT_R13; /* restore SDA2 */ \
226 lwi r14, r1, PT_PC; /* RESTORE_LINK PC, before IRQ/trap */\
227 lwi r15, r1, PT_R15; /* restore LP */ \
228 lwi r16, r1, PT_R16; \
229 lwi r17, r1, PT_R17; \
230 lwi r18, r1, PT_R18; /* restore asm scratch reg */ \
231 lwi r19, r1, PT_R19; \
232 lwi r20, r1, PT_R20; \
233 lwi r21, r1, PT_R21; \
234 lwi r22, r1, PT_R22; \
235 lwi r23, r1, PT_R23; \
236 lwi r24, r1, PT_R24; \
237 lwi r25, r1, PT_R25; \
238 lwi r26, r1, PT_R26; \
239 lwi r27, r1, PT_R27; \
240 lwi r28, r1, PT_R28; \
241 lwi r29, r1, PT_R29; \
242 lwi r30, r1, PT_R30; \
243 lwi r31, r1, PT_R31; /* Restore cur task reg */
Michal Simekca545022009-05-26 16:30:21 +0200244
Michal Simeke5d2af22010-06-22 17:58:26 +0200245#define SAVE_STATE \
246 swi r1, r0, TOPHYS(PER_CPU(ENTRY_SP)); /* save stack */ \
247 /* See if already in kernel mode.*/ \
248 mfs r1, rmsr; \
Michal Simeke5d2af22010-06-22 17:58:26 +0200249 andi r1, r1, MSR_UMS; \
250 bnei r1, 1f; \
251 /* Kernel-mode state save. */ \
252 /* Reload kernel stack-ptr. */ \
253 lwi r1, r0, TOPHYS(PER_CPU(ENTRY_SP)); \
Michal Simek287503f2010-06-22 18:16:07 +0200254 /* FIXME: I can add these two lines to one */ \
255 /* tophys(r1,r1); */ \
Michal Simek6e835572011-01-31 15:10:04 +0100256 /* addik r1, r1, -PT_SIZE; */ \
257 addik r1, r1, CONFIG_KERNEL_BASE_ADDR - CONFIG_KERNEL_START - PT_SIZE; \
Michal Simeke5d2af22010-06-22 17:58:26 +0200258 SAVE_REGS \
Michal Simeke5d2af22010-06-22 17:58:26 +0200259 brid 2f; \
Michal Simek6e835572011-01-31 15:10:04 +0100260 swi r1, r1, PT_MODE; \
Michal Simeke5d2af22010-06-22 17:58:26 +02002611: /* User-mode state save. */ \
262 lwi r1, r0, TOPHYS(PER_CPU(CURRENT_SAVE)); /* get saved current */\
263 tophys(r1,r1); \
264 lwi r1, r1, TS_THREAD_INFO; /* get the thread info */ \
Michal Simek287503f2010-06-22 18:16:07 +0200265 /* MS these three instructions can be added to one */ \
266 /* addik r1, r1, THREAD_SIZE; */ \
267 /* tophys(r1,r1); */ \
Michal Simek6e835572011-01-31 15:10:04 +0100268 /* addik r1, r1, -PT_SIZE; */ \
269 addik r1, r1, THREAD_SIZE + CONFIG_KERNEL_BASE_ADDR - CONFIG_KERNEL_START - PT_SIZE; \
Michal Simeke5d2af22010-06-22 17:58:26 +0200270 SAVE_REGS \
Michal Simeke5d2af22010-06-22 17:58:26 +0200271 lwi r11, r0, TOPHYS(PER_CPU(ENTRY_SP)); \
Michal Simek6e835572011-01-31 15:10:04 +0100272 swi r11, r1, PT_R1; /* Store user SP. */ \
273 swi r0, r1, PT_MODE; /* Was in user-mode. */ \
Michal Simeke5d2af22010-06-22 17:58:26 +0200274 /* MS: I am clearing UMS even in case when I come from kernel space */ \
275 clear_ums; \
2762: lwi CURRENT_TASK, r0, TOPHYS(PER_CPU(CURRENT_SAVE));
277
Michal Simekca545022009-05-26 16:30:21 +0200278.text
279
280/*
281 * User trap.
282 *
283 * System calls are handled here.
284 *
285 * Syscall protocol:
286 * Syscall number in r12, args in r5-r10
287 * Return value in r3
288 *
289 * Trap entered via brki instruction, so BIP bit is set, and interrupts
290 * are masked. This is nice, means we don't have to CLI before state save
291 */
292C_ENTRY(_user_exception):
Michal Simek0e41c902010-06-22 21:11:49 +0200293 swi r1, r0, TOPHYS(PER_CPU(ENTRY_SP)) /* save stack */
Michal Simek9da63452010-10-22 15:48:58 +1000294 addi r14, r14, 4 /* return address is 4 byte after call */
Michal Simekca545022009-05-26 16:30:21 +0200295
Michal Simekca545022009-05-26 16:30:21 +0200296 lwi r1, r0, TOPHYS(PER_CPU(CURRENT_SAVE)); /* get saved current */
297 tophys(r1,r1);
298 lwi r1, r1, TS_THREAD_INFO; /* get stack from task_struct */
Michal Simek9da63452010-10-22 15:48:58 +1000299/* calculate kernel stack pointer from task struct 8k */
300 addik r1, r1, THREAD_SIZE;
301 tophys(r1,r1);
302
Michal Simek6e835572011-01-31 15:10:04 +0100303 addik r1, r1, -PT_SIZE; /* Make room on the stack. */
Michal Simekca545022009-05-26 16:30:21 +0200304 SAVE_REGS
Michal Simek6e835572011-01-31 15:10:04 +0100305 swi r0, r1, PT_R3
306 swi r0, r1, PT_R4
Michal Simekca545022009-05-26 16:30:21 +0200307
Michal Simek6e835572011-01-31 15:10:04 +0100308 swi r0, r1, PT_MODE; /* Was in user-mode. */
Michal Simekca545022009-05-26 16:30:21 +0200309 lwi r11, r0, TOPHYS(PER_CPU(ENTRY_SP));
Michal Simek6e835572011-01-31 15:10:04 +0100310 swi r11, r1, PT_R1; /* Store user SP. */
Michal Simek25f6e592010-06-22 18:29:05 +0200311 clear_ums;
Michal Simek9da63452010-10-22 15:48:58 +10003122: lwi CURRENT_TASK, r0, TOPHYS(PER_CPU(CURRENT_SAVE));
Michal Simekca545022009-05-26 16:30:21 +0200313 /* Save away the syscall number. */
Michal Simek6e835572011-01-31 15:10:04 +0100314 swi r12, r1, PT_R0;
Michal Simekca545022009-05-26 16:30:21 +0200315 tovirt(r1,r1)
316
Michal Simekca545022009-05-26 16:30:21 +0200317/* where the trap should return need -8 to adjust for rtsd r15, 8*/
318/* Jump to the appropriate function for the system call number in r12
319 * (r12 is not preserved), or return an error if r12 is not valid. The LP
320 * register should point to the location where
321 * the called function should return. [note that MAKE_SYS_CALL uses label 1] */
Michal Simek23575482009-08-24 13:26:04 +0200322
Michal Simek25f6e592010-06-22 18:29:05 +0200323 /* Step into virtual mode */
324 rtbd r0, 3f
Michal Simek23575482009-08-24 13:26:04 +0200325 nop
3263:
Michal Simekb1d70c62010-01-22 10:24:06 +0100327 lwi r11, CURRENT_TASK, TS_THREAD_INFO /* get thread info */
Michal Simek23575482009-08-24 13:26:04 +0200328 lwi r11, r11, TI_FLAGS /* get flags in thread info */
329 andi r11, r11, _TIF_WORK_SYSCALL_MASK
330 beqi r11, 4f
331
332 addik r3, r0, -ENOSYS
Michal Simek6e835572011-01-31 15:10:04 +0100333 swi r3, r1, PT_R3
Michal Simek23575482009-08-24 13:26:04 +0200334 brlid r15, do_syscall_trace_enter
Michal Simek6e835572011-01-31 15:10:04 +0100335 addik r5, r1, PT_R0
Michal Simek23575482009-08-24 13:26:04 +0200336
337 # do_syscall_trace_enter returns the new syscall nr.
338 addk r12, r0, r3
Michal Simek6e835572011-01-31 15:10:04 +0100339 lwi r5, r1, PT_R5;
340 lwi r6, r1, PT_R6;
341 lwi r7, r1, PT_R7;
342 lwi r8, r1, PT_R8;
343 lwi r9, r1, PT_R9;
344 lwi r10, r1, PT_R10;
Michal Simek23575482009-08-24 13:26:04 +02003454:
346/* Jump to the appropriate function for the system call number in r12
347 * (r12 is not preserved), or return an error if r12 is not valid.
348 * The LP register should point to the location where the called function
349 * should return. [note that MAKE_SYS_CALL uses label 1] */
350 /* See if the system call number is valid */
Jamie Garsidec2219ed2015-02-23 15:35:35 +0000351 blti r12, 5f
Michal Simekca545022009-05-26 16:30:21 +0200352 addi r11, r12, -__NR_syscalls;
Michal Simek074fa7e2015-03-04 15:10:55 +0100353 bgei r11, 5f;
Michal Simekca545022009-05-26 16:30:21 +0200354 /* Figure out which function to use for this system call. */
355 /* Note Microblaze barrel shift is optional, so don't rely on it */
356 add r12, r12, r12; /* convert num -> ptr */
357 add r12, r12, r12;
Michal Simek4de6ba62012-09-17 11:18:24 +0200358 addi r30, r0, 1 /* restarts allowed */
Michal Simekca545022009-05-26 16:30:21 +0200359
Michal Simek11d51362009-12-07 08:21:34 +0100360#ifdef DEBUG
Michal Simekd8748e72011-01-31 15:04:43 +0100361 /* Trac syscalls and stored them to syscall_debug_table */
362 /* The first syscall location stores total syscall number */
363 lwi r3, r0, syscall_debug_table
Michal Simekca545022009-05-26 16:30:21 +0200364 addi r3, r3, 1
Michal Simekd8748e72011-01-31 15:04:43 +0100365 swi r3, r0, syscall_debug_table
366 lwi r3, r12, syscall_debug_table
367 addi r3, r3, 1
368 swi r3, r12, syscall_debug_table
Michal Simek11d51362009-12-07 08:21:34 +0100369#endif
Michal Simekca545022009-05-26 16:30:21 +0200370
Michal Simek23575482009-08-24 13:26:04 +0200371 # Find and jump into the syscall handler.
372 lwi r12, r12, sys_call_table
373 /* where the trap should return need -8 to adjust for rtsd r15, 8 */
Michal Simekb9ea77e2010-07-28 12:40:02 +0200374 addi r15, r0, ret_from_trap-8
Michal Simek23575482009-08-24 13:26:04 +0200375 bra r12
376
Michal Simekca545022009-05-26 16:30:21 +0200377 /* The syscall number is invalid, return an error. */
Michal Simek23575482009-08-24 13:26:04 +02003785:
Jamie Garsidec2219ed2015-02-23 15:35:35 +0000379 braid ret_from_trap
Michal Simekca545022009-05-26 16:30:21 +0200380 addi r3, r0, -ENOSYS;
Michal Simekca545022009-05-26 16:30:21 +0200381
Michal Simek23575482009-08-24 13:26:04 +0200382/* Entry point used to return from a syscall/trap */
Michal Simekca545022009-05-26 16:30:21 +0200383/* We re-enable BIP bit before state restore */
384C_ENTRY(ret_from_trap):
Michal Simek6e835572011-01-31 15:10:04 +0100385 swi r3, r1, PT_R3
386 swi r4, r1, PT_R4
Michal Simekb1d70c62010-01-22 10:24:06 +0100387
Michal Simek6e835572011-01-31 15:10:04 +0100388 lwi r11, r1, PT_MODE;
Michal Simek9da63452010-10-22 15:48:58 +1000389/* See if returning to kernel mode, if so, skip resched &c. */
390 bnei r11, 2f;
Michal Simekca545022009-05-26 16:30:21 +0200391 /* We're returning to user mode, so check for various conditions that
392 * trigger rescheduling. */
Michal Simekb1d70c62010-01-22 10:24:06 +0100393 /* FIXME: Restructure all these flag checks. */
394 lwi r11, CURRENT_TASK, TS_THREAD_INFO; /* get thread info */
Michal Simek23575482009-08-24 13:26:04 +0200395 lwi r11, r11, TI_FLAGS; /* get flags in thread info */
396 andi r11, r11, _TIF_WORK_SYSCALL_MASK
397 beqi r11, 1f
398
Michal Simek23575482009-08-24 13:26:04 +0200399 brlid r15, do_syscall_trace_leave
Michal Simek6e835572011-01-31 15:10:04 +0100400 addik r5, r1, PT_R0
Michal Simek23575482009-08-24 13:26:04 +02004011:
Michal Simek23575482009-08-24 13:26:04 +0200402 /* We're returning to user mode, so check for various conditions that
403 * trigger rescheduling. */
Michal Simekb1d70c62010-01-22 10:24:06 +0100404 /* get thread info from current task */
405 lwi r11, CURRENT_TASK, TS_THREAD_INFO;
Al Viroe9f92522012-04-29 04:43:50 -0400406 lwi r19, r11, TI_FLAGS; /* get flags in thread info */
407 andi r11, r19, _TIF_NEED_RESCHED;
Michal Simekca545022009-05-26 16:30:21 +0200408 beqi r11, 5f;
409
Michal Simekca545022009-05-26 16:30:21 +0200410 bralid r15, schedule; /* Call scheduler */
411 nop; /* delay slot */
Al Viroe9f92522012-04-29 04:43:50 -0400412 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200413
414 /* Maybe handle a signal */
Michal Simek074fa7e2015-03-04 15:10:55 +01004155:
Al Viroe9f92522012-04-29 04:43:50 -0400416 andi r11, r19, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME;
417 beqi r11, 4f; /* Signals to handle, handle them */
Michal Simekca545022009-05-26 16:30:21 +0200418
Michal Simek6e835572011-01-31 15:10:04 +0100419 addik r5, r1, 0; /* Arg 1: struct pt_regs *regs */
Al Viro969a9612012-04-24 02:03:06 -0400420 bralid r15, do_notify_resume; /* Handle any signals */
Al Viro14203e12012-04-29 04:11:34 -0400421 add r6, r30, r0; /* Arg 2: int in_syscall */
Al Viroe9f92522012-04-29 04:43:50 -0400422 add r30, r0, r0 /* no more restarts */
423 bri 1b
Michal Simekb1d70c62010-01-22 10:24:06 +0100424
425/* Finally, return to user state. */
Al Viroe9f92522012-04-29 04:43:50 -04004264: set_bip; /* Ints masked for state restore */
Michal Simek8633beb2010-02-22 13:24:43 +0100427 swi CURRENT_TASK, r0, PER_CPU(CURRENT_SAVE); /* save current */
Michal Simekca545022009-05-26 16:30:21 +0200428 VM_OFF;
429 tophys(r1,r1);
430 RESTORE_REGS;
Michal Simek6e835572011-01-31 15:10:04 +0100431 addik r1, r1, PT_SIZE /* Clean up stack space. */
Michal Simekca545022009-05-26 16:30:21 +0200432 lwi r1, r1, PT_R1 - PT_SIZE;/* Restore user stack pointer. */
Michal Simek9da63452010-10-22 15:48:58 +1000433 bri 6f;
434
435/* Return to kernel state. */
4362: set_bip; /* Ints masked for state restore */
437 VM_OFF;
438 tophys(r1,r1);
439 RESTORE_REGS;
Michal Simek6e835572011-01-31 15:10:04 +0100440 addik r1, r1, PT_SIZE /* Clean up stack space. */
Michal Simek9da63452010-10-22 15:48:58 +1000441 tovirt(r1,r1);
4426:
Michal Simekca545022009-05-26 16:30:21 +0200443TRAP_return: /* Make global symbol for debugging */
444 rtbd r14, 0; /* Instructions to return from an IRQ */
445 nop;
446
447
Michal Simekca545022009-05-26 16:30:21 +0200448/* This the initial entry point for a new child thread, with an appropriate
449 stack in place that makes it look the the child is in the middle of an
450 syscall. This function is actually `returned to' from switch_thread
451 (copy_thread makes ret_from_fork the return address in each new thread's
452 saved context). */
453C_ENTRY(ret_from_fork):
454 bralid r15, schedule_tail; /* ...which is schedule_tail's arg */
Michal Simekfd11ff72012-10-09 09:32:32 +0200455 add r5, r3, r0; /* switch_thread returns the prev task */
Michal Simekca545022009-05-26 16:30:21 +0200456 /* ( in the delay slot ) */
Michal Simekca545022009-05-26 16:30:21 +0200457 brid ret_from_trap; /* Do normal trap return */
Michal Simek9814cc12010-06-22 18:09:29 +0200458 add r3, r0, r0; /* Child's fork call should return 0. */
Michal Simekca545022009-05-26 16:30:21 +0200459
Al Viro23192952012-10-06 13:52:37 -0400460C_ENTRY(ret_from_kernel_thread):
461 bralid r15, schedule_tail; /* ...which is schedule_tail's arg */
462 add r5, r3, r0; /* switch_thread returns the prev task */
463 /* ( in the delay slot ) */
464 brald r15, r20 /* fn was left in r20 */
465 addk r5, r0, r19 /* ... and argument - in r19 */
Al Viro99c59f62012-10-10 11:52:44 -0400466 brid ret_from_trap
467 add r3, r0, r0
Al Viro23192952012-10-06 13:52:37 -0400468
Michal Simekca545022009-05-26 16:30:21 +0200469C_ENTRY(sys_rt_sigreturn_wrapper):
Al Viro14203e12012-04-29 04:11:34 -0400470 addik r30, r0, 0 /* no restarts */
Michal Simek791d0a12010-08-06 10:36:02 +0200471 brid sys_rt_sigreturn /* Do real work */
Michal Simek6e835572011-01-31 15:10:04 +0100472 addik r5, r1, 0; /* add user context as 1st arg */
Michal Simekca545022009-05-26 16:30:21 +0200473
474/*
475 * HW EXCEPTION rutine start
476 */
Michal Simekca545022009-05-26 16:30:21 +0200477C_ENTRY(full_exception_trap):
Michal Simekca545022009-05-26 16:30:21 +0200478 /* adjust exception address for privileged instruction
479 * for finding where is it */
480 addik r17, r17, -4
481 SAVE_STATE /* Save registers */
Michal Simek06a54602010-06-22 16:22:01 +0200482 /* PC, before IRQ/trap - this is one instruction above */
Michal Simek6e835572011-01-31 15:10:04 +0100483 swi r17, r1, PT_PC;
Michal Simek06a54602010-06-22 16:22:01 +0200484 tovirt(r1,r1)
Michal Simekca545022009-05-26 16:30:21 +0200485 /* FIXME this can be store directly in PT_ESR reg.
486 * I tested it but there is a fault */
487 /* where the trap should return need -8 to adjust for rtsd r15, 8 */
Michal Simekb9ea77e2010-07-28 12:40:02 +0200488 addik r15, r0, ret_from_exc - 8
Michal Simekca545022009-05-26 16:30:21 +0200489 mfs r6, resr
Michal Simekca545022009-05-26 16:30:21 +0200490 mfs r7, rfsr; /* save FSR */
Michal Simek131e4e92009-09-28 08:50:53 +0200491 mts rfsr, r0; /* Clear sticky fsr */
Michal Simekc318d482010-06-22 16:25:31 +0200492 rted r0, full_exception
Michal Simek6e835572011-01-31 15:10:04 +0100493 addik r5, r1, 0 /* parameter struct pt_regs * regs */
Michal Simekca545022009-05-26 16:30:21 +0200494
495/*
496 * Unaligned data trap.
497 *
498 * Unaligned data trap last on 4k page is handled here.
499 *
500 * Trap entered via exception, so EE bit is set, and interrupts
501 * are masked. This is nice, means we don't have to CLI before state save
502 *
503 * The assembler routine is in "arch/microblaze/kernel/hw_exception_handler.S"
504 */
505C_ENTRY(unaligned_data_trap):
Michal Simek8b110d12010-06-17 16:03:05 +0200506 /* MS: I have to save r11 value and then restore it because
507 * set_bit, clear_eip, set_ee use r11 as temp register if MSR
508 * instructions are not used. We don't need to do if MSR instructions
509 * are used and they use r0 instead of r11.
510 * I am using ENTRY_SP which should be primary used only for stack
511 * pointer saving. */
512 swi r11, r0, TOPHYS(PER_CPU(ENTRY_SP));
513 set_bip; /* equalize initial state for all possible entries */
514 clear_eip;
515 set_ee;
516 lwi r11, r0, TOPHYS(PER_CPU(ENTRY_SP));
Michal Simekca545022009-05-26 16:30:21 +0200517 SAVE_STATE /* Save registers.*/
Michal Simek06a54602010-06-22 16:22:01 +0200518 /* PC, before IRQ/trap - this is one instruction above */
Michal Simek6e835572011-01-31 15:10:04 +0100519 swi r17, r1, PT_PC;
Michal Simek06a54602010-06-22 16:22:01 +0200520 tovirt(r1,r1)
Michal Simekca545022009-05-26 16:30:21 +0200521 /* where the trap should return need -8 to adjust for rtsd r15, 8 */
Michal Simekb9ea77e2010-07-28 12:40:02 +0200522 addik r15, r0, ret_from_exc-8
Michal Simekca545022009-05-26 16:30:21 +0200523 mfs r3, resr /* ESR */
Michal Simekca545022009-05-26 16:30:21 +0200524 mfs r4, rear /* EAR */
Michal Simekc318d482010-06-22 16:25:31 +0200525 rtbd r0, _unaligned_data_exception
Michal Simek6e835572011-01-31 15:10:04 +0100526 addik r7, r1, 0 /* parameter struct pt_regs * regs */
Michal Simekca545022009-05-26 16:30:21 +0200527
528/*
529 * Page fault traps.
530 *
531 * If the real exception handler (from hw_exception_handler.S) didn't find
532 * the mapping for the process, then we're thrown here to handle such situation.
533 *
534 * Trap entered via exceptions, so EE bit is set, and interrupts
535 * are masked. This is nice, means we don't have to CLI before state save
536 *
537 * Build a standard exception frame for TLB Access errors. All TLB exceptions
538 * will bail out to this point if they can't resolve the lightweight TLB fault.
539 *
540 * The C function called is in "arch/microblaze/mm/fault.c", declared as:
541 * void do_page_fault(struct pt_regs *regs,
542 * unsigned long address,
543 * unsigned long error_code)
544 */
545/* data and intruction trap - which is choose is resolved int fault.c */
546C_ENTRY(page_fault_data_trap):
Michal Simekca545022009-05-26 16:30:21 +0200547 SAVE_STATE /* Save registers.*/
Michal Simek06a54602010-06-22 16:22:01 +0200548 /* PC, before IRQ/trap - this is one instruction above */
Michal Simek6e835572011-01-31 15:10:04 +0100549 swi r17, r1, PT_PC;
Michal Simek06a54602010-06-22 16:22:01 +0200550 tovirt(r1,r1)
Michal Simekca545022009-05-26 16:30:21 +0200551 /* where the trap should return need -8 to adjust for rtsd r15, 8 */
Michal Simekb9ea77e2010-07-28 12:40:02 +0200552 addik r15, r0, ret_from_exc-8
Michal Simekca545022009-05-26 16:30:21 +0200553 mfs r6, rear /* parameter unsigned long address */
Michal Simekca545022009-05-26 16:30:21 +0200554 mfs r7, resr /* parameter unsigned long error_code */
Michal Simekc318d482010-06-22 16:25:31 +0200555 rted r0, do_page_fault
Michal Simek6e835572011-01-31 15:10:04 +0100556 addik r5, r1, 0 /* parameter struct pt_regs * regs */
Michal Simekca545022009-05-26 16:30:21 +0200557
558C_ENTRY(page_fault_instr_trap):
Michal Simekca545022009-05-26 16:30:21 +0200559 SAVE_STATE /* Save registers.*/
Michal Simek06a54602010-06-22 16:22:01 +0200560 /* PC, before IRQ/trap - this is one instruction above */
Michal Simek6e835572011-01-31 15:10:04 +0100561 swi r17, r1, PT_PC;
Michal Simek06a54602010-06-22 16:22:01 +0200562 tovirt(r1,r1)
Michal Simekca545022009-05-26 16:30:21 +0200563 /* where the trap should return need -8 to adjust for rtsd r15, 8 */
Michal Simekb9ea77e2010-07-28 12:40:02 +0200564 addik r15, r0, ret_from_exc-8
Michal Simekca545022009-05-26 16:30:21 +0200565 mfs r6, rear /* parameter unsigned long address */
Michal Simekca545022009-05-26 16:30:21 +0200566 ori r7, r0, 0 /* parameter unsigned long error_code */
Michal Simek9814cc12010-06-22 18:09:29 +0200567 rted r0, do_page_fault
Michal Simek6e835572011-01-31 15:10:04 +0100568 addik r5, r1, 0 /* parameter struct pt_regs * regs */
Michal Simekca545022009-05-26 16:30:21 +0200569
570/* Entry point used to return from an exception. */
571C_ENTRY(ret_from_exc):
Michal Simek6e835572011-01-31 15:10:04 +0100572 lwi r11, r1, PT_MODE;
Michal Simekca545022009-05-26 16:30:21 +0200573 bnei r11, 2f; /* See if returning to kernel mode, */
574 /* ... if so, skip resched &c. */
575
576 /* We're returning to user mode, so check for various conditions that
577 trigger rescheduling. */
Al Viroe9f92522012-04-29 04:43:50 -04005781:
Michal Simekb1d70c62010-01-22 10:24:06 +0100579 lwi r11, CURRENT_TASK, TS_THREAD_INFO; /* get thread info */
Al Viroe9f92522012-04-29 04:43:50 -0400580 lwi r19, r11, TI_FLAGS; /* get flags in thread info */
581 andi r11, r19, _TIF_NEED_RESCHED;
Michal Simekca545022009-05-26 16:30:21 +0200582 beqi r11, 5f;
583
584/* Call the scheduler before returning from a syscall/trap. */
585 bralid r15, schedule; /* Call scheduler */
586 nop; /* delay slot */
Al Viroe9f92522012-04-29 04:43:50 -0400587 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200588
589 /* Maybe handle a signal */
Al Viroe9f92522012-04-29 04:43:50 -04005905: andi r11, r19, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME;
591 beqi r11, 4f; /* Signals to handle, handle them */
Michal Simekca545022009-05-26 16:30:21 +0200592
593 /*
594 * Handle a signal return; Pending signals should be in r18.
595 *
596 * Not all registers are saved by the normal trap/interrupt entry
597 * points (for instance, call-saved registers (because the normal
598 * C-compiler calling sequence in the kernel makes sure they're
599 * preserved), and call-clobbered registers in the case of
600 * traps), but signal handlers may want to examine or change the
601 * complete register state. Here we save anything not saved by
602 * the normal entry sequence, so that it may be safely restored
Al Viro969a9612012-04-24 02:03:06 -0400603 * (in a possibly modified form) after do_notify_resume returns. */
Michal Simek6e835572011-01-31 15:10:04 +0100604 addik r5, r1, 0; /* Arg 1: struct pt_regs *regs */
Al Viro969a9612012-04-24 02:03:06 -0400605 bralid r15, do_notify_resume; /* Handle any signals */
Al Viro83140192012-04-24 02:21:18 -0400606 addi r6, r0, 0; /* Arg 2: int in_syscall */
Al Viroe9f92522012-04-29 04:43:50 -0400607 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200608
609/* Finally, return to user state. */
Al Viroe9f92522012-04-29 04:43:50 -04006104: set_bip; /* Ints masked for state restore */
Michal Simek8633beb2010-02-22 13:24:43 +0100611 swi CURRENT_TASK, r0, PER_CPU(CURRENT_SAVE); /* save current */
Michal Simekca545022009-05-26 16:30:21 +0200612 VM_OFF;
613 tophys(r1,r1);
614
Michal Simekca545022009-05-26 16:30:21 +0200615 RESTORE_REGS;
Michal Simek6e835572011-01-31 15:10:04 +0100616 addik r1, r1, PT_SIZE /* Clean up stack space. */
Michal Simekca545022009-05-26 16:30:21 +0200617
618 lwi r1, r1, PT_R1 - PT_SIZE; /* Restore user stack pointer. */
619 bri 6f;
620/* Return to kernel state. */
Michal Simek96014cc2010-06-22 14:05:43 +02006212: set_bip; /* Ints masked for state restore */
622 VM_OFF;
Michal Simekca545022009-05-26 16:30:21 +0200623 tophys(r1,r1);
Michal Simekca545022009-05-26 16:30:21 +0200624 RESTORE_REGS;
Michal Simek6e835572011-01-31 15:10:04 +0100625 addik r1, r1, PT_SIZE /* Clean up stack space. */
Michal Simekca545022009-05-26 16:30:21 +0200626
627 tovirt(r1,r1);
6286:
629EXC_return: /* Make global symbol for debugging */
630 rtbd r14, 0; /* Instructions to return from an IRQ */
631 nop;
632
633/*
634 * HW EXCEPTION rutine end
635 */
636
637/*
638 * Hardware maskable interrupts.
639 *
640 * The stack-pointer (r1) should have already been saved to the memory
641 * location PER_CPU(ENTRY_SP).
642 */
643C_ENTRY(_interrupt):
644/* MS: we are in physical address */
645/* Save registers, switch to proper stack, convert SP to virtual.*/
646 swi r1, r0, TOPHYS(PER_CPU(ENTRY_SP))
Michal Simekca545022009-05-26 16:30:21 +0200647 /* MS: See if already in kernel mode. */
Michal Simek653e4472010-06-22 14:51:45 +0200648 mfs r1, rmsr
Michal Simek5c0d72b2010-06-22 14:00:12 +0200649 nop
Michal Simek653e4472010-06-22 14:51:45 +0200650 andi r1, r1, MSR_UMS
651 bnei r1, 1f
Michal Simekca545022009-05-26 16:30:21 +0200652
653/* Kernel-mode state save. */
Michal Simek653e4472010-06-22 14:51:45 +0200654 lwi r1, r0, TOPHYS(PER_CPU(ENTRY_SP))
655 tophys(r1,r1); /* MS: I have in r1 physical address where stack is */
Michal Simekca545022009-05-26 16:30:21 +0200656 /* save registers */
657/* MS: Make room on the stack -> activation record */
Michal Simek6e835572011-01-31 15:10:04 +0100658 addik r1, r1, -PT_SIZE;
Michal Simekca545022009-05-26 16:30:21 +0200659 SAVE_REGS
Michal Simekca545022009-05-26 16:30:21 +0200660 brid 2f;
Michal Simek6e835572011-01-31 15:10:04 +0100661 swi r1, r1, PT_MODE; /* 0 - user mode, 1 - kernel mode */
Michal Simekca545022009-05-26 16:30:21 +02006621:
663/* User-mode state save. */
Michal Simekca545022009-05-26 16:30:21 +0200664 /* MS: get the saved current */
665 lwi r1, r0, TOPHYS(PER_CPU(CURRENT_SAVE));
666 tophys(r1,r1);
667 lwi r1, r1, TS_THREAD_INFO;
668 addik r1, r1, THREAD_SIZE;
669 tophys(r1,r1);
670 /* save registers */
Michal Simek6e835572011-01-31 15:10:04 +0100671 addik r1, r1, -PT_SIZE;
Michal Simekca545022009-05-26 16:30:21 +0200672 SAVE_REGS
673 /* calculate mode */
Michal Simek6e835572011-01-31 15:10:04 +0100674 swi r0, r1, PT_MODE;
Michal Simekca545022009-05-26 16:30:21 +0200675 lwi r11, r0, TOPHYS(PER_CPU(ENTRY_SP));
Michal Simek6e835572011-01-31 15:10:04 +0100676 swi r11, r1, PT_R1;
Michal Simek80c5ff62010-06-22 18:50:31 +0200677 clear_ums;
Michal Simekca545022009-05-26 16:30:21 +02006782:
Michal Simekb1d70c62010-01-22 10:24:06 +0100679 lwi CURRENT_TASK, r0, TOPHYS(PER_CPU(CURRENT_SAVE));
Michal Simekca545022009-05-26 16:30:21 +0200680 tovirt(r1,r1)
Michal Simekb9ea77e2010-07-28 12:40:02 +0200681 addik r15, r0, irq_call;
Michal Simek80c5ff62010-06-22 18:50:31 +0200682irq_call:rtbd r0, do_IRQ;
Michal Simek6e835572011-01-31 15:10:04 +0100683 addik r5, r1, 0;
Michal Simekca545022009-05-26 16:30:21 +0200684
685/* MS: we are in virtual mode */
686ret_from_irq:
Michal Simek6e835572011-01-31 15:10:04 +0100687 lwi r11, r1, PT_MODE;
Michal Simekca545022009-05-26 16:30:21 +0200688 bnei r11, 2f;
689
Al Viroe9f92522012-04-29 04:43:50 -04006901:
Michal Simekb1d70c62010-01-22 10:24:06 +0100691 lwi r11, CURRENT_TASK, TS_THREAD_INFO;
Al Viroe9f92522012-04-29 04:43:50 -0400692 lwi r19, r11, TI_FLAGS; /* MS: get flags from thread info */
693 andi r11, r19, _TIF_NEED_RESCHED;
Michal Simekca545022009-05-26 16:30:21 +0200694 beqi r11, 5f
695 bralid r15, schedule;
696 nop; /* delay slot */
Al Viroe9f92522012-04-29 04:43:50 -0400697 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200698
699 /* Maybe handle a signal */
Al Viroe9f92522012-04-29 04:43:50 -04007005: andi r11, r19, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME;
Michal Simekca545022009-05-26 16:30:21 +0200701 beqid r11, no_intr_resched
702/* Handle a signal return; Pending signals should be in r18. */
Michal Simek6e835572011-01-31 15:10:04 +0100703 addik r5, r1, 0; /* Arg 1: struct pt_regs *regs */
Al Viro969a9612012-04-24 02:03:06 -0400704 bralid r15, do_notify_resume; /* Handle any signals */
Al Viro83140192012-04-24 02:21:18 -0400705 addi r6, r0, 0; /* Arg 2: int in_syscall */
Al Viroe9f92522012-04-29 04:43:50 -0400706 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200707
708/* Finally, return to user state. */
709no_intr_resched:
710 /* Disable interrupts, we are now committed to the state restore */
711 disable_irq
Michal Simek8633beb2010-02-22 13:24:43 +0100712 swi CURRENT_TASK, r0, PER_CPU(CURRENT_SAVE);
Michal Simekca545022009-05-26 16:30:21 +0200713 VM_OFF;
714 tophys(r1,r1);
Michal Simekca545022009-05-26 16:30:21 +0200715 RESTORE_REGS
Michal Simek6e835572011-01-31 15:10:04 +0100716 addik r1, r1, PT_SIZE /* MS: Clean up stack space. */
Michal Simekca545022009-05-26 16:30:21 +0200717 lwi r1, r1, PT_R1 - PT_SIZE;
718 bri 6f;
719/* MS: Return to kernel state. */
Michal Simek77753792010-01-12 09:55:10 +01007202:
721#ifdef CONFIG_PREEMPT
Michal Simekb1d70c62010-01-22 10:24:06 +0100722 lwi r11, CURRENT_TASK, TS_THREAD_INFO;
Michal Simek77753792010-01-12 09:55:10 +0100723 /* MS: get preempt_count from thread info */
724 lwi r5, r11, TI_PREEMPT_COUNT;
725 bgti r5, restore;
726
727 lwi r5, r11, TI_FLAGS; /* get flags in thread info */
728 andi r5, r5, _TIF_NEED_RESCHED;
729 beqi r5, restore /* if zero jump over */
730
731preempt:
732 /* interrupts are off that's why I am calling preempt_chedule_irq */
733 bralid r15, preempt_schedule_irq
734 nop
Michal Simekb1d70c62010-01-22 10:24:06 +0100735 lwi r11, CURRENT_TASK, TS_THREAD_INFO; /* get thread info */
Michal Simek77753792010-01-12 09:55:10 +0100736 lwi r5, r11, TI_FLAGS; /* get flags in thread info */
737 andi r5, r5, _TIF_NEED_RESCHED;
738 bnei r5, preempt /* if non zero jump to resched */
739restore:
740#endif
741 VM_OFF /* MS: turn off MMU */
Michal Simekca545022009-05-26 16:30:21 +0200742 tophys(r1,r1)
Michal Simekca545022009-05-26 16:30:21 +0200743 RESTORE_REGS
Michal Simek6e835572011-01-31 15:10:04 +0100744 addik r1, r1, PT_SIZE /* MS: Clean up stack space. */
Michal Simekca545022009-05-26 16:30:21 +0200745 tovirt(r1,r1);
7466:
747IRQ_return: /* MS: Make global symbol for debugging */
748 rtid r14, 0
749 nop
750
751/*
Michal Simek2d5973c2010-08-03 11:45:08 +0200752 * Debug trap for KGDB. Enter to _debug_exception by brki r16, 0x18
753 * and call handling function with saved pt_regs
Michal Simekca545022009-05-26 16:30:21 +0200754 */
755C_ENTRY(_debug_exception):
756 /* BIP bit is set on entry, no interrupts can occur */
757 swi r1, r0, TOPHYS(PER_CPU(ENTRY_SP))
758
Michal Simek653e4472010-06-22 14:51:45 +0200759 mfs r1, rmsr
Michal Simek5c0d72b2010-06-22 14:00:12 +0200760 nop
Michal Simek653e4472010-06-22 14:51:45 +0200761 andi r1, r1, MSR_UMS
762 bnei r1, 1f
Michal Simek2d5973c2010-08-03 11:45:08 +0200763/* MS: Kernel-mode state save - kgdb */
Michal Simek653e4472010-06-22 14:51:45 +0200764 lwi r1, r0, TOPHYS(PER_CPU(ENTRY_SP)); /* Reload kernel stack-ptr*/
Michal Simekca545022009-05-26 16:30:21 +0200765
Michal Simek2d5973c2010-08-03 11:45:08 +0200766 /* BIP bit is set on entry, no interrupts can occur */
Michal Simek6e835572011-01-31 15:10:04 +0100767 addik r1, r1, CONFIG_KERNEL_BASE_ADDR - CONFIG_KERNEL_START - PT_SIZE;
Michal Simekca545022009-05-26 16:30:21 +0200768 SAVE_REGS;
Michal Simek2d5973c2010-08-03 11:45:08 +0200769 /* save all regs to pt_reg structure */
Michal Simek6e835572011-01-31 15:10:04 +0100770 swi r0, r1, PT_R0; /* R0 must be saved too */
771 swi r14, r1, PT_R14 /* rewrite saved R14 value */
772 swi r16, r1, PT_PC; /* PC and r16 are the same */
Michal Simek2d5973c2010-08-03 11:45:08 +0200773 /* save special purpose registers to pt_regs */
774 mfs r11, rear;
Michal Simek6e835572011-01-31 15:10:04 +0100775 swi r11, r1, PT_EAR;
Michal Simek2d5973c2010-08-03 11:45:08 +0200776 mfs r11, resr;
Michal Simek6e835572011-01-31 15:10:04 +0100777 swi r11, r1, PT_ESR;
Michal Simek2d5973c2010-08-03 11:45:08 +0200778 mfs r11, rfsr;
Michal Simek6e835572011-01-31 15:10:04 +0100779 swi r11, r1, PT_FSR;
Michal Simekca545022009-05-26 16:30:21 +0200780
Michal Simek2d5973c2010-08-03 11:45:08 +0200781 /* stack pointer is in physical address at it is decrease
Michal Simek6e835572011-01-31 15:10:04 +0100782 * by PT_SIZE but we need to get correct R1 value */
783 addik r11, r1, CONFIG_KERNEL_START - CONFIG_KERNEL_BASE_ADDR + PT_SIZE;
784 swi r11, r1, PT_R1
Michal Simek2d5973c2010-08-03 11:45:08 +0200785 /* MS: r31 - current pointer isn't changed */
786 tovirt(r1,r1)
787#ifdef CONFIG_KGDB
Michal Simek6e835572011-01-31 15:10:04 +0100788 addi r5, r1, 0 /* pass pt_reg address as the first arg */
Michal Simekcd341572011-02-01 09:00:57 +0100789 addik r15, r0, dbtrap_call; /* return address */
Michal Simek2d5973c2010-08-03 11:45:08 +0200790 rtbd r0, microblaze_kgdb_break
791 nop;
792#endif
793 /* MS: Place handler for brki from kernel space if KGDB is OFF.
794 * It is very unlikely that another brki instruction is called. */
795 bri 0
796
797/* MS: User-mode state save - gdb */
7981: lwi r1, r0, TOPHYS(PER_CPU(CURRENT_SAVE)); /* get saved current */
Michal Simekca545022009-05-26 16:30:21 +0200799 tophys(r1,r1);
800 lwi r1, r1, TS_THREAD_INFO; /* get the thread info */
801 addik r1, r1, THREAD_SIZE; /* calculate kernel stack pointer */
802 tophys(r1,r1);
803
Michal Simek6e835572011-01-31 15:10:04 +0100804 addik r1, r1, -PT_SIZE; /* Make room on the stack. */
Michal Simekca545022009-05-26 16:30:21 +0200805 SAVE_REGS;
Michal Simek6e835572011-01-31 15:10:04 +0100806 swi r16, r1, PT_PC; /* Save LP */
807 swi r0, r1, PT_MODE; /* Was in user-mode. */
Michal Simekca545022009-05-26 16:30:21 +0200808 lwi r11, r0, TOPHYS(PER_CPU(ENTRY_SP));
Michal Simek6e835572011-01-31 15:10:04 +0100809 swi r11, r1, PT_R1; /* Store user SP. */
Michal Simek2d5973c2010-08-03 11:45:08 +0200810 lwi CURRENT_TASK, r0, TOPHYS(PER_CPU(CURRENT_SAVE));
Michal Simekca545022009-05-26 16:30:21 +0200811 tovirt(r1,r1)
Michal Simek06b28642010-06-22 15:25:24 +0200812 set_vms;
Michal Simek6e835572011-01-31 15:10:04 +0100813 addik r5, r1, 0;
Michal Simekb9ea77e2010-07-28 12:40:02 +0200814 addik r15, r0, dbtrap_call;
Michal Simek2d5973c2010-08-03 11:45:08 +0200815dbtrap_call: /* Return point for kernel/user entry + 8 because of rtsd r15, 8 */
Michal Simek751f1602010-08-03 11:26:51 +0200816 rtbd r0, sw_exception
817 nop
Michal Simekca545022009-05-26 16:30:21 +0200818
Michal Simek2d5973c2010-08-03 11:45:08 +0200819 /* MS: The first instruction for the second part of the gdb/kgdb */
820 set_bip; /* Ints masked for state restore */
Michal Simek6e835572011-01-31 15:10:04 +0100821 lwi r11, r1, PT_MODE;
Michal Simekca545022009-05-26 16:30:21 +0200822 bnei r11, 2f;
Michal Simek2d5973c2010-08-03 11:45:08 +0200823/* MS: Return to user space - gdb */
Al Viroe9f92522012-04-29 04:43:50 -04008241:
Michal Simekca545022009-05-26 16:30:21 +0200825 /* Get current task ptr into r11 */
Michal Simekb1d70c62010-01-22 10:24:06 +0100826 lwi r11, CURRENT_TASK, TS_THREAD_INFO; /* get thread info */
Al Viroe9f92522012-04-29 04:43:50 -0400827 lwi r19, r11, TI_FLAGS; /* get flags in thread info */
828 andi r11, r19, _TIF_NEED_RESCHED;
Michal Simekca545022009-05-26 16:30:21 +0200829 beqi r11, 5f;
830
Michal Simek2d5973c2010-08-03 11:45:08 +0200831 /* Call the scheduler before returning from a syscall/trap. */
Michal Simekca545022009-05-26 16:30:21 +0200832 bralid r15, schedule; /* Call scheduler */
833 nop; /* delay slot */
Al Viroe9f92522012-04-29 04:43:50 -0400834 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200835
836 /* Maybe handle a signal */
Al Viroe9f92522012-04-29 04:43:50 -04008375: andi r11, r19, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME;
838 beqi r11, 4f; /* Signals to handle, handle them */
Michal Simekca545022009-05-26 16:30:21 +0200839
Michal Simek6e835572011-01-31 15:10:04 +0100840 addik r5, r1, 0; /* Arg 1: struct pt_regs *regs */
Al Viro969a9612012-04-24 02:03:06 -0400841 bralid r15, do_notify_resume; /* Handle any signals */
Al Viro83140192012-04-24 02:21:18 -0400842 addi r6, r0, 0; /* Arg 2: int in_syscall */
Al Viroe9f92522012-04-29 04:43:50 -0400843 bri 1b
Michal Simekca545022009-05-26 16:30:21 +0200844
Michal Simekca545022009-05-26 16:30:21 +0200845/* Finally, return to user state. */
Al Viroe9f92522012-04-29 04:43:50 -04008464: swi CURRENT_TASK, r0, PER_CPU(CURRENT_SAVE); /* save current */
Michal Simekca545022009-05-26 16:30:21 +0200847 VM_OFF;
848 tophys(r1,r1);
Michal Simek2d5973c2010-08-03 11:45:08 +0200849 /* MS: Restore all regs */
Michal Simekca545022009-05-26 16:30:21 +0200850 RESTORE_REGS
Michal Simek6e835572011-01-31 15:10:04 +0100851 addik r1, r1, PT_SIZE /* Clean up stack space */
Michal Simek2d5973c2010-08-03 11:45:08 +0200852 lwi r1, r1, PT_R1 - PT_SIZE; /* Restore user stack pointer */
853DBTRAP_return_user: /* MS: Make global symbol for debugging */
854 rtbd r16, 0; /* MS: Instructions to return from a debug trap */
855 nop;
Michal Simekca545022009-05-26 16:30:21 +0200856
Michal Simek2d5973c2010-08-03 11:45:08 +0200857/* MS: Return to kernel state - kgdb */
Michal Simekca545022009-05-26 16:30:21 +02008582: VM_OFF;
859 tophys(r1,r1);
Michal Simek2d5973c2010-08-03 11:45:08 +0200860 /* MS: Restore all regs */
Michal Simekca545022009-05-26 16:30:21 +0200861 RESTORE_REGS
Michal Simek6e835572011-01-31 15:10:04 +0100862 lwi r14, r1, PT_R14;
863 lwi r16, r1, PT_PC;
864 addik r1, r1, PT_SIZE; /* MS: Clean up stack space */
Michal Simekca545022009-05-26 16:30:21 +0200865 tovirt(r1,r1);
Michal Simek2d5973c2010-08-03 11:45:08 +0200866DBTRAP_return_kernel: /* MS: Make global symbol for debugging */
867 rtbd r16, 0; /* MS: Instructions to return from a debug trap */
Michal Simekca545022009-05-26 16:30:21 +0200868 nop;
869
870
Michal Simekca545022009-05-26 16:30:21 +0200871ENTRY(_switch_to)
872 /* prepare return value */
Michal Simekb1d70c62010-01-22 10:24:06 +0100873 addk r3, r0, CURRENT_TASK
Michal Simekca545022009-05-26 16:30:21 +0200874
875 /* save registers in cpu_context */
876 /* use r11 and r12, volatile registers, as temp register */
877 /* give start of cpu_context for previous process */
878 addik r11, r5, TI_CPU_CONTEXT
879 swi r1, r11, CC_R1
880 swi r2, r11, CC_R2
881 /* skip volatile registers.
882 * they are saved on stack when we jumped to _switch_to() */
883 /* dedicated registers */
884 swi r13, r11, CC_R13
885 swi r14, r11, CC_R14
886 swi r15, r11, CC_R15
887 swi r16, r11, CC_R16
888 swi r17, r11, CC_R17
889 swi r18, r11, CC_R18
890 /* save non-volatile registers */
891 swi r19, r11, CC_R19
892 swi r20, r11, CC_R20
893 swi r21, r11, CC_R21
894 swi r22, r11, CC_R22
895 swi r23, r11, CC_R23
896 swi r24, r11, CC_R24
897 swi r25, r11, CC_R25
898 swi r26, r11, CC_R26
899 swi r27, r11, CC_R27
900 swi r28, r11, CC_R28
901 swi r29, r11, CC_R29
902 swi r30, r11, CC_R30
903 /* special purpose registers */
904 mfs r12, rmsr
Michal Simekca545022009-05-26 16:30:21 +0200905 swi r12, r11, CC_MSR
906 mfs r12, rear
Michal Simekca545022009-05-26 16:30:21 +0200907 swi r12, r11, CC_EAR
908 mfs r12, resr
Michal Simekca545022009-05-26 16:30:21 +0200909 swi r12, r11, CC_ESR
910 mfs r12, rfsr
Michal Simekca545022009-05-26 16:30:21 +0200911 swi r12, r11, CC_FSR
912
Michal Simekb1d70c62010-01-22 10:24:06 +0100913 /* update r31, the current-give me pointer to task which will be next */
914 lwi CURRENT_TASK, r6, TI_TASK
Michal Simekca545022009-05-26 16:30:21 +0200915 /* stored it to current_save too */
Michal Simekb1d70c62010-01-22 10:24:06 +0100916 swi CURRENT_TASK, r0, PER_CPU(CURRENT_SAVE)
Michal Simekca545022009-05-26 16:30:21 +0200917
918 /* get new process' cpu context and restore */
919 /* give me start where start context of next task */
920 addik r11, r6, TI_CPU_CONTEXT
921
922 /* non-volatile registers */
923 lwi r30, r11, CC_R30
924 lwi r29, r11, CC_R29
925 lwi r28, r11, CC_R28
926 lwi r27, r11, CC_R27
927 lwi r26, r11, CC_R26
928 lwi r25, r11, CC_R25
929 lwi r24, r11, CC_R24
930 lwi r23, r11, CC_R23
931 lwi r22, r11, CC_R22
932 lwi r21, r11, CC_R21
933 lwi r20, r11, CC_R20
934 lwi r19, r11, CC_R19
935 /* dedicated registers */
936 lwi r18, r11, CC_R18
937 lwi r17, r11, CC_R17
938 lwi r16, r11, CC_R16
939 lwi r15, r11, CC_R15
940 lwi r14, r11, CC_R14
941 lwi r13, r11, CC_R13
942 /* skip volatile registers */
943 lwi r2, r11, CC_R2
944 lwi r1, r11, CC_R1
945
946 /* special purpose registers */
947 lwi r12, r11, CC_FSR
948 mts rfsr, r12
Michal Simekca545022009-05-26 16:30:21 +0200949 lwi r12, r11, CC_MSR
950 mts rmsr, r12
Michal Simekca545022009-05-26 16:30:21 +0200951
952 rtsd r15, 8
953 nop
954
955ENTRY(_reset)
Michal Simek75743492011-03-10 10:56:21 +0100956 brai 0; /* Jump to reset vector */
Michal Simekca545022009-05-26 16:30:21 +0200957
Michal Simekca545022009-05-26 16:30:21 +0200958 /* These are compiled and loaded into high memory, then
959 * copied into place in mach_early_setup */
960 .section .init.ivt, "ax"
Michal Simek0b9b0202010-11-08 12:37:40 +0100961#if CONFIG_MANUAL_RESET_VECTOR
Michal Simekca545022009-05-26 16:30:21 +0200962 .org 0x0
Michal Simek0b9b0202010-11-08 12:37:40 +0100963 brai CONFIG_MANUAL_RESET_VECTOR
964#endif
Michal Simek626afa32011-03-10 10:51:27 +0100965 .org 0x8
Michal Simekca545022009-05-26 16:30:21 +0200966 brai TOPHYS(_user_exception); /* syscall handler */
Michal Simek626afa32011-03-10 10:51:27 +0100967 .org 0x10
Michal Simekca545022009-05-26 16:30:21 +0200968 brai TOPHYS(_interrupt); /* Interrupt handler */
Michal Simek626afa32011-03-10 10:51:27 +0100969 .org 0x18
Michal Simek751f1602010-08-03 11:26:51 +0200970 brai TOPHYS(_debug_exception); /* debug trap handler */
Michal Simek626afa32011-03-10 10:51:27 +0100971 .org 0x20
Michal Simekca545022009-05-26 16:30:21 +0200972 brai TOPHYS(_hw_exception_handler); /* HW exception handler */
973
Michal Simekca545022009-05-26 16:30:21 +0200974.section .rodata,"a"
975#include "syscall_table.S"
976
977syscall_table_size=(.-sys_call_table)
978
Steven J. Magnanice3266c2010-04-27 12:37:54 -0500979type_SYSCALL:
980 .ascii "SYSCALL\0"
981type_IRQ:
982 .ascii "IRQ\0"
983type_IRQ_PREEMPT:
984 .ascii "IRQ (PREEMPTED)\0"
985type_SYSCALL_PREEMPT:
986 .ascii " SYSCALL (PREEMPTED)\0"
987
988 /*
989 * Trap decoding for stack unwinder
990 * Tuples are (start addr, end addr, string)
991 * If return address lies on [start addr, end addr],
992 * unwinder displays 'string'
993 */
994
995 .align 4
996.global microblaze_trap_handlers
997microblaze_trap_handlers:
998 /* Exact matches come first */
999 .word ret_from_trap; .word ret_from_trap ; .word type_SYSCALL
1000 .word ret_from_irq ; .word ret_from_irq ; .word type_IRQ
1001 /* Fuzzy matches go here */
1002 .word ret_from_irq ; .word no_intr_resched ; .word type_IRQ_PREEMPT
1003 .word ret_from_trap; .word TRAP_return ; .word type_SYSCALL_PREEMPT
1004 /* End of table */
1005 .word 0 ; .word 0 ; .word 0