blob: 63845f950792ce86f3acfa2f4d93d858171d8d0f [file] [log] [blame]
Chris Zankel5a0015d2005-06-23 22:01:16 -07001/*
2 * arch/xtensa/kernel/entry.S
3 *
4 * Low-level exception handling
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 *
Marc Gauthier2d1c6452013-01-05 04:57:17 +040010 * Copyright (C) 2004 - 2008 by Tensilica Inc.
Chris Zankel5a0015d2005-06-23 22:01:16 -070011 *
12 * Chris Zankel <chris@zankel.net>
13 *
14 */
15
16#include <linux/linkage.h>
Sam Ravnborg0013a852005-09-09 20:57:26 +020017#include <asm/asm-offsets.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070018#include <asm/processor.h>
Chris Zankel4573e392010-05-02 01:05:13 -070019#include <asm/coprocessor.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070020#include <asm/thread_info.h>
21#include <asm/uaccess.h>
22#include <asm/unistd.h>
23#include <asm/ptrace.h>
24#include <asm/current.h>
25#include <asm/pgtable.h>
26#include <asm/page.h>
27#include <asm/signal.h>
Chris Zankel173d6682006-12-10 02:18:48 -080028#include <asm/tlbflush.h>
Chris Zankel367b8112008-11-06 06:40:46 -080029#include <variant/tie-asm.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070030
31/* Unimplemented features. */
32
Chris Zankel5a0015d2005-06-23 22:01:16 -070033#undef KERNEL_STACK_OVERFLOW_CHECK
34#undef PREEMPTIBLE_KERNEL
35#undef ALLOCA_EXCEPTION_IN_IRAM
36
37/* Not well tested.
38 *
39 * - fast_coprocessor
40 */
41
42/*
43 * Macro to find first bit set in WINDOWBASE from the left + 1
44 *
45 * 100....0 -> 1
46 * 010....0 -> 2
47 * 000....1 -> WSBITS
48 */
49
50 .macro ffs_ws bit mask
51
52#if XCHAL_HAVE_NSA
53 nsau \bit, \mask # 32-WSBITS ... 31 (32 iff 0)
54 addi \bit, \bit, WSBITS - 32 + 1 # uppest bit set -> return 1
55#else
56 movi \bit, WSBITS
57#if WSBITS > 16
58 _bltui \mask, 0x10000, 99f
59 addi \bit, \bit, -16
60 extui \mask, \mask, 16, 16
61#endif
62#if WSBITS > 8
6399: _bltui \mask, 0x100, 99f
64 addi \bit, \bit, -8
65 srli \mask, \mask, 8
66#endif
6799: _bltui \mask, 0x10, 99f
68 addi \bit, \bit, -4
69 srli \mask, \mask, 4
7099: _bltui \mask, 0x4, 99f
71 addi \bit, \bit, -2
72 srli \mask, \mask, 2
7399: _bltui \mask, 0x2, 99f
74 addi \bit, \bit, -1
7599:
76
77#endif
78 .endm
79
80/* ----------------- DEFAULT FIRST LEVEL EXCEPTION HANDLERS ----------------- */
81
82/*
83 * First-level exception handler for user exceptions.
84 * Save some special registers, extra states and all registers in the AR
85 * register file that were in use in the user task, and jump to the common
86 * exception code.
87 * We save SAR (used to calculate WMASK), and WB and WS (we don't have to
88 * save them for kernel exceptions).
89 *
90 * Entry condition for user_exception:
91 *
92 * a0: trashed, original value saved on stack (PT_AREG0)
93 * a1: a1
94 * a2: new stack pointer, original value in depc
95 * a3: dispatch table
96 * depc: a2, original value saved on stack (PT_DEPC)
97 * excsave1: a3
98 *
99 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
100 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
101 *
102 * Entry condition for _user_exception:
103 *
104 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
105 * excsave has been restored, and
106 * stack pointer (a1) has been set.
107 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800108 * Note: _user_exception might be at an odd address. Don't use call0..call12
Chris Zankel5a0015d2005-06-23 22:01:16 -0700109 */
110
111ENTRY(user_exception)
112
113 /* Save a2, a3, and depc, restore excsave_1 and set SP. */
114
Max Filippovbc5378f2012-10-15 03:55:38 +0400115 xsr a3, excsave1
116 rsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700117 s32i a1, a2, PT_AREG1
118 s32i a0, a2, PT_AREG2
119 s32i a3, a2, PT_AREG3
120 mov a1, a2
121
122 .globl _user_exception
123_user_exception:
124
125 /* Save SAR and turn off single stepping */
126
127 movi a2, 0
Max Filippovbc5378f2012-10-15 03:55:38 +0400128 rsr a3, sar
129 xsr a2, icountlevel
Chris Zankel5a0015d2005-06-23 22:01:16 -0700130 s32i a3, a1, PT_SAR
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700131 s32i a2, a1, PT_ICOUNTLEVEL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700132
Chris Zankelc50842d2013-02-23 19:35:57 -0800133#if XCHAL_HAVE_THREADPTR
134 rur a2, threadptr
135 s32i a2, a1, PT_THREADPTR
136#endif
137
Chris Zankel5a0015d2005-06-23 22:01:16 -0700138 /* Rotate ws so that the current windowbase is at bit0. */
139 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
140
Max Filippovbc5378f2012-10-15 03:55:38 +0400141 rsr a2, windowbase
142 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -0700143 ssr a2
144 s32i a2, a1, PT_WINDOWBASE
145 s32i a3, a1, PT_WINDOWSTART
146 slli a2, a3, 32-WSBITS
147 src a2, a3, a2
148 srli a2, a2, 32-WSBITS
149 s32i a2, a1, PT_WMASK # needed for restoring registers
150
151 /* Save only live registers. */
152
153 _bbsi.l a2, 1, 1f
154 s32i a4, a1, PT_AREG4
155 s32i a5, a1, PT_AREG5
156 s32i a6, a1, PT_AREG6
157 s32i a7, a1, PT_AREG7
158 _bbsi.l a2, 2, 1f
159 s32i a8, a1, PT_AREG8
160 s32i a9, a1, PT_AREG9
161 s32i a10, a1, PT_AREG10
162 s32i a11, a1, PT_AREG11
163 _bbsi.l a2, 3, 1f
164 s32i a12, a1, PT_AREG12
165 s32i a13, a1, PT_AREG13
166 s32i a14, a1, PT_AREG14
167 s32i a15, a1, PT_AREG15
168 _bnei a2, 1, 1f # only one valid frame?
169
170 /* Only one valid frame, skip saving regs. */
171
172 j 2f
173
174 /* Save the remaining registers.
175 * We have to save all registers up to the first '1' from
176 * the right, except the current frame (bit 0).
177 * Assume a2 is: 001001000110001
Chris Zankel66569202007-08-22 10:14:51 -0700178 * All register frames starting from the top field to the marked '1'
Chris Zankel5a0015d2005-06-23 22:01:16 -0700179 * must be saved.
180 */
181
1821: addi a3, a2, -1 # eliminate '1' in bit 0: yyyyxxww0
183 neg a3, a3 # yyyyxxww0 -> YYYYXXWW1+1
184 and a3, a3, a2 # max. only one bit is set
185
186 /* Find number of frames to save */
187
188 ffs_ws a0, a3 # number of frames to the '1' from left
189
190 /* Store information into WMASK:
191 * bits 0..3: xxx1 masked lower 4 bits of the rotated windowstart,
192 * bits 4...: number of valid 4-register frames
193 */
194
195 slli a3, a0, 4 # number of frames to save in bits 8..4
196 extui a2, a2, 0, 4 # mask for the first 16 registers
197 or a2, a3, a2
198 s32i a2, a1, PT_WMASK # needed when we restore the reg-file
199
200 /* Save 4 registers at a time */
201
2021: rotw -1
203 s32i a0, a5, PT_AREG_END - 16
204 s32i a1, a5, PT_AREG_END - 12
205 s32i a2, a5, PT_AREG_END - 8
206 s32i a3, a5, PT_AREG_END - 4
207 addi a0, a4, -1
208 addi a1, a5, -16
209 _bnez a0, 1b
210
211 /* WINDOWBASE still in SAR! */
212
Max Filippovbc5378f2012-10-15 03:55:38 +0400213 rsr a2, sar # original WINDOWBASE
Chris Zankel5a0015d2005-06-23 22:01:16 -0700214 movi a3, 1
215 ssl a2
216 sll a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +0400217 wsr a3, windowstart # set corresponding WINDOWSTART bit
218 wsr a2, windowbase # and WINDOWSTART
Chris Zankel5a0015d2005-06-23 22:01:16 -0700219 rsync
220
221 /* We are back to the original stack pointer (a1) */
222
Chris Zankelc658eac2008-02-12 13:17:07 -08002232: /* Now, jump to the common exception handler. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700224
225 j common_exception
226
Chris Zankeld1538c42012-11-16 16:16:20 -0800227ENDPROC(user_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700228
229/*
230 * First-level exit handler for kernel exceptions
231 * Save special registers and the live window frame.
232 * Note: Even though we changes the stack pointer, we don't have to do a
233 * MOVSP here, as we do that when we return from the exception.
234 * (See comment in the kernel exception exit code)
235 *
236 * Entry condition for kernel_exception:
237 *
238 * a0: trashed, original value saved on stack (PT_AREG0)
239 * a1: a1
240 * a2: new stack pointer, original in DEPC
241 * a3: dispatch table
242 * depc: a2, original value saved on stack (PT_DEPC)
243 * excsave_1: a3
244 *
245 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
246 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
247 *
248 * Entry condition for _kernel_exception:
249 *
250 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
251 * excsave has been restored, and
252 * stack pointer (a1) has been set.
253 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800254 * Note: _kernel_exception might be at an odd address. Don't use call0..call12
Chris Zankel5a0015d2005-06-23 22:01:16 -0700255 */
256
257ENTRY(kernel_exception)
258
259 /* Save a0, a2, a3, DEPC and set SP. */
260
Max Filippovbc5378f2012-10-15 03:55:38 +0400261 xsr a3, excsave1 # restore a3, excsave_1
262 rsr a0, depc # get a2
Chris Zankel5a0015d2005-06-23 22:01:16 -0700263 s32i a1, a2, PT_AREG1
264 s32i a0, a2, PT_AREG2
265 s32i a3, a2, PT_AREG3
266 mov a1, a2
267
268 .globl _kernel_exception
269_kernel_exception:
270
271 /* Save SAR and turn off single stepping */
272
273 movi a2, 0
Max Filippovbc5378f2012-10-15 03:55:38 +0400274 rsr a3, sar
275 xsr a2, icountlevel
Chris Zankel5a0015d2005-06-23 22:01:16 -0700276 s32i a3, a1, PT_SAR
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700277 s32i a2, a1, PT_ICOUNTLEVEL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700278
279 /* Rotate ws so that the current windowbase is at bit0. */
280 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
281
Max Filippovbc5378f2012-10-15 03:55:38 +0400282 rsr a2, windowbase # don't need to save these, we only
283 rsr a3, windowstart # need shifted windowstart: windowmask
Chris Zankel5a0015d2005-06-23 22:01:16 -0700284 ssr a2
285 slli a2, a3, 32-WSBITS
286 src a2, a3, a2
287 srli a2, a2, 32-WSBITS
288 s32i a2, a1, PT_WMASK # needed for kernel_exception_exit
289
290 /* Save only the live window-frame */
291
292 _bbsi.l a2, 1, 1f
293 s32i a4, a1, PT_AREG4
294 s32i a5, a1, PT_AREG5
295 s32i a6, a1, PT_AREG6
296 s32i a7, a1, PT_AREG7
297 _bbsi.l a2, 2, 1f
298 s32i a8, a1, PT_AREG8
299 s32i a9, a1, PT_AREG9
300 s32i a10, a1, PT_AREG10
301 s32i a11, a1, PT_AREG11
302 _bbsi.l a2, 3, 1f
303 s32i a12, a1, PT_AREG12
304 s32i a13, a1, PT_AREG13
305 s32i a14, a1, PT_AREG14
306 s32i a15, a1, PT_AREG15
307
3081:
309
310#ifdef KERNEL_STACK_OVERFLOW_CHECK
311
312 /* Stack overflow check, for debugging */
313 extui a2, a1, TASK_SIZE_BITS,XX
314 movi a3, SIZE??
315 _bge a2, a3, out_of_stack_panic
316
317#endif
318
319/*
320 * This is the common exception handler.
321 * We get here from the user exception handler or simply by falling through
322 * from the kernel exception handler.
323 * Save the remaining special registers, switch to kernel mode, and jump
324 * to the second-level exception handler.
325 *
326 */
327
328common_exception:
329
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700330 /* Save some registers, disable loops and clear the syscall flag. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700331
Max Filippovbc5378f2012-10-15 03:55:38 +0400332 rsr a2, debugcause
333 rsr a3, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700334 s32i a2, a1, PT_DEBUGCAUSE
335 s32i a3, a1, PT_PC
336
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700337 movi a2, -1
Max Filippovbc5378f2012-10-15 03:55:38 +0400338 rsr a3, excvaddr
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700339 s32i a2, a1, PT_SYSCALL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700340 movi a2, 0
341 s32i a3, a1, PT_EXCVADDR
Max Filippovbc5378f2012-10-15 03:55:38 +0400342 xsr a2, lcount
Chris Zankel5a0015d2005-06-23 22:01:16 -0700343 s32i a2, a1, PT_LCOUNT
344
345 /* It is now save to restore the EXC_TABLE_FIXUP variable. */
346
Max Filippovbc5378f2012-10-15 03:55:38 +0400347 rsr a0, exccause
Chris Zankel5a0015d2005-06-23 22:01:16 -0700348 movi a3, 0
Max Filippovbc5378f2012-10-15 03:55:38 +0400349 rsr a2, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700350 s32i a0, a1, PT_EXCCAUSE
351 s32i a3, a2, EXC_TABLE_FIXUP
352
353 /* All unrecoverable states are saved on stack, now, and a1 is valid,
354 * so we can allow exceptions and interrupts (*) again.
355 * Set PS(EXCM = 0, UM = 0, RING = 0, OWB = 0, WOE = 1, INTLEVEL = X)
356 *
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400357 * (*) We only allow interrupts of higher priority than current IRQ
Chris Zankel5a0015d2005-06-23 22:01:16 -0700358 */
359
Max Filippovbc5378f2012-10-15 03:55:38 +0400360 rsr a3, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700361 addi a0, a0, -4
362 movi a2, 1
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400363 extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
364 # a3 = PS.INTLEVEL
365 movnez a2, a3, a3 # a2 = 1: level-1, > 1: high priority
366 moveqz a3, a2, a0 # a3 = IRQ level iff interrupt
Chris Zankel173d6682006-12-10 02:18:48 -0800367 movi a2, 1 << PS_WOE_BIT
Chris Zankel5a0015d2005-06-23 22:01:16 -0700368 or a3, a3, a2
Max Filippovbc5378f2012-10-15 03:55:38 +0400369 rsr a0, exccause
370 xsr a3, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700371
372 s32i a3, a1, PT_PS # save ps
373
Max Filippovbc5378f2012-10-15 03:55:38 +0400374 /* Save lbeg, lend */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700375
Max Filippovbc5378f2012-10-15 03:55:38 +0400376 rsr a2, lbeg
377 rsr a3, lend
Chris Zankel5a0015d2005-06-23 22:01:16 -0700378 s32i a2, a1, PT_LBEG
379 s32i a3, a1, PT_LEND
380
Max Filippov733536b2012-11-15 06:25:48 +0400381 /* Save SCOMPARE1 */
382
383#if XCHAL_HAVE_S32C1I
384 rsr a2, scompare1
385 s32i a2, a1, PT_SCOMPARE1
386#endif
387
Chris Zankelc658eac2008-02-12 13:17:07 -0800388 /* Save optional registers. */
389
390 save_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
391
Chris Zankel5a0015d2005-06-23 22:01:16 -0700392 /* Go to second-level dispatcher. Set up parameters to pass to the
393 * exception handler and call the exception handler.
394 */
395
396 movi a4, exc_table
397 mov a6, a1 # pass stack frame
398 mov a7, a0 # pass EXCCAUSE
399 addx4 a4, a0, a4
400 l32i a4, a4, EXC_TABLE_DEFAULT # load handler
401
402 /* Call the second-level handler */
403
404 callx4 a4
405
406 /* Jump here for exception exit */
danne6ffe172008-05-21 17:43:50 -0700407 .global common_exception_return
Chris Zankel5a0015d2005-06-23 22:01:16 -0700408common_exception_return:
409
410 /* Jump if we are returning from kernel exceptions. */
411
4121: l32i a3, a1, PT_PS
Chris Zankele1088432008-01-22 00:45:25 -0800413 _bbci.l a3, PS_UM_BIT, 4f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700414
415 /* Specific to a user exception exit:
416 * We need to check some flags for signal handling and rescheduling,
417 * and have to restore WB and WS, extra states, and all registers
418 * in the register file that were in use in the user task.
Chris Zankele1088432008-01-22 00:45:25 -0800419 * Note that we don't disable interrupts here.
Chris Zankel5a0015d2005-06-23 22:01:16 -0700420 */
421
422 GET_THREAD_INFO(a2,a1)
423 l32i a4, a2, TI_FLAGS
424
Chris Zankel5a0015d2005-06-23 22:01:16 -0700425 _bbsi.l a4, TIF_NEED_RESCHED, 3f
Al Viroa53bb242012-04-24 02:30:16 -0400426 _bbsi.l a4, TIF_NOTIFY_RESUME, 2f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700427 _bbci.l a4, TIF_SIGPENDING, 4f
428
Al Viroa53bb242012-04-24 02:30:16 -04004292: l32i a4, a1, PT_DEPC
Chris Zankel5a0015d2005-06-23 22:01:16 -0700430 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700431
Chris Zankele1088432008-01-22 00:45:25 -0800432 /* Call do_signal() */
433
Al Viroa53bb242012-04-24 02:30:16 -0400434 movi a4, do_notify_resume # int do_notify_resume(struct pt_regs*)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700435 mov a6, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700436 callx4 a4
437 j 1b
438
Chris Zankele1088432008-01-22 00:45:25 -08004393: /* Reschedule */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700440
Chris Zankel5a0015d2005-06-23 22:01:16 -0700441 movi a4, schedule # void schedule (void)
442 callx4 a4
443 j 1b
444
Chris Zankele1088432008-01-22 00:45:25 -08004454: /* Restore optional registers. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700446
Chris Zankele1088432008-01-22 00:45:25 -0800447 load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
448
Max Filippov733536b2012-11-15 06:25:48 +0400449 /* Restore SCOMPARE1 */
450
451#if XCHAL_HAVE_S32C1I
452 l32i a2, a1, PT_SCOMPARE1
453 wsr a2, scompare1
454#endif
Max Filippovbc5378f2012-10-15 03:55:38 +0400455 wsr a3, ps /* disable interrupts */
Chris Zankele1088432008-01-22 00:45:25 -0800456
457 _bbci.l a3, PS_UM_BIT, kernel_exception_exit
458
459user_exception_exit:
460
461 /* Restore the state of the task and return from the exception. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700462
Chris Zankel5a0015d2005-06-23 22:01:16 -0700463 /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */
464
465 l32i a2, a1, PT_WINDOWBASE
466 l32i a3, a1, PT_WINDOWSTART
Max Filippovbc5378f2012-10-15 03:55:38 +0400467 wsr a1, depc # use DEPC as temp storage
468 wsr a3, windowstart # restore WINDOWSTART
Chris Zankel5a0015d2005-06-23 22:01:16 -0700469 ssr a2 # preserve user's WB in the SAR
Max Filippovbc5378f2012-10-15 03:55:38 +0400470 wsr a2, windowbase # switch to user's saved WB
Chris Zankel5a0015d2005-06-23 22:01:16 -0700471 rsync
Max Filippovbc5378f2012-10-15 03:55:38 +0400472 rsr a1, depc # restore stack pointer
Chris Zankel5a0015d2005-06-23 22:01:16 -0700473 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
474 rotw -1 # we restore a4..a7
475 _bltui a6, 16, 1f # only have to restore current window?
476
477 /* The working registers are a0 and a3. We are restoring to
478 * a4..a7. Be careful not to destroy what we have just restored.
479 * Note: wmask has the format YYYYM:
480 * Y: number of registers saved in groups of 4
481 * M: 4 bit mask of first 16 registers
482 */
483
484 mov a2, a6
485 mov a3, a5
486
4872: rotw -1 # a0..a3 become a4..a7
488 addi a3, a7, -4*4 # next iteration
489 addi a2, a6, -16 # decrementing Y in WMASK
490 l32i a4, a3, PT_AREG_END + 0
491 l32i a5, a3, PT_AREG_END + 4
492 l32i a6, a3, PT_AREG_END + 8
493 l32i a7, a3, PT_AREG_END + 12
494 _bgeui a2, 16, 2b
495
496 /* Clear unrestored registers (don't leak anything to user-land */
497
Max Filippovbc5378f2012-10-15 03:55:38 +04004981: rsr a0, windowbase
499 rsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -0700500 sub a3, a0, a3
501 beqz a3, 2f
502 extui a3, a3, 0, WBBITS
503
5041: rotw -1
505 addi a3, a7, -1
506 movi a4, 0
507 movi a5, 0
508 movi a6, 0
509 movi a7, 0
510 bgei a3, 1, 1b
511
512 /* We are back were we were when we started.
513 * Note: a2 still contains WMASK (if we've returned to the original
514 * frame where we had loaded a2), or at least the lower 4 bits
515 * (if we have restored WSBITS-1 frames).
516 */
517
Chris Zankelc50842d2013-02-23 19:35:57 -0800518#if XCHAL_HAVE_THREADPTR
519 l32i a3, a1, PT_THREADPTR
520 wur a3, threadptr
521#endif
522
Chris Zankel5a0015d2005-06-23 22:01:16 -07005232: j common_exception_exit
524
525 /* This is the kernel exception exit.
526 * We avoided to do a MOVSP when we entered the exception, but we
527 * have to do it here.
528 */
529
530kernel_exception_exit:
531
Chris Zankel5a0015d2005-06-23 22:01:16 -0700532#ifdef PREEMPTIBLE_KERNEL
533
534#ifdef CONFIG_PREEMPT
535
536 /*
537 * Note: We've just returned from a call4, so we have
538 * at least 4 addt'l regs.
539 */
540
541 /* Check current_thread_info->preempt_count */
542
543 GET_THREAD_INFO(a2)
544 l32i a3, a2, TI_PREEMPT
545 bnez a3, 1f
546
547 l32i a2, a2, TI_FLAGS
548
5491:
550
551#endif
552
553#endif
554
555 /* Check if we have to do a movsp.
556 *
557 * We only have to do a movsp if the previous window-frame has
558 * been spilled to the *temporary* exception stack instead of the
559 * task's stack. This is the case if the corresponding bit in
560 * WINDOWSTART for the previous window-frame was set before
561 * (not spilled) but is zero now (spilled).
562 * If this bit is zero, all other bits except the one for the
563 * current window frame are also zero. So, we can use a simple test:
564 * 'and' WINDOWSTART and WINDOWSTART-1:
565 *
566 * (XXXXXX1[0]* - 1) AND XXXXXX1[0]* = XXXXXX0[0]*
567 *
568 * The result is zero only if one bit was set.
569 *
570 * (Note: We might have gone through several task switches before
571 * we come back to the current task, so WINDOWBASE might be
572 * different from the time the exception occurred.)
573 */
574
575 /* Test WINDOWSTART before and after the exception.
576 * We actually have WMASK, so we only have to test if it is 1 or not.
577 */
578
579 l32i a2, a1, PT_WMASK
580 _beqi a2, 1, common_exception_exit # Spilled before exception,jump
581
582 /* Test WINDOWSTART now. If spilled, do the movsp */
583
Max Filippovbc5378f2012-10-15 03:55:38 +0400584 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -0700585 addi a0, a3, -1
586 and a3, a3, a0
587 _bnez a3, common_exception_exit
588
589 /* Do a movsp (we returned from a call4, so we have at least a0..a7) */
590
591 addi a0, a1, -16
592 l32i a3, a0, 0
593 l32i a4, a0, 4
594 s32i a3, a1, PT_SIZE+0
595 s32i a4, a1, PT_SIZE+4
596 l32i a3, a0, 8
597 l32i a4, a0, 12
598 s32i a3, a1, PT_SIZE+8
599 s32i a4, a1, PT_SIZE+12
600
601 /* Common exception exit.
602 * We restore the special register and the current window frame, and
603 * return from the exception.
604 *
605 * Note: We expect a2 to hold PT_WMASK
606 */
607
608common_exception_exit:
609
Chris Zankelc658eac2008-02-12 13:17:07 -0800610 /* Restore address registers. */
611
Chris Zankel5a0015d2005-06-23 22:01:16 -0700612 _bbsi.l a2, 1, 1f
613 l32i a4, a1, PT_AREG4
614 l32i a5, a1, PT_AREG5
615 l32i a6, a1, PT_AREG6
616 l32i a7, a1, PT_AREG7
617 _bbsi.l a2, 2, 1f
618 l32i a8, a1, PT_AREG8
619 l32i a9, a1, PT_AREG9
620 l32i a10, a1, PT_AREG10
621 l32i a11, a1, PT_AREG11
622 _bbsi.l a2, 3, 1f
623 l32i a12, a1, PT_AREG12
624 l32i a13, a1, PT_AREG13
625 l32i a14, a1, PT_AREG14
626 l32i a15, a1, PT_AREG15
627
628 /* Restore PC, SAR */
629
6301: l32i a2, a1, PT_PC
631 l32i a3, a1, PT_SAR
Max Filippovbc5378f2012-10-15 03:55:38 +0400632 wsr a2, epc1
633 wsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -0700634
635 /* Restore LBEG, LEND, LCOUNT */
636
637 l32i a2, a1, PT_LBEG
638 l32i a3, a1, PT_LEND
Max Filippovbc5378f2012-10-15 03:55:38 +0400639 wsr a2, lbeg
Chris Zankel5a0015d2005-06-23 22:01:16 -0700640 l32i a2, a1, PT_LCOUNT
Max Filippovbc5378f2012-10-15 03:55:38 +0400641 wsr a3, lend
642 wsr a2, lcount
Chris Zankel5a0015d2005-06-23 22:01:16 -0700643
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700644 /* We control single stepping through the ICOUNTLEVEL register. */
645
646 l32i a2, a1, PT_ICOUNTLEVEL
647 movi a3, -2
Max Filippovbc5378f2012-10-15 03:55:38 +0400648 wsr a2, icountlevel
649 wsr a3, icount
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700650
Chris Zankel5a0015d2005-06-23 22:01:16 -0700651 /* Check if it was double exception. */
652
653 l32i a0, a1, PT_DEPC
654 l32i a3, a1, PT_AREG3
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400655 _bltui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700656
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400657 wsr a0, depc
658 l32i a2, a1, PT_AREG2
659 l32i a0, a1, PT_AREG0
660 l32i a1, a1, PT_AREG1
661 rfde
662
6631:
Chris Zankel5a0015d2005-06-23 22:01:16 -0700664 /* Restore a0...a3 and return */
665
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400666 rsr a0, ps
667 extui a2, a0, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
668 movi a0, 2f
669 slli a2, a2, 4
670 add a0, a2, a0
671 l32i a2, a1, PT_AREG2
672 jx a0
673
674 .macro irq_exit_level level
675 .align 16
676 .if XCHAL_EXCM_LEVEL >= \level
677 l32i a0, a1, PT_PC
678 wsr a0, epc\level
679 l32i a0, a1, PT_AREG0
680 l32i a1, a1, PT_AREG1
681 rfi \level
682 .endif
683 .endm
684
685 .align 16
6862:
Chris Zankel5a0015d2005-06-23 22:01:16 -0700687 l32i a0, a1, PT_AREG0
688 l32i a1, a1, PT_AREG1
689 rfe
690
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400691 .align 16
692 /* no rfi for level-1 irq, handled by rfe above*/
693 nop
694
695 irq_exit_level 2
696 irq_exit_level 3
697 irq_exit_level 4
698 irq_exit_level 5
699 irq_exit_level 6
Chris Zankel5a0015d2005-06-23 22:01:16 -0700700
Chris Zankeld1538c42012-11-16 16:16:20 -0800701ENDPROC(kernel_exception)
702
Chris Zankel5a0015d2005-06-23 22:01:16 -0700703/*
704 * Debug exception handler.
705 *
706 * Currently, we don't support KGDB, so only user application can be debugged.
707 *
708 * When we get here, a0 is trashed and saved to excsave[debuglevel]
709 */
710
711ENTRY(debug_exception)
712
Max Filippovbc5378f2012-10-15 03:55:38 +0400713 rsr a0, SREG_EPS + XCHAL_DEBUGLEVEL
Chris Zankel173d6682006-12-10 02:18:48 -0800714 bbsi.l a0, PS_EXCM_BIT, 1f # exception mode
Chris Zankel5a0015d2005-06-23 22:01:16 -0700715
Max Filippovbc5378f2012-10-15 03:55:38 +0400716 /* Set EPC1 and EXCCAUSE */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700717
Max Filippovbc5378f2012-10-15 03:55:38 +0400718 wsr a2, depc # save a2 temporarily
719 rsr a2, SREG_EPC + XCHAL_DEBUGLEVEL
720 wsr a2, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700721
722 movi a2, EXCCAUSE_MAPPED_DEBUG
Max Filippovbc5378f2012-10-15 03:55:38 +0400723 wsr a2, exccause
Chris Zankel5a0015d2005-06-23 22:01:16 -0700724
725 /* Restore PS to the value before the debug exc but with PS.EXCM set.*/
726
Chris Zankel173d6682006-12-10 02:18:48 -0800727 movi a2, 1 << PS_EXCM_BIT
Chris Zankel5a0015d2005-06-23 22:01:16 -0700728 or a2, a0, a2
729 movi a0, debug_exception # restore a3, debug jump vector
Max Filippovbc5378f2012-10-15 03:55:38 +0400730 wsr a2, ps
731 xsr a0, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700732
733 /* Switch to kernel/user stack, restore jump vector, and save a0 */
734
Chris Zankel173d6682006-12-10 02:18:48 -0800735 bbsi.l a2, PS_UM_BIT, 2f # jump if user mode
Chris Zankel5a0015d2005-06-23 22:01:16 -0700736
737 addi a2, a1, -16-PT_SIZE # assume kernel stack
738 s32i a0, a2, PT_AREG0
739 movi a0, 0
740 s32i a1, a2, PT_AREG1
741 s32i a0, a2, PT_DEPC # mark it as a regular exception
Max Filippovbc5378f2012-10-15 03:55:38 +0400742 xsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700743 s32i a3, a2, PT_AREG3
744 s32i a0, a2, PT_AREG2
745 mov a1, a2
746 j _kernel_exception
747
Max Filippovbc5378f2012-10-15 03:55:38 +04007482: rsr a2, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700749 l32i a2, a2, EXC_TABLE_KSTK # load kernel stack pointer
750 s32i a0, a2, PT_AREG0
751 movi a0, 0
752 s32i a1, a2, PT_AREG1
753 s32i a0, a2, PT_DEPC
Max Filippovbc5378f2012-10-15 03:55:38 +0400754 xsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700755 s32i a3, a2, PT_AREG3
756 s32i a0, a2, PT_AREG2
757 mov a1, a2
758 j _user_exception
759
760 /* Debug exception while in exception mode. */
7611: j 1b // FIXME!!
762
Chris Zankeld1538c42012-11-16 16:16:20 -0800763ENDPROC(debug_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700764
765/*
766 * We get here in case of an unrecoverable exception.
767 * The only thing we can do is to be nice and print a panic message.
768 * We only produce a single stack frame for panic, so ???
769 *
770 *
771 * Entry conditions:
772 *
773 * - a0 contains the caller address; original value saved in excsave1.
774 * - the original a0 contains a valid return address (backtrace) or 0.
775 * - a2 contains a valid stackpointer
776 *
777 * Notes:
778 *
779 * - If the stack pointer could be invalid, the caller has to setup a
780 * dummy stack pointer (e.g. the stack of the init_task)
781 *
782 * - If the return address could be invalid, the caller has to set it
783 * to 0, so the backtrace would stop.
784 *
785 */
786 .align 4
787unrecoverable_text:
788 .ascii "Unrecoverable error in exception handler\0"
789
790ENTRY(unrecoverable_exception)
791
792 movi a0, 1
793 movi a1, 0
794
Max Filippovbc5378f2012-10-15 03:55:38 +0400795 wsr a0, windowstart
796 wsr a1, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -0700797 rsync
798
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400799 movi a1, (1 << PS_WOE_BIT) | LOCKLEVEL
Max Filippovbc5378f2012-10-15 03:55:38 +0400800 wsr a1, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700801 rsync
802
803 movi a1, init_task
804 movi a0, 0
805 addi a1, a1, PT_REGS_OFFSET
806
807 movi a4, panic
808 movi a6, unrecoverable_text
809
810 callx4 a4
811
8121: j 1b
813
Chris Zankeld1538c42012-11-16 16:16:20 -0800814ENDPROC(unrecoverable_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700815
816/* -------------------------- FAST EXCEPTION HANDLERS ----------------------- */
817
818/*
819 * Fast-handler for alloca exceptions
820 *
821 * The ALLOCA handler is entered when user code executes the MOVSP
822 * instruction and the caller's frame is not in the register file.
823 * In this case, the caller frame's a0..a3 are on the stack just
824 * below sp (a1), and this handler moves them.
825 *
826 * For "MOVSP <ar>,<as>" without destination register a1, this routine
827 * simply moves the value from <as> to <ar> without moving the save area.
828 *
829 * Entry condition:
830 *
831 * a0: trashed, original value saved on stack (PT_AREG0)
832 * a1: a1
833 * a2: new stack pointer, original in DEPC
834 * a3: dispatch table
835 * depc: a2, original value saved on stack (PT_DEPC)
836 * excsave_1: a3
837 *
838 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
839 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
840 */
841
842#if XCHAL_HAVE_BE
843#define _EXTUI_MOVSP_SRC(ar) extui ar, ar, 4, 4
844#define _EXTUI_MOVSP_DST(ar) extui ar, ar, 0, 4
845#else
846#define _EXTUI_MOVSP_SRC(ar) extui ar, ar, 0, 4
847#define _EXTUI_MOVSP_DST(ar) extui ar, ar, 4, 4
848#endif
849
850ENTRY(fast_alloca)
851
852 /* We shouldn't be in a double exception. */
853
854 l32i a0, a2, PT_DEPC
855 _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, .Lunhandled_double
856
Max Filippovbc5378f2012-10-15 03:55:38 +0400857 rsr a0, depc # get a2
Chris Zankel5a0015d2005-06-23 22:01:16 -0700858 s32i a4, a2, PT_AREG4 # save a4 and
859 s32i a0, a2, PT_AREG2 # a2 to stack
860
861 /* Exit critical section. */
862
863 movi a0, 0
864 s32i a0, a3, EXC_TABLE_FIXUP
865
866 /* Restore a3, excsave_1 */
867
Max Filippovbc5378f2012-10-15 03:55:38 +0400868 xsr a3, excsave1 # make sure excsave_1 is valid for dbl.
869 rsr a4, epc1 # get exception address
Chris Zankel5a0015d2005-06-23 22:01:16 -0700870 s32i a3, a2, PT_AREG3 # save a3 to stack
871
872#ifdef ALLOCA_EXCEPTION_IN_IRAM
873#error iram not supported
874#else
875 /* Note: l8ui not allowed in IRAM/IROM!! */
876 l8ui a0, a4, 1 # read as(src) from MOVSP instruction
877#endif
878 movi a3, .Lmovsp_src
879 _EXTUI_MOVSP_SRC(a0) # extract source register number
880 addx8 a3, a0, a3
881 jx a3
882
883.Lunhandled_double:
Max Filippovbc5378f2012-10-15 03:55:38 +0400884 wsr a0, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700885 movi a0, unrecoverable_exception
886 callx0 a0
887
888 .align 8
889.Lmovsp_src:
890 l32i a3, a2, PT_AREG0; _j 1f; .align 8
891 mov a3, a1; _j 1f; .align 8
892 l32i a3, a2, PT_AREG2; _j 1f; .align 8
893 l32i a3, a2, PT_AREG3; _j 1f; .align 8
894 l32i a3, a2, PT_AREG4; _j 1f; .align 8
895 mov a3, a5; _j 1f; .align 8
896 mov a3, a6; _j 1f; .align 8
897 mov a3, a7; _j 1f; .align 8
898 mov a3, a8; _j 1f; .align 8
899 mov a3, a9; _j 1f; .align 8
900 mov a3, a10; _j 1f; .align 8
901 mov a3, a11; _j 1f; .align 8
902 mov a3, a12; _j 1f; .align 8
903 mov a3, a13; _j 1f; .align 8
904 mov a3, a14; _j 1f; .align 8
905 mov a3, a15; _j 1f; .align 8
906
9071:
908
909#ifdef ALLOCA_EXCEPTION_IN_IRAM
910#error iram not supported
911#else
912 l8ui a0, a4, 0 # read ar(dst) from MOVSP instruction
913#endif
914 addi a4, a4, 3 # step over movsp
915 _EXTUI_MOVSP_DST(a0) # extract destination register
Max Filippovbc5378f2012-10-15 03:55:38 +0400916 wsr a4, epc1 # save new epc_1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700917
918 _bnei a0, 1, 1f # no 'movsp a1, ax': jump
919
Chris Zankelc4c45942012-11-28 16:53:51 -0800920 /* Move the save area. This implies the use of the L32E
Chris Zankel5a0015d2005-06-23 22:01:16 -0700921 * and S32E instructions, because this move must be done with
922 * the user's PS.RING privilege levels, not with ring 0
923 * (kernel's) privileges currently active with PS.EXCM
924 * set. Note that we have stil registered a fixup routine with the
925 * double exception vector in case a double exception occurs.
926 */
927
928 /* a0,a4:avail a1:old user stack a2:exc. stack a3:new user stack. */
929
930 l32e a0, a1, -16
931 l32e a4, a1, -12
932 s32e a0, a3, -16
933 s32e a4, a3, -12
934 l32e a0, a1, -8
935 l32e a4, a1, -4
936 s32e a0, a3, -8
937 s32e a4, a3, -4
938
939 /* Restore stack-pointer and all the other saved registers. */
940
941 mov a1, a3
942
943 l32i a4, a2, PT_AREG4
944 l32i a3, a2, PT_AREG3
945 l32i a0, a2, PT_AREG0
946 l32i a2, a2, PT_AREG2
947 rfe
948
949 /* MOVSP <at>,<as> was invoked with <at> != a1.
950 * Because the stack pointer is not being modified,
951 * we should be able to just modify the pointer
952 * without moving any save area.
953 * The processor only traps these occurrences if the
954 * caller window isn't live, so unfortunately we can't
955 * use this as an alternate trap mechanism.
956 * So we just do the move. This requires that we
957 * resolve the destination register, not just the source,
958 * so there's some extra work.
959 * (PERHAPS NOT REALLY NEEDED, BUT CLEANER...)
960 */
961
962 /* a0 dst-reg, a1 user-stack, a2 stack, a3 value of src reg. */
963
9641: movi a4, .Lmovsp_dst
965 addx8 a4, a0, a4
966 jx a4
967
968 .align 8
969.Lmovsp_dst:
970 s32i a3, a2, PT_AREG0; _j 1f; .align 8
971 mov a1, a3; _j 1f; .align 8
972 s32i a3, a2, PT_AREG2; _j 1f; .align 8
973 s32i a3, a2, PT_AREG3; _j 1f; .align 8
974 s32i a3, a2, PT_AREG4; _j 1f; .align 8
975 mov a5, a3; _j 1f; .align 8
976 mov a6, a3; _j 1f; .align 8
977 mov a7, a3; _j 1f; .align 8
978 mov a8, a3; _j 1f; .align 8
979 mov a9, a3; _j 1f; .align 8
980 mov a10, a3; _j 1f; .align 8
981 mov a11, a3; _j 1f; .align 8
982 mov a12, a3; _j 1f; .align 8
983 mov a13, a3; _j 1f; .align 8
984 mov a14, a3; _j 1f; .align 8
985 mov a15, a3; _j 1f; .align 8
986
9871: l32i a4, a2, PT_AREG4
988 l32i a3, a2, PT_AREG3
989 l32i a0, a2, PT_AREG0
990 l32i a2, a2, PT_AREG2
991 rfe
992
Chris Zankeld1538c42012-11-16 16:16:20 -0800993ENDPROC(fast_alloca)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700994
995/*
996 * fast system calls.
997 *
998 * WARNING: The kernel doesn't save the entire user context before
999 * handling a fast system call. These functions are small and short,
1000 * usually offering some functionality not available to user tasks.
1001 *
1002 * BE CAREFUL TO PRESERVE THE USER'S CONTEXT.
1003 *
1004 * Entry condition:
1005 *
1006 * a0: trashed, original value saved on stack (PT_AREG0)
1007 * a1: a1
1008 * a2: new stack pointer, original in DEPC
1009 * a3: dispatch table
1010 * depc: a2, original value saved on stack (PT_DEPC)
1011 * excsave_1: a3
1012 */
1013
1014ENTRY(fast_syscall_kernel)
1015
1016 /* Skip syscall. */
1017
Max Filippovbc5378f2012-10-15 03:55:38 +04001018 rsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001019 addi a0, a0, 3
Max Filippovbc5378f2012-10-15 03:55:38 +04001020 wsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001021
1022 l32i a0, a2, PT_DEPC
1023 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
1024
Max Filippovbc5378f2012-10-15 03:55:38 +04001025 rsr a0, depc # get syscall-nr
Chris Zankel5a0015d2005-06-23 22:01:16 -07001026 _beqz a0, fast_syscall_spill_registers
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001027 _beqi a0, __NR_xtensa, fast_syscall_xtensa
Chris Zankel5a0015d2005-06-23 22:01:16 -07001028
1029 j kernel_exception
1030
Chris Zankeld1538c42012-11-16 16:16:20 -08001031ENDPROC(fast_syscall_kernel)
1032
Chris Zankel5a0015d2005-06-23 22:01:16 -07001033ENTRY(fast_syscall_user)
1034
1035 /* Skip syscall. */
1036
Max Filippovbc5378f2012-10-15 03:55:38 +04001037 rsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001038 addi a0, a0, 3
Max Filippovbc5378f2012-10-15 03:55:38 +04001039 wsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001040
1041 l32i a0, a2, PT_DEPC
1042 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
1043
Max Filippovbc5378f2012-10-15 03:55:38 +04001044 rsr a0, depc # get syscall-nr
Chris Zankel5a0015d2005-06-23 22:01:16 -07001045 _beqz a0, fast_syscall_spill_registers
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001046 _beqi a0, __NR_xtensa, fast_syscall_xtensa
Chris Zankel5a0015d2005-06-23 22:01:16 -07001047
1048 j user_exception
1049
Chris Zankeld1538c42012-11-16 16:16:20 -08001050ENDPROC(fast_syscall_user)
1051
Chris Zankel5a0015d2005-06-23 22:01:16 -07001052ENTRY(fast_syscall_unrecoverable)
1053
Chris Zankelc4c45942012-11-28 16:53:51 -08001054 /* Restore all states. */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001055
Chris Zankelc4c45942012-11-28 16:53:51 -08001056 l32i a0, a2, PT_AREG0 # restore a0
1057 xsr a2, depc # restore a2, depc
1058 rsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001059
Chris Zankelc4c45942012-11-28 16:53:51 -08001060 wsr a0, excsave1
1061 movi a0, unrecoverable_exception
1062 callx0 a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001063
Chris Zankeld1538c42012-11-16 16:16:20 -08001064ENDPROC(fast_syscall_unrecoverable)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001065
1066/*
1067 * sysxtensa syscall handler
1068 *
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001069 * int sysxtensa (SYS_XTENSA_ATOMIC_SET, ptr, val, unused);
1070 * int sysxtensa (SYS_XTENSA_ATOMIC_ADD, ptr, val, unused);
1071 * int sysxtensa (SYS_XTENSA_ATOMIC_EXG_ADD, ptr, val, unused);
1072 * int sysxtensa (SYS_XTENSA_ATOMIC_CMP_SWP, ptr, oldval, newval);
1073 * a2 a6 a3 a4 a5
Chris Zankel5a0015d2005-06-23 22:01:16 -07001074 *
1075 * Entry condition:
1076 *
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001077 * a0: a2 (syscall-nr), original value saved on stack (PT_AREG0)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001078 * a1: a1
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001079 * a2: new stack pointer, original in a0 and DEPC
1080 * a3: dispatch table, original in excsave_1
1081 * a4..a15: unchanged
Chris Zankel5a0015d2005-06-23 22:01:16 -07001082 * depc: a2, original value saved on stack (PT_DEPC)
1083 * excsave_1: a3
1084 *
1085 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1086 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1087 *
1088 * Note: we don't have to save a2; a2 holds the return value
1089 *
1090 * We use the two macros TRY and CATCH:
1091 *
1092 * TRY adds an entry to the __ex_table fixup table for the immediately
1093 * following instruction.
1094 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001095 * CATCH catches any exception that occurred at one of the preceding TRY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001096 * statements and continues from there
1097 *
1098 * Usage TRY l32i a0, a1, 0
1099 * <other code>
1100 * done: rfe
1101 * CATCH <set return code>
1102 * j done
1103 */
1104
1105#define TRY \
1106 .section __ex_table, "a"; \
1107 .word 66f, 67f; \
1108 .text; \
110966:
1110
1111#define CATCH \
111267:
1113
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001114ENTRY(fast_syscall_xtensa)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001115
Max Filippovbc5378f2012-10-15 03:55:38 +04001116 xsr a3, excsave1 # restore a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001117
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001118 s32i a7, a2, PT_AREG7 # we need an additional register
Chris Zankel5a0015d2005-06-23 22:01:16 -07001119 movi a7, 4 # sizeof(unsigned int)
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001120 access_ok a3, a7, a0, a2, .Leac # a0: scratch reg, a2: sp
Chris Zankel5a0015d2005-06-23 22:01:16 -07001121
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001122 addi a6, a6, -1 # assuming SYS_XTENSA_ATOMIC_SET = 1
1123 _bgeui a6, SYS_XTENSA_COUNT - 1, .Lill
1124 _bnei a6, SYS_XTENSA_ATOMIC_CMP_SWP - 1, .Lnswp
Chris Zankel5a0015d2005-06-23 22:01:16 -07001125
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001126 /* Fall through for ATOMIC_CMP_SWP. */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001127
1128.Lswp: /* Atomic compare and swap */
1129
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001130TRY l32i a0, a3, 0 # read old value
1131 bne a0, a4, 1f # same as old value? jump
1132TRY s32i a5, a3, 0 # different, modify value
1133 l32i a7, a2, PT_AREG7 # restore a7
1134 l32i a0, a2, PT_AREG0 # restore a0
1135 movi a2, 1 # and return 1
1136 addi a6, a6, 1 # restore a6 (really necessary?)
1137 rfe
Chris Zankel5a0015d2005-06-23 22:01:16 -07001138
Chris Zankelfc4fb2a2006-12-10 02:18:52 -080011391: l32i a7, a2, PT_AREG7 # restore a7
1140 l32i a0, a2, PT_AREG0 # restore a0
1141 movi a2, 0 # return 0 (note that we cannot set
1142 addi a6, a6, 1 # restore a6 (really necessary?)
1143 rfe
Chris Zankel5a0015d2005-06-23 22:01:16 -07001144
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001145.Lnswp: /* Atomic set, add, and exg_add. */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001146
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001147TRY l32i a7, a3, 0 # orig
1148 add a0, a4, a7 # + arg
1149 moveqz a0, a4, a6 # set
1150TRY s32i a0, a3, 0 # write new value
Chris Zankel5a0015d2005-06-23 22:01:16 -07001151
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001152 mov a0, a2
Chris Zankel5a0015d2005-06-23 22:01:16 -07001153 mov a2, a7
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001154 l32i a7, a0, PT_AREG7 # restore a7
1155 l32i a0, a0, PT_AREG0 # restore a0
1156 addi a6, a6, 1 # restore a6 (really necessary?)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001157 rfe
1158
1159CATCH
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001160.Leac: l32i a7, a2, PT_AREG7 # restore a7
1161 l32i a0, a2, PT_AREG0 # restore a0
1162 movi a2, -EFAULT
1163 rfe
1164
1165.Lill: l32i a7, a2, PT_AREG0 # restore a7
1166 l32i a0, a2, PT_AREG0 # restore a0
1167 movi a2, -EINVAL
1168 rfe
1169
Chris Zankeld1538c42012-11-16 16:16:20 -08001170ENDPROC(fast_syscall_xtensa)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001171
1172
1173/* fast_syscall_spill_registers.
1174 *
1175 * Entry condition:
1176 *
1177 * a0: trashed, original value saved on stack (PT_AREG0)
1178 * a1: a1
1179 * a2: new stack pointer, original in DEPC
1180 * a3: dispatch table
1181 * depc: a2, original value saved on stack (PT_DEPC)
1182 * excsave_1: a3
1183 *
1184 * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001185 */
1186
1187ENTRY(fast_syscall_spill_registers)
1188
1189 /* Register a FIXUP handler (pass current wb as a parameter) */
1190
1191 movi a0, fast_syscall_spill_registers_fixup
1192 s32i a0, a3, EXC_TABLE_FIXUP
Max Filippovbc5378f2012-10-15 03:55:38 +04001193 rsr a0, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001194 s32i a0, a3, EXC_TABLE_PARAM
1195
1196 /* Save a3 and SAR on stack. */
1197
Max Filippovbc5378f2012-10-15 03:55:38 +04001198 rsr a0, sar
1199 xsr a3, excsave1 # restore a3 and excsave_1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001200 s32i a3, a2, PT_AREG3
Chris Zankelc658eac2008-02-12 13:17:07 -08001201 s32i a4, a2, PT_AREG4
1202 s32i a0, a2, PT_AREG5 # store SAR to PT_AREG5
Chris Zankel5a0015d2005-06-23 22:01:16 -07001203
1204 /* The spill routine might clobber a7, a11, and a15. */
1205
Chris Zankelc658eac2008-02-12 13:17:07 -08001206 s32i a7, a2, PT_AREG7
1207 s32i a11, a2, PT_AREG11
1208 s32i a15, a2, PT_AREG15
Chris Zankel5a0015d2005-06-23 22:01:16 -07001209
Chris Zankelc658eac2008-02-12 13:17:07 -08001210 call0 _spill_registers # destroys a3, a4, and SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001211
1212 /* Advance PC, restore registers and SAR, and return from exception. */
1213
Chris Zankelc658eac2008-02-12 13:17:07 -08001214 l32i a3, a2, PT_AREG5
1215 l32i a4, a2, PT_AREG4
Chris Zankel5a0015d2005-06-23 22:01:16 -07001216 l32i a0, a2, PT_AREG0
Max Filippovbc5378f2012-10-15 03:55:38 +04001217 wsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -07001218 l32i a3, a2, PT_AREG3
1219
1220 /* Restore clobbered registers. */
1221
Chris Zankelc658eac2008-02-12 13:17:07 -08001222 l32i a7, a2, PT_AREG7
1223 l32i a11, a2, PT_AREG11
1224 l32i a15, a2, PT_AREG15
Chris Zankel5a0015d2005-06-23 22:01:16 -07001225
1226 movi a2, 0
1227 rfe
1228
Chris Zankeld1538c42012-11-16 16:16:20 -08001229ENDPROC(fast_syscall_spill_registers)
1230
Chris Zankel5a0015d2005-06-23 22:01:16 -07001231/* Fixup handler.
1232 *
1233 * We get here if the spill routine causes an exception, e.g. tlb miss.
1234 * We basically restore WINDOWBASE and WINDOWSTART to the condition when
1235 * we entered the spill routine and jump to the user exception handler.
1236 *
1237 * a0: value of depc, original value in depc
1238 * a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
1239 * a3: exctable, original value in excsave1
1240 */
1241
1242fast_syscall_spill_registers_fixup:
1243
Max Filippovbc5378f2012-10-15 03:55:38 +04001244 rsr a2, windowbase # get current windowbase (a2 is saved)
1245 xsr a0, depc # restore depc and a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001246 ssl a2 # set shift (32 - WB)
1247
1248 /* We need to make sure the current registers (a0-a3) are preserved.
1249 * To do this, we simply set the bit for the current window frame
1250 * in WS, so that the exception handlers save them to the task stack.
1251 */
1252
Max Filippovbc5378f2012-10-15 03:55:38 +04001253 rsr a3, excsave1 # get spill-mask
Chris Zankel5a0015d2005-06-23 22:01:16 -07001254 slli a2, a3, 1 # shift left by one
1255
1256 slli a3, a2, 32-WSBITS
1257 src a2, a2, a3 # a1 = xxwww1yyxxxwww1yy......
Max Filippovbc5378f2012-10-15 03:55:38 +04001258 wsr a2, windowstart # set corrected windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -07001259
1260 movi a3, exc_table
1261 l32i a2, a3, EXC_TABLE_DOUBLE_SAVE # restore a2
1262 l32i a3, a3, EXC_TABLE_PARAM # original WB (in user task)
1263
1264 /* Return to the original (user task) WINDOWBASE.
1265 * We leave the following frame behind:
1266 * a0, a1, a2 same
1267 * a3: trashed (saved in excsave_1)
1268 * depc: depc (we have to return to that address)
1269 * excsave_1: a3
1270 */
1271
Max Filippovbc5378f2012-10-15 03:55:38 +04001272 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001273 rsync
1274
1275 /* We are now in the original frame when we entered _spill_registers:
1276 * a0: return address
1277 * a1: used, stack pointer
1278 * a2: kernel stack pointer
1279 * a3: available, saved in EXCSAVE_1
1280 * depc: exception address
1281 * excsave: a3
1282 * Note: This frame might be the same as above.
1283 */
1284
Chris Zankel5a0015d2005-06-23 22:01:16 -07001285 /* Setup stack pointer. */
1286
1287 addi a2, a2, -PT_USER_SIZE
1288 s32i a0, a2, PT_AREG0
1289
1290 /* Make sure we return to this fixup handler. */
1291
1292 movi a3, fast_syscall_spill_registers_fixup_return
1293 s32i a3, a2, PT_DEPC # setup depc
1294
1295 /* Jump to the exception handler. */
1296
1297 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001298 rsr a0, exccause
Chris Zankelc4c45942012-11-28 16:53:51 -08001299 addx4 a0, a0, a3 # find entry in table
1300 l32i a0, a0, EXC_TABLE_FAST_USER # load handler
1301 jx a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001302
1303fast_syscall_spill_registers_fixup_return:
1304
1305 /* When we return here, all registers have been restored (a2: DEPC) */
1306
Max Filippovbc5378f2012-10-15 03:55:38 +04001307 wsr a2, depc # exception address
Chris Zankel5a0015d2005-06-23 22:01:16 -07001308
1309 /* Restore fixup handler. */
1310
Max Filippovbc5378f2012-10-15 03:55:38 +04001311 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001312 movi a2, fast_syscall_spill_registers_fixup
1313 s32i a2, a3, EXC_TABLE_FIXUP
Max Filippovbc5378f2012-10-15 03:55:38 +04001314 rsr a2, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001315 s32i a2, a3, EXC_TABLE_PARAM
1316 l32i a2, a3, EXC_TABLE_KSTK
1317
Chris Zankel5a0015d2005-06-23 22:01:16 -07001318 /* Load WB at the time the exception occurred. */
1319
Max Filippovbc5378f2012-10-15 03:55:38 +04001320 rsr a3, sar # WB is still in SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001321 neg a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +04001322 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001323 rsync
1324
1325 /* Restore a3 and return. */
1326
1327 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001328 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001329
1330 rfde
1331
1332
1333/*
1334 * spill all registers.
1335 *
1336 * This is not a real function. The following conditions must be met:
1337 *
1338 * - must be called with call0.
Chris Zankelc658eac2008-02-12 13:17:07 -08001339 * - uses a3, a4 and SAR.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001340 * - the last 'valid' register of each frame are clobbered.
1341 * - the caller must have registered a fixup handler
1342 * (or be inside a critical section)
1343 * - PS_EXCM must be set (PS_WOE cleared?)
1344 */
1345
1346ENTRY(_spill_registers)
1347
1348 /*
1349 * Rotate ws so that the current windowbase is at bit 0.
1350 * Assume ws = xxxwww1yy (www1 current window frame).
Chris Zankelc658eac2008-02-12 13:17:07 -08001351 * Rotate ws right so that a4 = yyxxxwww1.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001352 */
1353
Max Filippovbc5378f2012-10-15 03:55:38 +04001354 rsr a4, windowbase
1355 rsr a3, windowstart # a3 = xxxwww1yy
Chris Zankelc658eac2008-02-12 13:17:07 -08001356 ssr a4 # holds WB
1357 slli a4, a3, WSBITS
1358 or a3, a3, a4 # a3 = xxxwww1yyxxxwww1yy
Chris Zankelea0b6b02008-01-09 09:22:36 -08001359 srl a3, a3 # a3 = 00xxxwww1yyxxxwww1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001360
1361 /* We are done if there are no more than the current register frame. */
1362
Chris Zankel50c07162007-11-14 13:47:02 -08001363 extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
Chris Zankelc658eac2008-02-12 13:17:07 -08001364 movi a4, (1 << (WSBITS-1))
Chris Zankel5a0015d2005-06-23 22:01:16 -07001365 _beqz a3, .Lnospill # only one active frame? jump
1366
1367 /* We want 1 at the top, so that we return to the current windowbase */
1368
Chris Zankelc658eac2008-02-12 13:17:07 -08001369 or a3, a3, a4 # 1yyxxxwww
Chris Zankel5a0015d2005-06-23 22:01:16 -07001370
1371 /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */
1372
Max Filippovbc5378f2012-10-15 03:55:38 +04001373 wsr a3, windowstart # save shifted windowstart
Chris Zankelc658eac2008-02-12 13:17:07 -08001374 neg a4, a3
1375 and a3, a4, a3 # first bit set from right: 000010000
Chris Zankel5a0015d2005-06-23 22:01:16 -07001376
Chris Zankelc658eac2008-02-12 13:17:07 -08001377 ffs_ws a4, a3 # a4: shifts to skip empty frames
Chris Zankel5a0015d2005-06-23 22:01:16 -07001378 movi a3, WSBITS
Chris Zankelc658eac2008-02-12 13:17:07 -08001379 sub a4, a3, a4 # WSBITS-a4:number of 0-bits from right
1380 ssr a4 # save in SAR for later.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001381
Max Filippovbc5378f2012-10-15 03:55:38 +04001382 rsr a3, windowbase
Chris Zankelc658eac2008-02-12 13:17:07 -08001383 add a3, a3, a4
Max Filippovbc5378f2012-10-15 03:55:38 +04001384 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001385 rsync
1386
Max Filippovbc5378f2012-10-15 03:55:38 +04001387 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -07001388 srl a3, a3 # shift windowstart
1389
1390 /* WB is now just one frame below the oldest frame in the register
1391 window. WS is shifted so the oldest frame is in bit 0, thus, WB
1392 and WS differ by one 4-register frame. */
1393
1394 /* Save frames. Depending what call was used (call4, call8, call12),
1395 * we have to save 4,8. or 12 registers.
1396 */
1397
1398 _bbsi.l a3, 1, .Lc4
1399 _bbsi.l a3, 2, .Lc8
1400
1401 /* Special case: we have a call12-frame starting at a4. */
1402
1403 _bbci.l a3, 3, .Lc12 # bit 3 shouldn't be zero! (Jump to Lc12 first)
1404
1405 s32e a4, a1, -16 # a1 is valid with an empty spill area
1406 l32e a4, a5, -12
1407 s32e a8, a4, -48
1408 mov a8, a4
1409 l32e a4, a1, -16
1410 j .Lc12c
1411
Chris Zankel50c07162007-11-14 13:47:02 -08001412.Lnospill:
Chris Zankelea0b6b02008-01-09 09:22:36 -08001413 ret
Chris Zankel50c07162007-11-14 13:47:02 -08001414
Chris Zankel5a0015d2005-06-23 22:01:16 -07001415.Lloop: _bbsi.l a3, 1, .Lc4
1416 _bbci.l a3, 2, .Lc12
1417
1418.Lc8: s32e a4, a13, -16
1419 l32e a4, a5, -12
1420 s32e a8, a4, -32
1421 s32e a5, a13, -12
1422 s32e a6, a13, -8
1423 s32e a7, a13, -4
1424 s32e a9, a4, -28
1425 s32e a10, a4, -24
1426 s32e a11, a4, -20
1427
1428 srli a11, a3, 2 # shift windowbase by 2
1429 rotw 2
1430 _bnei a3, 1, .Lloop
1431
1432.Lexit: /* Done. Do the final rotation, set WS, and return. */
1433
1434 rotw 1
Max Filippovbc5378f2012-10-15 03:55:38 +04001435 rsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001436 ssl a3
1437 movi a3, 1
1438 sll a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +04001439 wsr a3, windowstart
Chris Zankelea0b6b02008-01-09 09:22:36 -08001440 ret
Chris Zankel5a0015d2005-06-23 22:01:16 -07001441
1442.Lc4: s32e a4, a9, -16
1443 s32e a5, a9, -12
1444 s32e a6, a9, -8
1445 s32e a7, a9, -4
1446
1447 srli a7, a3, 1
1448 rotw 1
1449 _bnei a3, 1, .Lloop
1450 j .Lexit
1451
1452.Lc12: _bbci.l a3, 3, .Linvalid_mask # bit 2 shouldn't be zero!
1453
1454 /* 12-register frame (call12) */
1455
1456 l32e a2, a5, -12
1457 s32e a8, a2, -48
1458 mov a8, a2
1459
1460.Lc12c: s32e a9, a8, -44
1461 s32e a10, a8, -40
1462 s32e a11, a8, -36
1463 s32e a12, a8, -32
1464 s32e a13, a8, -28
1465 s32e a14, a8, -24
1466 s32e a15, a8, -20
1467 srli a15, a3, 3
1468
1469 /* The stack pointer for a4..a7 is out of reach, so we rotate the
1470 * window, grab the stackpointer, and rotate back.
1471 * Alternatively, we could also use the following approach, but that
1472 * makes the fixup routine much more complicated:
1473 * rotw 1
1474 * s32e a0, a13, -16
1475 * ...
1476 * rotw 2
1477 */
1478
1479 rotw 1
1480 mov a5, a13
1481 rotw -1
1482
1483 s32e a4, a9, -16
1484 s32e a5, a9, -12
1485 s32e a6, a9, -8
1486 s32e a7, a9, -4
1487
1488 rotw 3
1489
1490 _beqi a3, 1, .Lexit
1491 j .Lloop
1492
1493.Linvalid_mask:
1494
1495 /* We get here because of an unrecoverable error in the window
1496 * registers. If we are in user space, we kill the application,
1497 * however, this condition is unrecoverable in kernel space.
1498 */
1499
Max Filippovbc5378f2012-10-15 03:55:38 +04001500 rsr a0, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001501 _bbci.l a0, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001502
Chris Zankelc4c45942012-11-28 16:53:51 -08001503 /* User space: Setup a dummy frame and kill application.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001504 * Note: We assume EXC_TABLE_KSTK contains a valid stack pointer.
1505 */
1506
1507 movi a0, 1
1508 movi a1, 0
1509
Max Filippovbc5378f2012-10-15 03:55:38 +04001510 wsr a0, windowstart
1511 wsr a1, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001512 rsync
1513
1514 movi a0, 0
1515
1516 movi a3, exc_table
1517 l32i a1, a3, EXC_TABLE_KSTK
Max Filippovbc5378f2012-10-15 03:55:38 +04001518 wsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001519
Marc Gauthier2d1c6452013-01-05 04:57:17 +04001520 movi a4, (1 << PS_WOE_BIT) | LOCKLEVEL
Max Filippovbc5378f2012-10-15 03:55:38 +04001521 wsr a4, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -07001522 rsync
1523
1524 movi a6, SIGSEGV
1525 movi a4, do_exit
1526 callx4 a4
1527
15281: /* Kernel space: PANIC! */
1529
Max Filippovbc5378f2012-10-15 03:55:38 +04001530 wsr a0, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001531 movi a0, unrecoverable_exception
1532 callx0 a0 # should not return
15331: j 1b
1534
Chris Zankeld1538c42012-11-16 16:16:20 -08001535ENDPROC(_spill_registers)
1536
Johannes Weinere5083a62009-03-04 16:21:31 +01001537#ifdef CONFIG_MMU
Chris Zankel5a0015d2005-06-23 22:01:16 -07001538/*
1539 * We should never get here. Bail out!
1540 */
1541
1542ENTRY(fast_second_level_miss_double_kernel)
1543
15441: movi a0, unrecoverable_exception
1545 callx0 a0 # should not return
15461: j 1b
1547
Chris Zankeld1538c42012-11-16 16:16:20 -08001548ENDPROC(fast_second_level_miss_double_kernel)
1549
Chris Zankel5a0015d2005-06-23 22:01:16 -07001550/* First-level entry handler for user, kernel, and double 2nd-level
1551 * TLB miss exceptions. Note that for now, user and kernel miss
1552 * exceptions share the same entry point and are handled identically.
1553 *
1554 * An old, less-efficient C version of this function used to exist.
1555 * We include it below, interleaved as comments, for reference.
1556 *
1557 * Entry condition:
1558 *
1559 * a0: trashed, original value saved on stack (PT_AREG0)
1560 * a1: a1
1561 * a2: new stack pointer, original in DEPC
1562 * a3: dispatch table
1563 * depc: a2, original value saved on stack (PT_DEPC)
1564 * excsave_1: a3
1565 *
1566 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1567 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1568 */
1569
1570ENTRY(fast_second_level_miss)
1571
1572 /* Save a1. Note: we don't expect a double exception. */
1573
1574 s32i a1, a2, PT_AREG1
1575
1576 /* We need to map the page of PTEs for the user task. Find
1577 * the pointer to that page. Also, it's possible for tsk->mm
1578 * to be NULL while tsk->active_mm is nonzero if we faulted on
1579 * a vmalloc address. In that rare case, we must use
1580 * active_mm instead to avoid a fault in this handler. See
1581 *
1582 * http://mail.nl.linux.org/linux-mm/2002-08/msg00258.html
1583 * (or search Internet on "mm vs. active_mm")
1584 *
1585 * if (!mm)
1586 * mm = tsk->active_mm;
1587 * pgd = pgd_offset (mm, regs->excvaddr);
1588 * pmd = pmd_offset (pgd, regs->excvaddr);
1589 * pmdval = *pmd;
1590 */
1591
1592 GET_CURRENT(a1,a2)
1593 l32i a0, a1, TASK_MM # tsk->mm
1594 beqz a0, 9f
1595
Chris Zankel01858d12007-08-06 23:57:57 -07001596
1597 /* We deliberately destroy a3 that holds the exception table. */
1598
Max Filippovbc5378f2012-10-15 03:55:38 +040015998: rsr a3, excvaddr # fault address
Chris Zankel01858d12007-08-06 23:57:57 -07001600 _PGD_OFFSET(a0, a3, a1)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001601 l32i a0, a0, 0 # read pmdval
Chris Zankel5a0015d2005-06-23 22:01:16 -07001602 beqz a0, 2f
1603
1604 /* Read ptevaddr and convert to top of page-table page.
1605 *
1606 * vpnval = read_ptevaddr_register() & PAGE_MASK;
1607 * vpnval += DTLB_WAY_PGTABLE;
1608 * pteval = mk_pte (virt_to_page(pmd_val(pmdval)), PAGE_KERNEL);
1609 * write_dtlb_entry (pteval, vpnval);
1610 *
1611 * The messy computation for 'pteval' above really simplifies
1612 * into the following:
1613 *
Chris Zankel66569202007-08-22 10:14:51 -07001614 * pteval = ((pmdval - PAGE_OFFSET) & PAGE_MASK) | PAGE_DIRECTORY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001615 */
1616
Chris Zankel39070cb2012-10-17 23:08:20 -07001617 movi a1, (-PAGE_OFFSET) & 0xffffffff
Chris Zankel5a0015d2005-06-23 22:01:16 -07001618 add a0, a0, a1 # pmdval - PAGE_OFFSET
1619 extui a1, a0, 0, PAGE_SHIFT # ... & PAGE_MASK
1620 xor a0, a0, a1
1621
Chris Zankel01858d12007-08-06 23:57:57 -07001622 movi a1, _PAGE_DIRECTORY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001623 or a0, a0, a1 # ... | PAGE_DIRECTORY
1624
Chris Zankel01858d12007-08-06 23:57:57 -07001625 /*
Chris Zankel66569202007-08-22 10:14:51 -07001626 * We utilize all three wired-ways (7-9) to hold pmd translations.
Chris Zankel01858d12007-08-06 23:57:57 -07001627 * Memory regions are mapped to the DTLBs according to bits 28 and 29.
1628 * This allows to map the three most common regions to three different
1629 * DTLBs:
1630 * 0,1 -> way 7 program (0040.0000) and virtual (c000.0000)
1631 * 2 -> way 8 shared libaries (2000.0000)
1632 * 3 -> way 0 stack (3000.0000)
1633 */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001634
Chris Zankel01858d12007-08-06 23:57:57 -07001635 extui a3, a3, 28, 2 # addr. bit 28 and 29 0,1,2,3
Max Filippovbc5378f2012-10-15 03:55:38 +04001636 rsr a1, ptevaddr
Chris Zankel01858d12007-08-06 23:57:57 -07001637 addx2 a3, a3, a3 # -> 0,3,6,9
1638 srli a1, a1, PAGE_SHIFT
1639 extui a3, a3, 2, 2 # -> 0,0,1,2
1640 slli a1, a1, PAGE_SHIFT # ptevaddr & PAGE_MASK
1641 addi a3, a3, DTLB_WAY_PGD
1642 add a1, a1, a3 # ... + way_number
1643
16443: wdtlb a0, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001645 dsync
1646
1647 /* Exit critical section. */
1648
Chris Zankel01858d12007-08-06 23:57:57 -070016494: movi a3, exc_table # restore a3
Chris Zankel5a0015d2005-06-23 22:01:16 -07001650 movi a0, 0
1651 s32i a0, a3, EXC_TABLE_FIXUP
1652
1653 /* Restore the working registers, and return. */
1654
1655 l32i a0, a2, PT_AREG0
1656 l32i a1, a2, PT_AREG1
1657 l32i a2, a2, PT_DEPC
Max Filippovbc5378f2012-10-15 03:55:38 +04001658 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001659
1660 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1661
1662 /* Restore excsave1 and return. */
1663
Max Filippovbc5378f2012-10-15 03:55:38 +04001664 rsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001665 rfe
1666
1667 /* Return from double exception. */
1668
Max Filippovbc5378f2012-10-15 03:55:38 +040016691: xsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001670 esync
1671 rfde
1672
16739: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1674 j 8b
1675
Chris Zankel66569202007-08-22 10:14:51 -07001676#if (DCACHE_WAY_SIZE > PAGE_SIZE)
1677
16782: /* Special case for cache aliasing.
1679 * We (should) only get here if a clear_user_page, copy_user_page
1680 * or the aliased cache flush functions got preemptively interrupted
1681 * by another task. Re-establish temporary mapping to the
1682 * TLBTEMP_BASE areas.
1683 */
1684
1685 /* We shouldn't be in a double exception */
1686
1687 l32i a0, a2, PT_DEPC
1688 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 2f
1689
1690 /* Make sure the exception originated in the special functions */
1691
1692 movi a0, __tlbtemp_mapping_start
Max Filippovbc5378f2012-10-15 03:55:38 +04001693 rsr a3, epc1
Chris Zankel66569202007-08-22 10:14:51 -07001694 bltu a3, a0, 2f
1695 movi a0, __tlbtemp_mapping_end
1696 bgeu a3, a0, 2f
1697
1698 /* Check if excvaddr was in one of the TLBTEMP_BASE areas. */
1699
1700 movi a3, TLBTEMP_BASE_1
Max Filippovbc5378f2012-10-15 03:55:38 +04001701 rsr a0, excvaddr
Chris Zankel66569202007-08-22 10:14:51 -07001702 bltu a0, a3, 2f
1703
1704 addi a1, a0, -(2 << (DCACHE_ALIAS_ORDER + PAGE_SHIFT))
1705 bgeu a1, a3, 2f
1706
1707 /* Check if we have to restore an ITLB mapping. */
1708
1709 movi a1, __tlbtemp_mapping_itlb
Max Filippovbc5378f2012-10-15 03:55:38 +04001710 rsr a3, epc1
Chris Zankel66569202007-08-22 10:14:51 -07001711 sub a3, a3, a1
1712
1713 /* Calculate VPN */
1714
1715 movi a1, PAGE_MASK
1716 and a1, a1, a0
1717
1718 /* Jump for ITLB entry */
1719
1720 bgez a3, 1f
1721
1722 /* We can use up to two TLBTEMP areas, one for src and one for dst. */
1723
1724 extui a3, a0, PAGE_SHIFT + DCACHE_ALIAS_ORDER, 1
1725 add a1, a3, a1
1726
1727 /* PPN is in a6 for the first TLBTEMP area and in a7 for the second. */
1728
1729 mov a0, a6
1730 movnez a0, a7, a3
1731 j 3b
1732
1733 /* ITLB entry. We only use dst in a6. */
1734
17351: witlb a6, a1
1736 isync
1737 j 4b
1738
1739
1740#endif // DCACHE_WAY_SIZE > PAGE_SIZE
1741
1742
Chris Zankel5a0015d2005-06-23 22:01:16 -070017432: /* Invalid PGD, default exception handling */
1744
Chris Zankel01858d12007-08-06 23:57:57 -07001745 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001746 rsr a1, depc
1747 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001748 s32i a1, a2, PT_AREG2
1749 s32i a3, a2, PT_AREG3
1750 mov a1, a2
1751
Max Filippovbc5378f2012-10-15 03:55:38 +04001752 rsr a2, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001753 bbsi.l a2, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001754 j _kernel_exception
17551: j _user_exception
1756
Chris Zankeld1538c42012-11-16 16:16:20 -08001757ENDPROC(fast_second_level_miss)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001758
1759/*
1760 * StoreProhibitedException
1761 *
1762 * Update the pte and invalidate the itlb mapping for this pte.
1763 *
1764 * Entry condition:
1765 *
1766 * a0: trashed, original value saved on stack (PT_AREG0)
1767 * a1: a1
1768 * a2: new stack pointer, original in DEPC
1769 * a3: dispatch table
1770 * depc: a2, original value saved on stack (PT_DEPC)
1771 * excsave_1: a3
1772 *
1773 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1774 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1775 */
1776
1777ENTRY(fast_store_prohibited)
1778
1779 /* Save a1 and a4. */
1780
1781 s32i a1, a2, PT_AREG1
1782 s32i a4, a2, PT_AREG4
1783
1784 GET_CURRENT(a1,a2)
1785 l32i a0, a1, TASK_MM # tsk->mm
1786 beqz a0, 9f
1787
Max Filippovbc5378f2012-10-15 03:55:38 +040017888: rsr a1, excvaddr # fault address
Chris Zankel5a0015d2005-06-23 22:01:16 -07001789 _PGD_OFFSET(a0, a1, a4)
1790 l32i a0, a0, 0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001791 beqz a0, 2f
1792
Chris Zankel01858d12007-08-06 23:57:57 -07001793 /* Note that we assume _PAGE_WRITABLE_BIT is only set if pte is valid.*/
1794
Chris Zankel5a0015d2005-06-23 22:01:16 -07001795 _PTE_OFFSET(a0, a1, a4)
1796 l32i a4, a0, 0 # read pteval
Chris Zankel01858d12007-08-06 23:57:57 -07001797 bbci.l a4, _PAGE_WRITABLE_BIT, 2f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001798
Chris Zankel01858d12007-08-06 23:57:57 -07001799 movi a1, _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HW_WRITE
Chris Zankel5a0015d2005-06-23 22:01:16 -07001800 or a4, a4, a1
Max Filippovbc5378f2012-10-15 03:55:38 +04001801 rsr a1, excvaddr
Chris Zankel5a0015d2005-06-23 22:01:16 -07001802 s32i a4, a0, 0
1803
1804 /* We need to flush the cache if we have page coloring. */
1805#if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
1806 dhwb a0, 0
1807#endif
1808 pdtlb a0, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001809 wdtlb a4, a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001810
1811 /* Exit critical section. */
1812
1813 movi a0, 0
1814 s32i a0, a3, EXC_TABLE_FIXUP
1815
1816 /* Restore the working registers, and return. */
1817
1818 l32i a4, a2, PT_AREG4
1819 l32i a1, a2, PT_AREG1
1820 l32i a0, a2, PT_AREG0
1821 l32i a2, a2, PT_DEPC
1822
1823 /* Restore excsave1 and a3. */
1824
Max Filippovbc5378f2012-10-15 03:55:38 +04001825 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001826 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1827
Max Filippovbc5378f2012-10-15 03:55:38 +04001828 rsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001829 rfe
1830
1831 /* Double exception. Restore FIXUP handler and return. */
1832
Max Filippovbc5378f2012-10-15 03:55:38 +040018331: xsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001834 esync
1835 rfde
1836
18379: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1838 j 8b
1839
18402: /* If there was a problem, handle fault in C */
1841
Max Filippovbc5378f2012-10-15 03:55:38 +04001842 rsr a4, depc # still holds a2
1843 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001844 s32i a4, a2, PT_AREG2
1845 s32i a3, a2, PT_AREG3
1846 l32i a4, a2, PT_AREG4
1847 mov a1, a2
1848
Max Filippovbc5378f2012-10-15 03:55:38 +04001849 rsr a2, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001850 bbsi.l a2, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001851 j _kernel_exception
18521: j _user_exception
Chris Zankeld1538c42012-11-16 16:16:20 -08001853
1854ENDPROC(fast_store_prohibited)
1855
Johannes Weinere5083a62009-03-04 16:21:31 +01001856#endif /* CONFIG_MMU */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001857
Chris Zankel5a0015d2005-06-23 22:01:16 -07001858/*
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001859 * System Calls.
1860 *
1861 * void system_call (struct pt_regs* regs, int exccause)
1862 * a2 a3
1863 */
1864
1865ENTRY(system_call)
Chris Zankeld1538c42012-11-16 16:16:20 -08001866
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001867 entry a1, 32
1868
1869 /* regs->syscall = regs->areg[2] */
1870
1871 l32i a3, a2, PT_AREG2
1872 mov a6, a2
1873 movi a4, do_syscall_trace_enter
1874 s32i a3, a2, PT_SYSCALL
1875 callx4 a4
1876
1877 /* syscall = sys_call_table[syscall_nr] */
1878
1879 movi a4, sys_call_table;
1880 movi a5, __NR_syscall_count
1881 movi a6, -ENOSYS
1882 bgeu a3, a5, 1f
1883
1884 addx4 a4, a3, a4
1885 l32i a4, a4, 0
1886 movi a5, sys_ni_syscall;
1887 beq a4, a5, 1f
1888
1889 /* Load args: arg0 - arg5 are passed via regs. */
1890
1891 l32i a6, a2, PT_AREG6
1892 l32i a7, a2, PT_AREG3
1893 l32i a8, a2, PT_AREG4
1894 l32i a9, a2, PT_AREG5
1895 l32i a10, a2, PT_AREG8
1896 l32i a11, a2, PT_AREG9
1897
1898 /* Pass one additional argument to the syscall: pt_regs (on stack) */
1899 s32i a2, a1, 0
1900
1901 callx4 a4
1902
19031: /* regs->areg[2] = return_value */
1904
1905 s32i a6, a2, PT_AREG2
1906 movi a4, do_syscall_trace_leave
1907 mov a6, a2
1908 callx4 a4
1909 retw
1910
Chris Zankeld1538c42012-11-16 16:16:20 -08001911ENDPROC(system_call)
1912
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001913
1914/*
Chris Zankel5a0015d2005-06-23 22:01:16 -07001915 * Task switch.
1916 *
1917 * struct task* _switch_to (struct task* prev, struct task* next)
1918 * a2 a2 a3
1919 */
1920
1921ENTRY(_switch_to)
1922
1923 entry a1, 16
1924
Chris Zankelc658eac2008-02-12 13:17:07 -08001925 mov a12, a2 # preserve 'prev' (a2)
1926 mov a13, a3 # and 'next' (a3)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001927
Chris Zankelc658eac2008-02-12 13:17:07 -08001928 l32i a4, a2, TASK_THREAD_INFO
1929 l32i a5, a3, TASK_THREAD_INFO
Chris Zankel5a0015d2005-06-23 22:01:16 -07001930
Chris Zankelc658eac2008-02-12 13:17:07 -08001931 save_xtregs_user a4 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
Chris Zankel5a0015d2005-06-23 22:01:16 -07001932
Chris Zankelc658eac2008-02-12 13:17:07 -08001933 s32i a0, a12, THREAD_RA # save return address
1934 s32i a1, a12, THREAD_SP # save stack pointer
1935
1936 /* Disable ints while we manipulate the stack pointer. */
1937
1938 movi a14, (1 << PS_EXCM_BIT) | LOCKLEVEL
Max Filippovbc5378f2012-10-15 03:55:38 +04001939 xsr a14, ps
1940 rsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001941 rsync
1942 s32i a3, a3, EXC_TABLE_FIXUP /* enter critical section */
1943
Chris Zankelc658eac2008-02-12 13:17:07 -08001944 /* Switch CPENABLE */
1945
1946#if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS)
1947 l32i a3, a5, THREAD_CPENABLE
Max Filippovbc5378f2012-10-15 03:55:38 +04001948 xsr a3, cpenable
Chris Zankelc658eac2008-02-12 13:17:07 -08001949 s32i a3, a4, THREAD_CPENABLE
1950#endif
1951
1952 /* Flush register file. */
1953
1954 call0 _spill_registers # destroys a3, a4, and SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001955
1956 /* Set kernel stack (and leave critical section)
1957 * Note: It's save to set it here. The stack will not be overwritten
1958 * because the kernel stack will only be loaded again after
1959 * we return from kernel space.
1960 */
1961
Max Filippovbc5378f2012-10-15 03:55:38 +04001962 rsr a3, excsave1 # exc_table
Chris Zankelc658eac2008-02-12 13:17:07 -08001963 movi a6, 0
1964 addi a7, a5, PT_REGS_OFFSET
1965 s32i a6, a3, EXC_TABLE_FIXUP
1966 s32i a7, a3, EXC_TABLE_KSTK
Chris Zankel5a0015d2005-06-23 22:01:16 -07001967
Chris Zankelc50842d2013-02-23 19:35:57 -08001968 /* restore context of the task 'next' */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001969
Chris Zankelc658eac2008-02-12 13:17:07 -08001970 l32i a0, a13, THREAD_RA # restore return address
1971 l32i a1, a13, THREAD_SP # restore stack pointer
Chris Zankel5a0015d2005-06-23 22:01:16 -07001972
Chris Zankelc658eac2008-02-12 13:17:07 -08001973 load_xtregs_user a5 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
1974
Max Filippovbc5378f2012-10-15 03:55:38 +04001975 wsr a14, ps
Chris Zankelc658eac2008-02-12 13:17:07 -08001976 mov a2, a12 # return 'prev'
Chris Zankel5a0015d2005-06-23 22:01:16 -07001977 rsync
1978
1979 retw
1980
Chris Zankeld1538c42012-11-16 16:16:20 -08001981ENDPROC(_switch_to)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001982
1983ENTRY(ret_from_fork)
1984
1985 /* void schedule_tail (struct task_struct *prev)
1986 * Note: prev is still in a6 (return value from fake call4 frame)
1987 */
1988 movi a4, schedule_tail
1989 callx4 a4
1990
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001991 movi a4, do_syscall_trace_leave
1992 mov a6, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001993 callx4 a4
1994
1995 j common_exception_return
1996
Chris Zankeld1538c42012-11-16 16:16:20 -08001997ENDPROC(ret_from_fork)
1998
Max Filippov3306a722012-10-25 11:10:50 +04001999/*
2000 * Kernel thread creation helper
2001 * On entry, set up by copy_thread: a2 = thread_fn, a3 = thread_fn arg
2002 * left from _switch_to: a6 = prev
2003 */
2004ENTRY(ret_from_kernel_thread)
2005
2006 call4 schedule_tail
2007 mov a6, a3
2008 callx4 a2
Max Filippovf0a1bf02012-10-25 11:10:51 +04002009 j common_exception_return
Max Filippov3306a722012-10-25 11:10:50 +04002010
2011ENDPROC(ret_from_kernel_thread)