rtrap.S 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. /* $Id: rtrap.S,v 1.58 2002/01/31 03:30:05 davem Exp $
  2. * rtrap.S: Return from Sparc trap low-level code.
  3. *
  4. * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5. */
  6. #include <asm/page.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/psr.h>
  9. #include <asm/asi.h>
  10. #include <asm/smp.h>
  11. #include <asm/contregs.h>
  12. #include <asm/winmacro.h>
  13. #include <asm/asmmacro.h>
  14. #include <asm/thread_info.h>
  15. #define t_psr l0
  16. #define t_pc l1
  17. #define t_npc l2
  18. #define t_wim l3
  19. #define twin_tmp1 l4
  20. #define glob_tmp g4
  21. #define curptr g6
  22. /* 7 WINDOW SPARC PATCH INSTRUCTIONS */
  23. .globl rtrap_7win_patch1, rtrap_7win_patch2, rtrap_7win_patch3
  24. .globl rtrap_7win_patch4, rtrap_7win_patch5
  25. rtrap_7win_patch1: srl %t_wim, 0x6, %glob_tmp
  26. rtrap_7win_patch2: and %glob_tmp, 0x7f, %glob_tmp
  27. rtrap_7win_patch3: srl %g1, 7, %g2
  28. rtrap_7win_patch4: srl %g2, 6, %g2
  29. rtrap_7win_patch5: and %g1, 0x7f, %g1
  30. /* END OF PATCH INSTRUCTIONS */
  31. /* We need to check for a few things which are:
  32. * 1) The need to call schedule() because this
  33. * processes quantum is up.
  34. * 2) Pending signals for this process, if any
  35. * exist we need to call do_signal() to do
  36. * the needy.
  37. *
  38. * Else we just check if the rett would land us
  39. * in an invalid window, if so we need to grab
  40. * it off the user/kernel stack first.
  41. */
  42. .globl ret_trap_entry, rtrap_patch1, rtrap_patch2
  43. .globl rtrap_patch3, rtrap_patch4, rtrap_patch5
  44. .globl ret_trap_lockless_ipi
  45. ret_trap_entry:
  46. ret_trap_lockless_ipi:
  47. andcc %t_psr, PSR_PS, %g0
  48. be 1f
  49. nop
  50. wr %t_psr, 0x0, %psr
  51. b ret_trap_kernel
  52. nop
  53. 1:
  54. ld [%curptr + TI_FLAGS], %g2
  55. andcc %g2, (_TIF_NEED_RESCHED), %g0
  56. be signal_p
  57. nop
  58. call schedule
  59. nop
  60. ld [%curptr + TI_FLAGS], %g2
  61. signal_p:
  62. andcc %g2, (_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK), %g0
  63. bz,a ret_trap_continue
  64. ld [%sp + STACKFRAME_SZ + PT_PSR], %t_psr
  65. mov %l5, %o1
  66. mov %l6, %o2
  67. call do_signal
  68. add %sp, STACKFRAME_SZ, %o0 ! pt_regs ptr
  69. /* Fall through. */
  70. ld [%sp + STACKFRAME_SZ + PT_PSR], %t_psr
  71. clr %l6
  72. ret_trap_continue:
  73. wr %t_psr, 0x0, %psr
  74. WRITE_PAUSE
  75. ld [%curptr + TI_W_SAVED], %twin_tmp1
  76. orcc %g0, %twin_tmp1, %g0
  77. be ret_trap_nobufwins
  78. nop
  79. wr %t_psr, PSR_ET, %psr
  80. WRITE_PAUSE
  81. mov 1, %o1
  82. call try_to_clear_window_buffer
  83. add %sp, STACKFRAME_SZ, %o0
  84. b signal_p
  85. ld [%curptr + TI_FLAGS], %g2
  86. ret_trap_nobufwins:
  87. /* Load up the user's out registers so we can pull
  88. * a window from the stack, if necessary.
  89. */
  90. LOAD_PT_INS(sp)
  91. /* If there are already live user windows in the
  92. * set we can return from trap safely.
  93. */
  94. ld [%curptr + TI_UWINMASK], %twin_tmp1
  95. orcc %g0, %twin_tmp1, %g0
  96. bne ret_trap_userwins_ok
  97. nop
  98. /* Calculate new %wim, we have to pull a register
  99. * window from the users stack.
  100. */
  101. ret_trap_pull_one_window:
  102. rd %wim, %t_wim
  103. sll %t_wim, 0x1, %twin_tmp1
  104. rtrap_patch1: srl %t_wim, 0x7, %glob_tmp
  105. or %glob_tmp, %twin_tmp1, %glob_tmp
  106. rtrap_patch2: and %glob_tmp, 0xff, %glob_tmp
  107. wr %glob_tmp, 0x0, %wim
  108. /* Here comes the architecture specific
  109. * branch to the user stack checking routine
  110. * for return from traps.
  111. */
  112. .globl rtrap_mmu_patchme
  113. rtrap_mmu_patchme: b sun4c_rett_stackchk
  114. andcc %fp, 0x7, %g0
  115. ret_trap_userwins_ok:
  116. LOAD_PT_PRIV(sp, t_psr, t_pc, t_npc)
  117. or %t_pc, %t_npc, %g2
  118. andcc %g2, 0x3, %g0
  119. be 1f
  120. nop
  121. b ret_trap_unaligned_pc
  122. add %sp, STACKFRAME_SZ, %o0
  123. 1:
  124. LOAD_PT_YREG(sp, g1)
  125. LOAD_PT_GLOBALS(sp)
  126. wr %t_psr, 0x0, %psr
  127. WRITE_PAUSE
  128. jmp %t_pc
  129. rett %t_npc
  130. ret_trap_unaligned_pc:
  131. ld [%sp + STACKFRAME_SZ + PT_PC], %o1
  132. ld [%sp + STACKFRAME_SZ + PT_NPC], %o2
  133. ld [%sp + STACKFRAME_SZ + PT_PSR], %o3
  134. wr %t_wim, 0x0, %wim ! or else...
  135. wr %t_psr, PSR_ET, %psr
  136. WRITE_PAUSE
  137. call do_memaccess_unaligned
  138. nop
  139. b signal_p
  140. ld [%curptr + TI_FLAGS], %g2
  141. ret_trap_kernel:
  142. /* Will the rett land us in the invalid window? */
  143. mov 2, %g1
  144. sll %g1, %t_psr, %g1
  145. rtrap_patch3: srl %g1, 8, %g2
  146. or %g1, %g2, %g1
  147. rd %wim, %g2
  148. andcc %g2, %g1, %g0
  149. be 1f ! Nope, just return from the trap
  150. sll %g2, 0x1, %g1
  151. /* We have to grab a window before returning. */
  152. rtrap_patch4: srl %g2, 7, %g2
  153. or %g1, %g2, %g1
  154. rtrap_patch5: and %g1, 0xff, %g1
  155. wr %g1, 0x0, %wim
  156. /* Grrr, make sure we load from the right %sp... */
  157. LOAD_PT_ALL(sp, t_psr, t_pc, t_npc, g1)
  158. restore %g0, %g0, %g0
  159. LOAD_WINDOW(sp)
  160. b 2f
  161. save %g0, %g0, %g0
  162. /* Reload the entire frame in case this is from a
  163. * kernel system call or whatever...
  164. */
  165. 1:
  166. LOAD_PT_ALL(sp, t_psr, t_pc, t_npc, g1)
  167. 2:
  168. wr %t_psr, 0x0, %psr
  169. WRITE_PAUSE
  170. jmp %t_pc
  171. rett %t_npc
  172. ret_trap_user_stack_is_bolixed:
  173. wr %t_wim, 0x0, %wim
  174. wr %t_psr, PSR_ET, %psr
  175. WRITE_PAUSE
  176. call window_ret_fault
  177. add %sp, STACKFRAME_SZ, %o0
  178. b signal_p
  179. ld [%curptr + TI_FLAGS], %g2
  180. .globl sun4c_rett_stackchk
  181. sun4c_rett_stackchk:
  182. be 1f
  183. and %fp, 0xfff, %g1 ! delay slot
  184. b ret_trap_user_stack_is_bolixed + 0x4
  185. wr %t_wim, 0x0, %wim
  186. /* See if we have to check the sanity of one page or two */
  187. 1:
  188. add %g1, 0x38, %g1
  189. sra %fp, 29, %g2
  190. add %g2, 0x1, %g2
  191. andncc %g2, 0x1, %g0
  192. be 1f
  193. andncc %g1, 0xff8, %g0
  194. /* %sp is in vma hole, yuck */
  195. b ret_trap_user_stack_is_bolixed + 0x4
  196. wr %t_wim, 0x0, %wim
  197. 1:
  198. be sun4c_rett_onepage /* Only one page to check */
  199. lda [%fp] ASI_PTE, %g2
  200. sun4c_rett_twopages:
  201. add %fp, 0x38, %g1
  202. sra %g1, 29, %g2
  203. add %g2, 0x1, %g2
  204. andncc %g2, 0x1, %g0
  205. be 1f
  206. lda [%g1] ASI_PTE, %g2
  207. /* Second page is in vma hole */
  208. b ret_trap_user_stack_is_bolixed + 0x4
  209. wr %t_wim, 0x0, %wim
  210. 1:
  211. srl %g2, 29, %g2
  212. andcc %g2, 0x4, %g0
  213. bne sun4c_rett_onepage
  214. lda [%fp] ASI_PTE, %g2
  215. /* Second page has bad perms */
  216. b ret_trap_user_stack_is_bolixed + 0x4
  217. wr %t_wim, 0x0, %wim
  218. sun4c_rett_onepage:
  219. srl %g2, 29, %g2
  220. andcc %g2, 0x4, %g0
  221. bne,a 1f
  222. restore %g0, %g0, %g0
  223. /* A page had bad page permissions, losing... */
  224. b ret_trap_user_stack_is_bolixed + 0x4
  225. wr %t_wim, 0x0, %wim
  226. /* Whee, things are ok, load the window and continue. */
  227. 1:
  228. LOAD_WINDOW(sp)
  229. b ret_trap_userwins_ok
  230. save %g0, %g0, %g0
  231. .globl srmmu_rett_stackchk
  232. srmmu_rett_stackchk:
  233. bne ret_trap_user_stack_is_bolixed
  234. sethi %hi(PAGE_OFFSET), %g1
  235. cmp %g1, %fp
  236. bleu ret_trap_user_stack_is_bolixed
  237. mov AC_M_SFSR, %g1
  238. lda [%g1] ASI_M_MMUREGS, %g0
  239. lda [%g0] ASI_M_MMUREGS, %g1
  240. or %g1, 0x2, %g1
  241. sta %g1, [%g0] ASI_M_MMUREGS
  242. restore %g0, %g0, %g0
  243. LOAD_WINDOW(sp)
  244. save %g0, %g0, %g0
  245. andn %g1, 0x2, %g1
  246. sta %g1, [%g0] ASI_M_MMUREGS
  247. mov AC_M_SFAR, %g2
  248. lda [%g2] ASI_M_MMUREGS, %g2
  249. mov AC_M_SFSR, %g1
  250. lda [%g1] ASI_M_MMUREGS, %g1
  251. andcc %g1, 0x2, %g0
  252. be ret_trap_userwins_ok
  253. nop
  254. b,a ret_trap_user_stack_is_bolixed