vfphw.S 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*
  2. * linux/arch/arm/vfp/vfphw.S
  3. *
  4. * Copyright (C) 2004 ARM Limited.
  5. * Written by Deep Blue Solutions Limited.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This code is called from the kernel's undefined instruction trap.
  12. * r9 holds the return address for successful handling.
  13. * lr holds the return address for unrecognised instructions.
  14. * r10 points at the start of the private FP workspace in the thread structure
  15. * sp points to a struct pt_regs (as defined in include/asm/proc/ptrace.h)
  16. */
  17. #include <asm/thread_info.h>
  18. #include <asm/vfpmacros.h>
  19. #include "../kernel/entry-header.S"
  20. .macro DBGSTR, str
  21. #ifdef DEBUG
  22. stmfd sp!, {r0-r3, ip, lr}
  23. add r0, pc, #4
  24. bl printk
  25. b 1f
  26. .asciz "<7>VFP: \str\n"
  27. .balign 4
  28. 1: ldmfd sp!, {r0-r3, ip, lr}
  29. #endif
  30. .endm
  31. .macro DBGSTR1, str, arg
  32. #ifdef DEBUG
  33. stmfd sp!, {r0-r3, ip, lr}
  34. mov r1, \arg
  35. add r0, pc, #4
  36. bl printk
  37. b 1f
  38. .asciz "<7>VFP: \str\n"
  39. .balign 4
  40. 1: ldmfd sp!, {r0-r3, ip, lr}
  41. #endif
  42. .endm
  43. .macro DBGSTR3, str, arg1, arg2, arg3
  44. #ifdef DEBUG
  45. stmfd sp!, {r0-r3, ip, lr}
  46. mov r3, \arg3
  47. mov r2, \arg2
  48. mov r1, \arg1
  49. add r0, pc, #4
  50. bl printk
  51. b 1f
  52. .asciz "<7>VFP: \str\n"
  53. .balign 4
  54. 1: ldmfd sp!, {r0-r3, ip, lr}
  55. #endif
  56. .endm
  57. @ VFP hardware support entry point.
  58. @
  59. @ r0 = faulted instruction
  60. @ r2 = faulted PC+4
  61. @ r9 = successful return
  62. @ r10 = vfp_state union
  63. @ r11 = CPU number
  64. @ lr = failure return
  65. ENTRY(vfp_support_entry)
  66. DBGSTR3 "instr %08x pc %08x state %p", r0, r2, r10
  67. VFPFMRX r1, FPEXC @ Is the VFP enabled?
  68. DBGSTR1 "fpexc %08x", r1
  69. tst r1, #FPEXC_EN
  70. bne look_for_VFP_exceptions @ VFP is already enabled
  71. DBGSTR1 "enable %x", r10
  72. ldr r3, vfp_current_hw_state_address
  73. orr r1, r1, #FPEXC_EN @ user FPEXC has the enable bit set
  74. ldr r4, [r3, r11, lsl #2] @ vfp_current_hw_state pointer
  75. bic r5, r1, #FPEXC_EX @ make sure exceptions are disabled
  76. cmp r4, r10 @ this thread owns the hw context?
  77. beq vfp_hw_state_valid
  78. VFPFMXR FPEXC, r5 @ enable VFP, disable any pending
  79. @ exceptions, so we can get at the
  80. @ rest of it
  81. #ifndef CONFIG_SMP
  82. @ Save out the current registers to the old thread state
  83. @ No need for SMP since this is not done lazily
  84. DBGSTR1 "save old state %p", r4
  85. cmp r4, #0
  86. beq no_old_VFP_process
  87. VFPFSTMIA r4, r5 @ save the working registers
  88. VFPFMRX r5, FPSCR @ current status
  89. #ifndef CONFIG_CPU_FEROCEON
  90. tst r1, #FPEXC_EX @ is there additional state to save?
  91. beq 1f
  92. VFPFMRX r6, FPINST @ FPINST (only if FPEXC.EX is set)
  93. tst r1, #FPEXC_FP2V @ is there an FPINST2 to read?
  94. beq 1f
  95. VFPFMRX r8, FPINST2 @ FPINST2 if needed (and present)
  96. 1:
  97. #endif
  98. stmia r4, {r1, r5, r6, r8} @ save FPEXC, FPSCR, FPINST, FPINST2
  99. @ and point r4 at the word at the
  100. @ start of the register dump
  101. #endif
  102. no_old_VFP_process:
  103. DBGSTR1 "load state %p", r10
  104. str r10, [r3, r11, lsl #2] @ update the vfp_current_hw_state pointer
  105. @ Load the saved state back into the VFP
  106. VFPFLDMIA r10, r5 @ reload the working registers while
  107. @ FPEXC is in a safe state
  108. ldmia r10, {r1, r5, r6, r8} @ load FPEXC, FPSCR, FPINST, FPINST2
  109. #ifndef CONFIG_CPU_FEROCEON
  110. tst r1, #FPEXC_EX @ is there additional state to restore?
  111. beq 1f
  112. VFPFMXR FPINST, r6 @ restore FPINST (only if FPEXC.EX is set)
  113. tst r1, #FPEXC_FP2V @ is there an FPINST2 to write?
  114. beq 1f
  115. VFPFMXR FPINST2, r8 @ FPINST2 if needed (and present)
  116. 1:
  117. #endif
  118. VFPFMXR FPSCR, r5 @ restore status
  119. @ The context stored in the VFP hardware is up to date with this thread
  120. vfp_hw_state_valid:
  121. tst r1, #FPEXC_EX
  122. bne process_exception @ might as well handle the pending
  123. @ exception before retrying branch
  124. @ out before setting an FPEXC that
  125. @ stops us reading stuff
  126. VFPFMXR FPEXC, r1 @ restore FPEXC last
  127. sub r2, r2, #4
  128. str r2, [sp, #S_PC] @ retry the instruction
  129. #ifdef CONFIG_PREEMPT
  130. get_thread_info r10
  131. ldr r4, [r10, #TI_PREEMPT] @ get preempt count
  132. sub r11, r4, #1 @ decrement it
  133. str r11, [r10, #TI_PREEMPT]
  134. #endif
  135. mov pc, r9 @ we think we have handled things
  136. look_for_VFP_exceptions:
  137. @ Check for synchronous or asynchronous exception
  138. tst r1, #FPEXC_EX | FPEXC_DEX
  139. bne process_exception
  140. @ On some implementations of the VFP subarch 1, setting FPSCR.IXE
  141. @ causes all the CDP instructions to be bounced synchronously without
  142. @ setting the FPEXC.EX bit
  143. VFPFMRX r5, FPSCR
  144. tst r5, #FPSCR_IXE
  145. bne process_exception
  146. @ Fall into hand on to next handler - appropriate coproc instr
  147. @ not recognised by VFP
  148. DBGSTR "not VFP"
  149. #ifdef CONFIG_PREEMPT
  150. get_thread_info r10
  151. ldr r4, [r10, #TI_PREEMPT] @ get preempt count
  152. sub r11, r4, #1 @ decrement it
  153. str r11, [r10, #TI_PREEMPT]
  154. #endif
  155. mov pc, lr
  156. process_exception:
  157. DBGSTR "bounce"
  158. mov r2, sp @ nothing stacked - regdump is at TOS
  159. mov lr, r9 @ setup for a return to the user code.
  160. @ Now call the C code to package up the bounce to the support code
  161. @ r0 holds the trigger instruction
  162. @ r1 holds the FPEXC value
  163. @ r2 pointer to register dump
  164. b VFP_bounce @ we have handled this - the support
  165. @ code will raise an exception if
  166. @ required. If not, the user code will
  167. @ retry the faulted instruction
  168. ENDPROC(vfp_support_entry)
  169. ENTRY(vfp_save_state)
  170. @ Save the current VFP state
  171. @ r0 - save location
  172. @ r1 - FPEXC
  173. DBGSTR1 "save VFP state %p", r0
  174. VFPFSTMIA r0, r2 @ save the working registers
  175. VFPFMRX r2, FPSCR @ current status
  176. tst r1, #FPEXC_EX @ is there additional state to save?
  177. beq 1f
  178. VFPFMRX r3, FPINST @ FPINST (only if FPEXC.EX is set)
  179. tst r1, #FPEXC_FP2V @ is there an FPINST2 to read?
  180. beq 1f
  181. VFPFMRX r12, FPINST2 @ FPINST2 if needed (and present)
  182. 1:
  183. stmia r0, {r1, r2, r3, r12} @ save FPEXC, FPSCR, FPINST, FPINST2
  184. mov pc, lr
  185. ENDPROC(vfp_save_state)
  186. .align
  187. vfp_current_hw_state_address:
  188. .word vfp_current_hw_state
  189. .macro tbl_branch, base, tmp, shift
  190. #ifdef CONFIG_THUMB2_KERNEL
  191. adr \tmp, 1f
  192. add \tmp, \tmp, \base, lsl \shift
  193. mov pc, \tmp
  194. #else
  195. add pc, pc, \base, lsl \shift
  196. mov r0, r0
  197. #endif
  198. 1:
  199. .endm
  200. ENTRY(vfp_get_float)
  201. tbl_branch r0, r3, #3
  202. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  203. 1: mrc p10, 0, r0, c\dr, c0, 0 @ fmrs r0, s0
  204. mov pc, lr
  205. .org 1b + 8
  206. 1: mrc p10, 0, r0, c\dr, c0, 4 @ fmrs r0, s1
  207. mov pc, lr
  208. .org 1b + 8
  209. .endr
  210. ENDPROC(vfp_get_float)
  211. ENTRY(vfp_put_float)
  212. tbl_branch r1, r3, #3
  213. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  214. 1: mcr p10, 0, r0, c\dr, c0, 0 @ fmsr r0, s0
  215. mov pc, lr
  216. .org 1b + 8
  217. 1: mcr p10, 0, r0, c\dr, c0, 4 @ fmsr r0, s1
  218. mov pc, lr
  219. .org 1b + 8
  220. .endr
  221. ENDPROC(vfp_put_float)
  222. ENTRY(vfp_get_double)
  223. tbl_branch r0, r3, #3
  224. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  225. 1: fmrrd r0, r1, d\dr
  226. mov pc, lr
  227. .org 1b + 8
  228. .endr
  229. #ifdef CONFIG_VFPv3
  230. @ d16 - d31 registers
  231. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  232. 1: mrrc p11, 3, r0, r1, c\dr @ fmrrd r0, r1, d\dr
  233. mov pc, lr
  234. .org 1b + 8
  235. .endr
  236. #endif
  237. @ virtual register 16 (or 32 if VFPv3) for compare with zero
  238. mov r0, #0
  239. mov r1, #0
  240. mov pc, lr
  241. ENDPROC(vfp_get_double)
  242. ENTRY(vfp_put_double)
  243. tbl_branch r2, r3, #3
  244. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  245. 1: fmdrr d\dr, r0, r1
  246. mov pc, lr
  247. .org 1b + 8
  248. .endr
  249. #ifdef CONFIG_VFPv3
  250. @ d16 - d31 registers
  251. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  252. 1: mcrr p11, 3, r0, r1, c\dr @ fmdrr r0, r1, d\dr
  253. mov pc, lr
  254. .org 1b + 8
  255. .endr
  256. #endif
  257. ENDPROC(vfp_put_double)