risc_excpt_entry.S 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Copyright (C) 2014-2018 MIPS Tech, LLC
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * 1. Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright notice,
  10. * this list of conditions and the following disclaimer in the documentation
  11. * and/or other materials provided with the distribution.
  12. * 3. Neither the name of the copyright holder nor the names of its
  13. * contributors may be used to endorse or promote products derived from this
  14. * software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  17. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  20. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  23. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  24. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  25. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  26. * POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #define _FUNCTION_SECTIONS_
  29. #include <mips/regdef.h>
  30. #include <mips/cpu.h>
  31. #include <mips/asm.h>
  32. #include <mips/hal.h>
  33. #include <mips/ctx.S>
  34. MIPS_NOMIPS16
  35. /* Stack adjustment for ABI parameter area. */
  36. #define ADJ (NARGSAVE * SZARG)
  37. /*
  38. * Round the context size up to a 16-byte boundary which is the maximum
  39. * stack alignment required for any supported ABI.
  40. */
  41. #define CTX_SIZEROUND ((CTX_SIZE + ALSZ) & ALMASK)
  42. /*
  43. * Exception entry points. These are designed for use at EBASE when
  44. * STATUS.BEV is clear.
  45. * The entry points will either chain on to a user-supplied function
  46. * or loop indefinitely.
  47. */
  48. LEAF(__exception_entry)
  49. .set push
  50. .set noat
  51. .weak _mips_tlb_refill
  52. _mips_tlb_refill = __exception_save
  53. __tlb_refill_loop:
  54. /*
  55. * Support an alternative entry point at the start of the exception
  56. * vector. Since the exception vector is normally placed first
  57. * in the link map this allows a user to start execution from the
  58. * same address that an executable is loaded to.
  59. */
  60. LA k1, __first_boot
  61. lw k1, 0(k1)
  62. beqz k1, 1f
  63. /*
  64. * The start code is responsible for clearing __first_boot prior
  65. * to installing the exception handlers.
  66. */
  67. LA k1, _start
  68. jr k1
  69. 1:
  70. /* Support the case where no handler is defined. */
  71. LA k1, _mips_tlb_refill
  72. beqz k1, __tlb_refill_loop
  73. jr k1
  74. .org 0x80
  75. .weak _mips_xtlb_refill
  76. _mips_xtlb_refill = __exception_save
  77. __xtlb_refill_loop:
  78. LA k1, _mips_xtlb_refill
  79. beqz k1, __xtlb_refill_loop
  80. jr k1
  81. .org 0x100
  82. .weak _mips_cache_error
  83. __cache_error_loop:
  84. LA k1, _mips_cache_error
  85. beqz k1, __cache_error_loop
  86. jr k1
  87. .org 0x180
  88. .weak _mips_general_exception
  89. __general_exception_loop:
  90. /*
  91. * Free up k1, defering sp adjustment until later. Preserving k1
  92. * may be undesirable if an exception occurs due to a corrupt
  93. * stack but since the default handlers use the user-stack to
  94. * store the context then there is nothing to lose.
  95. */
  96. REG_S k1, (-CTX_SIZEROUND + CTX_K1)(sp)
  97. LA k1, _mips_general_exception
  98. beqz k1, __general_exception_loop
  99. jr k1
  100. .set pop
  101. END(__exception_entry)
  102. /*
  103. * FUNCTION: __exception_save
  104. *
  105. * DESCRIPTION: Saves the GP context to the stack and invokes
  106. * _mips_handle_exception with appropriate arguments.
  107. */
  108. ANESTED(__exception_save, _mips_general_exception, CTX_SIZEROUND + ADJ, zero)
  109. .globl __exception_save;
  110. .set push
  111. .set noat
  112. /* Create pointer to gp_ctx. */
  113. PTR_ADDU k1, sp, -CTX_SIZEROUND
  114. /* Save context. */
  115. _gpctx_save
  116. /* va0 now holds C0_STATUS. */
  117. /* Finish storing the rest of the CP0 registers. */
  118. PTR_MFC0 t0, C0_BADVADDR
  119. REG_S t0, CTX_BADVADDR(k1)
  120. #if __mips_isa_rev < 6
  121. move t0, zero
  122. move t1, zero
  123. mfc0 t2, C0_CONFIG3
  124. ext t3, t2, CFG3_BP_SHIFT, 1
  125. beqz t3, 1f
  126. #else
  127. /* MIPSR6 guarantees all CP0 regs are defined to at
  128. least return zero. */
  129. #endif
  130. mfc0 t0, C0_BADPINSTR
  131. #if __mips_isa_rev < 6
  132. 1:
  133. ext t2, t2, CFG3_BI_SHIFT, 1
  134. beqz t2, 1f
  135. #endif
  136. mfc0 t1, C0_BADINSTR
  137. 1:
  138. sw t0, CTX_BADPINSTR(k1)
  139. sw t1, CTX_BADINSTR(k1)
  140. /* Get and store the exception cause. */
  141. mfc0 t0, C0_CR
  142. sw t0, CTX_CAUSE(k1)
  143. /* Extract the cause code for argument 1. */
  144. ext a1, t0, CR_X_SHIFT, CR_X_BITS
  145. /* Create the argument space. */
  146. addiu sp, k1, -ADJ
  147. /* Clear EXL. Exceptions can now nest. */
  148. ins va0, zero, SR_EXL_SHIFT, 1
  149. mtc0 va0, C0_SR
  150. /* Move the gp_ctx pointer for argument 0. */
  151. addiu a0, sp, ADJ
  152. /* Manually set up the return address to restore the context below. */
  153. LA ra, __exception_restore
  154. /* Call the handler, indirect through t9 albeit not for any specific
  155. reason. */
  156. LA t9, _mips_handle_exception
  157. jr t9
  158. .set pop
  159. END(__exception_save)
  160. /*
  161. * FUNCTION: __exception_restore
  162. *
  163. * DESCRIPTION: Load the GP context from immediately above the stack
  164. * pointer and eret.
  165. */
  166. LEAF(__exception_restore)
  167. .set push
  168. .set noat
  169. /* Skip past the argument save area and fall through. */
  170. addiu a0, sp, ADJ
  171. /*
  172. * FUNCTION: __gpctx_load_eret
  173. *
  174. * DESCRIPTION: Load the GP context from the address in register a0
  175. * and eret.
  176. */
  177. AENT(__gpctx_load_eret)
  178. _gpctx_load
  179. /* Return from exception. */
  180. eret
  181. .set pop
  182. END(__exception_restore)