vfphw.S 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. #ifndef CONFIG_SMP
  78. @ For UP, checking that this thread owns the hw context is
  79. @ sufficient to determine that the hardware state is valid.
  80. beq vfp_hw_state_valid
  81. @ On UP, we lazily save the VFP context. As a different
  82. @ thread wants ownership of the VFP hardware, save the old
  83. @ state if there was a previous (valid) owner.
  84. VFPFMXR FPEXC, r5 @ enable VFP, disable any pending
  85. @ exceptions, so we can get at the
  86. @ rest of it
  87. DBGSTR1 "save old state %p", r4
  88. cmp r4, #0 @ if the vfp_current_hw_state is NULL
  89. beq vfp_reload_hw @ then the hw state needs reloading
  90. VFPFSTMIA r4, r5 @ save the working registers
  91. VFPFMRX r5, FPSCR @ current status
  92. #ifndef CONFIG_CPU_FEROCEON
  93. tst r1, #FPEXC_EX @ is there additional state to save?
  94. beq 1f
  95. VFPFMRX r6, FPINST @ FPINST (only if FPEXC.EX is set)
  96. tst r1, #FPEXC_FP2V @ is there an FPINST2 to read?
  97. beq 1f
  98. VFPFMRX r8, FPINST2 @ FPINST2 if needed (and present)
  99. 1:
  100. #endif
  101. stmia r4, {r1, r5, r6, r8} @ save FPEXC, FPSCR, FPINST, FPINST2
  102. vfp_reload_hw:
  103. #else
  104. @ For SMP, if this thread does not own the hw context, then we
  105. @ need to reload it. No need to save the old state as on SMP,
  106. @ we always save the state when we switch away from a thread.
  107. bne vfp_reload_hw
  108. @ This thread has ownership of the current hardware context.
  109. @ However, it may have been migrated to another CPU, in which
  110. @ case the saved state is newer than the hardware context.
  111. @ Check this by looking at the CPU number which the state was
  112. @ last loaded onto.
  113. ldr ip, [r10, #VFP_CPU]
  114. teq ip, r11
  115. beq vfp_hw_state_valid
  116. vfp_reload_hw:
  117. @ We're loading this threads state into the VFP hardware. Update
  118. @ the CPU number which contains the most up to date VFP context.
  119. str r11, [r10, #VFP_CPU]
  120. VFPFMXR FPEXC, r5 @ enable VFP, disable any pending
  121. @ exceptions, so we can get at the
  122. @ rest of it
  123. #endif
  124. DBGSTR1 "load state %p", r10
  125. str r10, [r3, r11, lsl #2] @ update the vfp_current_hw_state pointer
  126. @ Load the saved state back into the VFP
  127. VFPFLDMIA r10, r5 @ reload the working registers while
  128. @ FPEXC is in a safe state
  129. ldmia r10, {r1, r5, r6, r8} @ load FPEXC, FPSCR, FPINST, FPINST2
  130. #ifndef CONFIG_CPU_FEROCEON
  131. tst r1, #FPEXC_EX @ is there additional state to restore?
  132. beq 1f
  133. VFPFMXR FPINST, r6 @ restore FPINST (only if FPEXC.EX is set)
  134. tst r1, #FPEXC_FP2V @ is there an FPINST2 to write?
  135. beq 1f
  136. VFPFMXR FPINST2, r8 @ FPINST2 if needed (and present)
  137. 1:
  138. #endif
  139. VFPFMXR FPSCR, r5 @ restore status
  140. @ The context stored in the VFP hardware is up to date with this thread
  141. vfp_hw_state_valid:
  142. tst r1, #FPEXC_EX
  143. bne process_exception @ might as well handle the pending
  144. @ exception before retrying branch
  145. @ out before setting an FPEXC that
  146. @ stops us reading stuff
  147. VFPFMXR FPEXC, r1 @ restore FPEXC last
  148. sub r2, r2, #4
  149. str r2, [sp, #S_PC] @ retry the instruction
  150. #ifdef CONFIG_PREEMPT
  151. get_thread_info r10
  152. ldr r4, [r10, #TI_PREEMPT] @ get preempt count
  153. sub r11, r4, #1 @ decrement it
  154. str r11, [r10, #TI_PREEMPT]
  155. #endif
  156. mov pc, r9 @ we think we have handled things
  157. look_for_VFP_exceptions:
  158. @ Check for synchronous or asynchronous exception
  159. tst r1, #FPEXC_EX | FPEXC_DEX
  160. bne process_exception
  161. @ On some implementations of the VFP subarch 1, setting FPSCR.IXE
  162. @ causes all the CDP instructions to be bounced synchronously without
  163. @ setting the FPEXC.EX bit
  164. VFPFMRX r5, FPSCR
  165. tst r5, #FPSCR_IXE
  166. bne process_exception
  167. @ Fall into hand on to next handler - appropriate coproc instr
  168. @ not recognised by VFP
  169. DBGSTR "not VFP"
  170. #ifdef CONFIG_PREEMPT
  171. get_thread_info r10
  172. ldr r4, [r10, #TI_PREEMPT] @ get preempt count
  173. sub r11, r4, #1 @ decrement it
  174. str r11, [r10, #TI_PREEMPT]
  175. #endif
  176. mov pc, lr
  177. process_exception:
  178. DBGSTR "bounce"
  179. mov r2, sp @ nothing stacked - regdump is at TOS
  180. mov lr, r9 @ setup for a return to the user code.
  181. @ Now call the C code to package up the bounce to the support code
  182. @ r0 holds the trigger instruction
  183. @ r1 holds the FPEXC value
  184. @ r2 pointer to register dump
  185. b VFP_bounce @ we have handled this - the support
  186. @ code will raise an exception if
  187. @ required. If not, the user code will
  188. @ retry the faulted instruction
  189. ENDPROC(vfp_support_entry)
  190. ENTRY(vfp_save_state)
  191. @ Save the current VFP state
  192. @ r0 - save location
  193. @ r1 - FPEXC
  194. DBGSTR1 "save VFP state %p", r0
  195. VFPFSTMIA r0, r2 @ save the working registers
  196. VFPFMRX r2, FPSCR @ current status
  197. tst r1, #FPEXC_EX @ is there additional state to save?
  198. beq 1f
  199. VFPFMRX r3, FPINST @ FPINST (only if FPEXC.EX is set)
  200. tst r1, #FPEXC_FP2V @ is there an FPINST2 to read?
  201. beq 1f
  202. VFPFMRX r12, FPINST2 @ FPINST2 if needed (and present)
  203. 1:
  204. stmia r0, {r1, r2, r3, r12} @ save FPEXC, FPSCR, FPINST, FPINST2
  205. mov pc, lr
  206. ENDPROC(vfp_save_state)
  207. .align
  208. vfp_current_hw_state_address:
  209. .word vfp_current_hw_state
  210. .macro tbl_branch, base, tmp, shift
  211. #ifdef CONFIG_THUMB2_KERNEL
  212. adr \tmp, 1f
  213. add \tmp, \tmp, \base, lsl \shift
  214. mov pc, \tmp
  215. #else
  216. add pc, pc, \base, lsl \shift
  217. mov r0, r0
  218. #endif
  219. 1:
  220. .endm
  221. ENTRY(vfp_get_float)
  222. tbl_branch r0, r3, #3
  223. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  224. 1: mrc p10, 0, r0, c\dr, c0, 0 @ fmrs r0, s0
  225. mov pc, lr
  226. .org 1b + 8
  227. 1: mrc p10, 0, r0, c\dr, c0, 4 @ fmrs r0, s1
  228. mov pc, lr
  229. .org 1b + 8
  230. .endr
  231. ENDPROC(vfp_get_float)
  232. ENTRY(vfp_put_float)
  233. tbl_branch r1, r3, #3
  234. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  235. 1: mcr p10, 0, r0, c\dr, c0, 0 @ fmsr r0, s0
  236. mov pc, lr
  237. .org 1b + 8
  238. 1: mcr p10, 0, r0, c\dr, c0, 4 @ fmsr r0, s1
  239. mov pc, lr
  240. .org 1b + 8
  241. .endr
  242. ENDPROC(vfp_put_float)
  243. ENTRY(vfp_get_double)
  244. tbl_branch r0, r3, #3
  245. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  246. 1: fmrrd r0, r1, d\dr
  247. mov pc, lr
  248. .org 1b + 8
  249. .endr
  250. #ifdef CONFIG_VFPv3
  251. @ d16 - d31 registers
  252. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  253. 1: mrrc p11, 3, r0, r1, c\dr @ fmrrd r0, r1, d\dr
  254. mov pc, lr
  255. .org 1b + 8
  256. .endr
  257. #endif
  258. @ virtual register 16 (or 32 if VFPv3) for compare with zero
  259. mov r0, #0
  260. mov r1, #0
  261. mov pc, lr
  262. ENDPROC(vfp_get_double)
  263. ENTRY(vfp_put_double)
  264. tbl_branch r2, r3, #3
  265. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  266. 1: fmdrr d\dr, r0, r1
  267. mov pc, lr
  268. .org 1b + 8
  269. .endr
  270. #ifdef CONFIG_VFPv3
  271. @ d16 - d31 registers
  272. .irp dr,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
  273. 1: mcrr p11, 3, r0, r1, c\dr @ fmdrr r0, r1, d\dr
  274. mov pc, lr
  275. .org 1b + 8
  276. .endr
  277. #endif
  278. ENDPROC(vfp_put_double)