Merge branch 'regmap-5.3' into regmap-next
[linux-2.6-block.git] / arch / xtensa / kernel / entry.S
CommitLineData
5a0015d6 1/*
5a0015d6
CZ
2 * Low-level exception handling
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
2d1c645c 8 * Copyright (C) 2004 - 2008 by Tensilica Inc.
38fef73c 9 * Copyright (C) 2015 Cadence Design Systems Inc.
5a0015d6
CZ
10 *
11 * Chris Zankel <chris@zankel.net>
12 *
13 */
14
15#include <linux/linkage.h>
0013a854 16#include <asm/asm-offsets.h>
0013aceb 17#include <asm/asmmacro.h>
5a0015d6 18#include <asm/processor.h>
4573e398 19#include <asm/coprocessor.h>
5a0015d6 20#include <asm/thread_info.h>
76580237 21#include <asm/asm-uaccess.h>
5a0015d6
CZ
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>
173d6681 28#include <asm/tlbflush.h>
367b8112 29#include <variant/tie-asm.h>
5a0015d6
CZ
30
31/* Unimplemented features. */
32
5a0015d6 33#undef KERNEL_STACK_OVERFLOW_CHECK
5a0015d6
CZ
34
35/* Not well tested.
36 *
37 * - fast_coprocessor
38 */
39
40/*
41 * Macro to find first bit set in WINDOWBASE from the left + 1
42 *
43 * 100....0 -> 1
44 * 010....0 -> 2
45 * 000....1 -> WSBITS
46 */
47
48 .macro ffs_ws bit mask
49
50#if XCHAL_HAVE_NSA
51 nsau \bit, \mask # 32-WSBITS ... 31 (32 iff 0)
52 addi \bit, \bit, WSBITS - 32 + 1 # uppest bit set -> return 1
53#else
54 movi \bit, WSBITS
55#if WSBITS > 16
56 _bltui \mask, 0x10000, 99f
57 addi \bit, \bit, -16
58 extui \mask, \mask, 16, 16
59#endif
60#if WSBITS > 8
6199: _bltui \mask, 0x100, 99f
62 addi \bit, \bit, -8
63 srli \mask, \mask, 8
64#endif
6599: _bltui \mask, 0x10, 99f
66 addi \bit, \bit, -4
67 srli \mask, \mask, 4
6899: _bltui \mask, 0x4, 99f
69 addi \bit, \bit, -2
70 srli \mask, \mask, 2
7199: _bltui \mask, 0x2, 99f
72 addi \bit, \bit, -1
7399:
74
75#endif
76 .endm
77
38fef73c
MF
78
79 .macro irq_save flags tmp
80#if XTENSA_FAKE_NMI
81#if defined(CONFIG_DEBUG_KERNEL) && (LOCKLEVEL | TOPLEVEL) >= XCHAL_DEBUGLEVEL
82 rsr \flags, ps
83 extui \tmp, \flags, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
84 bgei \tmp, LOCKLEVEL, 99f
85 rsil \tmp, LOCKLEVEL
8699:
87#else
88 movi \tmp, LOCKLEVEL
89 rsr \flags, ps
90 or \flags, \flags, \tmp
91 xsr \flags, ps
92 rsync
93#endif
94#else
95 rsil \flags, LOCKLEVEL
96#endif
97 .endm
98
5a0015d6
CZ
99/* ----------------- DEFAULT FIRST LEVEL EXCEPTION HANDLERS ----------------- */
100
101/*
102 * First-level exception handler for user exceptions.
103 * Save some special registers, extra states and all registers in the AR
104 * register file that were in use in the user task, and jump to the common
105 * exception code.
106 * We save SAR (used to calculate WMASK), and WB and WS (we don't have to
107 * save them for kernel exceptions).
108 *
109 * Entry condition for user_exception:
110 *
111 * a0: trashed, original value saved on stack (PT_AREG0)
112 * a1: a1
113 * a2: new stack pointer, original value in depc
99d5040e 114 * a3: a3
5a0015d6 115 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 116 * excsave1: dispatch table
5a0015d6
CZ
117 *
118 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
119 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
120 *
121 * Entry condition for _user_exception:
122 *
123 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
124 * excsave has been restored, and
125 * stack pointer (a1) has been set.
126 *
3ad2f3fb 127 * Note: _user_exception might be at an odd address. Don't use call0..call12
5a0015d6 128 */
f8f02ca7 129 .literal_position
5a0015d6
CZ
130
131ENTRY(user_exception)
132
99d5040e 133 /* Save a1, a2, a3, and set SP. */
5a0015d6 134
bc5378fc 135 rsr a0, depc
5a0015d6
CZ
136 s32i a1, a2, PT_AREG1
137 s32i a0, a2, PT_AREG2
138 s32i a3, a2, PT_AREG3
139 mov a1, a2
140
141 .globl _user_exception
142_user_exception:
143
144 /* Save SAR and turn off single stepping */
145
146 movi a2, 0
b6569439 147 wsr a2, depc # terminate user stack trace with 0
bc5378fc
MF
148 rsr a3, sar
149 xsr a2, icountlevel
5a0015d6 150 s32i a3, a1, PT_SAR
29c4dfd9 151 s32i a2, a1, PT_ICOUNTLEVEL
5a0015d6 152
c50842df
CZ
153#if XCHAL_HAVE_THREADPTR
154 rur a2, threadptr
155 s32i a2, a1, PT_THREADPTR
156#endif
157
5a0015d6
CZ
158 /* Rotate ws so that the current windowbase is at bit0. */
159 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
160
bc5378fc
MF
161 rsr a2, windowbase
162 rsr a3, windowstart
5a0015d6
CZ
163 ssr a2
164 s32i a2, a1, PT_WINDOWBASE
165 s32i a3, a1, PT_WINDOWSTART
166 slli a2, a3, 32-WSBITS
167 src a2, a3, a2
168 srli a2, a2, 32-WSBITS
169 s32i a2, a1, PT_WMASK # needed for restoring registers
170
171 /* Save only live registers. */
172
173 _bbsi.l a2, 1, 1f
174 s32i a4, a1, PT_AREG4
175 s32i a5, a1, PT_AREG5
176 s32i a6, a1, PT_AREG6
177 s32i a7, a1, PT_AREG7
178 _bbsi.l a2, 2, 1f
179 s32i a8, a1, PT_AREG8
180 s32i a9, a1, PT_AREG9
181 s32i a10, a1, PT_AREG10
182 s32i a11, a1, PT_AREG11
183 _bbsi.l a2, 3, 1f
184 s32i a12, a1, PT_AREG12
185 s32i a13, a1, PT_AREG13
186 s32i a14, a1, PT_AREG14
187 s32i a15, a1, PT_AREG15
188 _bnei a2, 1, 1f # only one valid frame?
189
190 /* Only one valid frame, skip saving regs. */
191
192 j 2f
193
194 /* Save the remaining registers.
195 * We have to save all registers up to the first '1' from
196 * the right, except the current frame (bit 0).
197 * Assume a2 is: 001001000110001
6656920b 198 * All register frames starting from the top field to the marked '1'
5a0015d6
CZ
199 * must be saved.
200 */
201
2021: addi a3, a2, -1 # eliminate '1' in bit 0: yyyyxxww0
203 neg a3, a3 # yyyyxxww0 -> YYYYXXWW1+1
204 and a3, a3, a2 # max. only one bit is set
205
206 /* Find number of frames to save */
207
208 ffs_ws a0, a3 # number of frames to the '1' from left
209
210 /* Store information into WMASK:
211 * bits 0..3: xxx1 masked lower 4 bits of the rotated windowstart,
212 * bits 4...: number of valid 4-register frames
213 */
214
215 slli a3, a0, 4 # number of frames to save in bits 8..4
216 extui a2, a2, 0, 4 # mask for the first 16 registers
217 or a2, a3, a2
218 s32i a2, a1, PT_WMASK # needed when we restore the reg-file
219
220 /* Save 4 registers at a time */
221
2221: rotw -1
223 s32i a0, a5, PT_AREG_END - 16
224 s32i a1, a5, PT_AREG_END - 12
225 s32i a2, a5, PT_AREG_END - 8
226 s32i a3, a5, PT_AREG_END - 4
227 addi a0, a4, -1
228 addi a1, a5, -16
229 _bnez a0, 1b
230
231 /* WINDOWBASE still in SAR! */
232
bc5378fc 233 rsr a2, sar # original WINDOWBASE
5a0015d6
CZ
234 movi a3, 1
235 ssl a2
236 sll a3, a3
bc5378fc
MF
237 wsr a3, windowstart # set corresponding WINDOWSTART bit
238 wsr a2, windowbase # and WINDOWSTART
5a0015d6
CZ
239 rsync
240
241 /* We are back to the original stack pointer (a1) */
242
c658eac6 2432: /* Now, jump to the common exception handler. */
5a0015d6
CZ
244
245 j common_exception
246
d1538c46 247ENDPROC(user_exception)
5a0015d6
CZ
248
249/*
250 * First-level exit handler for kernel exceptions
251 * Save special registers and the live window frame.
252 * Note: Even though we changes the stack pointer, we don't have to do a
253 * MOVSP here, as we do that when we return from the exception.
254 * (See comment in the kernel exception exit code)
255 *
256 * Entry condition for kernel_exception:
257 *
258 * a0: trashed, original value saved on stack (PT_AREG0)
259 * a1: a1
260 * a2: new stack pointer, original in DEPC
99d5040e 261 * a3: a3
5a0015d6 262 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 263 * excsave_1: dispatch table
5a0015d6
CZ
264 *
265 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
266 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
267 *
268 * Entry condition for _kernel_exception:
269 *
270 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
271 * excsave has been restored, and
272 * stack pointer (a1) has been set.
273 *
3ad2f3fb 274 * Note: _kernel_exception might be at an odd address. Don't use call0..call12
5a0015d6
CZ
275 */
276
277ENTRY(kernel_exception)
278
99d5040e 279 /* Save a1, a2, a3, and set SP. */
5a0015d6 280
bc5378fc 281 rsr a0, depc # get a2
5a0015d6
CZ
282 s32i a1, a2, PT_AREG1
283 s32i a0, a2, PT_AREG2
284 s32i a3, a2, PT_AREG3
285 mov a1, a2
286
287 .globl _kernel_exception
288_kernel_exception:
289
290 /* Save SAR and turn off single stepping */
291
292 movi a2, 0
bc5378fc
MF
293 rsr a3, sar
294 xsr a2, icountlevel
5a0015d6 295 s32i a3, a1, PT_SAR
29c4dfd9 296 s32i a2, a1, PT_ICOUNTLEVEL
5a0015d6
CZ
297
298 /* Rotate ws so that the current windowbase is at bit0. */
299 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
300
bc5378fc
MF
301 rsr a2, windowbase # don't need to save these, we only
302 rsr a3, windowstart # need shifted windowstart: windowmask
5a0015d6
CZ
303 ssr a2
304 slli a2, a3, 32-WSBITS
305 src a2, a3, a2
306 srli a2, a2, 32-WSBITS
307 s32i a2, a1, PT_WMASK # needed for kernel_exception_exit
308
309 /* Save only the live window-frame */
310
311 _bbsi.l a2, 1, 1f
312 s32i a4, a1, PT_AREG4
313 s32i a5, a1, PT_AREG5
314 s32i a6, a1, PT_AREG6
315 s32i a7, a1, PT_AREG7
316 _bbsi.l a2, 2, 1f
317 s32i a8, a1, PT_AREG8
318 s32i a9, a1, PT_AREG9
319 s32i a10, a1, PT_AREG10
320 s32i a11, a1, PT_AREG11
321 _bbsi.l a2, 3, 1f
322 s32i a12, a1, PT_AREG12
323 s32i a13, a1, PT_AREG13
324 s32i a14, a1, PT_AREG14
325 s32i a15, a1, PT_AREG15
326
b6569439
MF
327 _bnei a2, 1, 1f
328
329 /* Copy spill slots of a0 and a1 to imitate movsp
330 * in order to keep exception stack continuous
331 */
332 l32i a3, a1, PT_SIZE
333 l32i a0, a1, PT_SIZE + 4
334 s32e a3, a1, -16
335 s32e a0, a1, -12
5a0015d6 3361:
b6569439
MF
337 l32i a0, a1, PT_AREG0 # restore saved a0
338 wsr a0, depc
5a0015d6
CZ
339
340#ifdef KERNEL_STACK_OVERFLOW_CHECK
341
342 /* Stack overflow check, for debugging */
343 extui a2, a1, TASK_SIZE_BITS,XX
344 movi a3, SIZE??
345 _bge a2, a3, out_of_stack_panic
346
347#endif
348
349/*
350 * This is the common exception handler.
351 * We get here from the user exception handler or simply by falling through
352 * from the kernel exception handler.
353 * Save the remaining special registers, switch to kernel mode, and jump
354 * to the second-level exception handler.
355 *
356 */
357
358common_exception:
359
29c4dfd9 360 /* Save some registers, disable loops and clear the syscall flag. */
5a0015d6 361
bc5378fc
MF
362 rsr a2, debugcause
363 rsr a3, epc1
5a0015d6
CZ
364 s32i a2, a1, PT_DEBUGCAUSE
365 s32i a3, a1, PT_PC
366
6a986984 367 movi a2, NO_SYSCALL
bc5378fc 368 rsr a3, excvaddr
29c4dfd9 369 s32i a2, a1, PT_SYSCALL
5a0015d6
CZ
370 movi a2, 0
371 s32i a3, a1, PT_EXCVADDR
5029615e 372#if XCHAL_HAVE_LOOPS
bc5378fc 373 xsr a2, lcount
5a0015d6 374 s32i a2, a1, PT_LCOUNT
5029615e 375#endif
5a0015d6
CZ
376
377 /* It is now save to restore the EXC_TABLE_FIXUP variable. */
378
38fef73c 379 rsr a2, exccause
5a0015d6 380 movi a3, 0
38fef73c
MF
381 rsr a0, excsave1
382 s32i a2, a1, PT_EXCCAUSE
383 s32i a3, a0, EXC_TABLE_FIXUP
5a0015d6 384
b6569439
MF
385 /* All unrecoverable states are saved on stack, now, and a1 is valid.
386 * Now we can allow exceptions again. In case we've got an interrupt
387 * PS.INTLEVEL is set to LOCKLEVEL disabling furhter interrupts,
388 * otherwise it's left unchanged.
5a0015d6 389 *
b6569439 390 * Set PS(EXCM = 0, UM = 0, RING = 0, OWB = 0, WOE = 1, INTLEVEL = X)
5a0015d6
CZ
391 */
392
bc5378fc 393 rsr a3, ps
38fef73c
MF
394 s32i a3, a1, PT_PS # save ps
395
396#if XTENSA_FAKE_NMI
397 /* Correct PS needs to be saved in the PT_PS:
398 * - in case of exception or level-1 interrupt it's in the PS,
399 * and is already saved.
400 * - in case of medium level interrupt it's in the excsave2.
401 */
402 movi a0, EXCCAUSE_MAPPED_NMI
403 extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
404 beq a2, a0, .Lmedium_level_irq
405 bnei a2, EXCCAUSE_LEVEL1_INTERRUPT, .Lexception
406 beqz a3, .Llevel1_irq # level-1 IRQ sets ps.intlevel to 0
407
408.Lmedium_level_irq:
409 rsr a0, excsave2
410 s32i a0, a1, PT_PS # save medium-level interrupt ps
411 bgei a3, LOCKLEVEL, .Lexception
412
413.Llevel1_irq:
414 movi a3, LOCKLEVEL
415
416.Lexception:
417 movi a0, 1 << PS_WOE_BIT
418 or a3, a3, a0
419#else
420 addi a2, a2, -EXCCAUSE_LEVEL1_INTERRUPT
421 movi a0, LOCKLEVEL
2d1c645c
MG
422 extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
423 # a3 = PS.INTLEVEL
38fef73c 424 moveqz a3, a0, a2 # a3 = LOCKLEVEL iff interrupt
173d6681 425 movi a2, 1 << PS_WOE_BIT
5a0015d6 426 or a3, a3, a2
b6569439 427 rsr a2, exccause
38fef73c
MF
428#endif
429
b6569439
MF
430 /* restore return address (or 0 if return to userspace) */
431 rsr a0, depc
38fef73c
MF
432 wsr a3, ps
433 rsync # PS.WOE => rsync => overflow
5a0015d6 434
bc5378fc 435 /* Save lbeg, lend */
5029615e 436#if XCHAL_HAVE_LOOPS
b6569439 437 rsr a4, lbeg
bc5378fc 438 rsr a3, lend
b6569439 439 s32i a4, a1, PT_LBEG
5a0015d6 440 s32i a3, a1, PT_LEND
5029615e 441#endif
5a0015d6 442
733536b8
MF
443 /* Save SCOMPARE1 */
444
445#if XCHAL_HAVE_S32C1I
b6569439
MF
446 rsr a3, scompare1
447 s32i a3, a1, PT_SCOMPARE1
733536b8
MF
448#endif
449
c658eac6
CZ
450 /* Save optional registers. */
451
b6569439 452 save_xtregs_opt a1 a3 a4 a5 a6 a7 PT_XTREGS_OPT
c658eac6 453
5a0015d6
CZ
454 /* Go to second-level dispatcher. Set up parameters to pass to the
455 * exception handler and call the exception handler.
456 */
457
99d5040e 458 rsr a4, excsave1
5a0015d6 459 mov a6, a1 # pass stack frame
b6569439
MF
460 mov a7, a2 # pass EXCCAUSE
461 addx4 a4, a2, a4
5a0015d6
CZ
462 l32i a4, a4, EXC_TABLE_DEFAULT # load handler
463
464 /* Call the second-level handler */
465
466 callx4 a4
467
468 /* Jump here for exception exit */
e6ffe17e 469 .global common_exception_return
5a0015d6
CZ
470common_exception_return:
471
38fef73c
MF
472#if XTENSA_FAKE_NMI
473 l32i a2, a1, PT_EXCCAUSE
474 movi a3, EXCCAUSE_MAPPED_NMI
475 beq a2, a3, .LNMIexit
476#endif
c92931b2 4771:
38fef73c 478 irq_save a2, a3
7d5f6a9a 479#ifdef CONFIG_TRACE_IRQFLAGS
2da03d41 480 call4 trace_hardirqs_off
7d5f6a9a 481#endif
c92931b2 482
5a0015d6
CZ
483 /* Jump if we are returning from kernel exceptions. */
484
aea8e7c8 485 l32i a3, a1, PT_PS
16c5becf
MF
486 GET_THREAD_INFO(a2, a1)
487 l32i a4, a2, TI_FLAGS
488 _bbci.l a3, PS_UM_BIT, 6f
5a0015d6
CZ
489
490 /* Specific to a user exception exit:
491 * We need to check some flags for signal handling and rescheduling,
492 * and have to restore WB and WS, extra states, and all registers
493 * in the register file that were in use in the user task.
e1088430 494 * Note that we don't disable interrupts here.
5a0015d6
CZ
495 */
496
5a0015d6 497 _bbsi.l a4, TIF_NEED_RESCHED, 3f
a53bb24e 498 _bbsi.l a4, TIF_NOTIFY_RESUME, 2f
a99e07ee 499 _bbci.l a4, TIF_SIGPENDING, 5f
5a0015d6 500
a53bb24e 5012: l32i a4, a1, PT_DEPC
5a0015d6 502 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
5a0015d6 503
e1088430
CZ
504 /* Call do_signal() */
505
7d5f6a9a 506#ifdef CONFIG_TRACE_IRQFLAGS
2da03d41 507 call4 trace_hardirqs_on
7d5f6a9a 508#endif
aea8e7c8 509 rsil a2, 0
5a0015d6 510 mov a6, a1
2da03d41 511 call4 do_notify_resume # int do_notify_resume(struct pt_regs*)
5a0015d6
CZ
512 j 1b
513
e1088430 5143: /* Reschedule */
5a0015d6 515
7d5f6a9a 516#ifdef CONFIG_TRACE_IRQFLAGS
2da03d41 517 call4 trace_hardirqs_on
7d5f6a9a 518#endif
aea8e7c8 519 rsil a2, 0
2da03d41 520 call4 schedule # void schedule (void)
5a0015d6
CZ
521 j 1b
522
16c5becf
MF
523#ifdef CONFIG_PREEMPT
5246:
525 _bbci.l a4, TIF_NEED_RESCHED, 4f
526
527 /* Check current_thread_info->preempt_count */
528
529 l32i a4, a2, TI_PRE_COUNT
530 bnez a4, 4f
2da03d41 531 call4 preempt_schedule_irq
16c5becf
MF
532 j 1b
533#endif
534
38fef73c
MF
535#if XTENSA_FAKE_NMI
536.LNMIexit:
537 l32i a3, a1, PT_PS
538 _bbci.l a3, PS_UM_BIT, 4f
539#endif
540
a99e07ee 5415:
c91e02bd
MF
542#ifdef CONFIG_HAVE_HW_BREAKPOINT
543 _bbci.l a4, TIF_DB_DISABLED, 7f
2da03d41 544 call4 restore_dbreak
c91e02bd
MF
5457:
546#endif
a99e07ee
MF
547#ifdef CONFIG_DEBUG_TLB_SANITY
548 l32i a4, a1, PT_DEPC
549 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
2da03d41 550 call4 check_tlb_sanity
a99e07ee 551#endif
16c5becf 5526:
aea8e7c8
MF
5534:
554#ifdef CONFIG_TRACE_IRQFLAGS
7d5f6a9a
MF
555 extui a4, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
556 bgei a4, LOCKLEVEL, 1f
2da03d41 557 call4 trace_hardirqs_on
aea8e7c8
MF
5581:
559#endif
560 /* Restore optional registers. */
e1088430
CZ
561
562 load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
5a0015d6 563
733536b8
MF
564 /* Restore SCOMPARE1 */
565
566#if XCHAL_HAVE_S32C1I
567 l32i a2, a1, PT_SCOMPARE1
568 wsr a2, scompare1
569#endif
bc5378fc 570 wsr a3, ps /* disable interrupts */
e1088430
CZ
571
572 _bbci.l a3, PS_UM_BIT, kernel_exception_exit
573
574user_exception_exit:
575
576 /* Restore the state of the task and return from the exception. */
5a0015d6 577
5a0015d6
CZ
578 /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */
579
580 l32i a2, a1, PT_WINDOWBASE
581 l32i a3, a1, PT_WINDOWSTART
bc5378fc
MF
582 wsr a1, depc # use DEPC as temp storage
583 wsr a3, windowstart # restore WINDOWSTART
5a0015d6 584 ssr a2 # preserve user's WB in the SAR
bc5378fc 585 wsr a2, windowbase # switch to user's saved WB
5a0015d6 586 rsync
bc5378fc 587 rsr a1, depc # restore stack pointer
5a0015d6
CZ
588 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
589 rotw -1 # we restore a4..a7
590 _bltui a6, 16, 1f # only have to restore current window?
591
592 /* The working registers are a0 and a3. We are restoring to
593 * a4..a7. Be careful not to destroy what we have just restored.
594 * Note: wmask has the format YYYYM:
595 * Y: number of registers saved in groups of 4
596 * M: 4 bit mask of first 16 registers
597 */
598
599 mov a2, a6
600 mov a3, a5
601
6022: rotw -1 # a0..a3 become a4..a7
603 addi a3, a7, -4*4 # next iteration
604 addi a2, a6, -16 # decrementing Y in WMASK
605 l32i a4, a3, PT_AREG_END + 0
606 l32i a5, a3, PT_AREG_END + 4
607 l32i a6, a3, PT_AREG_END + 8
608 l32i a7, a3, PT_AREG_END + 12
609 _bgeui a2, 16, 2b
610
611 /* Clear unrestored registers (don't leak anything to user-land */
612
bc5378fc
MF
6131: rsr a0, windowbase
614 rsr a3, sar
5a0015d6
CZ
615 sub a3, a0, a3
616 beqz a3, 2f
617 extui a3, a3, 0, WBBITS
618
6191: rotw -1
620 addi a3, a7, -1
621 movi a4, 0
622 movi a5, 0
623 movi a6, 0
624 movi a7, 0
625 bgei a3, 1, 1b
626
627 /* We are back were we were when we started.
628 * Note: a2 still contains WMASK (if we've returned to the original
629 * frame where we had loaded a2), or at least the lower 4 bits
630 * (if we have restored WSBITS-1 frames).
631 */
632
4229fb12 6332:
c50842df
CZ
634#if XCHAL_HAVE_THREADPTR
635 l32i a3, a1, PT_THREADPTR
636 wur a3, threadptr
637#endif
638
4229fb12 639 j common_exception_exit
5a0015d6
CZ
640
641 /* This is the kernel exception exit.
642 * We avoided to do a MOVSP when we entered the exception, but we
643 * have to do it here.
644 */
645
646kernel_exception_exit:
647
5a0015d6
CZ
648 /* Check if we have to do a movsp.
649 *
650 * We only have to do a movsp if the previous window-frame has
651 * been spilled to the *temporary* exception stack instead of the
652 * task's stack. This is the case if the corresponding bit in
653 * WINDOWSTART for the previous window-frame was set before
654 * (not spilled) but is zero now (spilled).
655 * If this bit is zero, all other bits except the one for the
656 * current window frame are also zero. So, we can use a simple test:
657 * 'and' WINDOWSTART and WINDOWSTART-1:
658 *
659 * (XXXXXX1[0]* - 1) AND XXXXXX1[0]* = XXXXXX0[0]*
660 *
661 * The result is zero only if one bit was set.
662 *
663 * (Note: We might have gone through several task switches before
664 * we come back to the current task, so WINDOWBASE might be
665 * different from the time the exception occurred.)
666 */
667
668 /* Test WINDOWSTART before and after the exception.
669 * We actually have WMASK, so we only have to test if it is 1 or not.
670 */
671
672 l32i a2, a1, PT_WMASK
673 _beqi a2, 1, common_exception_exit # Spilled before exception,jump
674
675 /* Test WINDOWSTART now. If spilled, do the movsp */
676
bc5378fc 677 rsr a3, windowstart
5a0015d6
CZ
678 addi a0, a3, -1
679 and a3, a3, a0
680 _bnez a3, common_exception_exit
681
682 /* Do a movsp (we returned from a call4, so we have at least a0..a7) */
683
684 addi a0, a1, -16
685 l32i a3, a0, 0
686 l32i a4, a0, 4
687 s32i a3, a1, PT_SIZE+0
688 s32i a4, a1, PT_SIZE+4
689 l32i a3, a0, 8
690 l32i a4, a0, 12
691 s32i a3, a1, PT_SIZE+8
692 s32i a4, a1, PT_SIZE+12
693
694 /* Common exception exit.
695 * We restore the special register and the current window frame, and
696 * return from the exception.
697 *
698 * Note: We expect a2 to hold PT_WMASK
699 */
700
701common_exception_exit:
702
c658eac6
CZ
703 /* Restore address registers. */
704
5a0015d6
CZ
705 _bbsi.l a2, 1, 1f
706 l32i a4, a1, PT_AREG4
707 l32i a5, a1, PT_AREG5
708 l32i a6, a1, PT_AREG6
709 l32i a7, a1, PT_AREG7
710 _bbsi.l a2, 2, 1f
711 l32i a8, a1, PT_AREG8
712 l32i a9, a1, PT_AREG9
713 l32i a10, a1, PT_AREG10
714 l32i a11, a1, PT_AREG11
715 _bbsi.l a2, 3, 1f
716 l32i a12, a1, PT_AREG12
717 l32i a13, a1, PT_AREG13
718 l32i a14, a1, PT_AREG14
719 l32i a15, a1, PT_AREG15
720
721 /* Restore PC, SAR */
722
7231: l32i a2, a1, PT_PC
724 l32i a3, a1, PT_SAR
bc5378fc
MF
725 wsr a2, epc1
726 wsr a3, sar
5a0015d6
CZ
727
728 /* Restore LBEG, LEND, LCOUNT */
5029615e 729#if XCHAL_HAVE_LOOPS
5a0015d6
CZ
730 l32i a2, a1, PT_LBEG
731 l32i a3, a1, PT_LEND
bc5378fc 732 wsr a2, lbeg
5a0015d6 733 l32i a2, a1, PT_LCOUNT
bc5378fc
MF
734 wsr a3, lend
735 wsr a2, lcount
5029615e 736#endif
5a0015d6 737
29c4dfd9
CZ
738 /* We control single stepping through the ICOUNTLEVEL register. */
739
740 l32i a2, a1, PT_ICOUNTLEVEL
741 movi a3, -2
bc5378fc
MF
742 wsr a2, icountlevel
743 wsr a3, icount
29c4dfd9 744
5a0015d6
CZ
745 /* Check if it was double exception. */
746
747 l32i a0, a1, PT_DEPC
748 l32i a3, a1, PT_AREG3
749 l32i a2, a1, PT_AREG2
895666a9 750 _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
5a0015d6
CZ
751
752 /* Restore a0...a3 and return */
753
754 l32i a0, a1, PT_AREG0
755 l32i a1, a1, PT_AREG1
895666a9 756 rfe
5a0015d6 757
895666a9 7581: wsr a0, depc
5a0015d6
CZ
759 l32i a0, a1, PT_AREG0
760 l32i a1, a1, PT_AREG1
895666a9 761 rfde
5a0015d6 762
d1538c46
CZ
763ENDPROC(kernel_exception)
764
5a0015d6
CZ
765/*
766 * Debug exception handler.
767 *
768 * Currently, we don't support KGDB, so only user application can be debugged.
769 *
770 * When we get here, a0 is trashed and saved to excsave[debuglevel]
771 */
772
f8f02ca7
MF
773 .literal_position
774
5a0015d6
CZ
775ENTRY(debug_exception)
776
bc5378fc 777 rsr a0, SREG_EPS + XCHAL_DEBUGLEVEL
173d6681 778 bbsi.l a0, PS_EXCM_BIT, 1f # exception mode
5a0015d6 779
bc5378fc 780 /* Set EPC1 and EXCCAUSE */
5a0015d6 781
bc5378fc
MF
782 wsr a2, depc # save a2 temporarily
783 rsr a2, SREG_EPC + XCHAL_DEBUGLEVEL
784 wsr a2, epc1
5a0015d6
CZ
785
786 movi a2, EXCCAUSE_MAPPED_DEBUG
bc5378fc 787 wsr a2, exccause
5a0015d6
CZ
788
789 /* Restore PS to the value before the debug exc but with PS.EXCM set.*/
790
173d6681 791 movi a2, 1 << PS_EXCM_BIT
5a0015d6 792 or a2, a0, a2
bc5378fc 793 wsr a2, ps
5a0015d6
CZ
794
795 /* Switch to kernel/user stack, restore jump vector, and save a0 */
796
173d6681 797 bbsi.l a2, PS_UM_BIT, 2f # jump if user mode
5a0015d6
CZ
798
799 addi a2, a1, -16-PT_SIZE # assume kernel stack
6ec7026a
MF
8003:
801 l32i a0, a3, DT_DEBUG_SAVE
802 s32i a1, a2, PT_AREG1
5a0015d6
CZ
803 s32i a0, a2, PT_AREG0
804 movi a0, 0
5a0015d6 805 s32i a0, a2, PT_DEPC # mark it as a regular exception
6ec7026a 806 xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
bc5378fc 807 xsr a0, depc
5a0015d6
CZ
808 s32i a3, a2, PT_AREG3
809 s32i a0, a2, PT_AREG2
810 mov a1, a2
6ec7026a 811
c91e02bd
MF
812 /* Debug exception is handled as an exception, so interrupts will
813 * likely be enabled in the common exception handler. Disable
814 * preemption if we have HW breakpoints to preserve DEBUGCAUSE.DBNUM
815 * meaning.
816 */
817#if defined(CONFIG_PREEMPT_COUNT) && defined(CONFIG_HAVE_HW_BREAKPOINT)
818 GET_THREAD_INFO(a2, a1)
819 l32i a3, a2, TI_PRE_COUNT
820 addi a3, a3, 1
821 s32i a3, a2, TI_PRE_COUNT
822#endif
823
6ec7026a
MF
824 rsr a2, ps
825 bbsi.l a2, PS_UM_BIT, _user_exception
5a0015d6
CZ
826 j _kernel_exception
827
bc5378fc 8282: rsr a2, excsave1
5a0015d6 829 l32i a2, a2, EXC_TABLE_KSTK # load kernel stack pointer
6ec7026a 830 j 3b
5a0015d6 831
c91e02bd
MF
832#ifdef CONFIG_HAVE_HW_BREAKPOINT
833 /* Debug exception while in exception mode. This may happen when
834 * window overflow/underflow handler or fast exception handler hits
835 * data breakpoint, in which case save and disable all data
836 * breakpoints, single-step faulting instruction and restore data
837 * breakpoints.
838 */
8391:
840 bbci.l a0, PS_UM_BIT, 1b # jump if kernel mode
841
842 rsr a0, debugcause
843 bbsi.l a0, DEBUGCAUSE_DBREAK_BIT, .Ldebug_save_dbreak
844
845 .set _index, 0
846 .rept XCHAL_NUM_DBREAK
847 l32i a0, a3, DT_DBREAKC_SAVE + _index * 4
848 wsr a0, SREG_DBREAKC + _index
849 .set _index, _index + 1
850 .endr
851
852 l32i a0, a3, DT_ICOUNT_LEVEL_SAVE
853 wsr a0, icountlevel
854
855 l32i a0, a3, DT_ICOUNT_SAVE
856 xsr a0, icount
857
858 l32i a0, a3, DT_DEBUG_SAVE
859 xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
860 rfi XCHAL_DEBUGLEVEL
861
862.Ldebug_save_dbreak:
863 .set _index, 0
864 .rept XCHAL_NUM_DBREAK
865 movi a0, 0
866 xsr a0, SREG_DBREAKC + _index
867 s32i a0, a3, DT_DBREAKC_SAVE + _index * 4
868 .set _index, _index + 1
869 .endr
870
871 movi a0, XCHAL_EXCM_LEVEL + 1
872 xsr a0, icountlevel
873 s32i a0, a3, DT_ICOUNT_LEVEL_SAVE
874
875 movi a0, 0xfffffffe
876 xsr a0, icount
877 s32i a0, a3, DT_ICOUNT_SAVE
878
879 l32i a0, a3, DT_DEBUG_SAVE
880 xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
881 rfi XCHAL_DEBUGLEVEL
882#else
883 /* Debug exception while in exception mode. Should not happen. */
5a0015d6 8841: j 1b // FIXME!!
c91e02bd 885#endif
5a0015d6 886
d1538c46 887ENDPROC(debug_exception)
5a0015d6
CZ
888
889/*
890 * We get here in case of an unrecoverable exception.
891 * The only thing we can do is to be nice and print a panic message.
892 * We only produce a single stack frame for panic, so ???
893 *
894 *
895 * Entry conditions:
896 *
897 * - a0 contains the caller address; original value saved in excsave1.
898 * - the original a0 contains a valid return address (backtrace) or 0.
899 * - a2 contains a valid stackpointer
900 *
901 * Notes:
902 *
903 * - If the stack pointer could be invalid, the caller has to setup a
904 * dummy stack pointer (e.g. the stack of the init_task)
905 *
906 * - If the return address could be invalid, the caller has to set it
907 * to 0, so the backtrace would stop.
908 *
909 */
910 .align 4
911unrecoverable_text:
912 .ascii "Unrecoverable error in exception handler\0"
913
f8f02ca7
MF
914 .literal_position
915
5a0015d6
CZ
916ENTRY(unrecoverable_exception)
917
918 movi a0, 1
919 movi a1, 0
920
bc5378fc
MF
921 wsr a0, windowstart
922 wsr a1, windowbase
5a0015d6
CZ
923 rsync
924
2d1c645c 925 movi a1, (1 << PS_WOE_BIT) | LOCKLEVEL
bc5378fc 926 wsr a1, ps
5a0015d6
CZ
927 rsync
928
929 movi a1, init_task
930 movi a0, 0
931 addi a1, a1, PT_REGS_OFFSET
932
5a0015d6 933 movi a6, unrecoverable_text
2da03d41 934 call4 panic
5a0015d6
CZ
935
9361: j 1b
937
d1538c46 938ENDPROC(unrecoverable_exception)
5a0015d6
CZ
939
940/* -------------------------- FAST EXCEPTION HANDLERS ----------------------- */
941
942/*
943 * Fast-handler for alloca exceptions
944 *
945 * The ALLOCA handler is entered when user code executes the MOVSP
946 * instruction and the caller's frame is not in the register file.
5a0015d6 947 *
fff96d69
MF
948 * This algorithm was taken from the Ross Morley's RTOS Porting Layer:
949 *
950 * /home/ross/rtos/porting/XtensaRTOS-PortingLayer-20090507/xtensa_vectors.S
951 *
952 * It leverages the existing window spill/fill routines and their support for
953 * double exceptions. The 'movsp' instruction will only cause an exception if
954 * the next window needs to be loaded. In fact this ALLOCA exception may be
955 * replaced at some point by changing the hardware to do a underflow exception
956 * of the proper size instead.
957 *
958 * This algorithm simply backs out the register changes started by the user
959 * excpetion handler, makes it appear that we have started a window underflow
960 * by rotating the window back and then setting the old window base (OWB) in
961 * the 'ps' register with the rolled back window base. The 'movsp' instruction
962 * will be re-executed and this time since the next window frames is in the
963 * active AR registers it won't cause an exception.
964 *
965 * If the WindowUnderflow code gets a TLB miss the page will get mapped
966 * the the partial windeowUnderflow will be handeled in the double exception
967 * handler.
5a0015d6
CZ
968 *
969 * Entry condition:
970 *
971 * a0: trashed, original value saved on stack (PT_AREG0)
972 * a1: a1
973 * a2: new stack pointer, original in DEPC
99d5040e 974 * a3: a3
5a0015d6 975 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 976 * excsave_1: dispatch table
5a0015d6
CZ
977 *
978 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
979 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
980 */
981
5a0015d6 982ENTRY(fast_alloca)
fff96d69
MF
983 rsr a0, windowbase
984 rotw -1
985 rsr a2, ps
986 extui a3, a2, PS_OWB_SHIFT, PS_OWB_WIDTH
987 xor a3, a3, a4
988 l32i a4, a6, PT_AREG0
989 l32i a1, a6, PT_DEPC
990 rsr a6, depc
991 wsr a1, depc
992 slli a3, a3, PS_OWB_SHIFT
993 xor a2, a2, a3
994 wsr a2, ps
995 rsync
5a0015d6 996
fff96d69
MF
997 _bbci.l a4, 31, 4f
998 rotw -1
999 _bbci.l a8, 30, 8f
1000 rotw -1
1001 j _WindowUnderflow12
10028: j _WindowUnderflow8
10034: j _WindowUnderflow4
d1538c46 1004ENDPROC(fast_alloca)
5a0015d6
CZ
1005
1006/*
1007 * fast system calls.
1008 *
1009 * WARNING: The kernel doesn't save the entire user context before
1010 * handling a fast system call. These functions are small and short,
1011 * usually offering some functionality not available to user tasks.
1012 *
1013 * BE CAREFUL TO PRESERVE THE USER'S CONTEXT.
1014 *
1015 * Entry condition:
1016 *
1017 * a0: trashed, original value saved on stack (PT_AREG0)
1018 * a1: a1
1019 * a2: new stack pointer, original in DEPC
99d5040e 1020 * a3: a3
5a0015d6 1021 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 1022 * excsave_1: dispatch table
5a0015d6
CZ
1023 */
1024
5a0015d6
CZ
1025ENTRY(fast_syscall_user)
1026
1027 /* Skip syscall. */
1028
bc5378fc 1029 rsr a0, epc1
5a0015d6 1030 addi a0, a0, 3
bc5378fc 1031 wsr a0, epc1
5a0015d6
CZ
1032
1033 l32i a0, a2, PT_DEPC
1034 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
1035
bc5378fc 1036 rsr a0, depc # get syscall-nr
5a0015d6 1037 _beqz a0, fast_syscall_spill_registers
fc4fb2ad 1038 _beqi a0, __NR_xtensa, fast_syscall_xtensa
5a0015d6
CZ
1039
1040 j user_exception
1041
d1538c46
CZ
1042ENDPROC(fast_syscall_user)
1043
5a0015d6
CZ
1044ENTRY(fast_syscall_unrecoverable)
1045
c4c4594b 1046 /* Restore all states. */
5a0015d6 1047
c4c4594b
CZ
1048 l32i a0, a2, PT_AREG0 # restore a0
1049 xsr a2, depc # restore a2, depc
5a0015d6 1050
c4c4594b 1051 wsr a0, excsave1
2da03d41 1052 call0 unrecoverable_exception
5a0015d6 1053
d1538c46 1054ENDPROC(fast_syscall_unrecoverable)
5a0015d6
CZ
1055
1056/*
1057 * sysxtensa syscall handler
1058 *
fc4fb2ad
CZ
1059 * int sysxtensa (SYS_XTENSA_ATOMIC_SET, ptr, val, unused);
1060 * int sysxtensa (SYS_XTENSA_ATOMIC_ADD, ptr, val, unused);
1061 * int sysxtensa (SYS_XTENSA_ATOMIC_EXG_ADD, ptr, val, unused);
1062 * int sysxtensa (SYS_XTENSA_ATOMIC_CMP_SWP, ptr, oldval, newval);
1063 * a2 a6 a3 a4 a5
5a0015d6
CZ
1064 *
1065 * Entry condition:
1066 *
fc4fb2ad 1067 * a0: a2 (syscall-nr), original value saved on stack (PT_AREG0)
5a0015d6 1068 * a1: a1
fc4fb2ad 1069 * a2: new stack pointer, original in a0 and DEPC
99d5040e 1070 * a3: a3
fc4fb2ad 1071 * a4..a15: unchanged
5a0015d6 1072 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 1073 * excsave_1: dispatch table
5a0015d6
CZ
1074 *
1075 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1076 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1077 *
1078 * Note: we don't have to save a2; a2 holds the return value
5a0015d6
CZ
1079 */
1080
f8f02ca7
MF
1081 .literal_position
1082
9184289c
MF
1083#ifdef CONFIG_FAST_SYSCALL_XTENSA
1084
fc4fb2ad 1085ENTRY(fast_syscall_xtensa)
5a0015d6 1086
fc4fb2ad 1087 s32i a7, a2, PT_AREG7 # we need an additional register
5a0015d6 1088 movi a7, 4 # sizeof(unsigned int)
fc4fb2ad 1089 access_ok a3, a7, a0, a2, .Leac # a0: scratch reg, a2: sp
5a0015d6 1090
d1b6ba82
MF
1091 _bgeui a6, SYS_XTENSA_COUNT, .Lill
1092 _bnei a6, SYS_XTENSA_ATOMIC_CMP_SWP, .Lnswp
5a0015d6 1093
fc4fb2ad 1094 /* Fall through for ATOMIC_CMP_SWP. */
5a0015d6
CZ
1095
1096.Lswp: /* Atomic compare and swap */
1097
0013aceb 1098EX(.Leac) l32i a0, a3, 0 # read old value
fc4fb2ad 1099 bne a0, a4, 1f # same as old value? jump
0013aceb 1100EX(.Leac) s32i a5, a3, 0 # different, modify value
fc4fb2ad
CZ
1101 l32i a7, a2, PT_AREG7 # restore a7
1102 l32i a0, a2, PT_AREG0 # restore a0
1103 movi a2, 1 # and return 1
fc4fb2ad 1104 rfe
5a0015d6 1105
fc4fb2ad
CZ
11061: l32i a7, a2, PT_AREG7 # restore a7
1107 l32i a0, a2, PT_AREG0 # restore a0
1108 movi a2, 0 # return 0 (note that we cannot set
fc4fb2ad 1109 rfe
5a0015d6 1110
fc4fb2ad 1111.Lnswp: /* Atomic set, add, and exg_add. */
5a0015d6 1112
0013aceb 1113EX(.Leac) l32i a7, a3, 0 # orig
d1b6ba82 1114 addi a6, a6, -SYS_XTENSA_ATOMIC_SET
fc4fb2ad
CZ
1115 add a0, a4, a7 # + arg
1116 moveqz a0, a4, a6 # set
d1b6ba82 1117 addi a6, a6, SYS_XTENSA_ATOMIC_SET
0013aceb 1118EX(.Leac) s32i a0, a3, 0 # write new value
5a0015d6 1119
fc4fb2ad 1120 mov a0, a2
5a0015d6 1121 mov a2, a7
fc4fb2ad
CZ
1122 l32i a7, a0, PT_AREG7 # restore a7
1123 l32i a0, a0, PT_AREG0 # restore a0
5a0015d6
CZ
1124 rfe
1125
fc4fb2ad
CZ
1126.Leac: l32i a7, a2, PT_AREG7 # restore a7
1127 l32i a0, a2, PT_AREG0 # restore a0
1128 movi a2, -EFAULT
1129 rfe
1130
d1b6ba82 1131.Lill: l32i a7, a2, PT_AREG7 # restore a7
fc4fb2ad
CZ
1132 l32i a0, a2, PT_AREG0 # restore a0
1133 movi a2, -EINVAL
1134 rfe
1135
d1538c46 1136ENDPROC(fast_syscall_xtensa)
5a0015d6 1137
9184289c
MF
1138#else /* CONFIG_FAST_SYSCALL_XTENSA */
1139
1140ENTRY(fast_syscall_xtensa)
1141
1142 l32i a0, a2, PT_AREG0 # restore a0
1143 movi a2, -ENOSYS
1144 rfe
1145
1146ENDPROC(fast_syscall_xtensa)
1147
1148#endif /* CONFIG_FAST_SYSCALL_XTENSA */
1149
5a0015d6
CZ
1150
1151/* fast_syscall_spill_registers.
1152 *
1153 * Entry condition:
1154 *
1155 * a0: trashed, original value saved on stack (PT_AREG0)
1156 * a1: a1
1157 * a2: new stack pointer, original in DEPC
99d5040e 1158 * a3: a3
5a0015d6 1159 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 1160 * excsave_1: dispatch table
5a0015d6
CZ
1161 *
1162 * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler.
5a0015d6
CZ
1163 */
1164
9184289c
MF
1165#ifdef CONFIG_FAST_SYSCALL_SPILL_REGISTERS
1166
5a0015d6
CZ
1167ENTRY(fast_syscall_spill_registers)
1168
1169 /* Register a FIXUP handler (pass current wb as a parameter) */
1170
99d5040e 1171 xsr a3, excsave1
5a0015d6
CZ
1172 movi a0, fast_syscall_spill_registers_fixup
1173 s32i a0, a3, EXC_TABLE_FIXUP
bc5378fc 1174 rsr a0, windowbase
5a0015d6 1175 s32i a0, a3, EXC_TABLE_PARAM
99d5040e 1176 xsr a3, excsave1 # restore a3 and excsave_1
5a0015d6 1177
99d5040e 1178 /* Save a3, a4 and SAR on stack. */
5a0015d6 1179
bc5378fc 1180 rsr a0, sar
5a0015d6 1181 s32i a3, a2, PT_AREG3
6b5a1f74 1182 s32i a0, a2, PT_SAR
5a0015d6 1183
6b5a1f74 1184 /* The spill routine might clobber a4, a7, a8, a11, a12, and a15. */
5a0015d6 1185
6b5a1f74 1186 s32i a4, a2, PT_AREG4
c658eac6 1187 s32i a7, a2, PT_AREG7
6b5a1f74 1188 s32i a8, a2, PT_AREG8
c658eac6 1189 s32i a11, a2, PT_AREG11
6b5a1f74 1190 s32i a12, a2, PT_AREG12
c658eac6 1191 s32i a15, a2, PT_AREG15
5a0015d6 1192
6b5a1f74
CZ
1193 /*
1194 * Rotate ws so that the current windowbase is at bit 0.
1195 * Assume ws = xxxwww1yy (www1 current window frame).
1196 * Rotate ws right so that a4 = yyxxxwww1.
1197 */
1198
1199 rsr a0, windowbase
1200 rsr a3, windowstart # a3 = xxxwww1yy
1201 ssr a0 # holds WB
1202 slli a0, a3, WSBITS
1203 or a3, a3, a0 # a3 = xxxwww1yyxxxwww1yy
1204 srl a3, a3 # a3 = 00xxxwww1yyxxxwww1
1205
1206 /* We are done if there are no more than the current register frame. */
1207
1208 extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
1209 movi a0, (1 << (WSBITS-1))
1210 _beqz a3, .Lnospill # only one active frame? jump
1211
1212 /* We want 1 at the top, so that we return to the current windowbase */
1213
1214 or a3, a3, a0 # 1yyxxxwww
1215
1216 /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */
1217
1218 wsr a3, windowstart # save shifted windowstart
1219 neg a0, a3
1220 and a3, a0, a3 # first bit set from right: 000010000
1221
1222 ffs_ws a0, a3 # a0: shifts to skip empty frames
1223 movi a3, WSBITS
1224 sub a0, a3, a0 # WSBITS-a0:number of 0-bits from right
1225 ssr a0 # save in SAR for later.
1226
1227 rsr a3, windowbase
1228 add a3, a3, a0
1229 wsr a3, windowbase
1230 rsync
1231
1232 rsr a3, windowstart
1233 srl a3, a3 # shift windowstart
1234
1235 /* WB is now just one frame below the oldest frame in the register
1236 window. WS is shifted so the oldest frame is in bit 0, thus, WB
1237 and WS differ by one 4-register frame. */
1238
1239 /* Save frames. Depending what call was used (call4, call8, call12),
1240 * we have to save 4,8. or 12 registers.
1241 */
1242
1243
1244.Lloop: _bbsi.l a3, 1, .Lc4
1245 _bbci.l a3, 2, .Lc12
1246
1247.Lc8: s32e a4, a13, -16
1248 l32e a4, a5, -12
1249 s32e a8, a4, -32
1250 s32e a5, a13, -12
1251 s32e a6, a13, -8
1252 s32e a7, a13, -4
1253 s32e a9, a4, -28
1254 s32e a10, a4, -24
1255 s32e a11, a4, -20
1256 srli a11, a3, 2 # shift windowbase by 2
1257 rotw 2
1258 _bnei a3, 1, .Lloop
1259 j .Lexit
1260
1261.Lc4: s32e a4, a9, -16
1262 s32e a5, a9, -12
1263 s32e a6, a9, -8
1264 s32e a7, a9, -4
1265
1266 srli a7, a3, 1
1267 rotw 1
1268 _bnei a3, 1, .Lloop
1269 j .Lexit
1270
1271.Lc12: _bbci.l a3, 3, .Linvalid_mask # bit 2 shouldn't be zero!
1272
1273 /* 12-register frame (call12) */
1274
1275 l32e a0, a5, -12
1276 s32e a8, a0, -48
1277 mov a8, a0
1278
1279 s32e a9, a8, -44
1280 s32e a10, a8, -40
1281 s32e a11, a8, -36
1282 s32e a12, a8, -32
1283 s32e a13, a8, -28
1284 s32e a14, a8, -24
1285 s32e a15, a8, -20
1286 srli a15, a3, 3
1287
1288 /* The stack pointer for a4..a7 is out of reach, so we rotate the
1289 * window, grab the stackpointer, and rotate back.
1290 * Alternatively, we could also use the following approach, but that
1291 * makes the fixup routine much more complicated:
1292 * rotw 1
1293 * s32e a0, a13, -16
1294 * ...
1295 * rotw 2
1296 */
1297
1298 rotw 1
1299 mov a4, a13
1300 rotw -1
1301
1302 s32e a4, a8, -16
1303 s32e a5, a8, -12
1304 s32e a6, a8, -8
1305 s32e a7, a8, -4
1306
1307 rotw 3
1308
1309 _beqi a3, 1, .Lexit
1310 j .Lloop
1311
1312.Lexit:
1313
1314 /* Done. Do the final rotation and set WS */
1315
1316 rotw 1
1317 rsr a3, windowbase
1318 ssl a3
1319 movi a3, 1
1320 sll a3, a3
1321 wsr a3, windowstart
1322.Lnospill:
5a0015d6
CZ
1323
1324 /* Advance PC, restore registers and SAR, and return from exception. */
1325
6b5a1f74 1326 l32i a3, a2, PT_SAR
5a0015d6 1327 l32i a0, a2, PT_AREG0
bc5378fc 1328 wsr a3, sar
5a0015d6
CZ
1329 l32i a3, a2, PT_AREG3
1330
1331 /* Restore clobbered registers. */
1332
6b5a1f74 1333 l32i a4, a2, PT_AREG4
c658eac6 1334 l32i a7, a2, PT_AREG7
6b5a1f74 1335 l32i a8, a2, PT_AREG8
c658eac6 1336 l32i a11, a2, PT_AREG11
6b5a1f74 1337 l32i a12, a2, PT_AREG12
c658eac6 1338 l32i a15, a2, PT_AREG15
5a0015d6
CZ
1339
1340 movi a2, 0
1341 rfe
1342
6b5a1f74
CZ
1343.Linvalid_mask:
1344
1345 /* We get here because of an unrecoverable error in the window
1346 * registers, so set up a dummy frame and kill the user application.
1347 * Note: We assume EXC_TABLE_KSTK contains a valid stack pointer.
1348 */
1349
1350 movi a0, 1
1351 movi a1, 0
1352
1353 wsr a0, windowstart
1354 wsr a1, windowbase
1355 rsync
1356
1357 movi a0, 0
1358
1359 rsr a3, excsave1
1360 l32i a1, a3, EXC_TABLE_KSTK
1361
1362 movi a4, (1 << PS_WOE_BIT) | LOCKLEVEL
1363 wsr a4, ps
1364 rsync
1365
1366 movi a6, SIGSEGV
2da03d41 1367 call4 do_exit
6b5a1f74
CZ
1368
1369 /* shouldn't return, so panic */
1370
1371 wsr a0, excsave1
2da03d41 1372 call0 unrecoverable_exception # should not return
6b5a1f74
CZ
13731: j 1b
1374
1375
d1538c46
CZ
1376ENDPROC(fast_syscall_spill_registers)
1377
5a0015d6
CZ
1378/* Fixup handler.
1379 *
1380 * We get here if the spill routine causes an exception, e.g. tlb miss.
1381 * We basically restore WINDOWBASE and WINDOWSTART to the condition when
1382 * we entered the spill routine and jump to the user exception handler.
1383 *
3251f1e2
MF
1384 * Note that we only need to restore the bits in windowstart that have not
1385 * been spilled yet by the _spill_register routine. Luckily, a3 contains a
1386 * rotated windowstart with only those bits set for frames that haven't been
1387 * spilled yet. Because a3 is rotated such that bit 0 represents the register
1388 * frame for the current windowbase - 1, we need to rotate a3 left by the
1389 * value of the current windowbase + 1 and move it to windowstart.
1390 *
5a0015d6
CZ
1391 * a0: value of depc, original value in depc
1392 * a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
1393 * a3: exctable, original value in excsave1
1394 */
1395
244066f4 1396ENTRY(fast_syscall_spill_registers_fixup)
5a0015d6 1397
bc5378fc
MF
1398 rsr a2, windowbase # get current windowbase (a2 is saved)
1399 xsr a0, depc # restore depc and a0
5a0015d6
CZ
1400 ssl a2 # set shift (32 - WB)
1401
1402 /* We need to make sure the current registers (a0-a3) are preserved.
1403 * To do this, we simply set the bit for the current window frame
1404 * in WS, so that the exception handlers save them to the task stack.
3251f1e2
MF
1405 *
1406 * Note: we use a3 to set the windowbase, so we take a special care
1407 * of it, saving it in the original _spill_registers frame across
1408 * the exception handler call.
5a0015d6
CZ
1409 */
1410
99d5040e 1411 xsr a3, excsave1 # get spill-mask
244066f4 1412 slli a3, a3, 1 # shift left by one
3251f1e2 1413 addi a3, a3, 1 # set the bit for the current window frame
5a0015d6 1414
244066f4
MF
1415 slli a2, a3, 32-WSBITS
1416 src a2, a3, a2 # a2 = xxwww1yyxxxwww1yy......
bc5378fc 1417 wsr a2, windowstart # set corrected windowstart
5a0015d6 1418
244066f4
MF
1419 srli a3, a3, 1
1420 rsr a2, excsave1
1421 l32i a2, a2, EXC_TABLE_DOUBLE_SAVE # restore a2
1422 xsr a2, excsave1
1423 s32i a3, a2, EXC_TABLE_DOUBLE_SAVE # save a3
1424 l32i a3, a2, EXC_TABLE_PARAM # original WB (in user task)
1425 xsr a2, excsave1
5a0015d6
CZ
1426
1427 /* Return to the original (user task) WINDOWBASE.
1428 * We leave the following frame behind:
1429 * a0, a1, a2 same
244066f4 1430 * a3: trashed (saved in EXC_TABLE_DOUBLE_SAVE)
5a0015d6 1431 * depc: depc (we have to return to that address)
244066f4 1432 * excsave_1: exctable
5a0015d6
CZ
1433 */
1434
bc5378fc 1435 wsr a3, windowbase
5a0015d6
CZ
1436 rsync
1437
1438 /* We are now in the original frame when we entered _spill_registers:
1439 * a0: return address
1440 * a1: used, stack pointer
1441 * a2: kernel stack pointer
244066f4 1442 * a3: available
5a0015d6 1443 * depc: exception address
244066f4 1444 * excsave: exctable
5a0015d6
CZ
1445 * Note: This frame might be the same as above.
1446 */
1447
5a0015d6
CZ
1448 /* Setup stack pointer. */
1449
1450 addi a2, a2, -PT_USER_SIZE
1451 s32i a0, a2, PT_AREG0
1452
1453 /* Make sure we return to this fixup handler. */
1454
1455 movi a3, fast_syscall_spill_registers_fixup_return
1456 s32i a3, a2, PT_DEPC # setup depc
1457
1458 /* Jump to the exception handler. */
1459
99d5040e 1460 rsr a3, excsave1
bc5378fc 1461 rsr a0, exccause
c4c4594b
CZ
1462 addx4 a0, a0, a3 # find entry in table
1463 l32i a0, a0, EXC_TABLE_FAST_USER # load handler
244066f4 1464 l32i a3, a3, EXC_TABLE_DOUBLE_SAVE
c4c4594b 1465 jx a0
5a0015d6 1466
244066f4
MF
1467ENDPROC(fast_syscall_spill_registers_fixup)
1468
1469ENTRY(fast_syscall_spill_registers_fixup_return)
5a0015d6
CZ
1470
1471 /* When we return here, all registers have been restored (a2: DEPC) */
1472
bc5378fc 1473 wsr a2, depc # exception address
5a0015d6
CZ
1474
1475 /* Restore fixup handler. */
1476
244066f4
MF
1477 rsr a2, excsave1
1478 s32i a3, a2, EXC_TABLE_DOUBLE_SAVE
1479 movi a3, fast_syscall_spill_registers_fixup
1480 s32i a3, a2, EXC_TABLE_FIXUP
1481 rsr a3, windowbase
1482 s32i a3, a2, EXC_TABLE_PARAM
1483 l32i a2, a2, EXC_TABLE_KSTK
5a0015d6 1484
5a0015d6
CZ
1485 /* Load WB at the time the exception occurred. */
1486
bc5378fc 1487 rsr a3, sar # WB is still in SAR
5a0015d6 1488 neg a3, a3
bc5378fc 1489 wsr a3, windowbase
5a0015d6
CZ
1490 rsync
1491
244066f4
MF
1492 rsr a3, excsave1
1493 l32i a3, a3, EXC_TABLE_DOUBLE_SAVE
1494
5a0015d6
CZ
1495 rfde
1496
244066f4 1497ENDPROC(fast_syscall_spill_registers_fixup_return)
5a0015d6 1498
9184289c
MF
1499#else /* CONFIG_FAST_SYSCALL_SPILL_REGISTERS */
1500
1501ENTRY(fast_syscall_spill_registers)
1502
1503 l32i a0, a2, PT_AREG0 # restore a0
1504 movi a2, -ENOSYS
1505 rfe
1506
1507ENDPROC(fast_syscall_spill_registers)
1508
1509#endif /* CONFIG_FAST_SYSCALL_SPILL_REGISTERS */
1510
e5083a63 1511#ifdef CONFIG_MMU
5a0015d6
CZ
1512/*
1513 * We should never get here. Bail out!
1514 */
1515
1516ENTRY(fast_second_level_miss_double_kernel)
1517
2da03d41
MF
15181:
1519 call0 unrecoverable_exception # should not return
5a0015d6
CZ
15201: j 1b
1521
d1538c46
CZ
1522ENDPROC(fast_second_level_miss_double_kernel)
1523
5a0015d6
CZ
1524/* First-level entry handler for user, kernel, and double 2nd-level
1525 * TLB miss exceptions. Note that for now, user and kernel miss
1526 * exceptions share the same entry point and are handled identically.
1527 *
1528 * An old, less-efficient C version of this function used to exist.
1529 * We include it below, interleaved as comments, for reference.
1530 *
1531 * Entry condition:
1532 *
1533 * a0: trashed, original value saved on stack (PT_AREG0)
1534 * a1: a1
1535 * a2: new stack pointer, original in DEPC
99d5040e 1536 * a3: a3
5a0015d6 1537 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 1538 * excsave_1: dispatch table
5a0015d6
CZ
1539 *
1540 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1541 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1542 */
1543
1544ENTRY(fast_second_level_miss)
1545
99d5040e 1546 /* Save a1 and a3. Note: we don't expect a double exception. */
5a0015d6
CZ
1547
1548 s32i a1, a2, PT_AREG1
99d5040e 1549 s32i a3, a2, PT_AREG3
5a0015d6
CZ
1550
1551 /* We need to map the page of PTEs for the user task. Find
1552 * the pointer to that page. Also, it's possible for tsk->mm
1553 * to be NULL while tsk->active_mm is nonzero if we faulted on
1554 * a vmalloc address. In that rare case, we must use
1555 * active_mm instead to avoid a fault in this handler. See
1556 *
1557 * http://mail.nl.linux.org/linux-mm/2002-08/msg00258.html
1558 * (or search Internet on "mm vs. active_mm")
1559 *
1560 * if (!mm)
1561 * mm = tsk->active_mm;
1562 * pgd = pgd_offset (mm, regs->excvaddr);
1563 * pmd = pmd_offset (pgd, regs->excvaddr);
1564 * pmdval = *pmd;
1565 */
1566
1567 GET_CURRENT(a1,a2)
1568 l32i a0, a1, TASK_MM # tsk->mm
1569 beqz a0, 9f
1570
bc5378fc 15718: rsr a3, excvaddr # fault address
01858d1b 1572 _PGD_OFFSET(a0, a3, a1)
5a0015d6 1573 l32i a0, a0, 0 # read pmdval
5a0015d6
CZ
1574 beqz a0, 2f
1575
1576 /* Read ptevaddr and convert to top of page-table page.
1577 *
1578 * vpnval = read_ptevaddr_register() & PAGE_MASK;
1579 * vpnval += DTLB_WAY_PGTABLE;
1580 * pteval = mk_pte (virt_to_page(pmd_val(pmdval)), PAGE_KERNEL);
1581 * write_dtlb_entry (pteval, vpnval);
1582 *
1583 * The messy computation for 'pteval' above really simplifies
1584 * into the following:
1585 *
a9f2fc62
MF
1586 * pteval = ((pmdval - PAGE_OFFSET + PHYS_OFFSET) & PAGE_MASK)
1587 * | PAGE_DIRECTORY
5a0015d6
CZ
1588 */
1589
a9f2fc62 1590 movi a1, (PHYS_OFFSET - PAGE_OFFSET) & 0xffffffff
5a0015d6
CZ
1591 add a0, a0, a1 # pmdval - PAGE_OFFSET
1592 extui a1, a0, 0, PAGE_SHIFT # ... & PAGE_MASK
1593 xor a0, a0, a1
1594
01858d1b 1595 movi a1, _PAGE_DIRECTORY
5a0015d6
CZ
1596 or a0, a0, a1 # ... | PAGE_DIRECTORY
1597
01858d1b 1598 /*
6656920b 1599 * We utilize all three wired-ways (7-9) to hold pmd translations.
01858d1b
CZ
1600 * Memory regions are mapped to the DTLBs according to bits 28 and 29.
1601 * This allows to map the three most common regions to three different
1602 * DTLBs:
1603 * 0,1 -> way 7 program (0040.0000) and virtual (c000.0000)
1604 * 2 -> way 8 shared libaries (2000.0000)
1605 * 3 -> way 0 stack (3000.0000)
1606 */
1607
1608 extui a3, a3, 28, 2 # addr. bit 28 and 29 0,1,2,3
bc5378fc 1609 rsr a1, ptevaddr
01858d1b 1610 addx2 a3, a3, a3 # -> 0,3,6,9
5a0015d6 1611 srli a1, a1, PAGE_SHIFT
01858d1b 1612 extui a3, a3, 2, 2 # -> 0,0,1,2
5a0015d6 1613 slli a1, a1, PAGE_SHIFT # ptevaddr & PAGE_MASK
01858d1b
CZ
1614 addi a3, a3, DTLB_WAY_PGD
1615 add a1, a1, a3 # ... + way_number
5a0015d6 1616
01858d1b 16173: wdtlb a0, a1
5a0015d6
CZ
1618 dsync
1619
1620 /* Exit critical section. */
1621
99d5040e 16224: rsr a3, excsave1
5a0015d6
CZ
1623 movi a0, 0
1624 s32i a0, a3, EXC_TABLE_FIXUP
1625
1626 /* Restore the working registers, and return. */
1627
1628 l32i a0, a2, PT_AREG0
1629 l32i a1, a2, PT_AREG1
99d5040e 1630 l32i a3, a2, PT_AREG3
5a0015d6 1631 l32i a2, a2, PT_DEPC
5a0015d6
CZ
1632
1633 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1634
1635 /* Restore excsave1 and return. */
1636
bc5378fc 1637 rsr a2, depc
5a0015d6
CZ
1638 rfe
1639
1640 /* Return from double exception. */
1641
bc5378fc 16421: xsr a2, depc
5a0015d6
CZ
1643 esync
1644 rfde
1645
16469: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
38fef73c
MF
1647 bnez a0, 8b
1648
1649 /* Even more unlikely case active_mm == 0.
1650 * We can get here with NMI in the middle of context_switch that
1651 * touches vmalloc area.
1652 */
1653 movi a0, init_mm
5a0015d6
CZ
1654 j 8b
1655
6656920b
CZ
1656#if (DCACHE_WAY_SIZE > PAGE_SIZE)
1657
16582: /* Special case for cache aliasing.
1659 * We (should) only get here if a clear_user_page, copy_user_page
1660 * or the aliased cache flush functions got preemptively interrupted
1661 * by another task. Re-establish temporary mapping to the
1662 * TLBTEMP_BASE areas.
1663 */
1664
1665 /* We shouldn't be in a double exception */
1666
1667 l32i a0, a2, PT_DEPC
1668 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 2f
1669
1670 /* Make sure the exception originated in the special functions */
1671
1672 movi a0, __tlbtemp_mapping_start
bc5378fc 1673 rsr a3, epc1
6656920b
CZ
1674 bltu a3, a0, 2f
1675 movi a0, __tlbtemp_mapping_end
1676 bgeu a3, a0, 2f
1677
1678 /* Check if excvaddr was in one of the TLBTEMP_BASE areas. */
1679
1680 movi a3, TLBTEMP_BASE_1
bc5378fc 1681 rsr a0, excvaddr
6656920b
CZ
1682 bltu a0, a3, 2f
1683
7128039f 1684 addi a1, a0, -TLBTEMP_SIZE
6656920b
CZ
1685 bgeu a1, a3, 2f
1686
1687 /* Check if we have to restore an ITLB mapping. */
1688
1689 movi a1, __tlbtemp_mapping_itlb
bc5378fc 1690 rsr a3, epc1
6656920b
CZ
1691 sub a3, a3, a1
1692
1693 /* Calculate VPN */
1694
1695 movi a1, PAGE_MASK
1696 and a1, a1, a0
1697
1698 /* Jump for ITLB entry */
1699
1700 bgez a3, 1f
1701
1702 /* We can use up to two TLBTEMP areas, one for src and one for dst. */
1703
1704 extui a3, a0, PAGE_SHIFT + DCACHE_ALIAS_ORDER, 1
1705 add a1, a3, a1
1706
1707 /* PPN is in a6 for the first TLBTEMP area and in a7 for the second. */
1708
1709 mov a0, a6
1710 movnez a0, a7, a3
1711 j 3b
1712
1713 /* ITLB entry. We only use dst in a6. */
1714
17151: witlb a6, a1
1716 isync
1717 j 4b
1718
1719
1720#endif // DCACHE_WAY_SIZE > PAGE_SIZE
1721
1722
5a0015d6
CZ
17232: /* Invalid PGD, default exception handling */
1724
bc5378fc 1725 rsr a1, depc
5a0015d6 1726 s32i a1, a2, PT_AREG2
5a0015d6
CZ
1727 mov a1, a2
1728
bc5378fc 1729 rsr a2, ps
173d6681 1730 bbsi.l a2, PS_UM_BIT, 1f
5a0015d6
CZ
1731 j _kernel_exception
17321: j _user_exception
1733
d1538c46 1734ENDPROC(fast_second_level_miss)
5a0015d6
CZ
1735
1736/*
1737 * StoreProhibitedException
1738 *
1739 * Update the pte and invalidate the itlb mapping for this pte.
1740 *
1741 * Entry condition:
1742 *
1743 * a0: trashed, original value saved on stack (PT_AREG0)
1744 * a1: a1
1745 * a2: new stack pointer, original in DEPC
99d5040e 1746 * a3: a3
5a0015d6 1747 * depc: a2, original value saved on stack (PT_DEPC)
99d5040e 1748 * excsave_1: dispatch table
5a0015d6
CZ
1749 *
1750 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1751 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1752 */
1753
1754ENTRY(fast_store_prohibited)
1755
99d5040e 1756 /* Save a1 and a3. */
5a0015d6
CZ
1757
1758 s32i a1, a2, PT_AREG1
99d5040e 1759 s32i a3, a2, PT_AREG3
5a0015d6
CZ
1760
1761 GET_CURRENT(a1,a2)
1762 l32i a0, a1, TASK_MM # tsk->mm
1763 beqz a0, 9f
1764
bc5378fc 17658: rsr a1, excvaddr # fault address
99d5040e 1766 _PGD_OFFSET(a0, a1, a3)
5a0015d6 1767 l32i a0, a0, 0
5a0015d6
CZ
1768 beqz a0, 2f
1769
51fc41a9
MF
1770 /*
1771 * Note that we test _PAGE_WRITABLE_BIT only if PTE is present
1772 * and is not PAGE_NONE. See pgtable.h for possible PTE layouts.
1773 */
01858d1b 1774
99d5040e
MF
1775 _PTE_OFFSET(a0, a1, a3)
1776 l32i a3, a0, 0 # read pteval
51fc41a9 1777 movi a1, _PAGE_CA_INVALID
99d5040e
MF
1778 ball a3, a1, 2f
1779 bbci.l a3, _PAGE_WRITABLE_BIT, 2f
5a0015d6 1780
01858d1b 1781 movi a1, _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HW_WRITE
99d5040e 1782 or a3, a3, a1
bc5378fc 1783 rsr a1, excvaddr
99d5040e 1784 s32i a3, a0, 0
5a0015d6
CZ
1785
1786 /* We need to flush the cache if we have page coloring. */
1787#if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
1788 dhwb a0, 0
1789#endif
1790 pdtlb a0, a1
99d5040e 1791 wdtlb a3, a0
5a0015d6
CZ
1792
1793 /* Exit critical section. */
1794
1795 movi a0, 0
99d5040e 1796 rsr a3, excsave1
5a0015d6
CZ
1797 s32i a0, a3, EXC_TABLE_FIXUP
1798
1799 /* Restore the working registers, and return. */
1800
99d5040e 1801 l32i a3, a2, PT_AREG3
5a0015d6
CZ
1802 l32i a1, a2, PT_AREG1
1803 l32i a0, a2, PT_AREG0
1804 l32i a2, a2, PT_DEPC
1805
5a0015d6
CZ
1806 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1807
bc5378fc 1808 rsr a2, depc
5a0015d6
CZ
1809 rfe
1810
1811 /* Double exception. Restore FIXUP handler and return. */
1812
bc5378fc 18131: xsr a2, depc
5a0015d6
CZ
1814 esync
1815 rfde
1816
18179: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1818 j 8b
1819
18202: /* If there was a problem, handle fault in C */
1821
99d5040e
MF
1822 rsr a3, depc # still holds a2
1823 s32i a3, a2, PT_AREG2
5a0015d6
CZ
1824 mov a1, a2
1825
bc5378fc 1826 rsr a2, ps
173d6681 1827 bbsi.l a2, PS_UM_BIT, 1f
5a0015d6
CZ
1828 j _kernel_exception
18291: j _user_exception
d1538c46
CZ
1830
1831ENDPROC(fast_store_prohibited)
1832
e5083a63 1833#endif /* CONFIG_MMU */
5a0015d6 1834
fc4fb2ad
CZ
1835/*
1836 * System Calls.
1837 *
1838 * void system_call (struct pt_regs* regs, int exccause)
1839 * a2 a3
1840 */
f8f02ca7 1841 .literal_position
fc4fb2ad
CZ
1842
1843ENTRY(system_call)
d1538c46 1844
fc4fb2ad
CZ
1845 entry a1, 32
1846
1847 /* regs->syscall = regs->areg[2] */
1848
3aee3e25
MF
1849 l32i a7, a2, PT_AREG2
1850 s32i a7, a2, PT_SYSCALL
1851
1852 GET_THREAD_INFO(a4, a1)
1853 l32i a3, a4, TI_FLAGS
1854 movi a4, _TIF_WORK_MASK
1855 and a3, a3, a4
1856 beqz a3, 1f
1857
fc4fb2ad 1858 mov a6, a2
2da03d41 1859 call4 do_syscall_trace_enter
3aee3e25 1860 l32i a7, a2, PT_SYSCALL
fc4fb2ad 1861
3aee3e25 18621:
2201f31f
MF
1863 s32i a7, a1, 4
1864
fc4fb2ad
CZ
1865 /* syscall = sys_call_table[syscall_nr] */
1866
f984409a 1867 movi a4, sys_call_table
a86067f5 1868 movi a5, __NR_syscalls
fc4fb2ad 1869 movi a6, -ENOSYS
3aee3e25 1870 bgeu a7, a5, 1f
fc4fb2ad 1871
3aee3e25 1872 addx4 a4, a7, a4
fc4fb2ad
CZ
1873 l32i a4, a4, 0
1874 movi a5, sys_ni_syscall;
1875 beq a4, a5, 1f
1876
1877 /* Load args: arg0 - arg5 are passed via regs. */
1878
1879 l32i a6, a2, PT_AREG6
1880 l32i a7, a2, PT_AREG3
1881 l32i a8, a2, PT_AREG4
1882 l32i a9, a2, PT_AREG5
1883 l32i a10, a2, PT_AREG8
1884 l32i a11, a2, PT_AREG9
1885
1886 /* Pass one additional argument to the syscall: pt_regs (on stack) */
1887 s32i a2, a1, 0
1888
1889 callx4 a4
1890
18911: /* regs->areg[2] = return_value */
1892
1893 s32i a6, a2, PT_AREG2
3aee3e25
MF
1894 bnez a3, 1f
1895 retw
1896
18971:
2201f31f
MF
1898 l32i a4, a1, 4
1899 l32i a3, a2, PT_SYSCALL
1900 s32i a4, a2, PT_SYSCALL
fc4fb2ad 1901 mov a6, a2
2da03d41 1902 call4 do_syscall_trace_leave
2201f31f 1903 s32i a3, a2, PT_SYSCALL
fc4fb2ad
CZ
1904 retw
1905
d1538c46
CZ
1906ENDPROC(system_call)
1907
e2fd1374
MF
1908/*
1909 * Spill live registers on the kernel stack macro.
1910 *
1911 * Entry condition: ps.woe is set, ps.excm is cleared
1912 * Exit condition: windowstart has single bit set
1913 * May clobber: a12, a13
1914 */
1915 .macro spill_registers_kernel
1916
1917#if XCHAL_NUM_AREGS > 16
1918 call12 1f
1919 _j 2f
1920 retw
1921 .align 4
19221:
1923 _entry a1, 48
1924 addi a12, a0, 3
1925#if XCHAL_NUM_AREGS > 32
1926 .rept (XCHAL_NUM_AREGS - 32) / 12
1927 _entry a1, 48
1928 mov a12, a0
1929 .endr
1930#endif
77d6273e 1931 _entry a1, 16
e2fd1374
MF
1932#if XCHAL_NUM_AREGS % 12 == 0
1933 mov a8, a8
1934#elif XCHAL_NUM_AREGS % 12 == 4
1935 mov a12, a12
1936#elif XCHAL_NUM_AREGS % 12 == 8
1937 mov a4, a4
1938#endif
1939 retw
19402:
1941#else
1942 mov a12, a12
1943#endif
1944 .endm
fc4fb2ad 1945
5a0015d6
CZ
1946/*
1947 * Task switch.
1948 *
1949 * struct task* _switch_to (struct task* prev, struct task* next)
1950 * a2 a2 a3
1951 */
1952
1953ENTRY(_switch_to)
1954
77d6273e 1955 entry a1, 48
5a0015d6 1956
e2fd1374 1957 mov a11, a3 # and 'next' (a3)
5a0015d6 1958
c658eac6
CZ
1959 l32i a4, a2, TASK_THREAD_INFO
1960 l32i a5, a3, TASK_THREAD_INFO
5a0015d6 1961
e2fd1374 1962 save_xtregs_user a4 a6 a8 a9 a12 a13 THREAD_XTREGS_USER
5a0015d6 1963
52247123
MF
1964#if THREAD_RA > 1020 || THREAD_SP > 1020
1965 addi a10, a2, TASK_THREAD
1966 s32i a0, a10, THREAD_RA - TASK_THREAD # save return address
1967 s32i a1, a10, THREAD_SP - TASK_THREAD # save stack pointer
1968#else
1969 s32i a0, a2, THREAD_RA # save return address
1970 s32i a1, a2, THREAD_SP # save stack pointer
1971#endif
c658eac6 1972
050e9baa 1973#if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_SMP)
40d1a07b
MF
1974 movi a6, __stack_chk_guard
1975 l32i a8, a3, TASK_STACK_CANARY
1976 s32i a8, a6, 0
1977#endif
1978
c658eac6
CZ
1979 /* Disable ints while we manipulate the stack pointer. */
1980
38fef73c 1981 irq_save a14, a3
5a0015d6 1982 rsync
5a0015d6 1983
c658eac6
CZ
1984 /* Switch CPENABLE */
1985
1986#if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS)
1987 l32i a3, a5, THREAD_CPENABLE
bc5378fc 1988 xsr a3, cpenable
c658eac6
CZ
1989 s32i a3, a4, THREAD_CPENABLE
1990#endif
1991
1992 /* Flush register file. */
1993
e2fd1374 1994 spill_registers_kernel
5a0015d6
CZ
1995
1996 /* Set kernel stack (and leave critical section)
1997 * Note: It's save to set it here. The stack will not be overwritten
1998 * because the kernel stack will only be loaded again after
1999 * we return from kernel space.
2000 */
2001
bc5378fc 2002 rsr a3, excsave1 # exc_table
c658eac6 2003 addi a7, a5, PT_REGS_OFFSET
c658eac6 2004 s32i a7, a3, EXC_TABLE_KSTK
5a0015d6 2005
c50842df 2006 /* restore context of the task 'next' */
5a0015d6 2007
e2fd1374
MF
2008 l32i a0, a11, THREAD_RA # restore return address
2009 l32i a1, a11, THREAD_SP # restore stack pointer
c658eac6 2010
e2fd1374 2011 load_xtregs_user a5 a6 a8 a9 a12 a13 THREAD_XTREGS_USER
5a0015d6 2012
bc5378fc 2013 wsr a14, ps
5a0015d6
CZ
2014 rsync
2015
2016 retw
2017
d1538c46 2018ENDPROC(_switch_to)
5a0015d6
CZ
2019
2020ENTRY(ret_from_fork)
2021
2022 /* void schedule_tail (struct task_struct *prev)
2023 * Note: prev is still in a6 (return value from fake call4 frame)
2024 */
2da03d41 2025 call4 schedule_tail
5a0015d6 2026
fc4fb2ad 2027 mov a6, a1
2da03d41 2028 call4 do_syscall_trace_leave
5a0015d6
CZ
2029
2030 j common_exception_return
2031
d1538c46
CZ
2032ENDPROC(ret_from_fork)
2033
3306a726
MF
2034/*
2035 * Kernel thread creation helper
2036 * On entry, set up by copy_thread: a2 = thread_fn, a3 = thread_fn arg
2037 * left from _switch_to: a6 = prev
2038 */
2039ENTRY(ret_from_kernel_thread)
2040
2041 call4 schedule_tail
2042 mov a6, a3
2043 callx4 a2
f0a1bf08 2044 j common_exception_return
3306a726
MF
2045
2046ENDPROC(ret_from_kernel_thread)