2 * arch/xtensa/kernel/entry.S
4 * Low-level exception handling
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
10 * Copyright (C) 2004 - 2008 by Tensilica Inc.
12 * Chris Zankel <chris@zankel.net>
16 #include <linux/linkage.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/processor.h>
19 #include <asm/coprocessor.h>
20 #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>
27 #include <asm/signal.h>
28 #include <asm/tlbflush.h>
29 #include <variant/tie-asm.h>
31 /* Unimplemented features. */
33 #undef KERNEL_STACK_OVERFLOW_CHECK
41 * Macro to find first bit set in WINDOWBASE from the left + 1
48 .macro ffs_ws bit mask
51 nsau \bit, \mask # 32-WSBITS ... 31 (32 iff 0)
52 addi \bit, \bit, WSBITS - 32 + 1 # uppest bit set -> return 1
56 _bltui \mask, 0x10000, 99f
58 extui \mask, \mask, 16, 16
61 99: _bltui \mask, 0x100, 99f
65 99: _bltui \mask, 0x10, 99f
68 99: _bltui \mask, 0x4, 99f
71 99: _bltui \mask, 0x2, 99f
78 /* ----------------- DEFAULT FIRST LEVEL EXCEPTION HANDLERS ----------------- */
81 * First-level exception handler for user exceptions.
82 * Save some special registers, extra states and all registers in the AR
83 * register file that were in use in the user task, and jump to the common
85 * We save SAR (used to calculate WMASK), and WB and WS (we don't have to
86 * save them for kernel exceptions).
88 * Entry condition for user_exception:
90 * a0: trashed, original value saved on stack (PT_AREG0)
92 * a2: new stack pointer, original value in depc
94 * depc: a2, original value saved on stack (PT_DEPC)
95 * excsave1: dispatch table
97 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
98 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
100 * Entry condition for _user_exception:
102 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
103 * excsave has been restored, and
104 * stack pointer (a1) has been set.
106 * Note: _user_exception might be at an odd address. Don't use call0..call12
109 ENTRY(user_exception)
111 /* Save a1, a2, a3, and set SP. */
114 s32i a1, a2, PT_AREG1
115 s32i a0, a2, PT_AREG2
116 s32i a3, a2, PT_AREG3
119 .globl _user_exception
122 /* Save SAR and turn off single stepping */
128 s32i a2, a1, PT_ICOUNTLEVEL
130 #if XCHAL_HAVE_THREADPTR
132 s32i a2, a1, PT_THREADPTR
135 /* Rotate ws so that the current windowbase is at bit0. */
136 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
141 s32i a2, a1, PT_WINDOWBASE
142 s32i a3, a1, PT_WINDOWSTART
143 slli a2, a3, 32-WSBITS
145 srli a2, a2, 32-WSBITS
146 s32i a2, a1, PT_WMASK # needed for restoring registers
148 /* Save only live registers. */
151 s32i a4, a1, PT_AREG4
152 s32i a5, a1, PT_AREG5
153 s32i a6, a1, PT_AREG6
154 s32i a7, a1, PT_AREG7
156 s32i a8, a1, PT_AREG8
157 s32i a9, a1, PT_AREG9
158 s32i a10, a1, PT_AREG10
159 s32i a11, a1, PT_AREG11
161 s32i a12, a1, PT_AREG12
162 s32i a13, a1, PT_AREG13
163 s32i a14, a1, PT_AREG14
164 s32i a15, a1, PT_AREG15
165 _bnei a2, 1, 1f # only one valid frame?
167 /* Only one valid frame, skip saving regs. */
171 /* Save the remaining registers.
172 * We have to save all registers up to the first '1' from
173 * the right, except the current frame (bit 0).
174 * Assume a2 is: 001001000110001
175 * All register frames starting from the top field to the marked '1'
179 1: addi a3, a2, -1 # eliminate '1' in bit 0: yyyyxxww0
180 neg a3, a3 # yyyyxxww0 -> YYYYXXWW1+1
181 and a3, a3, a2 # max. only one bit is set
183 /* Find number of frames to save */
185 ffs_ws a0, a3 # number of frames to the '1' from left
187 /* Store information into WMASK:
188 * bits 0..3: xxx1 masked lower 4 bits of the rotated windowstart,
189 * bits 4...: number of valid 4-register frames
192 slli a3, a0, 4 # number of frames to save in bits 8..4
193 extui a2, a2, 0, 4 # mask for the first 16 registers
195 s32i a2, a1, PT_WMASK # needed when we restore the reg-file
197 /* Save 4 registers at a time */
200 s32i a0, a5, PT_AREG_END - 16
201 s32i a1, a5, PT_AREG_END - 12
202 s32i a2, a5, PT_AREG_END - 8
203 s32i a3, a5, PT_AREG_END - 4
208 /* WINDOWBASE still in SAR! */
210 rsr a2, sar # original WINDOWBASE
214 wsr a3, windowstart # set corresponding WINDOWSTART bit
215 wsr a2, windowbase # and WINDOWSTART
218 /* We are back to the original stack pointer (a1) */
220 2: /* Now, jump to the common exception handler. */
224 ENDPROC(user_exception)
227 * First-level exit handler for kernel exceptions
228 * Save special registers and the live window frame.
229 * Note: Even though we changes the stack pointer, we don't have to do a
230 * MOVSP here, as we do that when we return from the exception.
231 * (See comment in the kernel exception exit code)
233 * Entry condition for kernel_exception:
235 * a0: trashed, original value saved on stack (PT_AREG0)
237 * a2: new stack pointer, original in DEPC
239 * depc: a2, original value saved on stack (PT_DEPC)
240 * excsave_1: dispatch table
242 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
243 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
245 * Entry condition for _kernel_exception:
247 * a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
248 * excsave has been restored, and
249 * stack pointer (a1) has been set.
251 * Note: _kernel_exception might be at an odd address. Don't use call0..call12
254 ENTRY(kernel_exception)
256 /* Save a1, a2, a3, and set SP. */
258 rsr a0, depc # get a2
259 s32i a1, a2, PT_AREG1
260 s32i a0, a2, PT_AREG2
261 s32i a3, a2, PT_AREG3
264 .globl _kernel_exception
267 /* Save SAR and turn off single stepping */
273 s32i a2, a1, PT_ICOUNTLEVEL
275 /* Rotate ws so that the current windowbase is at bit0. */
276 /* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
278 rsr a2, windowbase # don't need to save these, we only
279 rsr a3, windowstart # need shifted windowstart: windowmask
281 slli a2, a3, 32-WSBITS
283 srli a2, a2, 32-WSBITS
284 s32i a2, a1, PT_WMASK # needed for kernel_exception_exit
286 /* Save only the live window-frame */
289 s32i a4, a1, PT_AREG4
290 s32i a5, a1, PT_AREG5
291 s32i a6, a1, PT_AREG6
292 s32i a7, a1, PT_AREG7
294 s32i a8, a1, PT_AREG8
295 s32i a9, a1, PT_AREG9
296 s32i a10, a1, PT_AREG10
297 s32i a11, a1, PT_AREG11
299 s32i a12, a1, PT_AREG12
300 s32i a13, a1, PT_AREG13
301 s32i a14, a1, PT_AREG14
302 s32i a15, a1, PT_AREG15
306 #ifdef KERNEL_STACK_OVERFLOW_CHECK
308 /* Stack overflow check, for debugging */
309 extui a2, a1, TASK_SIZE_BITS,XX
311 _bge a2, a3, out_of_stack_panic
316 * This is the common exception handler.
317 * We get here from the user exception handler or simply by falling through
318 * from the kernel exception handler.
319 * Save the remaining special registers, switch to kernel mode, and jump
320 * to the second-level exception handler.
326 /* Save some registers, disable loops and clear the syscall flag. */
330 s32i a2, a1, PT_DEBUGCAUSE
335 s32i a2, a1, PT_SYSCALL
337 s32i a3, a1, PT_EXCVADDR
339 s32i a2, a1, PT_LCOUNT
341 /* It is now save to restore the EXC_TABLE_FIXUP variable. */
346 s32i a0, a1, PT_EXCCAUSE
347 s32i a3, a2, EXC_TABLE_FIXUP
349 /* All unrecoverable states are saved on stack, now, and a1 is valid,
350 * so we can allow exceptions and interrupts (*) again.
351 * Set PS(EXCM = 0, UM = 0, RING = 0, OWB = 0, WOE = 1, INTLEVEL = X)
353 * (*) We only allow interrupts if they were previously enabled and
354 * we're not handling an IRQ
358 addi a0, a0, -EXCCAUSE_LEVEL1_INTERRUPT
360 extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
362 moveqz a3, a2, a0 # a3 = LOCKLEVEL iff interrupt
363 movi a2, 1 << PS_WOE_BIT
368 s32i a3, a1, PT_PS # save ps
370 /* Save lbeg, lend */
379 #if XCHAL_HAVE_S32C1I
381 s32i a2, a1, PT_SCOMPARE1
384 /* Save optional registers. */
386 save_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
388 #ifdef CONFIG_TRACE_IRQFLAGS
390 /* Double exception means we came here with an exception
391 * while PS.EXCM was set, i.e. interrupts disabled.
393 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
394 l32i a4, a1, PT_EXCCAUSE
395 bnei a4, EXCCAUSE_LEVEL1_INTERRUPT, 1f
396 /* We came here with an interrupt means interrupts were enabled
397 * and we've just disabled them.
399 movi a4, trace_hardirqs_off
404 /* Go to second-level dispatcher. Set up parameters to pass to the
405 * exception handler and call the exception handler.
409 mov a6, a1 # pass stack frame
410 mov a7, a0 # pass EXCCAUSE
412 l32i a4, a4, EXC_TABLE_DEFAULT # load handler
414 /* Call the second-level handler */
418 /* Jump here for exception exit */
419 .global common_exception_return
420 common_exception_return:
425 /* Jump if we are returning from kernel exceptions. */
428 GET_THREAD_INFO(a2, a1)
429 l32i a4, a2, TI_FLAGS
430 _bbci.l a3, PS_UM_BIT, 6f
432 /* Specific to a user exception exit:
433 * We need to check some flags for signal handling and rescheduling,
434 * and have to restore WB and WS, extra states, and all registers
435 * in the register file that were in use in the user task.
436 * Note that we don't disable interrupts here.
439 _bbsi.l a4, TIF_NEED_RESCHED, 3f
440 _bbsi.l a4, TIF_NOTIFY_RESUME, 2f
441 _bbci.l a4, TIF_SIGPENDING, 5f
443 2: l32i a4, a1, PT_DEPC
444 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
446 /* Call do_signal() */
449 movi a4, do_notify_resume # int do_notify_resume(struct pt_regs*)
457 movi a4, schedule # void schedule (void)
461 #ifdef CONFIG_PREEMPT
463 _bbci.l a4, TIF_NEED_RESCHED, 4f
465 /* Check current_thread_info->preempt_count */
467 l32i a4, a2, TI_PRE_COUNT
469 movi a4, preempt_schedule_irq
475 #ifdef CONFIG_DEBUG_TLB_SANITY
477 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
478 movi a4, check_tlb_sanity
483 #ifdef CONFIG_TRACE_IRQFLAGS
485 /* Double exception means we came here with an exception
486 * while PS.EXCM was set, i.e. interrupts disabled.
488 bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
489 l32i a4, a1, PT_EXCCAUSE
490 bnei a4, EXCCAUSE_LEVEL1_INTERRUPT, 1f
491 /* We came here with an interrupt means interrupts were enabled
492 * and we'll reenable them on return.
494 movi a4, trace_hardirqs_on
498 /* Restore optional registers. */
500 load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
502 /* Restore SCOMPARE1 */
504 #if XCHAL_HAVE_S32C1I
505 l32i a2, a1, PT_SCOMPARE1
508 wsr a3, ps /* disable interrupts */
510 _bbci.l a3, PS_UM_BIT, kernel_exception_exit
514 /* Restore the state of the task and return from the exception. */
516 /* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */
518 l32i a2, a1, PT_WINDOWBASE
519 l32i a3, a1, PT_WINDOWSTART
520 wsr a1, depc # use DEPC as temp storage
521 wsr a3, windowstart # restore WINDOWSTART
522 ssr a2 # preserve user's WB in the SAR
523 wsr a2, windowbase # switch to user's saved WB
525 rsr a1, depc # restore stack pointer
526 l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
527 rotw -1 # we restore a4..a7
528 _bltui a6, 16, 1f # only have to restore current window?
530 /* The working registers are a0 and a3. We are restoring to
531 * a4..a7. Be careful not to destroy what we have just restored.
532 * Note: wmask has the format YYYYM:
533 * Y: number of registers saved in groups of 4
534 * M: 4 bit mask of first 16 registers
540 2: rotw -1 # a0..a3 become a4..a7
541 addi a3, a7, -4*4 # next iteration
542 addi a2, a6, -16 # decrementing Y in WMASK
543 l32i a4, a3, PT_AREG_END + 0
544 l32i a5, a3, PT_AREG_END + 4
545 l32i a6, a3, PT_AREG_END + 8
546 l32i a7, a3, PT_AREG_END + 12
549 /* Clear unrestored registers (don't leak anything to user-land */
551 1: rsr a0, windowbase
555 extui a3, a3, 0, WBBITS
565 /* We are back were we were when we started.
566 * Note: a2 still contains WMASK (if we've returned to the original
567 * frame where we had loaded a2), or at least the lower 4 bits
568 * (if we have restored WSBITS-1 frames).
571 #if XCHAL_HAVE_THREADPTR
572 l32i a3, a1, PT_THREADPTR
576 2: j common_exception_exit
578 /* This is the kernel exception exit.
579 * We avoided to do a MOVSP when we entered the exception, but we
580 * have to do it here.
583 kernel_exception_exit:
585 /* Check if we have to do a movsp.
587 * We only have to do a movsp if the previous window-frame has
588 * been spilled to the *temporary* exception stack instead of the
589 * task's stack. This is the case if the corresponding bit in
590 * WINDOWSTART for the previous window-frame was set before
591 * (not spilled) but is zero now (spilled).
592 * If this bit is zero, all other bits except the one for the
593 * current window frame are also zero. So, we can use a simple test:
594 * 'and' WINDOWSTART and WINDOWSTART-1:
596 * (XXXXXX1[0]* - 1) AND XXXXXX1[0]* = XXXXXX0[0]*
598 * The result is zero only if one bit was set.
600 * (Note: We might have gone through several task switches before
601 * we come back to the current task, so WINDOWBASE might be
602 * different from the time the exception occurred.)
605 /* Test WINDOWSTART before and after the exception.
606 * We actually have WMASK, so we only have to test if it is 1 or not.
609 l32i a2, a1, PT_WMASK
610 _beqi a2, 1, common_exception_exit # Spilled before exception,jump
612 /* Test WINDOWSTART now. If spilled, do the movsp */
617 _bnez a3, common_exception_exit
619 /* Do a movsp (we returned from a call4, so we have at least a0..a7) */
624 s32i a3, a1, PT_SIZE+0
625 s32i a4, a1, PT_SIZE+4
628 s32i a3, a1, PT_SIZE+8
629 s32i a4, a1, PT_SIZE+12
631 /* Common exception exit.
632 * We restore the special register and the current window frame, and
633 * return from the exception.
635 * Note: We expect a2 to hold PT_WMASK
638 common_exception_exit:
640 /* Restore address registers. */
643 l32i a4, a1, PT_AREG4
644 l32i a5, a1, PT_AREG5
645 l32i a6, a1, PT_AREG6
646 l32i a7, a1, PT_AREG7
648 l32i a8, a1, PT_AREG8
649 l32i a9, a1, PT_AREG9
650 l32i a10, a1, PT_AREG10
651 l32i a11, a1, PT_AREG11
653 l32i a12, a1, PT_AREG12
654 l32i a13, a1, PT_AREG13
655 l32i a14, a1, PT_AREG14
656 l32i a15, a1, PT_AREG15
658 /* Restore PC, SAR */
660 1: l32i a2, a1, PT_PC
665 /* Restore LBEG, LEND, LCOUNT */
670 l32i a2, a1, PT_LCOUNT
674 /* We control single stepping through the ICOUNTLEVEL register. */
676 l32i a2, a1, PT_ICOUNTLEVEL
681 /* Check if it was double exception. */
684 l32i a3, a1, PT_AREG3
685 l32i a2, a1, PT_AREG2
686 _bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
688 /* Restore a0...a3 and return */
690 l32i a0, a1, PT_AREG0
691 l32i a1, a1, PT_AREG1
695 l32i a0, a1, PT_AREG0
696 l32i a1, a1, PT_AREG1
699 ENDPROC(kernel_exception)
702 * Debug exception handler.
704 * Currently, we don't support KGDB, so only user application can be debugged.
706 * When we get here, a0 is trashed and saved to excsave[debuglevel]
709 ENTRY(debug_exception)
711 rsr a0, SREG_EPS + XCHAL_DEBUGLEVEL
712 bbsi.l a0, PS_EXCM_BIT, 1f # exception mode
714 /* Set EPC1 and EXCCAUSE */
716 wsr a2, depc # save a2 temporarily
717 rsr a2, SREG_EPC + XCHAL_DEBUGLEVEL
720 movi a2, EXCCAUSE_MAPPED_DEBUG
723 /* Restore PS to the value before the debug exc but with PS.EXCM set.*/
725 movi a2, 1 << PS_EXCM_BIT
727 movi a0, debug_exception # restore a3, debug jump vector
729 xsr a0, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
731 /* Switch to kernel/user stack, restore jump vector, and save a0 */
733 bbsi.l a2, PS_UM_BIT, 2f # jump if user mode
735 addi a2, a1, -16-PT_SIZE # assume kernel stack
736 s32i a0, a2, PT_AREG0
738 s32i a1, a2, PT_AREG1
739 s32i a0, a2, PT_DEPC # mark it as a regular exception
741 s32i a3, a2, PT_AREG3
742 s32i a0, a2, PT_AREG2
747 l32i a2, a2, EXC_TABLE_KSTK # load kernel stack pointer
748 s32i a0, a2, PT_AREG0
750 s32i a1, a2, PT_AREG1
753 s32i a3, a2, PT_AREG3
754 s32i a0, a2, PT_AREG2
758 /* Debug exception while in exception mode. */
761 ENDPROC(debug_exception)
764 * We get here in case of an unrecoverable exception.
765 * The only thing we can do is to be nice and print a panic message.
766 * We only produce a single stack frame for panic, so ???
771 * - a0 contains the caller address; original value saved in excsave1.
772 * - the original a0 contains a valid return address (backtrace) or 0.
773 * - a2 contains a valid stackpointer
777 * - If the stack pointer could be invalid, the caller has to setup a
778 * dummy stack pointer (e.g. the stack of the init_task)
780 * - If the return address could be invalid, the caller has to set it
781 * to 0, so the backtrace would stop.
786 .ascii "Unrecoverable error in exception handler\0"
788 ENTRY(unrecoverable_exception)
797 movi a1, (1 << PS_WOE_BIT) | LOCKLEVEL
803 addi a1, a1, PT_REGS_OFFSET
806 movi a6, unrecoverable_text
812 ENDPROC(unrecoverable_exception)
814 /* -------------------------- FAST EXCEPTION HANDLERS ----------------------- */
817 * Fast-handler for alloca exceptions
819 * The ALLOCA handler is entered when user code executes the MOVSP
820 * instruction and the caller's frame is not in the register file.
822 * This algorithm was taken from the Ross Morley's RTOS Porting Layer:
824 * /home/ross/rtos/porting/XtensaRTOS-PortingLayer-20090507/xtensa_vectors.S
826 * It leverages the existing window spill/fill routines and their support for
827 * double exceptions. The 'movsp' instruction will only cause an exception if
828 * the next window needs to be loaded. In fact this ALLOCA exception may be
829 * replaced at some point by changing the hardware to do a underflow exception
830 * of the proper size instead.
832 * This algorithm simply backs out the register changes started by the user
833 * excpetion handler, makes it appear that we have started a window underflow
834 * by rotating the window back and then setting the old window base (OWB) in
835 * the 'ps' register with the rolled back window base. The 'movsp' instruction
836 * will be re-executed and this time since the next window frames is in the
837 * active AR registers it won't cause an exception.
839 * If the WindowUnderflow code gets a TLB miss the page will get mapped
840 * the the partial windeowUnderflow will be handeled in the double exception
845 * a0: trashed, original value saved on stack (PT_AREG0)
847 * a2: new stack pointer, original in DEPC
849 * depc: a2, original value saved on stack (PT_DEPC)
850 * excsave_1: dispatch table
852 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
853 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
860 extui a3, a2, PS_OWB_SHIFT, PS_OWB_WIDTH
862 l32i a4, a6, PT_AREG0
866 slli a3, a3, PS_OWB_SHIFT
876 8: j _WindowUnderflow8
877 4: j _WindowUnderflow4
883 * WARNING: The kernel doesn't save the entire user context before
884 * handling a fast system call. These functions are small and short,
885 * usually offering some functionality not available to user tasks.
887 * BE CAREFUL TO PRESERVE THE USER'S CONTEXT.
891 * a0: trashed, original value saved on stack (PT_AREG0)
893 * a2: new stack pointer, original in DEPC
895 * depc: a2, original value saved on stack (PT_DEPC)
896 * excsave_1: dispatch table
899 ENTRY(fast_syscall_kernel)
908 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
910 rsr a0, depc # get syscall-nr
911 _beqz a0, fast_syscall_spill_registers
912 _beqi a0, __NR_xtensa, fast_syscall_xtensa
916 ENDPROC(fast_syscall_kernel)
918 ENTRY(fast_syscall_user)
927 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
929 rsr a0, depc # get syscall-nr
930 _beqz a0, fast_syscall_spill_registers
931 _beqi a0, __NR_xtensa, fast_syscall_xtensa
935 ENDPROC(fast_syscall_user)
937 ENTRY(fast_syscall_unrecoverable)
939 /* Restore all states. */
941 l32i a0, a2, PT_AREG0 # restore a0
942 xsr a2, depc # restore a2, depc
945 movi a0, unrecoverable_exception
948 ENDPROC(fast_syscall_unrecoverable)
951 * sysxtensa syscall handler
953 * int sysxtensa (SYS_XTENSA_ATOMIC_SET, ptr, val, unused);
954 * int sysxtensa (SYS_XTENSA_ATOMIC_ADD, ptr, val, unused);
955 * int sysxtensa (SYS_XTENSA_ATOMIC_EXG_ADD, ptr, val, unused);
956 * int sysxtensa (SYS_XTENSA_ATOMIC_CMP_SWP, ptr, oldval, newval);
961 * a0: a2 (syscall-nr), original value saved on stack (PT_AREG0)
963 * a2: new stack pointer, original in a0 and DEPC
966 * depc: a2, original value saved on stack (PT_DEPC)
967 * excsave_1: dispatch table
969 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
970 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
972 * Note: we don't have to save a2; a2 holds the return value
974 * We use the two macros TRY and CATCH:
976 * TRY adds an entry to the __ex_table fixup table for the immediately
977 * following instruction.
979 * CATCH catches any exception that occurred at one of the preceding TRY
980 * statements and continues from there
982 * Usage TRY l32i a0, a1, 0
985 * CATCH <set return code>
990 .section __ex_table, "a"; \
998 ENTRY(fast_syscall_xtensa)
1000 s32i a7, a2, PT_AREG7 # we need an additional register
1001 movi a7, 4 # sizeof(unsigned int)
1002 access_ok a3, a7, a0, a2, .Leac # a0: scratch reg, a2: sp
1004 addi a6, a6, -1 # assuming SYS_XTENSA_ATOMIC_SET = 1
1005 _bgeui a6, SYS_XTENSA_COUNT - 1, .Lill
1006 _bnei a6, SYS_XTENSA_ATOMIC_CMP_SWP - 1, .Lnswp
1008 /* Fall through for ATOMIC_CMP_SWP. */
1010 .Lswp: /* Atomic compare and swap */
1012 TRY l32i a0, a3, 0 # read old value
1013 bne a0, a4, 1f # same as old value? jump
1014 TRY s32i a5, a3, 0 # different, modify value
1015 l32i a7, a2, PT_AREG7 # restore a7
1016 l32i a0, a2, PT_AREG0 # restore a0
1017 movi a2, 1 # and return 1
1018 addi a6, a6, 1 # restore a6 (really necessary?)
1021 1: l32i a7, a2, PT_AREG7 # restore a7
1022 l32i a0, a2, PT_AREG0 # restore a0
1023 movi a2, 0 # return 0 (note that we cannot set
1024 addi a6, a6, 1 # restore a6 (really necessary?)
1027 .Lnswp: /* Atomic set, add, and exg_add. */
1029 TRY l32i a7, a3, 0 # orig
1030 add a0, a4, a7 # + arg
1031 moveqz a0, a4, a6 # set
1032 TRY s32i a0, a3, 0 # write new value
1036 l32i a7, a0, PT_AREG7 # restore a7
1037 l32i a0, a0, PT_AREG0 # restore a0
1038 addi a6, a6, 1 # restore a6 (really necessary?)
1042 .Leac: l32i a7, a2, PT_AREG7 # restore a7
1043 l32i a0, a2, PT_AREG0 # restore a0
1047 .Lill: l32i a7, a2, PT_AREG0 # restore a7
1048 l32i a0, a2, PT_AREG0 # restore a0
1052 ENDPROC(fast_syscall_xtensa)
1055 /* fast_syscall_spill_registers.
1059 * a0: trashed, original value saved on stack (PT_AREG0)
1061 * a2: new stack pointer, original in DEPC
1063 * depc: a2, original value saved on stack (PT_DEPC)
1064 * excsave_1: dispatch table
1066 * Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler.
1069 ENTRY(fast_syscall_spill_registers)
1071 /* Register a FIXUP handler (pass current wb as a parameter) */
1074 movi a0, fast_syscall_spill_registers_fixup
1075 s32i a0, a3, EXC_TABLE_FIXUP
1077 s32i a0, a3, EXC_TABLE_PARAM
1078 xsr a3, excsave1 # restore a3 and excsave_1
1080 /* Save a3, a4 and SAR on stack. */
1083 s32i a3, a2, PT_AREG3
1084 s32i a4, a2, PT_AREG4
1085 s32i a0, a2, PT_AREG5 # store SAR to PT_AREG5
1087 /* The spill routine might clobber a7, a11, and a15. */
1089 s32i a7, a2, PT_AREG7
1090 s32i a11, a2, PT_AREG11
1091 s32i a15, a2, PT_AREG15
1093 call0 _spill_registers # destroys a3, a4, and SAR
1095 /* Advance PC, restore registers and SAR, and return from exception. */
1097 l32i a3, a2, PT_AREG5
1098 l32i a4, a2, PT_AREG4
1099 l32i a0, a2, PT_AREG0
1101 l32i a3, a2, PT_AREG3
1103 /* Restore clobbered registers. */
1105 l32i a7, a2, PT_AREG7
1106 l32i a11, a2, PT_AREG11
1107 l32i a15, a2, PT_AREG15
1112 ENDPROC(fast_syscall_spill_registers)
1116 * We get here if the spill routine causes an exception, e.g. tlb miss.
1117 * We basically restore WINDOWBASE and WINDOWSTART to the condition when
1118 * we entered the spill routine and jump to the user exception handler.
1120 * a0: value of depc, original value in depc
1121 * a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
1122 * a3: exctable, original value in excsave1
1125 fast_syscall_spill_registers_fixup:
1127 rsr a2, windowbase # get current windowbase (a2 is saved)
1128 xsr a0, depc # restore depc and a0
1129 ssl a2 # set shift (32 - WB)
1131 /* We need to make sure the current registers (a0-a3) are preserved.
1132 * To do this, we simply set the bit for the current window frame
1133 * in WS, so that the exception handlers save them to the task stack.
1136 xsr a3, excsave1 # get spill-mask
1137 slli a2, a3, 1 # shift left by one
1139 slli a3, a2, 32-WSBITS
1140 src a2, a2, a3 # a1 = xxwww1yyxxxwww1yy......
1141 wsr a2, windowstart # set corrected windowstart
1144 l32i a2, a3, EXC_TABLE_DOUBLE_SAVE # restore a2
1145 l32i a3, a3, EXC_TABLE_PARAM # original WB (in user task)
1147 /* Return to the original (user task) WINDOWBASE.
1148 * We leave the following frame behind:
1150 * a3: trashed (saved in excsave_1)
1151 * depc: depc (we have to return to that address)
1158 /* We are now in the original frame when we entered _spill_registers:
1159 * a0: return address
1160 * a1: used, stack pointer
1161 * a2: kernel stack pointer
1162 * a3: available, saved in EXCSAVE_1
1163 * depc: exception address
1165 * Note: This frame might be the same as above.
1168 /* Setup stack pointer. */
1170 addi a2, a2, -PT_USER_SIZE
1171 s32i a0, a2, PT_AREG0
1173 /* Make sure we return to this fixup handler. */
1175 movi a3, fast_syscall_spill_registers_fixup_return
1176 s32i a3, a2, PT_DEPC # setup depc
1178 /* Jump to the exception handler. */
1182 addx4 a0, a0, a3 # find entry in table
1183 l32i a0, a0, EXC_TABLE_FAST_USER # load handler
1186 fast_syscall_spill_registers_fixup_return:
1188 /* When we return here, all registers have been restored (a2: DEPC) */
1190 wsr a2, depc # exception address
1192 /* Restore fixup handler. */
1195 movi a2, fast_syscall_spill_registers_fixup
1196 s32i a2, a3, EXC_TABLE_FIXUP
1197 s32i a0, a3, EXC_TABLE_DOUBLE_SAVE
1199 s32i a2, a3, EXC_TABLE_PARAM
1200 l32i a2, a3, EXC_TABLE_KSTK
1202 /* Load WB at the time the exception occurred. */
1204 rsr a3, sar # WB is still in SAR
1213 * spill all registers.
1215 * This is not a real function. The following conditions must be met:
1217 * - must be called with call0.
1218 * - uses a3, a4 and SAR.
1219 * - the last 'valid' register of each frame are clobbered.
1220 * - the caller must have registered a fixup handler
1221 * (or be inside a critical section)
1222 * - PS_EXCM must be set (PS_WOE cleared?)
1225 ENTRY(_spill_registers)
1228 * Rotate ws so that the current windowbase is at bit 0.
1229 * Assume ws = xxxwww1yy (www1 current window frame).
1230 * Rotate ws right so that a4 = yyxxxwww1.
1234 rsr a3, windowstart # a3 = xxxwww1yy
1237 or a3, a3, a4 # a3 = xxxwww1yyxxxwww1yy
1238 srl a3, a3 # a3 = 00xxxwww1yyxxxwww1
1240 /* We are done if there are no more than the current register frame. */
1242 extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
1243 movi a4, (1 << (WSBITS-1))
1244 _beqz a3, .Lnospill # only one active frame? jump
1246 /* We want 1 at the top, so that we return to the current windowbase */
1248 or a3, a3, a4 # 1yyxxxwww
1250 /* Skip empty frames - get 'oldest' WINDOWSTART-bit. */
1252 wsr a3, windowstart # save shifted windowstart
1254 and a3, a4, a3 # first bit set from right: 000010000
1256 ffs_ws a4, a3 # a4: shifts to skip empty frames
1258 sub a4, a3, a4 # WSBITS-a4:number of 0-bits from right
1259 ssr a4 # save in SAR for later.
1267 srl a3, a3 # shift windowstart
1269 /* WB is now just one frame below the oldest frame in the register
1270 window. WS is shifted so the oldest frame is in bit 0, thus, WB
1271 and WS differ by one 4-register frame. */
1273 /* Save frames. Depending what call was used (call4, call8, call12),
1274 * we have to save 4,8. or 12 registers.
1280 /* Special case: we have a call12-frame starting at a4. */
1282 _bbci.l a3, 3, .Lc12 # bit 3 shouldn't be zero! (Jump to Lc12 first)
1284 s32e a4, a1, -16 # a1 is valid with an empty spill area
1294 .Lloop: _bbsi.l a3, 1, .Lc4
1295 _bbci.l a3, 2, .Lc12
1297 .Lc8: s32e a4, a13, -16
1307 srli a11, a3, 2 # shift windowbase by 2
1311 .Lexit: /* Done. Do the final rotation, set WS, and return. */
1321 .Lc4: s32e a4, a9, -16
1331 .Lc12: _bbci.l a3, 3, .Linvalid_mask # bit 2 shouldn't be zero!
1333 /* 12-register frame (call12) */
1339 .Lc12c: s32e a9, a8, -44
1348 /* The stack pointer for a4..a7 is out of reach, so we rotate the
1349 * window, grab the stackpointer, and rotate back.
1350 * Alternatively, we could also use the following approach, but that
1351 * makes the fixup routine much more complicated:
1374 /* We get here because of an unrecoverable error in the window
1375 * registers. If we are in user space, we kill the application,
1376 * however, this condition is unrecoverable in kernel space.
1380 _bbci.l a0, PS_UM_BIT, 1f
1382 /* User space: Setup a dummy frame and kill application.
1383 * Note: We assume EXC_TABLE_KSTK contains a valid stack pointer.
1396 l32i a1, a3, EXC_TABLE_KSTK
1398 movi a4, (1 << PS_WOE_BIT) | LOCKLEVEL
1406 1: /* Kernel space: PANIC! */
1409 movi a0, unrecoverable_exception
1410 callx0 a0 # should not return
1413 ENDPROC(_spill_registers)
1417 * We should never get here. Bail out!
1420 ENTRY(fast_second_level_miss_double_kernel)
1422 1: movi a0, unrecoverable_exception
1423 callx0 a0 # should not return
1426 ENDPROC(fast_second_level_miss_double_kernel)
1428 /* First-level entry handler for user, kernel, and double 2nd-level
1429 * TLB miss exceptions. Note that for now, user and kernel miss
1430 * exceptions share the same entry point and are handled identically.
1432 * An old, less-efficient C version of this function used to exist.
1433 * We include it below, interleaved as comments, for reference.
1437 * a0: trashed, original value saved on stack (PT_AREG0)
1439 * a2: new stack pointer, original in DEPC
1441 * depc: a2, original value saved on stack (PT_DEPC)
1442 * excsave_1: dispatch table
1444 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1445 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1448 ENTRY(fast_second_level_miss)
1450 /* Save a1 and a3. Note: we don't expect a double exception. */
1452 s32i a1, a2, PT_AREG1
1453 s32i a3, a2, PT_AREG3
1455 /* We need to map the page of PTEs for the user task. Find
1456 * the pointer to that page. Also, it's possible for tsk->mm
1457 * to be NULL while tsk->active_mm is nonzero if we faulted on
1458 * a vmalloc address. In that rare case, we must use
1459 * active_mm instead to avoid a fault in this handler. See
1461 * http://mail.nl.linux.org/linux-mm/2002-08/msg00258.html
1462 * (or search Internet on "mm vs. active_mm")
1465 * mm = tsk->active_mm;
1466 * pgd = pgd_offset (mm, regs->excvaddr);
1467 * pmd = pmd_offset (pgd, regs->excvaddr);
1472 l32i a0, a1, TASK_MM # tsk->mm
1475 8: rsr a3, excvaddr # fault address
1476 _PGD_OFFSET(a0, a3, a1)
1477 l32i a0, a0, 0 # read pmdval
1480 /* Read ptevaddr and convert to top of page-table page.
1482 * vpnval = read_ptevaddr_register() & PAGE_MASK;
1483 * vpnval += DTLB_WAY_PGTABLE;
1484 * pteval = mk_pte (virt_to_page(pmd_val(pmdval)), PAGE_KERNEL);
1485 * write_dtlb_entry (pteval, vpnval);
1487 * The messy computation for 'pteval' above really simplifies
1488 * into the following:
1490 * pteval = ((pmdval - PAGE_OFFSET) & PAGE_MASK) | PAGE_DIRECTORY
1493 movi a1, (-PAGE_OFFSET) & 0xffffffff
1494 add a0, a0, a1 # pmdval - PAGE_OFFSET
1495 extui a1, a0, 0, PAGE_SHIFT # ... & PAGE_MASK
1498 movi a1, _PAGE_DIRECTORY
1499 or a0, a0, a1 # ... | PAGE_DIRECTORY
1502 * We utilize all three wired-ways (7-9) to hold pmd translations.
1503 * Memory regions are mapped to the DTLBs according to bits 28 and 29.
1504 * This allows to map the three most common regions to three different
1506 * 0,1 -> way 7 program (0040.0000) and virtual (c000.0000)
1507 * 2 -> way 8 shared libaries (2000.0000)
1508 * 3 -> way 0 stack (3000.0000)
1511 extui a3, a3, 28, 2 # addr. bit 28 and 29 0,1,2,3
1513 addx2 a3, a3, a3 # -> 0,3,6,9
1514 srli a1, a1, PAGE_SHIFT
1515 extui a3, a3, 2, 2 # -> 0,0,1,2
1516 slli a1, a1, PAGE_SHIFT # ptevaddr & PAGE_MASK
1517 addi a3, a3, DTLB_WAY_PGD
1518 add a1, a1, a3 # ... + way_number
1523 /* Exit critical section. */
1527 s32i a0, a3, EXC_TABLE_FIXUP
1529 /* Restore the working registers, and return. */
1531 l32i a0, a2, PT_AREG0
1532 l32i a1, a2, PT_AREG1
1533 l32i a3, a2, PT_AREG3
1534 l32i a2, a2, PT_DEPC
1536 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1538 /* Restore excsave1 and return. */
1543 /* Return from double exception. */
1549 9: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1552 #if (DCACHE_WAY_SIZE > PAGE_SIZE)
1554 2: /* Special case for cache aliasing.
1555 * We (should) only get here if a clear_user_page, copy_user_page
1556 * or the aliased cache flush functions got preemptively interrupted
1557 * by another task. Re-establish temporary mapping to the
1558 * TLBTEMP_BASE areas.
1561 /* We shouldn't be in a double exception */
1563 l32i a0, a2, PT_DEPC
1564 bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 2f
1566 /* Make sure the exception originated in the special functions */
1568 movi a0, __tlbtemp_mapping_start
1571 movi a0, __tlbtemp_mapping_end
1574 /* Check if excvaddr was in one of the TLBTEMP_BASE areas. */
1576 movi a3, TLBTEMP_BASE_1
1580 addi a1, a0, -(2 << (DCACHE_ALIAS_ORDER + PAGE_SHIFT))
1583 /* Check if we have to restore an ITLB mapping. */
1585 movi a1, __tlbtemp_mapping_itlb
1594 /* Jump for ITLB entry */
1598 /* We can use up to two TLBTEMP areas, one for src and one for dst. */
1600 extui a3, a0, PAGE_SHIFT + DCACHE_ALIAS_ORDER, 1
1603 /* PPN is in a6 for the first TLBTEMP area and in a7 for the second. */
1609 /* ITLB entry. We only use dst in a6. */
1616 #endif // DCACHE_WAY_SIZE > PAGE_SIZE
1619 2: /* Invalid PGD, default exception handling */
1622 s32i a1, a2, PT_AREG2
1626 bbsi.l a2, PS_UM_BIT, 1f
1628 1: j _user_exception
1630 ENDPROC(fast_second_level_miss)
1633 * StoreProhibitedException
1635 * Update the pte and invalidate the itlb mapping for this pte.
1639 * a0: trashed, original value saved on stack (PT_AREG0)
1641 * a2: new stack pointer, original in DEPC
1643 * depc: a2, original value saved on stack (PT_DEPC)
1644 * excsave_1: dispatch table
1646 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
1647 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
1650 ENTRY(fast_store_prohibited)
1652 /* Save a1 and a3. */
1654 s32i a1, a2, PT_AREG1
1655 s32i a3, a2, PT_AREG3
1658 l32i a0, a1, TASK_MM # tsk->mm
1661 8: rsr a1, excvaddr # fault address
1662 _PGD_OFFSET(a0, a1, a3)
1667 * Note that we test _PAGE_WRITABLE_BIT only if PTE is present
1668 * and is not PAGE_NONE. See pgtable.h for possible PTE layouts.
1671 _PTE_OFFSET(a0, a1, a3)
1672 l32i a3, a0, 0 # read pteval
1673 movi a1, _PAGE_CA_INVALID
1675 bbci.l a3, _PAGE_WRITABLE_BIT, 2f
1677 movi a1, _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HW_WRITE
1682 /* We need to flush the cache if we have page coloring. */
1683 #if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
1689 /* Exit critical section. */
1693 s32i a0, a3, EXC_TABLE_FIXUP
1695 /* Restore the working registers, and return. */
1697 l32i a3, a2, PT_AREG3
1698 l32i a1, a2, PT_AREG1
1699 l32i a0, a2, PT_AREG0
1700 l32i a2, a2, PT_DEPC
1702 bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
1707 /* Double exception. Restore FIXUP handler and return. */
1713 9: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
1716 2: /* If there was a problem, handle fault in C */
1718 rsr a3, depc # still holds a2
1719 s32i a3, a2, PT_AREG2
1723 bbsi.l a2, PS_UM_BIT, 1f
1725 1: j _user_exception
1727 ENDPROC(fast_store_prohibited)
1729 #endif /* CONFIG_MMU */
1734 * void system_call (struct pt_regs* regs, int exccause)
1742 /* regs->syscall = regs->areg[2] */
1744 l32i a3, a2, PT_AREG2
1746 movi a4, do_syscall_trace_enter
1747 s32i a3, a2, PT_SYSCALL
1750 /* syscall = sys_call_table[syscall_nr] */
1752 movi a4, sys_call_table;
1753 movi a5, __NR_syscall_count
1759 movi a5, sys_ni_syscall;
1762 /* Load args: arg0 - arg5 are passed via regs. */
1764 l32i a6, a2, PT_AREG6
1765 l32i a7, a2, PT_AREG3
1766 l32i a8, a2, PT_AREG4
1767 l32i a9, a2, PT_AREG5
1768 l32i a10, a2, PT_AREG8
1769 l32i a11, a2, PT_AREG9
1771 /* Pass one additional argument to the syscall: pt_regs (on stack) */
1776 1: /* regs->areg[2] = return_value */
1778 s32i a6, a2, PT_AREG2
1779 movi a4, do_syscall_trace_leave
1784 ENDPROC(system_call)
1790 * struct task* _switch_to (struct task* prev, struct task* next)
1798 mov a12, a2 # preserve 'prev' (a2)
1799 mov a13, a3 # and 'next' (a3)
1801 l32i a4, a2, TASK_THREAD_INFO
1802 l32i a5, a3, TASK_THREAD_INFO
1804 save_xtregs_user a4 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
1806 s32i a0, a12, THREAD_RA # save return address
1807 s32i a1, a12, THREAD_SP # save stack pointer
1809 /* Disable ints while we manipulate the stack pointer. */
1811 movi a14, (1 << PS_EXCM_BIT) | LOCKLEVEL
1815 s32i a3, a3, EXC_TABLE_FIXUP /* enter critical section */
1817 /* Switch CPENABLE */
1819 #if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS)
1820 l32i a3, a5, THREAD_CPENABLE
1822 s32i a3, a4, THREAD_CPENABLE
1825 /* Flush register file. */
1827 call0 _spill_registers # destroys a3, a4, and SAR
1829 /* Set kernel stack (and leave critical section)
1830 * Note: It's save to set it here. The stack will not be overwritten
1831 * because the kernel stack will only be loaded again after
1832 * we return from kernel space.
1835 rsr a3, excsave1 # exc_table
1837 addi a7, a5, PT_REGS_OFFSET
1838 s32i a6, a3, EXC_TABLE_FIXUP
1839 s32i a7, a3, EXC_TABLE_KSTK
1841 /* restore context of the task 'next' */
1843 l32i a0, a13, THREAD_RA # restore return address
1844 l32i a1, a13, THREAD_SP # restore stack pointer
1846 load_xtregs_user a5 a6 a8 a9 a10 a11 THREAD_XTREGS_USER
1849 mov a2, a12 # return 'prev'
1856 ENTRY(ret_from_fork)
1858 /* void schedule_tail (struct task_struct *prev)
1859 * Note: prev is still in a6 (return value from fake call4 frame)
1861 movi a4, schedule_tail
1864 movi a4, do_syscall_trace_leave
1868 j common_exception_return
1870 ENDPROC(ret_from_fork)
1873 * Kernel thread creation helper
1874 * On entry, set up by copy_thread: a2 = thread_fn, a3 = thread_fn arg
1875 * left from _switch_to: a6 = prev
1877 ENTRY(ret_from_kernel_thread)
1882 j common_exception_return
1884 ENDPROC(ret_from_kernel_thread)