1 /* SPDX-License-Identifier: GPL-2.0 */
3 * etrap.S: Sparc trap window preparation for entry into the
6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
11 #include <asm/contregs.h>
14 #include <asm/ptrace.h>
15 #include <asm/winmacro.h>
16 #include <asm/asmmacro.h>
17 #include <asm/thread_info.h>
19 /* Registers to not touch at all. */
20 #define t_psr l0 /* Set by caller */
21 #define t_pc l1 /* Set by caller */
22 #define t_npc l2 /* Set by caller */
23 #define t_wim l3 /* Set by caller */
24 #define t_twinmask l4 /* Set at beginning of this entry routine. */
25 #define t_kstack l5 /* Set right before pt_regs frame is built */
26 #define t_retpc l6 /* If you change this, change winmacro.h header file */
27 #define t_systable l7 /* Never touch this, could be the syscall table ptr. */
28 #define curptr g6 /* Set after pt_regs frame is built */
33 /* SEVEN WINDOW PATCH INSTRUCTIONS */
34 .globl tsetup_7win_patch1, tsetup_7win_patch2
35 .globl tsetup_7win_patch3, tsetup_7win_patch4
36 .globl tsetup_7win_patch5, tsetup_7win_patch6
37 tsetup_7win_patch1: sll %t_wim, 0x6, %t_wim
38 tsetup_7win_patch2: and %g2, 0x7f, %g2
39 tsetup_7win_patch3: and %g2, 0x7f, %g2
40 tsetup_7win_patch4: and %g1, 0x7f, %g1
41 tsetup_7win_patch5: sll %t_wim, 0x6, %t_wim
42 tsetup_7win_patch6: and %g2, 0x7f, %g2
43 /* END OF PATCH INSTRUCTIONS */
45 /* At trap time, interrupts and all generic traps do the
53 * Then 'some_handler' if it needs a trap frame (ie. it has
54 * to call c-code and the trap cannot be handled in-window)
55 * then it does the SAVE_ALL macro in entry.S which does
57 * sethi %hi(trap_setup), %l4
58 * jmpl %l4 + %lo(trap_setup), %l6
62 /* 2 3 4 window number
66 * O == Current window before trap
67 * T == Window entered when trap occurred
68 * S == Window we will need to save if (1<<T) == %wim
70 * Before execution gets here, it must be guaranteed that
71 * %l0 contains trap time %psr, %l1 and %l2 contain the
72 * trap pc and npc, and %l3 contains the trap time %wim.
75 .globl trap_setup, tsetup_patch1, tsetup_patch2
76 .globl tsetup_patch3, tsetup_patch4
77 .globl tsetup_patch5, tsetup_patch6
79 /* Calculate mask of trap window. See if from user
80 * or kernel and branch conditionally.
83 andcc %t_psr, PSR_PS, %g0 ! fromsupv_p = (psr & PSR_PS)
84 be trap_setup_from_user ! nope, from user mode
85 sll %t_twinmask, %t_psr, %t_twinmask ! t_twinmask = (1 << psr)
87 /* From kernel, allocate more kernel stack and
88 * build a pt_regs trap frame.
90 sub %fp, (STACKFRAME_SZ + TRACEREG_SZ), %t_kstack
91 STORE_PT_ALL(t_kstack, t_psr, t_pc, t_npc, g2)
93 /* See if we are in the trap window. */
94 andcc %t_twinmask, %t_wim, %g0
95 bne trap_setup_kernel_spill ! in trap window, clean up
98 /* Trap from kernel with a window available.
101 jmpl %t_retpc + 0x8, %g0 ! return to caller
102 mov %t_kstack, %sp ! jump onto new stack
104 trap_setup_kernel_spill:
105 ld [%curptr + TI_UWINMASK], %g1
107 bne trap_setup_user_spill ! there are some user windows, yuck
108 /* Spill from kernel, but only kernel windows, adjust
111 srl %t_wim, 0x1, %g2 ! begin computation of new %wim
113 sll %t_wim, 0x7, %t_wim ! patched on 7 window Sparcs
116 and %g2, 0xff, %g2 ! patched on 7 window Sparcs
120 /* Set new %wim value */
123 /* Save the kernel window onto the corresponding stack. */
126 restore %g0, %g0, %g0
128 jmpl %t_retpc + 0x8, %g0 ! return to caller
129 mov %t_kstack, %sp ! and onto new kernel stack
131 #define STACK_OFFSET (THREAD_SIZE - TRACEREG_SZ - STACKFRAME_SZ)
133 trap_setup_from_user:
134 /* We can't use %curptr yet. */
135 LOAD_CURRENT(t_kstack, t_twinmask)
137 sethi %hi(STACK_OFFSET), %t_twinmask
138 or %t_twinmask, %lo(STACK_OFFSET), %t_twinmask
139 add %t_kstack, %t_twinmask, %t_kstack
142 sll %t_twinmask, %t_psr, %t_twinmask ! t_twinmask = (1 << psr)
144 /* Build pt_regs frame. */
145 STORE_PT_ALL(t_kstack, t_psr, t_pc, t_npc, g2)
148 /* If we're sure every task_struct is THREAD_SIZE aligned,
149 we can speed this up. */
150 sethi %hi(STACK_OFFSET), %curptr
151 or %curptr, %lo(STACK_OFFSET), %curptr
152 sub %t_kstack, %curptr, %curptr
154 sethi %hi(~(THREAD_SIZE - 1)), %curptr
155 and %t_kstack, %curptr, %curptr
158 /* Clear current_thread_info->w_saved */
159 st %g0, [%curptr + TI_W_SAVED]
161 /* See if we are in the trap window. */
162 andcc %t_twinmask, %t_wim, %g0
163 bne trap_setup_user_spill ! yep we are
164 orn %g0, %t_twinmask, %g1 ! negate trap win mask into %g1
166 /* Trap from user, but not into the invalid window.
167 * Calculate new umask. The way this works is,
168 * any window from the %wim at trap time until
169 * the window right before the one we are in now,
170 * is a user window. A diagram:
172 * 7 6 5 4 3 2 1 0 window number
176 * Window 'I' is the invalid window in our example,
177 * window 'L' is the window the user was in when
178 * the trap occurred, window T is the trap window
179 * we are in now. So therefore, windows 5, 4 and
180 * 3 are user windows. The following sequence
181 * computes the user winmask to represent this.
183 subcc %t_wim, %t_twinmask, %g2
187 andn %g2, %t_twinmask, %g2
189 and %g2, 0xff, %g2 ! patched on 7win Sparcs
190 st %g2, [%curptr + TI_UWINMASK] ! store new umask
192 jmpl %t_retpc + 0x8, %g0 ! return to caller
193 mov %t_kstack, %sp ! and onto kernel stack
195 trap_setup_user_spill:
196 /* A spill occurred from either kernel or user mode
197 * and there exist some user windows to deal with.
198 * A mask of the currently valid user windows
199 * is in %g1 upon entry to here.
203 and %g1, 0xff, %g1 ! patched on 7win Sparcs, mask
204 srl %t_wim, 0x1, %g2 ! compute new %wim
206 sll %t_wim, 0x7, %t_wim ! patched on 7win Sparcs
207 or %t_wim, %g2, %g2 ! %g2 is new %wim
209 and %g2, 0xff, %g2 ! patched on 7win Sparcs
210 andn %g1, %g2, %g1 ! clear this bit in %g1
211 st %g1, [%curptr + TI_UWINMASK]
217 /* Call MMU-architecture dependent stack checking
220 b tsetup_srmmu_stackchk
223 /* Architecture specific stack checking routines. When either
224 * of these routines are called, the globals are free to use
225 * as they have been safely stashed on the new kernel stack
226 * pointer. Thus the definition below for simplicity.
230 .globl tsetup_srmmu_stackchk
231 tsetup_srmmu_stackchk:
232 /* Check results of callers andcc %sp, 0x7, %g0 */
233 bne trap_setup_user_stack_is_bolixed
234 sethi %hi(PAGE_OFFSET), %glob_tmp
238 LEON_PI( lda [%g0] ASI_LEON_MMUREGS, %glob_tmp) ! read MMU control
239 SUN_PI_( lda [%g0] ASI_M_MMUREGS, %glob_tmp) ! read MMU control
241 trap_setup_user_stack_is_bolixed:
242 /* From user/kernel into invalid window w/bad user
243 * stack. Save bad user stack, and return to caller.
245 SAVE_BOLIXED_USER_STACK(curptr, g3)
246 restore %g0, %g0, %g0
248 jmpl %t_retpc + 0x8, %g0
252 /* Clear the fault status and turn on the no_fault bit. */
253 or %glob_tmp, 0x2, %glob_tmp ! or in no_fault bit
254 LEON_PI(sta %glob_tmp, [%g0] ASI_LEON_MMUREGS) ! set it
255 SUN_PI_(sta %glob_tmp, [%g0] ASI_M_MMUREGS) ! set it
257 /* Dump the registers and cross fingers. */
260 /* Clear the no_fault bit and check the status. */
261 andn %glob_tmp, 0x2, %glob_tmp
262 LEON_PI(sta %glob_tmp, [%g0] ASI_LEON_MMUREGS)
263 SUN_PI_(sta %glob_tmp, [%g0] ASI_M_MMUREGS)
265 mov AC_M_SFAR, %glob_tmp
266 LEON_PI(lda [%glob_tmp] ASI_LEON_MMUREGS, %g0)
267 SUN_PI_(lda [%glob_tmp] ASI_M_MMUREGS, %g0)
269 mov AC_M_SFSR, %glob_tmp
270 LEON_PI(lda [%glob_tmp] ASI_LEON_MMUREGS, %glob_tmp)! save away status of winstore
271 SUN_PI_(lda [%glob_tmp] ASI_M_MMUREGS, %glob_tmp) ! save away status of winstore
273 andcc %glob_tmp, 0x2, %g0 ! did we fault?
274 bne trap_setup_user_stack_is_bolixed ! failure
277 restore %g0, %g0, %g0
279 jmpl %t_retpc + 0x8, %g0