blob: 41ad9cfe9a2a548f034a75bc2496fe9bed67e5b8 [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 *
Chris Zankel66569202007-08-22 10:14:51 -070010 * Copyright (C) 2004-2007 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
133 /* Rotate ws so that the current windowbase is at bit0. */
134 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
135
Max Filippovbc5378f2012-10-15 03:55:38 +0400136 rsr a2, windowbase
137 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -0700138 ssr a2
139 s32i a2, a1, PT_WINDOWBASE
140 s32i a3, a1, PT_WINDOWSTART
141 slli a2, a3, 32-WSBITS
142 src a2, a3, a2
143 srli a2, a2, 32-WSBITS
144 s32i a2, a1, PT_WMASK # needed for restoring registers
145
146 /* Save only live registers. */
147
148 _bbsi.l a2, 1, 1f
149 s32i a4, a1, PT_AREG4
150 s32i a5, a1, PT_AREG5
151 s32i a6, a1, PT_AREG6
152 s32i a7, a1, PT_AREG7
153 _bbsi.l a2, 2, 1f
154 s32i a8, a1, PT_AREG8
155 s32i a9, a1, PT_AREG9
156 s32i a10, a1, PT_AREG10
157 s32i a11, a1, PT_AREG11
158 _bbsi.l a2, 3, 1f
159 s32i a12, a1, PT_AREG12
160 s32i a13, a1, PT_AREG13
161 s32i a14, a1, PT_AREG14
162 s32i a15, a1, PT_AREG15
163 _bnei a2, 1, 1f # only one valid frame?
164
165 /* Only one valid frame, skip saving regs. */
166
167 j 2f
168
169 /* Save the remaining registers.
170 * We have to save all registers up to the first '1' from
171 * the right, except the current frame (bit 0).
172 * Assume a2 is: 001001000110001
Chris Zankel66569202007-08-22 10:14:51 -0700173 * All register frames starting from the top field to the marked '1'
Chris Zankel5a0015d2005-06-23 22:01:16 -0700174 * must be saved.
175 */
176
1771: addi a3, a2, -1 # eliminate '1' in bit 0: yyyyxxww0
178 neg a3, a3 # yyyyxxww0 -> YYYYXXWW1+1
179 and a3, a3, a2 # max. only one bit is set
180
181 /* Find number of frames to save */
182
183 ffs_ws a0, a3 # number of frames to the '1' from left
184
185 /* Store information into WMASK:
186 * bits 0..3: xxx1 masked lower 4 bits of the rotated windowstart,
187 * bits 4...: number of valid 4-register frames
188 */
189
190 slli a3, a0, 4 # number of frames to save in bits 8..4
191 extui a2, a2, 0, 4 # mask for the first 16 registers
192 or a2, a3, a2
193 s32i a2, a1, PT_WMASK # needed when we restore the reg-file
194
195 /* Save 4 registers at a time */
196
1971: rotw -1
198 s32i a0, a5, PT_AREG_END - 16
199 s32i a1, a5, PT_AREG_END - 12
200 s32i a2, a5, PT_AREG_END - 8
201 s32i a3, a5, PT_AREG_END - 4
202 addi a0, a4, -1
203 addi a1, a5, -16
204 _bnez a0, 1b
205
206 /* WINDOWBASE still in SAR! */
207
Max Filippovbc5378f2012-10-15 03:55:38 +0400208 rsr a2, sar # original WINDOWBASE
Chris Zankel5a0015d2005-06-23 22:01:16 -0700209 movi a3, 1
210 ssl a2
211 sll a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +0400212 wsr a3, windowstart # set corresponding WINDOWSTART bit
213 wsr a2, windowbase # and WINDOWSTART
Chris Zankel5a0015d2005-06-23 22:01:16 -0700214 rsync
215
216 /* We are back to the original stack pointer (a1) */
217
Chris Zankelc658eac2008-02-12 13:17:07 -08002182: /* Now, jump to the common exception handler. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700219
220 j common_exception
221
Chris Zankeld1538c42012-11-16 16:16:20 -0800222ENDPROC(user_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700223
224/*
225 * First-level exit handler for kernel exceptions
226 * Save special registers and the live window frame.
227 * Note: Even though we changes the stack pointer, we don't have to do a
228 * MOVSP here, as we do that when we return from the exception.
229 * (See comment in the kernel exception exit code)
230 *
231 * Entry condition for kernel_exception:
232 *
233 * a0: trashed, original value saved on stack (PT_AREG0)
234 * a1: a1
235 * a2: new stack pointer, original in DEPC
236 * a3: dispatch table
237 * depc: a2, original value saved on stack (PT_DEPC)
238 * excsave_1: a3
239 *
240 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
241 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
242 *
243 * Entry condition for _kernel_exception:
244 *
245 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
246 * excsave has been restored, and
247 * stack pointer (a1) has been set.
248 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800249 * Note: _kernel_exception might be at an odd address. Don't use call0..call12
Chris Zankel5a0015d2005-06-23 22:01:16 -0700250 */
251
252ENTRY(kernel_exception)
253
254 /* Save a0, a2, a3, DEPC and set SP. */
255
Max Filippovbc5378f2012-10-15 03:55:38 +0400256 xsr a3, excsave1 # restore a3, excsave_1
257 rsr a0, depc # get a2
Chris Zankel5a0015d2005-06-23 22:01:16 -0700258 s32i a1, a2, PT_AREG1
259 s32i a0, a2, PT_AREG2
260 s32i a3, a2, PT_AREG3
261 mov a1, a2
262
263 .globl _kernel_exception
264_kernel_exception:
265
266 /* Save SAR and turn off single stepping */
267
268 movi a2, 0
Max Filippovbc5378f2012-10-15 03:55:38 +0400269 rsr a3, sar
270 xsr a2, icountlevel
Chris Zankel5a0015d2005-06-23 22:01:16 -0700271 s32i a3, a1, PT_SAR
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700272 s32i a2, a1, PT_ICOUNTLEVEL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700273
274 /* Rotate ws so that the current windowbase is at bit0. */
275 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
276
Max Filippovbc5378f2012-10-15 03:55:38 +0400277 rsr a2, windowbase # don't need to save these, we only
278 rsr a3, windowstart # need shifted windowstart: windowmask
Chris Zankel5a0015d2005-06-23 22:01:16 -0700279 ssr a2
280 slli a2, a3, 32-WSBITS
281 src a2, a3, a2
282 srli a2, a2, 32-WSBITS
283 s32i a2, a1, PT_WMASK # needed for kernel_exception_exit
284
285 /* Save only the live window-frame */
286
287 _bbsi.l a2, 1, 1f
288 s32i a4, a1, PT_AREG4
289 s32i a5, a1, PT_AREG5
290 s32i a6, a1, PT_AREG6
291 s32i a7, a1, PT_AREG7
292 _bbsi.l a2, 2, 1f
293 s32i a8, a1, PT_AREG8
294 s32i a9, a1, PT_AREG9
295 s32i a10, a1, PT_AREG10
296 s32i a11, a1, PT_AREG11
297 _bbsi.l a2, 3, 1f
298 s32i a12, a1, PT_AREG12
299 s32i a13, a1, PT_AREG13
300 s32i a14, a1, PT_AREG14
301 s32i a15, a1, PT_AREG15
302
3031:
304
305#ifdef KERNEL_STACK_OVERFLOW_CHECK
306
307 /* Stack overflow check, for debugging */
308 extui a2, a1, TASK_SIZE_BITS,XX
309 movi a3, SIZE??
310 _bge a2, a3, out_of_stack_panic
311
312#endif
313
314/*
315 * This is the common exception handler.
316 * We get here from the user exception handler or simply by falling through
317 * from the kernel exception handler.
318 * Save the remaining special registers, switch to kernel mode, and jump
319 * to the second-level exception handler.
320 *
321 */
322
323common_exception:
324
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700325 /* Save some registers, disable loops and clear the syscall flag. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700326
Max Filippovbc5378f2012-10-15 03:55:38 +0400327 rsr a2, debugcause
328 rsr a3, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700329 s32i a2, a1, PT_DEBUGCAUSE
330 s32i a3, a1, PT_PC
331
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700332 movi a2, -1
Max Filippovbc5378f2012-10-15 03:55:38 +0400333 rsr a3, excvaddr
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700334 s32i a2, a1, PT_SYSCALL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700335 movi a2, 0
336 s32i a3, a1, PT_EXCVADDR
Max Filippovbc5378f2012-10-15 03:55:38 +0400337 xsr a2, lcount
Chris Zankel5a0015d2005-06-23 22:01:16 -0700338 s32i a2, a1, PT_LCOUNT
339
340 /* It is now save to restore the EXC_TABLE_FIXUP variable. */
341
Max Filippovbc5378f2012-10-15 03:55:38 +0400342 rsr a0, exccause
Chris Zankel5a0015d2005-06-23 22:01:16 -0700343 movi a3, 0
Max Filippovbc5378f2012-10-15 03:55:38 +0400344 rsr a2, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700345 s32i a0, a1, PT_EXCCAUSE
346 s32i a3, a2, EXC_TABLE_FIXUP
347
348 /* All unrecoverable states are saved on stack, now, and a1 is valid,
349 * so we can allow exceptions and interrupts (*) again.
350 * Set PS(EXCM = 0, UM = 0, RING = 0, OWB = 0, WOE = 1, INTLEVEL = X)
351 *
352 * (*) We only allow interrupts if PS.INTLEVEL was not set to 1 before
353 * (interrupts disabled) and if this exception is not an interrupt.
354 */
355
Max Filippovbc5378f2012-10-15 03:55:38 +0400356 rsr a3, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700357 addi a0, a0, -4
358 movi a2, 1
359 extui a3, a3, 0, 1 # a3 = PS.INTLEVEL[0]
360 moveqz a3, a2, a0 # a3 = 1 iff interrupt exception
Chris Zankel173d6682006-12-10 02:18:48 -0800361 movi a2, 1 << PS_WOE_BIT
Chris Zankel5a0015d2005-06-23 22:01:16 -0700362 or a3, a3, a2
Max Filippovbc5378f2012-10-15 03:55:38 +0400363 rsr a0, exccause
364 xsr a3, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700365
366 s32i a3, a1, PT_PS # save ps
367
Max Filippovbc5378f2012-10-15 03:55:38 +0400368 /* Save lbeg, lend */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700369
Max Filippovbc5378f2012-10-15 03:55:38 +0400370 rsr a2, lbeg
371 rsr a3, lend
Chris Zankel5a0015d2005-06-23 22:01:16 -0700372 s32i a2, a1, PT_LBEG
373 s32i a3, a1, PT_LEND
374
Chris Zankelc658eac2008-02-12 13:17:07 -0800375 /* Save optional registers. */
376
377 save_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
378
Chris Zankel5a0015d2005-06-23 22:01:16 -0700379 /* Go to second-level dispatcher. Set up parameters to pass to the
380 * exception handler and call the exception handler.
381 */
382
383 movi a4, exc_table
384 mov a6, a1 # pass stack frame
385 mov a7, a0 # pass EXCCAUSE
386 addx4 a4, a0, a4
387 l32i a4, a4, EXC_TABLE_DEFAULT # load handler
388
389 /* Call the second-level handler */
390
391 callx4 a4
392
393 /* Jump here for exception exit */
394
395common_exception_return:
396
397 /* Jump if we are returning from kernel exceptions. */
398
3991: l32i a3, a1, PT_PS
Chris Zankele1088432008-01-22 00:45:25 -0800400 _bbci.l a3, PS_UM_BIT, 4f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700401
402 /* Specific to a user exception exit:
403 * We need to check some flags for signal handling and rescheduling,
404 * and have to restore WB and WS, extra states, and all registers
405 * in the register file that were in use in the user task.
Chris Zankele1088432008-01-22 00:45:25 -0800406 * Note that we don't disable interrupts here.
Chris Zankel5a0015d2005-06-23 22:01:16 -0700407 */
408
409 GET_THREAD_INFO(a2,a1)
410 l32i a4, a2, TI_FLAGS
411
Chris Zankel5a0015d2005-06-23 22:01:16 -0700412 _bbsi.l a4, TIF_NEED_RESCHED, 3f
Al Viroa53bb242012-04-24 02:30:16 -0400413 _bbsi.l a4, TIF_NOTIFY_RESUME, 2f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700414 _bbci.l a4, TIF_SIGPENDING, 4f
415
Al Viroa53bb242012-04-24 02:30:16 -04004162: l32i a4, a1, PT_DEPC
Chris Zankel5a0015d2005-06-23 22:01:16 -0700417 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
Chris Zankel5a0015d2005-06-23 22:01:16 -0700418
Chris Zankele1088432008-01-22 00:45:25 -0800419 /* Call do_signal() */
420
Al Viroa53bb242012-04-24 02:30:16 -0400421 movi a4, do_notify_resume # int do_notify_resume(struct pt_regs*)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700422 mov a6, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700423 callx4 a4
424 j 1b
425
Chris Zankele1088432008-01-22 00:45:25 -08004263: /* Reschedule */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700427
Chris Zankel5a0015d2005-06-23 22:01:16 -0700428 movi a4, schedule # void schedule (void)
429 callx4 a4
430 j 1b
431
Chris Zankele1088432008-01-22 00:45:25 -08004324: /* Restore optional registers. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700433
Chris Zankele1088432008-01-22 00:45:25 -0800434 load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
435
Max Filippovbc5378f2012-10-15 03:55:38 +0400436 wsr a3, ps /* disable interrupts */
Chris Zankele1088432008-01-22 00:45:25 -0800437
438 _bbci.l a3, PS_UM_BIT, kernel_exception_exit
439
440user_exception_exit:
441
442 /* Restore the state of the task and return from the exception. */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700443
Chris Zankel5a0015d2005-06-23 22:01:16 -0700444 /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */
445
446 l32i a2, a1, PT_WINDOWBASE
447 l32i a3, a1, PT_WINDOWSTART
Max Filippovbc5378f2012-10-15 03:55:38 +0400448 wsr a1, depc # use DEPC as temp storage
449 wsr a3, windowstart # restore WINDOWSTART
Chris Zankel5a0015d2005-06-23 22:01:16 -0700450 ssr a2 # preserve user's WB in the SAR
Max Filippovbc5378f2012-10-15 03:55:38 +0400451 wsr a2, windowbase # switch to user's saved WB
Chris Zankel5a0015d2005-06-23 22:01:16 -0700452 rsync
Max Filippovbc5378f2012-10-15 03:55:38 +0400453 rsr a1, depc # restore stack pointer
Chris Zankel5a0015d2005-06-23 22:01:16 -0700454 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
455 rotw -1 # we restore a4..a7
456 _bltui a6, 16, 1f # only have to restore current window?
457
458 /* The working registers are a0 and a3. We are restoring to
459 * a4..a7. Be careful not to destroy what we have just restored.
460 * Note: wmask has the format YYYYM:
461 * Y: number of registers saved in groups of 4
462 * M: 4 bit mask of first 16 registers
463 */
464
465 mov a2, a6
466 mov a3, a5
467
4682: rotw -1 # a0..a3 become a4..a7
469 addi a3, a7, -4*4 # next iteration
470 addi a2, a6, -16 # decrementing Y in WMASK
471 l32i a4, a3, PT_AREG_END + 0
472 l32i a5, a3, PT_AREG_END + 4
473 l32i a6, a3, PT_AREG_END + 8
474 l32i a7, a3, PT_AREG_END + 12
475 _bgeui a2, 16, 2b
476
477 /* Clear unrestored registers (don't leak anything to user-land */
478
Max Filippovbc5378f2012-10-15 03:55:38 +04004791: rsr a0, windowbase
480 rsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -0700481 sub a3, a0, a3
482 beqz a3, 2f
483 extui a3, a3, 0, WBBITS
484
4851: rotw -1
486 addi a3, a7, -1
487 movi a4, 0
488 movi a5, 0
489 movi a6, 0
490 movi a7, 0
491 bgei a3, 1, 1b
492
493 /* We are back were we were when we started.
494 * Note: a2 still contains WMASK (if we've returned to the original
495 * frame where we had loaded a2), or at least the lower 4 bits
496 * (if we have restored WSBITS-1 frames).
497 */
498
4992: j common_exception_exit
500
501 /* This is the kernel exception exit.
502 * We avoided to do a MOVSP when we entered the exception, but we
503 * have to do it here.
504 */
505
506kernel_exception_exit:
507
Chris Zankel5a0015d2005-06-23 22:01:16 -0700508#ifdef PREEMPTIBLE_KERNEL
509
510#ifdef CONFIG_PREEMPT
511
512 /*
513 * Note: We've just returned from a call4, so we have
514 * at least 4 addt'l regs.
515 */
516
517 /* Check current_thread_info->preempt_count */
518
519 GET_THREAD_INFO(a2)
520 l32i a3, a2, TI_PREEMPT
521 bnez a3, 1f
522
523 l32i a2, a2, TI_FLAGS
524
5251:
526
527#endif
528
529#endif
530
531 /* Check if we have to do a movsp.
532 *
533 * We only have to do a movsp if the previous window-frame has
534 * been spilled to the *temporary* exception stack instead of the
535 * task's stack. This is the case if the corresponding bit in
536 * WINDOWSTART for the previous window-frame was set before
537 * (not spilled) but is zero now (spilled).
538 * If this bit is zero, all other bits except the one for the
539 * current window frame are also zero. So, we can use a simple test:
540 * 'and' WINDOWSTART and WINDOWSTART-1:
541 *
542 * (XXXXXX1[0]* - 1) AND XXXXXX1[0]* = XXXXXX0[0]*
543 *
544 * The result is zero only if one bit was set.
545 *
546 * (Note: We might have gone through several task switches before
547 * we come back to the current task, so WINDOWBASE might be
548 * different from the time the exception occurred.)
549 */
550
551 /* Test WINDOWSTART before and after the exception.
552 * We actually have WMASK, so we only have to test if it is 1 or not.
553 */
554
555 l32i a2, a1, PT_WMASK
556 _beqi a2, 1, common_exception_exit # Spilled before exception,jump
557
558 /* Test WINDOWSTART now. If spilled, do the movsp */
559
Max Filippovbc5378f2012-10-15 03:55:38 +0400560 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -0700561 addi a0, a3, -1
562 and a3, a3, a0
563 _bnez a3, common_exception_exit
564
565 /* Do a movsp (we returned from a call4, so we have at least a0..a7) */
566
567 addi a0, a1, -16
568 l32i a3, a0, 0
569 l32i a4, a0, 4
570 s32i a3, a1, PT_SIZE+0
571 s32i a4, a1, PT_SIZE+4
572 l32i a3, a0, 8
573 l32i a4, a0, 12
574 s32i a3, a1, PT_SIZE+8
575 s32i a4, a1, PT_SIZE+12
576
577 /* Common exception exit.
578 * We restore the special register and the current window frame, and
579 * return from the exception.
580 *
581 * Note: We expect a2 to hold PT_WMASK
582 */
583
584common_exception_exit:
585
Chris Zankelc658eac2008-02-12 13:17:07 -0800586 /* Restore address registers. */
587
Chris Zankel5a0015d2005-06-23 22:01:16 -0700588 _bbsi.l a2, 1, 1f
589 l32i a4, a1, PT_AREG4
590 l32i a5, a1, PT_AREG5
591 l32i a6, a1, PT_AREG6
592 l32i a7, a1, PT_AREG7
593 _bbsi.l a2, 2, 1f
594 l32i a8, a1, PT_AREG8
595 l32i a9, a1, PT_AREG9
596 l32i a10, a1, PT_AREG10
597 l32i a11, a1, PT_AREG11
598 _bbsi.l a2, 3, 1f
599 l32i a12, a1, PT_AREG12
600 l32i a13, a1, PT_AREG13
601 l32i a14, a1, PT_AREG14
602 l32i a15, a1, PT_AREG15
603
604 /* Restore PC, SAR */
605
6061: l32i a2, a1, PT_PC
607 l32i a3, a1, PT_SAR
Max Filippovbc5378f2012-10-15 03:55:38 +0400608 wsr a2, epc1
609 wsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -0700610
611 /* Restore LBEG, LEND, LCOUNT */
612
613 l32i a2, a1, PT_LBEG
614 l32i a3, a1, PT_LEND
Max Filippovbc5378f2012-10-15 03:55:38 +0400615 wsr a2, lbeg
Chris Zankel5a0015d2005-06-23 22:01:16 -0700616 l32i a2, a1, PT_LCOUNT
Max Filippovbc5378f2012-10-15 03:55:38 +0400617 wsr a3, lend
618 wsr a2, lcount
Chris Zankel5a0015d2005-06-23 22:01:16 -0700619
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700620 /* We control single stepping through the ICOUNTLEVEL register. */
621
622 l32i a2, a1, PT_ICOUNTLEVEL
623 movi a3, -2
Max Filippovbc5378f2012-10-15 03:55:38 +0400624 wsr a2, icountlevel
625 wsr a3, icount
Chris Zankel29c4dfd2007-05-31 17:49:32 -0700626
Chris Zankel5a0015d2005-06-23 22:01:16 -0700627 /* Check if it was double exception. */
628
629 l32i a0, a1, PT_DEPC
630 l32i a3, a1, PT_AREG3
631 l32i a2, a1, PT_AREG2
632 _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
633
634 /* Restore a0...a3 and return */
635
636 l32i a0, a1, PT_AREG0
637 l32i a1, a1, PT_AREG1
638 rfe
639
Max Filippovbc5378f2012-10-15 03:55:38 +04006401: wsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700641 l32i a0, a1, PT_AREG0
642 l32i a1, a1, PT_AREG1
643 rfde
644
Chris Zankeld1538c42012-11-16 16:16:20 -0800645ENDPROC(kernel_exception)
646
Chris Zankel5a0015d2005-06-23 22:01:16 -0700647/*
648 * Debug exception handler.
649 *
650 * Currently, we don't support KGDB, so only user application can be debugged.
651 *
652 * When we get here, a0 is trashed and saved to excsave[debuglevel]
653 */
654
655ENTRY(debug_exception)
656
Max Filippovbc5378f2012-10-15 03:55:38 +0400657 rsr a0, SREG_EPS + XCHAL_DEBUGLEVEL
Chris Zankel173d6682006-12-10 02:18:48 -0800658 bbsi.l a0, PS_EXCM_BIT, 1f # exception mode
Chris Zankel5a0015d2005-06-23 22:01:16 -0700659
Max Filippovbc5378f2012-10-15 03:55:38 +0400660 /* Set EPC1 and EXCCAUSE */
Chris Zankel5a0015d2005-06-23 22:01:16 -0700661
Max Filippovbc5378f2012-10-15 03:55:38 +0400662 wsr a2, depc # save a2 temporarily
663 rsr a2, SREG_EPC + XCHAL_DEBUGLEVEL
664 wsr a2, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700665
666 movi a2, EXCCAUSE_MAPPED_DEBUG
Max Filippovbc5378f2012-10-15 03:55:38 +0400667 wsr a2, exccause
Chris Zankel5a0015d2005-06-23 22:01:16 -0700668
669 /* Restore PS to the value before the debug exc but with PS.EXCM set.*/
670
Chris Zankel173d6682006-12-10 02:18:48 -0800671 movi a2, 1 << PS_EXCM_BIT
Chris Zankel5a0015d2005-06-23 22:01:16 -0700672 or a2, a0, a2
673 movi a0, debug_exception # restore a3, debug jump vector
Max Filippovbc5378f2012-10-15 03:55:38 +0400674 wsr a2, ps
675 xsr a0, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
Chris Zankel5a0015d2005-06-23 22:01:16 -0700676
677 /* Switch to kernel/user stack, restore jump vector, and save a0 */
678
Chris Zankel173d6682006-12-10 02:18:48 -0800679 bbsi.l a2, PS_UM_BIT, 2f # jump if user mode
Chris Zankel5a0015d2005-06-23 22:01:16 -0700680
681 addi a2, a1, -16-PT_SIZE # assume kernel stack
682 s32i a0, a2, PT_AREG0
683 movi a0, 0
684 s32i a1, a2, PT_AREG1
685 s32i a0, a2, PT_DEPC # mark it as a regular exception
Max Filippovbc5378f2012-10-15 03:55:38 +0400686 xsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700687 s32i a3, a2, PT_AREG3
688 s32i a0, a2, PT_AREG2
689 mov a1, a2
690 j _kernel_exception
691
Max Filippovbc5378f2012-10-15 03:55:38 +04006922: rsr a2, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700693 l32i a2, a2, EXC_TABLE_KSTK # load kernel stack pointer
694 s32i a0, a2, PT_AREG0
695 movi a0, 0
696 s32i a1, a2, PT_AREG1
697 s32i a0, a2, PT_DEPC
Max Filippovbc5378f2012-10-15 03:55:38 +0400698 xsr a0, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -0700699 s32i a3, a2, PT_AREG3
700 s32i a0, a2, PT_AREG2
701 mov a1, a2
702 j _user_exception
703
704 /* Debug exception while in exception mode. */
7051: j 1b // FIXME!!
706
Chris Zankeld1538c42012-11-16 16:16:20 -0800707ENDPROC(debug_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700708
709/*
710 * We get here in case of an unrecoverable exception.
711 * The only thing we can do is to be nice and print a panic message.
712 * We only produce a single stack frame for panic, so ???
713 *
714 *
715 * Entry conditions:
716 *
717 * - a0 contains the caller address; original value saved in excsave1.
718 * - the original a0 contains a valid return address (backtrace) or 0.
719 * - a2 contains a valid stackpointer
720 *
721 * Notes:
722 *
723 * - If the stack pointer could be invalid, the caller has to setup a
724 * dummy stack pointer (e.g. the stack of the init_task)
725 *
726 * - If the return address could be invalid, the caller has to set it
727 * to 0, so the backtrace would stop.
728 *
729 */
730 .align 4
731unrecoverable_text:
732 .ascii "Unrecoverable error in exception handler\0"
733
734ENTRY(unrecoverable_exception)
735
736 movi a0, 1
737 movi a1, 0
738
Max Filippovbc5378f2012-10-15 03:55:38 +0400739 wsr a0, windowstart
740 wsr a1, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -0700741 rsync
742
Chris Zankel173d6682006-12-10 02:18:48 -0800743 movi a1, (1 << PS_WOE_BIT) | 1
Max Filippovbc5378f2012-10-15 03:55:38 +0400744 wsr a1, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -0700745 rsync
746
747 movi a1, init_task
748 movi a0, 0
749 addi a1, a1, PT_REGS_OFFSET
750
751 movi a4, panic
752 movi a6, unrecoverable_text
753
754 callx4 a4
755
7561: j 1b
757
Chris Zankeld1538c42012-11-16 16:16:20 -0800758ENDPROC(unrecoverable_exception)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700759
760/* -------------------------- FAST EXCEPTION HANDLERS ----------------------- */
761
762/*
763 * Fast-handler for alloca exceptions
764 *
765 * The ALLOCA handler is entered when user code executes the MOVSP
766 * instruction and the caller's frame is not in the register file.
767 * In this case, the caller frame's a0..a3 are on the stack just
768 * below sp (a1), and this handler moves them.
769 *
770 * For "MOVSP <ar>,<as>" without destination register a1, this routine
771 * simply moves the value from <as> to <ar> without moving the save area.
772 *
773 * Entry condition:
774 *
775 * a0: trashed, original value saved on stack (PT_AREG0)
776 * a1: a1
777 * a2: new stack pointer, original in DEPC
778 * a3: dispatch table
779 * depc: a2, original value saved on stack (PT_DEPC)
780 * excsave_1: a3
781 *
782 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
783 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
784 */
785
786#if XCHAL_HAVE_BE
787#define _EXTUI_MOVSP_SRC(ar) extui ar, ar, 4, 4
788#define _EXTUI_MOVSP_DST(ar) extui ar, ar, 0, 4
789#else
790#define _EXTUI_MOVSP_SRC(ar) extui ar, ar, 0, 4
791#define _EXTUI_MOVSP_DST(ar) extui ar, ar, 4, 4
792#endif
793
794ENTRY(fast_alloca)
795
796 /* We shouldn't be in a double exception. */
797
798 l32i a0, a2, PT_DEPC
799 _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, .Lunhandled_double
800
Max Filippovbc5378f2012-10-15 03:55:38 +0400801 rsr a0, depc # get a2
Chris Zankel5a0015d2005-06-23 22:01:16 -0700802 s32i a4, a2, PT_AREG4 # save a4 and
803 s32i a0, a2, PT_AREG2 # a2 to stack
804
805 /* Exit critical section. */
806
807 movi a0, 0
808 s32i a0, a3, EXC_TABLE_FIXUP
809
810 /* Restore a3, excsave_1 */
811
Max Filippovbc5378f2012-10-15 03:55:38 +0400812 xsr a3, excsave1 # make sure excsave_1 is valid for dbl.
813 rsr a4, epc1 # get exception address
Chris Zankel5a0015d2005-06-23 22:01:16 -0700814 s32i a3, a2, PT_AREG3 # save a3 to stack
815
816#ifdef ALLOCA_EXCEPTION_IN_IRAM
817#error iram not supported
818#else
819 /* Note: l8ui not allowed in IRAM/IROM!! */
820 l8ui a0, a4, 1 # read as(src) from MOVSP instruction
821#endif
822 movi a3, .Lmovsp_src
823 _EXTUI_MOVSP_SRC(a0) # extract source register number
824 addx8 a3, a0, a3
825 jx a3
826
827.Lunhandled_double:
Max Filippovbc5378f2012-10-15 03:55:38 +0400828 wsr a0, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700829 movi a0, unrecoverable_exception
830 callx0 a0
831
832 .align 8
833.Lmovsp_src:
834 l32i a3, a2, PT_AREG0; _j 1f; .align 8
835 mov a3, a1; _j 1f; .align 8
836 l32i a3, a2, PT_AREG2; _j 1f; .align 8
837 l32i a3, a2, PT_AREG3; _j 1f; .align 8
838 l32i a3, a2, PT_AREG4; _j 1f; .align 8
839 mov a3, a5; _j 1f; .align 8
840 mov a3, a6; _j 1f; .align 8
841 mov a3, a7; _j 1f; .align 8
842 mov a3, a8; _j 1f; .align 8
843 mov a3, a9; _j 1f; .align 8
844 mov a3, a10; _j 1f; .align 8
845 mov a3, a11; _j 1f; .align 8
846 mov a3, a12; _j 1f; .align 8
847 mov a3, a13; _j 1f; .align 8
848 mov a3, a14; _j 1f; .align 8
849 mov a3, a15; _j 1f; .align 8
850
8511:
852
853#ifdef ALLOCA_EXCEPTION_IN_IRAM
854#error iram not supported
855#else
856 l8ui a0, a4, 0 # read ar(dst) from MOVSP instruction
857#endif
858 addi a4, a4, 3 # step over movsp
859 _EXTUI_MOVSP_DST(a0) # extract destination register
Max Filippovbc5378f2012-10-15 03:55:38 +0400860 wsr a4, epc1 # save new epc_1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700861
862 _bnei a0, 1, 1f # no 'movsp a1, ax': jump
863
864 /* Move the save area. This implies the use of the L32E
865 * and S32E instructions, because this move must be done with
866 * the user's PS.RING privilege levels, not with ring 0
867 * (kernel's) privileges currently active with PS.EXCM
868 * set. Note that we have stil registered a fixup routine with the
869 * double exception vector in case a double exception occurs.
870 */
871
872 /* a0,a4:avail a1:old user stack a2:exc. stack a3:new user stack. */
873
874 l32e a0, a1, -16
875 l32e a4, a1, -12
876 s32e a0, a3, -16
877 s32e a4, a3, -12
878 l32e a0, a1, -8
879 l32e a4, a1, -4
880 s32e a0, a3, -8
881 s32e a4, a3, -4
882
883 /* Restore stack-pointer and all the other saved registers. */
884
885 mov a1, a3
886
887 l32i a4, a2, PT_AREG4
888 l32i a3, a2, PT_AREG3
889 l32i a0, a2, PT_AREG0
890 l32i a2, a2, PT_AREG2
891 rfe
892
893 /* MOVSP <at>,<as> was invoked with <at> != a1.
894 * Because the stack pointer is not being modified,
895 * we should be able to just modify the pointer
896 * without moving any save area.
897 * The processor only traps these occurrences if the
898 * caller window isn't live, so unfortunately we can't
899 * use this as an alternate trap mechanism.
900 * So we just do the move. This requires that we
901 * resolve the destination register, not just the source,
902 * so there's some extra work.
903 * (PERHAPS NOT REALLY NEEDED, BUT CLEANER...)
904 */
905
906 /* a0 dst-reg, a1 user-stack, a2 stack, a3 value of src reg. */
907
9081: movi a4, .Lmovsp_dst
909 addx8 a4, a0, a4
910 jx a4
911
912 .align 8
913.Lmovsp_dst:
914 s32i a3, a2, PT_AREG0; _j 1f; .align 8
915 mov a1, a3; _j 1f; .align 8
916 s32i a3, a2, PT_AREG2; _j 1f; .align 8
917 s32i a3, a2, PT_AREG3; _j 1f; .align 8
918 s32i a3, a2, PT_AREG4; _j 1f; .align 8
919 mov a5, a3; _j 1f; .align 8
920 mov a6, a3; _j 1f; .align 8
921 mov a7, a3; _j 1f; .align 8
922 mov a8, a3; _j 1f; .align 8
923 mov a9, a3; _j 1f; .align 8
924 mov a10, a3; _j 1f; .align 8
925 mov a11, a3; _j 1f; .align 8
926 mov a12, a3; _j 1f; .align 8
927 mov a13, a3; _j 1f; .align 8
928 mov a14, a3; _j 1f; .align 8
929 mov a15, a3; _j 1f; .align 8
930
9311: l32i a4, a2, PT_AREG4
932 l32i a3, a2, PT_AREG3
933 l32i a0, a2, PT_AREG0
934 l32i a2, a2, PT_AREG2
935 rfe
936
Chris Zankeld1538c42012-11-16 16:16:20 -0800937ENDPROC(fast_alloca)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700938
939/*
940 * fast system calls.
941 *
942 * WARNING: The kernel doesn't save the entire user context before
943 * handling a fast system call. These functions are small and short,
944 * usually offering some functionality not available to user tasks.
945 *
946 * BE CAREFUL TO PRESERVE THE USER'S CONTEXT.
947 *
948 * Entry condition:
949 *
950 * a0: trashed, original value saved on stack (PT_AREG0)
951 * a1: a1
952 * a2: new stack pointer, original in DEPC
953 * a3: dispatch table
954 * depc: a2, original value saved on stack (PT_DEPC)
955 * excsave_1: a3
956 */
957
958ENTRY(fast_syscall_kernel)
959
960 /* Skip syscall. */
961
Max Filippovbc5378f2012-10-15 03:55:38 +0400962 rsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700963 addi a0, a0, 3
Max Filippovbc5378f2012-10-15 03:55:38 +0400964 wsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700965
966 l32i a0, a2, PT_DEPC
967 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
968
Max Filippovbc5378f2012-10-15 03:55:38 +0400969 rsr a0, depc # get syscall-nr
Chris Zankel5a0015d2005-06-23 22:01:16 -0700970 _beqz a0, fast_syscall_spill_registers
Chris Zankelfc4fb2a2006-12-10 02:18:52 -0800971 _beqi a0, __NR_xtensa, fast_syscall_xtensa
Chris Zankel5a0015d2005-06-23 22:01:16 -0700972
973 j kernel_exception
974
Chris Zankeld1538c42012-11-16 16:16:20 -0800975ENDPROC(fast_syscall_kernel)
976
Chris Zankel5a0015d2005-06-23 22:01:16 -0700977ENTRY(fast_syscall_user)
978
979 /* Skip syscall. */
980
Max Filippovbc5378f2012-10-15 03:55:38 +0400981 rsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700982 addi a0, a0, 3
Max Filippovbc5378f2012-10-15 03:55:38 +0400983 wsr a0, epc1
Chris Zankel5a0015d2005-06-23 22:01:16 -0700984
985 l32i a0, a2, PT_DEPC
986 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
987
Max Filippovbc5378f2012-10-15 03:55:38 +0400988 rsr a0, depc # get syscall-nr
Chris Zankel5a0015d2005-06-23 22:01:16 -0700989 _beqz a0, fast_syscall_spill_registers
Chris Zankelfc4fb2a2006-12-10 02:18:52 -0800990 _beqi a0, __NR_xtensa, fast_syscall_xtensa
Chris Zankel5a0015d2005-06-23 22:01:16 -0700991
992 j user_exception
993
Chris Zankeld1538c42012-11-16 16:16:20 -0800994ENDPROC(fast_syscall_user)
995
Chris Zankel5a0015d2005-06-23 22:01:16 -0700996ENTRY(fast_syscall_unrecoverable)
997
998 /* Restore all states. */
999
1000 l32i a0, a2, PT_AREG0 # restore a0
Max Filippovbc5378f2012-10-15 03:55:38 +04001001 xsr a2, depc # restore a2, depc
1002 rsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001003
Max Filippovbc5378f2012-10-15 03:55:38 +04001004 wsr a0, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001005 movi a0, unrecoverable_exception
1006 callx0 a0
1007
Chris Zankeld1538c42012-11-16 16:16:20 -08001008ENDPROC(fast_syscall_unrecoverable)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001009
1010/*
1011 * sysxtensa syscall handler
1012 *
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001013 * int sysxtensa (SYS_XTENSA_ATOMIC_SET, ptr, val, unused);
1014 * int sysxtensa (SYS_XTENSA_ATOMIC_ADD, ptr, val, unused);
1015 * int sysxtensa (SYS_XTENSA_ATOMIC_EXG_ADD, ptr, val, unused);
1016 * int sysxtensa (SYS_XTENSA_ATOMIC_CMP_SWP, ptr, oldval, newval);
1017 * a2 a6 a3 a4 a5
Chris Zankel5a0015d2005-06-23 22:01:16 -07001018 *
1019 * Entry condition:
1020 *
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001021 * a0: a2 (syscall-nr), original value saved on stack (PT_AREG0)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001022 * a1: a1
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001023 * a2: new stack pointer, original in a0 and DEPC
1024 * a3: dispatch table, original in excsave_1
1025 * a4..a15: unchanged
Chris Zankel5a0015d2005-06-23 22:01:16 -07001026 * depc: a2, original value saved on stack (PT_DEPC)
1027 * excsave_1: a3
1028 *
1029 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1030 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1031 *
1032 * Note: we don't have to save a2; a2 holds the return value
1033 *
1034 * We use the two macros TRY and CATCH:
1035 *
1036 * TRY adds an entry to the __ex_table fixup table for the immediately
1037 * following instruction.
1038 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001039 * CATCH catches any exception that occurred at one of the preceding TRY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001040 * statements and continues from there
1041 *
1042 * Usage TRY l32i a0, a1, 0
1043 * <other code>
1044 * done: rfe
1045 * CATCH <set return code>
1046 * j done
1047 */
1048
1049#define TRY \
1050 .section __ex_table, "a"; \
1051 .word 66f, 67f; \
1052 .text; \
105366:
1054
1055#define CATCH \
105667:
1057
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001058ENTRY(fast_syscall_xtensa)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001059
Max Filippovbc5378f2012-10-15 03:55:38 +04001060 xsr a3, excsave1 # restore a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001061
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001062 s32i a7, a2, PT_AREG7 # we need an additional register
Chris Zankel5a0015d2005-06-23 22:01:16 -07001063 movi a7, 4 # sizeof(unsigned int)
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001064 access_ok a3, a7, a0, a2, .Leac # a0: scratch reg, a2: sp
Chris Zankel5a0015d2005-06-23 22:01:16 -07001065
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001066 addi a6, a6, -1 # assuming SYS_XTENSA_ATOMIC_SET = 1
1067 _bgeui a6, SYS_XTENSA_COUNT - 1, .Lill
1068 _bnei a6, SYS_XTENSA_ATOMIC_CMP_SWP - 1, .Lnswp
Chris Zankel5a0015d2005-06-23 22:01:16 -07001069
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001070 /* Fall through for ATOMIC_CMP_SWP. */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001071
1072.Lswp: /* Atomic compare and swap */
1073
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001074TRY l32i a0, a3, 0 # read old value
1075 bne a0, a4, 1f # same as old value? jump
1076TRY s32i a5, a3, 0 # different, modify value
1077 l32i a7, a2, PT_AREG7 # restore a7
1078 l32i a0, a2, PT_AREG0 # restore a0
1079 movi a2, 1 # and return 1
1080 addi a6, a6, 1 # restore a6 (really necessary?)
1081 rfe
Chris Zankel5a0015d2005-06-23 22:01:16 -07001082
Chris Zankelfc4fb2a2006-12-10 02:18:52 -080010831: l32i a7, a2, PT_AREG7 # restore a7
1084 l32i a0, a2, PT_AREG0 # restore a0
1085 movi a2, 0 # return 0 (note that we cannot set
1086 addi a6, a6, 1 # restore a6 (really necessary?)
1087 rfe
Chris Zankel5a0015d2005-06-23 22:01:16 -07001088
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001089.Lnswp: /* Atomic set, add, and exg_add. */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001090
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001091TRY l32i a7, a3, 0 # orig
1092 add a0, a4, a7 # + arg
1093 moveqz a0, a4, a6 # set
1094TRY s32i a0, a3, 0 # write new value
Chris Zankel5a0015d2005-06-23 22:01:16 -07001095
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001096 mov a0, a2
Chris Zankel5a0015d2005-06-23 22:01:16 -07001097 mov a2, a7
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001098 l32i a7, a0, PT_AREG7 # restore a7
1099 l32i a0, a0, PT_AREG0 # restore a0
1100 addi a6, a6, 1 # restore a6 (really necessary?)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001101 rfe
1102
1103CATCH
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001104.Leac: l32i a7, a2, PT_AREG7 # restore a7
1105 l32i a0, a2, PT_AREG0 # restore a0
1106 movi a2, -EFAULT
1107 rfe
1108
1109.Lill: l32i a7, a2, PT_AREG0 # restore a7
1110 l32i a0, a2, PT_AREG0 # restore a0
1111 movi a2, -EINVAL
1112 rfe
1113
Chris Zankeld1538c42012-11-16 16:16:20 -08001114ENDPROC(fast_syscall_xtensa)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001115
1116
1117/* fast_syscall_spill_registers.
1118 *
1119 * Entry condition:
1120 *
1121 * a0: trashed, original value saved on stack (PT_AREG0)
1122 * a1: a1
1123 * a2: new stack pointer, original in DEPC
1124 * a3: dispatch table
1125 * depc: a2, original value saved on stack (PT_DEPC)
1126 * excsave_1: a3
1127 *
1128 * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001129 */
1130
1131ENTRY(fast_syscall_spill_registers)
1132
1133 /* Register a FIXUP handler (pass current wb as a parameter) */
1134
1135 movi a0, fast_syscall_spill_registers_fixup
1136 s32i a0, a3, EXC_TABLE_FIXUP
Max Filippovbc5378f2012-10-15 03:55:38 +04001137 rsr a0, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001138 s32i a0, a3, EXC_TABLE_PARAM
1139
1140 /* Save a3 and SAR on stack. */
1141
Max Filippovbc5378f2012-10-15 03:55:38 +04001142 rsr a0, sar
1143 xsr a3, excsave1 # restore a3 and excsave_1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001144 s32i a3, a2, PT_AREG3
Chris Zankelc658eac2008-02-12 13:17:07 -08001145 s32i a4, a2, PT_AREG4
1146 s32i a0, a2, PT_AREG5 # store SAR to PT_AREG5
Chris Zankel5a0015d2005-06-23 22:01:16 -07001147
1148 /* The spill routine might clobber a7, a11, and a15. */
1149
Chris Zankelc658eac2008-02-12 13:17:07 -08001150 s32i a7, a2, PT_AREG7
1151 s32i a11, a2, PT_AREG11
1152 s32i a15, a2, PT_AREG15
Chris Zankel5a0015d2005-06-23 22:01:16 -07001153
Chris Zankelc658eac2008-02-12 13:17:07 -08001154 call0 _spill_registers # destroys a3, a4, and SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001155
1156 /* Advance PC, restore registers and SAR, and return from exception. */
1157
Chris Zankelc658eac2008-02-12 13:17:07 -08001158 l32i a3, a2, PT_AREG5
1159 l32i a4, a2, PT_AREG4
Chris Zankel5a0015d2005-06-23 22:01:16 -07001160 l32i a0, a2, PT_AREG0
Max Filippovbc5378f2012-10-15 03:55:38 +04001161 wsr a3, sar
Chris Zankel5a0015d2005-06-23 22:01:16 -07001162 l32i a3, a2, PT_AREG3
1163
1164 /* Restore clobbered registers. */
1165
Chris Zankelc658eac2008-02-12 13:17:07 -08001166 l32i a7, a2, PT_AREG7
1167 l32i a11, a2, PT_AREG11
1168 l32i a15, a2, PT_AREG15
Chris Zankel5a0015d2005-06-23 22:01:16 -07001169
1170 movi a2, 0
1171 rfe
1172
Chris Zankeld1538c42012-11-16 16:16:20 -08001173ENDPROC(fast_syscall_spill_registers)
1174
Chris Zankel5a0015d2005-06-23 22:01:16 -07001175/* Fixup handler.
1176 *
1177 * We get here if the spill routine causes an exception, e.g. tlb miss.
1178 * We basically restore WINDOWBASE and WINDOWSTART to the condition when
1179 * we entered the spill routine and jump to the user exception handler.
1180 *
1181 * a0: value of depc, original value in depc
1182 * a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
1183 * a3: exctable, original value in excsave1
1184 */
1185
1186fast_syscall_spill_registers_fixup:
1187
Max Filippovbc5378f2012-10-15 03:55:38 +04001188 rsr a2, windowbase # get current windowbase (a2 is saved)
1189 xsr a0, depc # restore depc and a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001190 ssl a2 # set shift (32 - WB)
1191
1192 /* We need to make sure the current registers (a0-a3) are preserved.
1193 * To do this, we simply set the bit for the current window frame
1194 * in WS, so that the exception handlers save them to the task stack.
1195 */
1196
Max Filippovbc5378f2012-10-15 03:55:38 +04001197 rsr a3, excsave1 # get spill-mask
Chris Zankel5a0015d2005-06-23 22:01:16 -07001198 slli a2, a3, 1 # shift left by one
1199
1200 slli a3, a2, 32-WSBITS
1201 src a2, a2, a3 # a1 = xxwww1yyxxxwww1yy......
Max Filippovbc5378f2012-10-15 03:55:38 +04001202 wsr a2, windowstart # set corrected windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -07001203
1204 movi a3, exc_table
1205 l32i a2, a3, EXC_TABLE_DOUBLE_SAVE # restore a2
1206 l32i a3, a3, EXC_TABLE_PARAM # original WB (in user task)
1207
1208 /* Return to the original (user task) WINDOWBASE.
1209 * We leave the following frame behind:
1210 * a0, a1, a2 same
1211 * a3: trashed (saved in excsave_1)
1212 * depc: depc (we have to return to that address)
1213 * excsave_1: a3
1214 */
1215
Max Filippovbc5378f2012-10-15 03:55:38 +04001216 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001217 rsync
1218
1219 /* We are now in the original frame when we entered _spill_registers:
1220 * a0: return address
1221 * a1: used, stack pointer
1222 * a2: kernel stack pointer
1223 * a3: available, saved in EXCSAVE_1
1224 * depc: exception address
1225 * excsave: a3
1226 * Note: This frame might be the same as above.
1227 */
1228
Chris Zankel5a0015d2005-06-23 22:01:16 -07001229 /* Setup stack pointer. */
1230
1231 addi a2, a2, -PT_USER_SIZE
1232 s32i a0, a2, PT_AREG0
1233
1234 /* Make sure we return to this fixup handler. */
1235
1236 movi a3, fast_syscall_spill_registers_fixup_return
1237 s32i a3, a2, PT_DEPC # setup depc
1238
1239 /* Jump to the exception handler. */
1240
1241 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001242 rsr a0, exccause
Chris Zankelc658eac2008-02-12 13:17:07 -08001243 addx4 a0, a0, a3 # find entry in table
1244 l32i a0, a0, EXC_TABLE_FAST_USER # load handler
1245 jx a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001246
1247fast_syscall_spill_registers_fixup_return:
1248
1249 /* When we return here, all registers have been restored (a2: DEPC) */
1250
Max Filippovbc5378f2012-10-15 03:55:38 +04001251 wsr a2, depc # exception address
Chris Zankel5a0015d2005-06-23 22:01:16 -07001252
1253 /* Restore fixup handler. */
1254
Max Filippovbc5378f2012-10-15 03:55:38 +04001255 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001256 movi a2, fast_syscall_spill_registers_fixup
1257 s32i a2, a3, EXC_TABLE_FIXUP
Max Filippovbc5378f2012-10-15 03:55:38 +04001258 rsr a2, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001259 s32i a2, a3, EXC_TABLE_PARAM
1260 l32i a2, a3, EXC_TABLE_KSTK
1261
Chris Zankel5a0015d2005-06-23 22:01:16 -07001262 /* Load WB at the time the exception occurred. */
1263
Max Filippovbc5378f2012-10-15 03:55:38 +04001264 rsr a3, sar # WB is still in SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001265 neg a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +04001266 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001267 rsync
1268
1269 /* Restore a3 and return. */
1270
1271 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001272 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001273
1274 rfde
1275
1276
1277/*
1278 * spill all registers.
1279 *
1280 * This is not a real function. The following conditions must be met:
1281 *
1282 * - must be called with call0.
Chris Zankelc658eac2008-02-12 13:17:07 -08001283 * - uses a3, a4 and SAR.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001284 * - the last 'valid' register of each frame are clobbered.
1285 * - the caller must have registered a fixup handler
1286 * (or be inside a critical section)
1287 * - PS_EXCM must be set (PS_WOE cleared?)
1288 */
1289
1290ENTRY(_spill_registers)
1291
1292 /*
1293 * Rotate ws so that the current windowbase is at bit 0.
1294 * Assume ws = xxxwww1yy (www1 current window frame).
Chris Zankelc658eac2008-02-12 13:17:07 -08001295 * Rotate ws right so that a4 = yyxxxwww1.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001296 */
1297
Max Filippovbc5378f2012-10-15 03:55:38 +04001298 rsr a4, windowbase
1299 rsr a3, windowstart # a3 = xxxwww1yy
Chris Zankelc658eac2008-02-12 13:17:07 -08001300 ssr a4 # holds WB
1301 slli a4, a3, WSBITS
1302 or a3, a3, a4 # a3 = xxxwww1yyxxxwww1yy
Chris Zankelea0b6b02008-01-09 09:22:36 -08001303 srl a3, a3 # a3 = 00xxxwww1yyxxxwww1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001304
1305 /* We are done if there are no more than the current register frame. */
1306
Chris Zankel50c07162007-11-14 13:47:02 -08001307 extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
Chris Zankelc658eac2008-02-12 13:17:07 -08001308 movi a4, (1 << (WSBITS-1))
Chris Zankel5a0015d2005-06-23 22:01:16 -07001309 _beqz a3, .Lnospill # only one active frame? jump
1310
1311 /* We want 1 at the top, so that we return to the current windowbase */
1312
Chris Zankelc658eac2008-02-12 13:17:07 -08001313 or a3, a3, a4 # 1yyxxxwww
Chris Zankel5a0015d2005-06-23 22:01:16 -07001314
1315 /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */
1316
Max Filippovbc5378f2012-10-15 03:55:38 +04001317 wsr a3, windowstart # save shifted windowstart
Chris Zankelc658eac2008-02-12 13:17:07 -08001318 neg a4, a3
1319 and a3, a4, a3 # first bit set from right: 000010000
Chris Zankel5a0015d2005-06-23 22:01:16 -07001320
Chris Zankelc658eac2008-02-12 13:17:07 -08001321 ffs_ws a4, a3 # a4: shifts to skip empty frames
Chris Zankel5a0015d2005-06-23 22:01:16 -07001322 movi a3, WSBITS
Chris Zankelc658eac2008-02-12 13:17:07 -08001323 sub a4, a3, a4 # WSBITS-a4:number of 0-bits from right
1324 ssr a4 # save in SAR for later.
Chris Zankel5a0015d2005-06-23 22:01:16 -07001325
Max Filippovbc5378f2012-10-15 03:55:38 +04001326 rsr a3, windowbase
Chris Zankelc658eac2008-02-12 13:17:07 -08001327 add a3, a3, a4
Max Filippovbc5378f2012-10-15 03:55:38 +04001328 wsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001329 rsync
1330
Max Filippovbc5378f2012-10-15 03:55:38 +04001331 rsr a3, windowstart
Chris Zankel5a0015d2005-06-23 22:01:16 -07001332 srl a3, a3 # shift windowstart
1333
1334 /* WB is now just one frame below the oldest frame in the register
1335 window. WS is shifted so the oldest frame is in bit 0, thus, WB
1336 and WS differ by one 4-register frame. */
1337
1338 /* Save frames. Depending what call was used (call4, call8, call12),
1339 * we have to save 4,8. or 12 registers.
1340 */
1341
1342 _bbsi.l a3, 1, .Lc4
1343 _bbsi.l a3, 2, .Lc8
1344
1345 /* Special case: we have a call12-frame starting at a4. */
1346
1347 _bbci.l a3, 3, .Lc12 # bit 3 shouldn't be zero! (Jump to Lc12 first)
1348
1349 s32e a4, a1, -16 # a1 is valid with an empty spill area
1350 l32e a4, a5, -12
1351 s32e a8, a4, -48
1352 mov a8, a4
1353 l32e a4, a1, -16
1354 j .Lc12c
1355
Chris Zankel50c07162007-11-14 13:47:02 -08001356.Lnospill:
Chris Zankelea0b6b02008-01-09 09:22:36 -08001357 ret
Chris Zankel50c07162007-11-14 13:47:02 -08001358
Chris Zankel5a0015d2005-06-23 22:01:16 -07001359.Lloop: _bbsi.l a3, 1, .Lc4
1360 _bbci.l a3, 2, .Lc12
1361
1362.Lc8: s32e a4, a13, -16
1363 l32e a4, a5, -12
1364 s32e a8, a4, -32
1365 s32e a5, a13, -12
1366 s32e a6, a13, -8
1367 s32e a7, a13, -4
1368 s32e a9, a4, -28
1369 s32e a10, a4, -24
1370 s32e a11, a4, -20
1371
1372 srli a11, a3, 2 # shift windowbase by 2
1373 rotw 2
1374 _bnei a3, 1, .Lloop
1375
1376.Lexit: /* Done. Do the final rotation, set WS, and return. */
1377
1378 rotw 1
Max Filippovbc5378f2012-10-15 03:55:38 +04001379 rsr a3, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001380 ssl a3
1381 movi a3, 1
1382 sll a3, a3
Max Filippovbc5378f2012-10-15 03:55:38 +04001383 wsr a3, windowstart
Chris Zankelea0b6b02008-01-09 09:22:36 -08001384 ret
Chris Zankel5a0015d2005-06-23 22:01:16 -07001385
1386.Lc4: s32e a4, a9, -16
1387 s32e a5, a9, -12
1388 s32e a6, a9, -8
1389 s32e a7, a9, -4
1390
1391 srli a7, a3, 1
1392 rotw 1
1393 _bnei a3, 1, .Lloop
1394 j .Lexit
1395
1396.Lc12: _bbci.l a3, 3, .Linvalid_mask # bit 2 shouldn't be zero!
1397
1398 /* 12-register frame (call12) */
1399
1400 l32e a2, a5, -12
1401 s32e a8, a2, -48
1402 mov a8, a2
1403
1404.Lc12c: s32e a9, a8, -44
1405 s32e a10, a8, -40
1406 s32e a11, a8, -36
1407 s32e a12, a8, -32
1408 s32e a13, a8, -28
1409 s32e a14, a8, -24
1410 s32e a15, a8, -20
1411 srli a15, a3, 3
1412
1413 /* The stack pointer for a4..a7 is out of reach, so we rotate the
1414 * window, grab the stackpointer, and rotate back.
1415 * Alternatively, we could also use the following approach, but that
1416 * makes the fixup routine much more complicated:
1417 * rotw 1
1418 * s32e a0, a13, -16
1419 * ...
1420 * rotw 2
1421 */
1422
1423 rotw 1
1424 mov a5, a13
1425 rotw -1
1426
1427 s32e a4, a9, -16
1428 s32e a5, a9, -12
1429 s32e a6, a9, -8
1430 s32e a7, a9, -4
1431
1432 rotw 3
1433
1434 _beqi a3, 1, .Lexit
1435 j .Lloop
1436
1437.Linvalid_mask:
1438
1439 /* We get here because of an unrecoverable error in the window
1440 * registers. If we are in user space, we kill the application,
1441 * however, this condition is unrecoverable in kernel space.
1442 */
1443
Max Filippovbc5378f2012-10-15 03:55:38 +04001444 rsr a0, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001445 _bbci.l a0, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001446
1447 /* User space: Setup a dummy frame and kill application.
1448 * Note: We assume EXC_TABLE_KSTK contains a valid stack pointer.
1449 */
1450
1451 movi a0, 1
1452 movi a1, 0
1453
Max Filippovbc5378f2012-10-15 03:55:38 +04001454 wsr a0, windowstart
1455 wsr a1, windowbase
Chris Zankel5a0015d2005-06-23 22:01:16 -07001456 rsync
1457
1458 movi a0, 0
1459
1460 movi a3, exc_table
1461 l32i a1, a3, EXC_TABLE_KSTK
Max Filippovbc5378f2012-10-15 03:55:38 +04001462 wsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001463
Chris Zankel173d6682006-12-10 02:18:48 -08001464 movi a4, (1 << PS_WOE_BIT) | 1
Max Filippovbc5378f2012-10-15 03:55:38 +04001465 wsr a4, ps
Chris Zankel5a0015d2005-06-23 22:01:16 -07001466 rsync
1467
1468 movi a6, SIGSEGV
1469 movi a4, do_exit
1470 callx4 a4
1471
14721: /* Kernel space: PANIC! */
1473
Max Filippovbc5378f2012-10-15 03:55:38 +04001474 wsr a0, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001475 movi a0, unrecoverable_exception
1476 callx0 a0 # should not return
14771: j 1b
1478
Chris Zankeld1538c42012-11-16 16:16:20 -08001479ENDPROC(_spill_registers)
1480
Johannes Weinere5083a62009-03-04 16:21:31 +01001481#ifdef CONFIG_MMU
Chris Zankel5a0015d2005-06-23 22:01:16 -07001482/*
1483 * We should never get here. Bail out!
1484 */
1485
1486ENTRY(fast_second_level_miss_double_kernel)
1487
14881: movi a0, unrecoverable_exception
1489 callx0 a0 # should not return
14901: j 1b
1491
Chris Zankeld1538c42012-11-16 16:16:20 -08001492ENDPROC(fast_second_level_miss_double_kernel)
1493
Chris Zankel5a0015d2005-06-23 22:01:16 -07001494/* First-level entry handler for user, kernel, and double 2nd-level
1495 * TLB miss exceptions. Note that for now, user and kernel miss
1496 * exceptions share the same entry point and are handled identically.
1497 *
1498 * An old, less-efficient C version of this function used to exist.
1499 * We include it below, interleaved as comments, for reference.
1500 *
1501 * Entry condition:
1502 *
1503 * a0: trashed, original value saved on stack (PT_AREG0)
1504 * a1: a1
1505 * a2: new stack pointer, original in DEPC
1506 * a3: dispatch table
1507 * depc: a2, original value saved on stack (PT_DEPC)
1508 * excsave_1: a3
1509 *
1510 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1511 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1512 */
1513
1514ENTRY(fast_second_level_miss)
1515
1516 /* Save a1. Note: we don't expect a double exception. */
1517
1518 s32i a1, a2, PT_AREG1
1519
1520 /* We need to map the page of PTEs for the user task. Find
1521 * the pointer to that page. Also, it's possible for tsk->mm
1522 * to be NULL while tsk->active_mm is nonzero if we faulted on
1523 * a vmalloc address. In that rare case, we must use
1524 * active_mm instead to avoid a fault in this handler. See
1525 *
1526 * http://mail.nl.linux.org/linux-mm/2002-08/msg00258.html
1527 * (or search Internet on "mm vs. active_mm")
1528 *
1529 * if (!mm)
1530 * mm = tsk->active_mm;
1531 * pgd = pgd_offset (mm, regs->excvaddr);
1532 * pmd = pmd_offset (pgd, regs->excvaddr);
1533 * pmdval = *pmd;
1534 */
1535
1536 GET_CURRENT(a1,a2)
1537 l32i a0, a1, TASK_MM # tsk->mm
1538 beqz a0, 9f
1539
Chris Zankel01858d12007-08-06 23:57:57 -07001540
1541 /* We deliberately destroy a3 that holds the exception table. */
1542
Max Filippovbc5378f2012-10-15 03:55:38 +040015438: rsr a3, excvaddr # fault address
Chris Zankel01858d12007-08-06 23:57:57 -07001544 _PGD_OFFSET(a0, a3, a1)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001545 l32i a0, a0, 0 # read pmdval
Chris Zankel5a0015d2005-06-23 22:01:16 -07001546 beqz a0, 2f
1547
1548 /* Read ptevaddr and convert to top of page-table page.
1549 *
1550 * vpnval = read_ptevaddr_register() & PAGE_MASK;
1551 * vpnval += DTLB_WAY_PGTABLE;
1552 * pteval = mk_pte (virt_to_page(pmd_val(pmdval)), PAGE_KERNEL);
1553 * write_dtlb_entry (pteval, vpnval);
1554 *
1555 * The messy computation for 'pteval' above really simplifies
1556 * into the following:
1557 *
Chris Zankel66569202007-08-22 10:14:51 -07001558 * pteval = ((pmdval - PAGE_OFFSET) & PAGE_MASK) | PAGE_DIRECTORY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001559 */
1560
Chris Zankel39070cb2012-10-17 23:08:20 -07001561 movi a1, (-PAGE_OFFSET) & 0xffffffff
Chris Zankel5a0015d2005-06-23 22:01:16 -07001562 add a0, a0, a1 # pmdval - PAGE_OFFSET
1563 extui a1, a0, 0, PAGE_SHIFT # ... & PAGE_MASK
1564 xor a0, a0, a1
1565
Chris Zankel01858d12007-08-06 23:57:57 -07001566 movi a1, _PAGE_DIRECTORY
Chris Zankel5a0015d2005-06-23 22:01:16 -07001567 or a0, a0, a1 # ... | PAGE_DIRECTORY
1568
Chris Zankel01858d12007-08-06 23:57:57 -07001569 /*
Chris Zankel66569202007-08-22 10:14:51 -07001570 * We utilize all three wired-ways (7-9) to hold pmd translations.
Chris Zankel01858d12007-08-06 23:57:57 -07001571 * Memory regions are mapped to the DTLBs according to bits 28 and 29.
1572 * This allows to map the three most common regions to three different
1573 * DTLBs:
1574 * 0,1 -> way 7 program (0040.0000) and virtual (c000.0000)
1575 * 2 -> way 8 shared libaries (2000.0000)
1576 * 3 -> way 0 stack (3000.0000)
1577 */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001578
Chris Zankel01858d12007-08-06 23:57:57 -07001579 extui a3, a3, 28, 2 # addr. bit 28 and 29 0,1,2,3
Max Filippovbc5378f2012-10-15 03:55:38 +04001580 rsr a1, ptevaddr
Chris Zankel01858d12007-08-06 23:57:57 -07001581 addx2 a3, a3, a3 # -> 0,3,6,9
1582 srli a1, a1, PAGE_SHIFT
1583 extui a3, a3, 2, 2 # -> 0,0,1,2
1584 slli a1, a1, PAGE_SHIFT # ptevaddr & PAGE_MASK
1585 addi a3, a3, DTLB_WAY_PGD
1586 add a1, a1, a3 # ... + way_number
1587
15883: wdtlb a0, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001589 dsync
1590
1591 /* Exit critical section. */
1592
Chris Zankel01858d12007-08-06 23:57:57 -070015934: movi a3, exc_table # restore a3
Chris Zankel5a0015d2005-06-23 22:01:16 -07001594 movi a0, 0
1595 s32i a0, a3, EXC_TABLE_FIXUP
1596
1597 /* Restore the working registers, and return. */
1598
1599 l32i a0, a2, PT_AREG0
1600 l32i a1, a2, PT_AREG1
1601 l32i a2, a2, PT_DEPC
Max Filippovbc5378f2012-10-15 03:55:38 +04001602 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001603
1604 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1605
1606 /* Restore excsave1 and return. */
1607
Max Filippovbc5378f2012-10-15 03:55:38 +04001608 rsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001609 rfe
1610
1611 /* Return from double exception. */
1612
Max Filippovbc5378f2012-10-15 03:55:38 +040016131: xsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001614 esync
1615 rfde
1616
16179: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1618 j 8b
1619
Chris Zankel66569202007-08-22 10:14:51 -07001620#if (DCACHE_WAY_SIZE > PAGE_SIZE)
1621
16222: /* Special case for cache aliasing.
1623 * We (should) only get here if a clear_user_page, copy_user_page
1624 * or the aliased cache flush functions got preemptively interrupted
1625 * by another task. Re-establish temporary mapping to the
1626 * TLBTEMP_BASE areas.
1627 */
1628
1629 /* We shouldn't be in a double exception */
1630
1631 l32i a0, a2, PT_DEPC
1632 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 2f
1633
1634 /* Make sure the exception originated in the special functions */
1635
1636 movi a0, __tlbtemp_mapping_start
Max Filippovbc5378f2012-10-15 03:55:38 +04001637 rsr a3, epc1
Chris Zankel66569202007-08-22 10:14:51 -07001638 bltu a3, a0, 2f
1639 movi a0, __tlbtemp_mapping_end
1640 bgeu a3, a0, 2f
1641
1642 /* Check if excvaddr was in one of the TLBTEMP_BASE areas. */
1643
1644 movi a3, TLBTEMP_BASE_1
Max Filippovbc5378f2012-10-15 03:55:38 +04001645 rsr a0, excvaddr
Chris Zankel66569202007-08-22 10:14:51 -07001646 bltu a0, a3, 2f
1647
1648 addi a1, a0, -(2 << (DCACHE_ALIAS_ORDER + PAGE_SHIFT))
1649 bgeu a1, a3, 2f
1650
1651 /* Check if we have to restore an ITLB mapping. */
1652
1653 movi a1, __tlbtemp_mapping_itlb
Max Filippovbc5378f2012-10-15 03:55:38 +04001654 rsr a3, epc1
Chris Zankel66569202007-08-22 10:14:51 -07001655 sub a3, a3, a1
1656
1657 /* Calculate VPN */
1658
1659 movi a1, PAGE_MASK
1660 and a1, a1, a0
1661
1662 /* Jump for ITLB entry */
1663
1664 bgez a3, 1f
1665
1666 /* We can use up to two TLBTEMP areas, one for src and one for dst. */
1667
1668 extui a3, a0, PAGE_SHIFT + DCACHE_ALIAS_ORDER, 1
1669 add a1, a3, a1
1670
1671 /* PPN is in a6 for the first TLBTEMP area and in a7 for the second. */
1672
1673 mov a0, a6
1674 movnez a0, a7, a3
1675 j 3b
1676
1677 /* ITLB entry. We only use dst in a6. */
1678
16791: witlb a6, a1
1680 isync
1681 j 4b
1682
1683
1684#endif // DCACHE_WAY_SIZE > PAGE_SIZE
1685
1686
Chris Zankel5a0015d2005-06-23 22:01:16 -070016872: /* Invalid PGD, default exception handling */
1688
Chris Zankel01858d12007-08-06 23:57:57 -07001689 movi a3, exc_table
Max Filippovbc5378f2012-10-15 03:55:38 +04001690 rsr a1, depc
1691 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001692 s32i a1, a2, PT_AREG2
1693 s32i a3, a2, PT_AREG3
1694 mov a1, a2
1695
Max Filippovbc5378f2012-10-15 03:55:38 +04001696 rsr a2, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001697 bbsi.l a2, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001698 j _kernel_exception
16991: j _user_exception
1700
Chris Zankeld1538c42012-11-16 16:16:20 -08001701ENDPROC(fast_second_level_miss)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001702
1703/*
1704 * StoreProhibitedException
1705 *
1706 * Update the pte and invalidate the itlb mapping for this pte.
1707 *
1708 * Entry condition:
1709 *
1710 * a0: trashed, original value saved on stack (PT_AREG0)
1711 * a1: a1
1712 * a2: new stack pointer, original in DEPC
1713 * a3: dispatch table
1714 * depc: a2, original value saved on stack (PT_DEPC)
1715 * excsave_1: a3
1716 *
1717 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1718 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1719 */
1720
1721ENTRY(fast_store_prohibited)
1722
1723 /* Save a1 and a4. */
1724
1725 s32i a1, a2, PT_AREG1
1726 s32i a4, a2, PT_AREG4
1727
1728 GET_CURRENT(a1,a2)
1729 l32i a0, a1, TASK_MM # tsk->mm
1730 beqz a0, 9f
1731
Max Filippovbc5378f2012-10-15 03:55:38 +040017328: rsr a1, excvaddr # fault address
Chris Zankel5a0015d2005-06-23 22:01:16 -07001733 _PGD_OFFSET(a0, a1, a4)
1734 l32i a0, a0, 0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001735 beqz a0, 2f
1736
Chris Zankel01858d12007-08-06 23:57:57 -07001737 /* Note that we assume _PAGE_WRITABLE_BIT is only set if pte is valid.*/
1738
Chris Zankel5a0015d2005-06-23 22:01:16 -07001739 _PTE_OFFSET(a0, a1, a4)
1740 l32i a4, a0, 0 # read pteval
Chris Zankel01858d12007-08-06 23:57:57 -07001741 bbci.l a4, _PAGE_WRITABLE_BIT, 2f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001742
Chris Zankel01858d12007-08-06 23:57:57 -07001743 movi a1, _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HW_WRITE
Chris Zankel5a0015d2005-06-23 22:01:16 -07001744 or a4, a4, a1
Max Filippovbc5378f2012-10-15 03:55:38 +04001745 rsr a1, excvaddr
Chris Zankel5a0015d2005-06-23 22:01:16 -07001746 s32i a4, a0, 0
1747
1748 /* We need to flush the cache if we have page coloring. */
1749#if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
1750 dhwb a0, 0
1751#endif
1752 pdtlb a0, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001753 wdtlb a4, a0
Chris Zankel5a0015d2005-06-23 22:01:16 -07001754
1755 /* Exit critical section. */
1756
1757 movi a0, 0
1758 s32i a0, a3, EXC_TABLE_FIXUP
1759
1760 /* Restore the working registers, and return. */
1761
1762 l32i a4, a2, PT_AREG4
1763 l32i a1, a2, PT_AREG1
1764 l32i a0, a2, PT_AREG0
1765 l32i a2, a2, PT_DEPC
1766
1767 /* Restore excsave1 and a3. */
1768
Max Filippovbc5378f2012-10-15 03:55:38 +04001769 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001770 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1771
Max Filippovbc5378f2012-10-15 03:55:38 +04001772 rsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001773 rfe
1774
1775 /* Double exception. Restore FIXUP handler and return. */
1776
Max Filippovbc5378f2012-10-15 03:55:38 +040017771: xsr a2, depc
Chris Zankel5a0015d2005-06-23 22:01:16 -07001778 esync
1779 rfde
1780
17819: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1782 j 8b
1783
17842: /* If there was a problem, handle fault in C */
1785
Max Filippovbc5378f2012-10-15 03:55:38 +04001786 rsr a4, depc # still holds a2
1787 xsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001788 s32i a4, a2, PT_AREG2
1789 s32i a3, a2, PT_AREG3
1790 l32i a4, a2, PT_AREG4
1791 mov a1, a2
1792
Max Filippovbc5378f2012-10-15 03:55:38 +04001793 rsr a2, ps
Chris Zankel173d6682006-12-10 02:18:48 -08001794 bbsi.l a2, PS_UM_BIT, 1f
Chris Zankel5a0015d2005-06-23 22:01:16 -07001795 j _kernel_exception
17961: j _user_exception
Chris Zankeld1538c42012-11-16 16:16:20 -08001797
1798ENDPROC(fast_store_prohibited)
1799
Johannes Weinere5083a62009-03-04 16:21:31 +01001800#endif /* CONFIG_MMU */
Chris Zankel5a0015d2005-06-23 22:01:16 -07001801
Chris Zankel5a0015d2005-06-23 22:01:16 -07001802/*
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001803 * System Calls.
1804 *
1805 * void system_call (struct pt_regs* regs, int exccause)
1806 * a2 a3
1807 */
1808
1809ENTRY(system_call)
Chris Zankeld1538c42012-11-16 16:16:20 -08001810
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001811 entry a1, 32
1812
1813 /* regs->syscall = regs->areg[2] */
1814
1815 l32i a3, a2, PT_AREG2
1816 mov a6, a2
1817 movi a4, do_syscall_trace_enter
1818 s32i a3, a2, PT_SYSCALL
1819 callx4 a4
1820
1821 /* syscall = sys_call_table[syscall_nr] */
1822
1823 movi a4, sys_call_table;
1824 movi a5, __NR_syscall_count
1825 movi a6, -ENOSYS
1826 bgeu a3, a5, 1f
1827
1828 addx4 a4, a3, a4
1829 l32i a4, a4, 0
1830 movi a5, sys_ni_syscall;
1831 beq a4, a5, 1f
1832
1833 /* Load args: arg0 - arg5 are passed via regs. */
1834
1835 l32i a6, a2, PT_AREG6
1836 l32i a7, a2, PT_AREG3
1837 l32i a8, a2, PT_AREG4
1838 l32i a9, a2, PT_AREG5
1839 l32i a10, a2, PT_AREG8
1840 l32i a11, a2, PT_AREG9
1841
1842 /* Pass one additional argument to the syscall: pt_regs (on stack) */
1843 s32i a2, a1, 0
1844
1845 callx4 a4
1846
18471: /* regs->areg[2] = return_value */
1848
1849 s32i a6, a2, PT_AREG2
1850 movi a4, do_syscall_trace_leave
1851 mov a6, a2
1852 callx4 a4
1853 retw
1854
Chris Zankeld1538c42012-11-16 16:16:20 -08001855ENDPROC(system_call)
1856
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001857
1858/*
Chris Zankel5a0015d2005-06-23 22:01:16 -07001859 * Task switch.
1860 *
1861 * struct task* _switch_to (struct task* prev, struct task* next)
1862 * a2 a2 a3
1863 */
1864
1865ENTRY(_switch_to)
1866
1867 entry a1, 16
1868
Chris Zankelc658eac2008-02-12 13:17:07 -08001869 mov a12, a2 # preserve 'prev' (a2)
1870 mov a13, a3 # and 'next' (a3)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001871
Chris Zankelc658eac2008-02-12 13:17:07 -08001872 l32i a4, a2, TASK_THREAD_INFO
1873 l32i a5, a3, TASK_THREAD_INFO
Chris Zankel5a0015d2005-06-23 22:01:16 -07001874
Chris Zankelc658eac2008-02-12 13:17:07 -08001875 save_xtregs_user a4 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
Chris Zankel5a0015d2005-06-23 22:01:16 -07001876
Chris Zankelc658eac2008-02-12 13:17:07 -08001877 s32i a0, a12, THREAD_RA # save return address
1878 s32i a1, a12, THREAD_SP # save stack pointer
1879
1880 /* Disable ints while we manipulate the stack pointer. */
1881
1882 movi a14, (1 << PS_EXCM_BIT) | LOCKLEVEL
Max Filippovbc5378f2012-10-15 03:55:38 +04001883 xsr a14, ps
1884 rsr a3, excsave1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001885 rsync
1886 s32i a3, a3, EXC_TABLE_FIXUP /* enter critical section */
1887
Chris Zankelc658eac2008-02-12 13:17:07 -08001888 /* Switch CPENABLE */
1889
1890#if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS)
1891 l32i a3, a5, THREAD_CPENABLE
Max Filippovbc5378f2012-10-15 03:55:38 +04001892 xsr a3, cpenable
Chris Zankelc658eac2008-02-12 13:17:07 -08001893 s32i a3, a4, THREAD_CPENABLE
1894#endif
1895
1896 /* Flush register file. */
1897
1898 call0 _spill_registers # destroys a3, a4, and SAR
Chris Zankel5a0015d2005-06-23 22:01:16 -07001899
1900 /* Set kernel stack (and leave critical section)
1901 * Note: It's save to set it here. The stack will not be overwritten
1902 * because the kernel stack will only be loaded again after
1903 * we return from kernel space.
1904 */
1905
Max Filippovbc5378f2012-10-15 03:55:38 +04001906 rsr a3, excsave1 # exc_table
Chris Zankelc658eac2008-02-12 13:17:07 -08001907 movi a6, 0
1908 addi a7, a5, PT_REGS_OFFSET
1909 s32i a6, a3, EXC_TABLE_FIXUP
1910 s32i a7, a3, EXC_TABLE_KSTK
Chris Zankel5a0015d2005-06-23 22:01:16 -07001911
1912 /* restore context of the task that 'next' addresses */
1913
Chris Zankelc658eac2008-02-12 13:17:07 -08001914 l32i a0, a13, THREAD_RA # restore return address
1915 l32i a1, a13, THREAD_SP # restore stack pointer
Chris Zankel5a0015d2005-06-23 22:01:16 -07001916
Chris Zankelc658eac2008-02-12 13:17:07 -08001917 load_xtregs_user a5 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
1918
Max Filippovbc5378f2012-10-15 03:55:38 +04001919 wsr a14, ps
Chris Zankelc658eac2008-02-12 13:17:07 -08001920 mov a2, a12 # return 'prev'
Chris Zankel5a0015d2005-06-23 22:01:16 -07001921 rsync
1922
1923 retw
1924
Chris Zankeld1538c42012-11-16 16:16:20 -08001925ENDPROC(_switch_to)
Chris Zankel5a0015d2005-06-23 22:01:16 -07001926
1927ENTRY(ret_from_fork)
1928
1929 /* void schedule_tail (struct task_struct *prev)
1930 * Note: prev is still in a6 (return value from fake call4 frame)
1931 */
1932 movi a4, schedule_tail
1933 callx4 a4
1934
Chris Zankelfc4fb2a2006-12-10 02:18:52 -08001935 movi a4, do_syscall_trace_leave
1936 mov a6, a1
Chris Zankel5a0015d2005-06-23 22:01:16 -07001937 callx4 a4
1938
1939 j common_exception_return
1940
Chris Zankeld1538c42012-11-16 16:16:20 -08001941ENDPROC(ret_from_fork)
1942
Max Filippov3306a722012-10-25 11:10:50 +04001943/*
1944 * Kernel thread creation helper
1945 * On entry, set up by copy_thread: a2 = thread_fn, a3 = thread_fn arg
1946 * left from _switch_to: a6 = prev
1947 */
1948ENTRY(ret_from_kernel_thread)
1949
1950 call4 schedule_tail
1951 mov a6, a3
1952 callx4 a2
Max Filippovf0a1bf02012-10-25 11:10:51 +04001953 j common_exception_return
Max Filippov3306a722012-10-25 11:10:50 +04001954
1955ENDPROC(ret_from_kernel_thread)