risc_fp.S 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * Copyright (C) 2015-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. .module hardfloat
  29. .module doublefloat
  30. #include <mips/regdef.h>
  31. #include <mips/cpu.h>
  32. #include <mips/asm.h>
  33. #include <mips/hal.h>
  34. MIPS_NOMIPS16
  35. #undef fp
  36. /*
  37. * FUNCTION: _fpctx_save
  38. * DESCRIPTION: save floating point registers to memory starting at a0
  39. * RETURNS: int
  40. * 0: No context saved
  41. * CTX_*: Type of context stored
  42. */
  43. LEAF(_fpctx_save)
  44. move a1, a0
  45. PTR_S zero, LINKCTX_NEXT(a1)
  46. mfc0 t0, C0_STATUS
  47. li t1, SR_CU1
  48. and t1, t0, t1
  49. bnez t1, 1f
  50. /* FP not enabled, bail out */
  51. move va0, zero
  52. jr ra
  53. 1: /* Save FP32 base */
  54. li t1, SR_FR
  55. and t0, t0, t1
  56. cfc1 t2, $31
  57. REG_S t2, FP32CTX_CSR(a1)
  58. sdc1 $f0, FP32CTX_0(a1)
  59. sdc1 $f2, FP32CTX_2(a1)
  60. sdc1 $f4, FP32CTX_4(a1)
  61. sdc1 $f6, FP32CTX_6(a1)
  62. sdc1 $f8, FP32CTX_8(a1)
  63. sdc1 $f10, FP32CTX_10(a1)
  64. sdc1 $f12, FP32CTX_12(a1)
  65. sdc1 $f14, FP32CTX_14(a1)
  66. sdc1 $f16, FP32CTX_16(a1)
  67. sdc1 $f18, FP32CTX_18(a1)
  68. sdc1 $f20, FP32CTX_20(a1)
  69. sdc1 $f22, FP32CTX_22(a1)
  70. sdc1 $f24, FP32CTX_24(a1)
  71. sdc1 $f26, FP32CTX_26(a1)
  72. sdc1 $f28, FP32CTX_28(a1)
  73. sdc1 $f30, FP32CTX_30(a1)
  74. bnez t0, 2f
  75. li va0, LINKCTX_TYPE_FP32
  76. REG_S va0, LINKCTX_ID(a1)
  77. jr ra
  78. 2: /* Save FP64 extra */
  79. .set push
  80. .set fp=64
  81. sdc1 $f1, FP64CTX_1(a1)
  82. sdc1 $f3, FP64CTX_3(a1)
  83. sdc1 $f5, FP64CTX_5(a1)
  84. sdc1 $f7, FP64CTX_7(a1)
  85. sdc1 $f9, FP64CTX_9(a1)
  86. sdc1 $f11, FP64CTX_11(a1)
  87. sdc1 $f13, FP64CTX_13(a1)
  88. sdc1 $f15, FP64CTX_15(a1)
  89. sdc1 $f17, FP64CTX_17(a1)
  90. sdc1 $f19, FP64CTX_19(a1)
  91. sdc1 $f21, FP64CTX_21(a1)
  92. sdc1 $f23, FP64CTX_23(a1)
  93. sdc1 $f25, FP64CTX_25(a1)
  94. sdc1 $f27, FP64CTX_27(a1)
  95. sdc1 $f29, FP64CTX_29(a1)
  96. sdc1 $f31, FP64CTX_31(a1)
  97. .set pop
  98. li va0, LINKCTX_TYPE_FP64
  99. REG_S va0, LINKCTX_ID(a0)
  100. jr ra
  101. END(_fpctx_save)
  102. /*
  103. * FUNCTION: _fpctx_load
  104. * DESCRIPTION: load floating point registers from context chain starting at a0
  105. * RETURNS: int
  106. * 0: Unrecognised context
  107. * CTX_*: Type of context restored
  108. */
  109. LEAF(_fpctx_load)
  110. move a1, a0
  111. REG_L va0, LINKCTX_ID(a1)
  112. /* Detect type */
  113. li t0, LINKCTX_TYPE_FP64
  114. li t1, LINKCTX_TYPE_FP32
  115. li t2, SR_CU1
  116. beq va0, t0, 0f
  117. beq va0, t1, 1f
  118. /* Don't recognise this context, fail */
  119. move va0, zero
  120. jr ra
  121. 0: /* FP64 context - Enable CU1 */
  122. di t3
  123. ehb
  124. or t3, t3, t2
  125. mtc0 t3, C0_STATUS
  126. ehb
  127. /* Load FP64 extra */
  128. .set push
  129. .set fp=64
  130. ldc1 $f1, FP64CTX_1(a1)
  131. ldc1 $f3, FP64CTX_3(a1)
  132. ldc1 $f5, FP64CTX_5(a1)
  133. ldc1 $f7, FP64CTX_7(a1)
  134. ldc1 $f9, FP64CTX_9(a1)
  135. ldc1 $f11, FP64CTX_11(a1)
  136. ldc1 $f13, FP64CTX_13(a1)
  137. ldc1 $f15, FP64CTX_15(a1)
  138. ldc1 $f17, FP64CTX_17(a1)
  139. ldc1 $f19, FP64CTX_19(a1)
  140. ldc1 $f21, FP64CTX_21(a1)
  141. ldc1 $f23, FP64CTX_23(a1)
  142. ldc1 $f25, FP64CTX_25(a1)
  143. ldc1 $f27, FP64CTX_27(a1)
  144. ldc1 $f29, FP64CTX_29(a1)
  145. ldc1 $f31, FP64CTX_31(a1)
  146. .set pop
  147. 1: /* FP32 context - Enable CU1 */
  148. di t3
  149. ehb
  150. or t3, t3, t2
  151. mtc0 t3, C0_STATUS
  152. ehb
  153. /* Load FP32 base */
  154. REG_L t1, FP32CTX_CSR(a1)
  155. ctc1 t1, $31
  156. ldc1 $f0, FP32CTX_0(a1)
  157. ldc1 $f2, FP32CTX_2(a1)
  158. ldc1 $f4, FP32CTX_4(a1)
  159. ldc1 $f6, FP32CTX_6(a1)
  160. ldc1 $f8, FP32CTX_8(a1)
  161. ldc1 $f10, FP32CTX_10(a1)
  162. ldc1 $f12, FP32CTX_12(a1)
  163. ldc1 $f14, FP32CTX_14(a1)
  164. ldc1 $f16, FP32CTX_16(a1)
  165. ldc1 $f18, FP32CTX_18(a1)
  166. ldc1 $f20, FP32CTX_20(a1)
  167. ldc1 $f22, FP32CTX_22(a1)
  168. ldc1 $f24, FP32CTX_24(a1)
  169. ldc1 $f26, FP32CTX_26(a1)
  170. ldc1 $f28, FP32CTX_28(a1)
  171. ldc1 $f30, FP32CTX_30(a1)
  172. /* Return CTX_FP32/64 */
  173. jr ra
  174. END(_fpctx_load)