minstate.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/config.h>
  2. #include "entry.h"
  3. /*
  4.  * A couple of convenience macros that make writing and reading
  5.  * SAVE_MIN and SAVE_REST easier.
  6.  */
  7. #define rARPR r31
  8. #define rCRIFS r30
  9. #define rCRIPSR r29
  10. #define rCRIIP r28
  11. #define rARRSC r27
  12. #define rARPFS r26
  13. #define rARUNAT r25
  14. #define rARRNAT r24
  15. #define rARBSPSTORE r23
  16. #define rKRBS r22
  17. #define rB6 r21
  18. #define rR1 r20
  19. /*
  20.  * Here start the source dependent macros.
  21.  */
  22. /*
  23.  * For ivt.s we want to access the stack virtually so we dont have to disable translation
  24.  * on interrupts.
  25.  */
  26. #define MINSTATE_START_SAVE_MIN_VIRT
  27. dep r1=-1,r1,61,3; /* r1 = current (virtual) */
  28. (pUser) mov ar.rsc=0; /* set enforced lazy mode, pl 0, little-endian, loadrs=0 */
  29. ;;
  30. (pUser) addl rKRBS=IA64_RBS_OFFSET,r1; /* compute base of RBS */
  31. (pUser) mov rARRNAT=ar.rnat;
  32. (pKern) mov r1=sp; /* get sp  */
  33. ;;
  34. (pUser) addl r1=IA64_STK_OFFSET-IA64_PT_REGS_SIZE,r1; /* compute base of memory stack */
  35. (pUser) mov rARBSPSTORE=ar.bspstore; /* save ar.bspstore */
  36. ;;
  37. (pKern) addl r1=-IA64_PT_REGS_SIZE,r1; /* if in kernel mode, use sp (r12) */
  38. (pUser) mov ar.bspstore=rKRBS; /* switch to kernel RBS */
  39. ;;
  40. (pUser) mov r18=ar.bsp;
  41. (pUser) mov ar.rsc=0x3; /* set eager mode, pl 0, little-endian, loadrs=0 */
  42. #define MINSTATE_END_SAVE_MIN_VIRT
  43. or r13=r13,r14; /* make `current' a kernel virtual address */
  44. bsw.1; /* switch back to bank 1 (must be last in insn group) */
  45. ;;
  46. /*
  47.  * For mca_asm.S we want to access the stack physically since the state is saved before we
  48.  * go virtual and dont want to destroy the iip or ipsr.
  49.  */
  50. #define MINSTATE_START_SAVE_MIN_PHYS
  51. (pKern) movl sp=ia64_init_stack+IA64_STK_OFFSET-IA64_PT_REGS_SIZE;
  52. (pUser) mov ar.rsc=0; /* set enforced lazy mode, pl 0, little-endian, loadrs=0 */
  53. (pUser) addl rKRBS=IA64_RBS_OFFSET,r1; /* compute base of register backing store */
  54. ;;
  55. (pUser) mov rARRNAT=ar.rnat;
  56. (pKern) dep r1=0,sp,61,3; /* compute physical addr of sp */
  57. (pUser) addl r1=IA64_STK_OFFSET-IA64_PT_REGS_SIZE,r1; /* compute base of memory stack */
  58. (pUser) mov rARBSPSTORE=ar.bspstore; /* save ar.bspstore */
  59. (pUser) dep rKRBS=-1,rKRBS,61,3; /* compute kernel virtual addr of RBS */
  60. ;;
  61. (pKern) addl r1=-IA64_PT_REGS_SIZE,r1; /* if in kernel mode, use sp (r12) */
  62. (pUser) mov ar.bspstore=rKRBS; /* switch to kernel RBS */
  63. ;;
  64. (pUser) mov r18=ar.bsp;
  65. (pUser) mov ar.rsc=0x3; /* set eager mode, pl 0, little-endian, loadrs=0 */
  66. #define MINSTATE_END_SAVE_MIN_PHYS
  67. or r12=r12,r14; /* make sp a kernel virtual address */
  68. or r13=r13,r14; /* make `current' a kernel virtual address */
  69. ;;
  70. #ifdef MINSTATE_VIRT
  71. # define MINSTATE_START_SAVE_MIN MINSTATE_START_SAVE_MIN_VIRT
  72. # define MINSTATE_END_SAVE_MIN MINSTATE_END_SAVE_MIN_VIRT
  73. #endif
  74. #ifdef MINSTATE_PHYS
  75. # define MINSTATE_START_SAVE_MIN MINSTATE_START_SAVE_MIN_PHYS
  76. # define MINSTATE_END_SAVE_MIN MINSTATE_END_SAVE_MIN_PHYS
  77. #endif
  78. /*
  79.  * DO_SAVE_MIN switches to the kernel stacks (if necessary) and saves
  80.  * the minimum state necessary that allows us to turn psr.ic back
  81.  * on.
  82.  *
  83.  * Assumed state upon entry:
  84.  * psr.ic: off
  85.  * psr.dt: off
  86.  * r31: contains saved predicates (pr)
  87.  *
  88.  * Upon exit, the state is as follows:
  89.  * psr.ic: off
  90.  * r2 = points to &pt_regs.r16
  91.  * r12 = kernel sp (kernel virtual address)
  92.  * r13 = points to current task_struct (kernel virtual address)
  93.  * p15 = TRUE if psr.i is set in cr.ipsr
  94.  * predicate registers (other than p2, p3, and p15), b6, r3, r8, r9, r10, r11, r14, r15:
  95.  * preserved
  96.  *
  97.  * Note that psr.ic is NOT turned on by this macro.  This is so that
  98.  * we can pass interruption state as arguments to a handler.
  99.  */
  100. #define DO_SAVE_MIN(COVER,SAVE_IFS,EXTRA)   
  101. mov rARRSC=ar.rsc;   
  102. mov rARPFS=ar.pfs;   
  103. mov rR1=r1;   
  104. mov rARUNAT=ar.unat;   
  105. mov rCRIPSR=cr.ipsr;   
  106. mov rB6=b6; /* rB6 = branch reg 6 */   
  107. mov rCRIIP=cr.iip;   
  108. mov r1=IA64_KR(CURRENT); /* r1 = current (physical) */   
  109. COVER;   
  110. ;;   
  111. invala;   
  112. extr.u r16=rCRIPSR,32,2; /* extract psr.cpl */   
  113. ;;   
  114. cmp.eq pKern,pUser=r0,r16; /* are we in kernel mode already? (psr.cpl==0) */ 
  115. /* switch from user to kernel RBS: */   
  116. ;;   
  117. SAVE_IFS;   
  118. MINSTATE_START_SAVE_MIN   
  119. ;;   
  120. mov r16=r1; /* initialize first base pointer */   
  121. adds r17=8,r1; /* initialize second base pointer */   
  122. ;;   
  123. st8 [r16]=rCRIPSR,16; /* save cr.ipsr */   
  124. st8 [r17]=rCRIIP,16; /* save cr.iip */   
  125. (pKern) mov r18=r0; /* make sure r18 isn't NaT */   
  126. ;;   
  127. st8 [r16]=rCRIFS,16; /* save cr.ifs */   
  128. st8 [r17]=rARUNAT,16; /* save ar.unat */   
  129. (pUser) sub r18=r18,rKRBS; /* r18=RSE.ndirty*8 */   
  130. ;;   
  131. st8 [r16]=rARPFS,16; /* save ar.pfs */   
  132. st8 [r17]=rARRSC,16; /* save ar.rsc */   
  133. tbit.nz p15,p0=rCRIPSR,IA64_PSR_I_BIT   
  134. ;; /* avoid RAW on r16 & r17 */   
  135. (pKern) adds r16=16,r16; /* skip over ar_rnat field */   
  136. (pKern) adds r17=16,r17; /* skip over ar_bspstore field */   
  137. (pUser) st8 [r16]=rARRNAT,16; /* save ar.rnat */   
  138. (pUser) st8 [r17]=rARBSPSTORE,16; /* save ar.bspstore */   
  139. ;;   
  140. st8 [r16]=rARPR,16; /* save predicates */   
  141. st8 [r17]=rB6,16; /* save b6 */   
  142. shl r18=r18,16; /* compute ar.rsc to be used for "loadrs" */   
  143. ;;   
  144. st8 [r16]=r18,16; /* save ar.rsc value for "loadrs" */   
  145. st8.spill [r17]=rR1,16; /* save original r1 */   
  146. ;;   
  147. .mem.offset 0,0; st8.spill [r16]=r2,16;   
  148. .mem.offset 8,0; st8.spill [r17]=r3,16;   
  149. adds r2=IA64_PT_REGS_R16_OFFSET,r1;   
  150. ;;   
  151. .mem.offset 0,0; st8.spill [r16]=r12,16;   
  152. .mem.offset 8,0; st8.spill [r17]=r13,16;   
  153. cmp.eq pNonSys,pSys=r0,r0 /* initialize pSys=0, pNonSys=1 */   
  154. ;;   
  155. .mem.offset 0,0; st8.spill [r16]=r14,16;   
  156. .mem.offset 8,0; st8.spill [r17]=r15,16;   
  157. dep r14=-1,r0,61,3;   
  158. ;;   
  159. .mem.offset 0,0; st8.spill [r16]=r8,16;   
  160. .mem.offset 8,0; st8.spill [r17]=r9,16;   
  161. adds r12=-16,r1; /* switch to kernel memory stack (with 16 bytes of scratch) */   
  162. ;;   
  163. .mem.offset 0,0; st8.spill [r16]=r10,16;   
  164. .mem.offset 8,0; st8.spill [r17]=r11,16;   
  165. mov r13=IA64_KR(CURRENT); /* establish `current' */   
  166. ;;   
  167. EXTRA;   
  168. movl r1=__gp; /* establish kernel global pointer */   
  169. ;;   
  170. MINSTATE_END_SAVE_MIN
  171. /*
  172.  * SAVE_REST saves the remainder of pt_regs (with psr.ic on).  This
  173.  * macro guarantees to preserve all predicate registers, r8, r9, r10,
  174.  * r11, r14, and r15.
  175.  *
  176.  * Assumed state upon entry:
  177.  * psr.ic: on
  178.  * psr.dt: on
  179.  * r2: points to &pt_regs.r16
  180.  * r3: points to &pt_regs.r17
  181.  */
  182. #define SAVE_REST
  183. .mem.offset 0,0; st8.spill [r2]=r16,16;
  184. .mem.offset 8,0; st8.spill [r3]=r17,16;
  185. ;;
  186. .mem.offset 0,0; st8.spill [r2]=r18,16;
  187. .mem.offset 8,0; st8.spill [r3]=r19,16;
  188. ;;
  189. mov r16=ar.ccv; /* M-unit */
  190. movl r18=FPSR_DEFAULT /* L-unit */
  191. ;;
  192. mov r17=ar.fpsr; /* M-unit */
  193. mov ar.fpsr=r18; /* M-unit */
  194. ;;
  195. .mem.offset 0,0; st8.spill [r2]=r20,16;
  196. .mem.offset 8,0; st8.spill [r3]=r21,16;
  197. mov r18=b0;
  198. ;;
  199. .mem.offset 0,0; st8.spill [r2]=r22,16;
  200. .mem.offset 8,0; st8.spill [r3]=r23,16;
  201. mov r19=b7;
  202. ;;
  203. .mem.offset 0,0; st8.spill [r2]=r24,16;
  204. .mem.offset 8,0; st8.spill [r3]=r25,16;
  205. ;;
  206. .mem.offset 0,0; st8.spill [r2]=r26,16;
  207. .mem.offset 8,0; st8.spill [r3]=r27,16;
  208. ;;
  209. .mem.offset 0,0; st8.spill [r2]=r28,16;
  210. .mem.offset 8,0; st8.spill [r3]=r29,16;
  211. ;;
  212. .mem.offset 0,0; st8.spill [r2]=r30,16;
  213. .mem.offset 8,0; st8.spill [r3]=r31,16;
  214. ;;
  215. st8 [r2]=r16,16; /* ar.ccv */
  216. st8 [r3]=r17,16; /* ar.fpsr */
  217. ;;
  218. st8 [r2]=r18,16; /* b0 */
  219. st8 [r3]=r19,16+8; /* b7 */
  220. ;;
  221. stf.spill [r2]=f6,32;
  222. stf.spill [r3]=f7,32;
  223. ;;
  224. stf.spill [r2]=f8,32;
  225. stf.spill [r3]=f9,32
  226. #define SAVE_MIN_WITH_COVER DO_SAVE_MIN(cover, mov rCRIFS=cr.ifs,)
  227. #define SAVE_MIN_WITH_COVER_R19 DO_SAVE_MIN(cover, mov rCRIFS=cr.ifs, mov r15=r19)
  228. #define SAVE_MIN DO_SAVE_MIN(     , mov rCRIFS=r0, )