real2.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 2000 Hewlett Packard (Paul Bame bame@puffin.external.hp.com)
  8.  *
  9.  */
  10. #include <asm/assembly.h>
  11. #include <asm/psw.h>
  12. .section .bss
  13. .export real_stack
  14. .align 64
  15. real_stack:
  16. .block 8192
  17. #ifdef __LP64__
  18. #  define REG_SZ 8
  19. #else
  20. #  define REG_SZ 4
  21. #endif
  22. #define N_SAVED_REGS 9
  23. save_cr_space:
  24. .block REG_SZ * N_SAVED_REGS
  25. /************************ 32-bit real-mode calls ***********************/
  26. /* This can be called in both narrow and wide kernels */
  27. .text
  28. .export real32_call_asm
  29. /* unsigned long real32_call_asm(unsigned int *sp,
  30.  * unsigned int *arg0p,
  31.  * unsigned int iodc_fn)
  32.  * sp is value of stack pointer to adopt before calling PDC (virt)
  33.  * arg0p points to where saved arg values may be found
  34.  * iodc_fn is the IODC function to call
  35.  */
  36. real32_call_asm:
  37. STREG %rp, -RP_OFFSET(%sp) /* save RP */
  38. #ifdef __LP64__
  39. callee_save
  40. ldo 2*REG_SZ(%sp), %sp /* room for a couple more saves */
  41. STREG %r27, -1*REG_SZ(%sp)
  42. STREG %r29, -2*REG_SZ(%sp)
  43. #endif
  44. STREG %sp, -REG_SZ(%arg0) /* save SP on real-mode stack */
  45. copy %arg0, %sp /* adopt the real-mode SP */
  46. /* save iodc_fn */
  47. copy %arg2, %r31
  48. /* load up the arg registers from the saved arg area */
  49. /* 32-bit calling convention passes first 4 args in registers */
  50. ldw 0(%arg1), %arg0 /* note overwriting arg0 */
  51. ldw -8(%arg1), %arg2
  52. ldw -12(%arg1), %arg3
  53. ldw -4(%arg1), %arg1 /* obviously must do this one last! */
  54. tophys_r1  %sp
  55. b,l rfi_virt2real,%r2
  56. nop
  57. b,l save_control_regs,%r2 /* modifies r1, r2, r28 */
  58. nop
  59. #ifdef __LP64__
  60. rsm PSW_SM_W, %r0 /* go narrow */
  61. #endif
  62. ldil L%PA(ric_ret), %r2
  63. ldo R%PA(ric_ret)(%r2), %r2
  64. bv 0(%r31)
  65. nop
  66. ric_ret:
  67. #ifdef __LP64__
  68. ssm PSW_SM_W, %r0 /* go wide */
  69. #endif
  70. /* restore CRs before going virtual in case we page fault */
  71. b,l restore_control_regs, %r2 /* modifies r1, r2, r26 */
  72. nop
  73. b,l rfi_real2virt,%r2
  74. nop
  75. tovirt_r1 %sp
  76. LDREG -REG_SZ(%sp), %sp /* restore SP */
  77. #ifdef __LP64__
  78. LDREG -1*REG_SZ(%sp), %r27
  79. LDREG -2*REG_SZ(%sp), %r29
  80. ldo -2*REG_SZ(%sp), %sp
  81. callee_rest
  82. #endif
  83. LDREG -RP_OFFSET(%sp), %rp /* restore RP */
  84. bv 0(%rp)
  85. nop
  86. #  define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where)
  87. #  define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r
  88. .text
  89. save_control_regs:
  90. load32 PA(save_cr_space), %r28
  91. PUSH_CR(%cr24, %r28)
  92. PUSH_CR(%cr25, %r28)
  93. PUSH_CR(%cr26, %r28)
  94. PUSH_CR(%cr27, %r28)
  95. PUSH_CR(%cr28, %r28)
  96. PUSH_CR(%cr29, %r28)
  97. PUSH_CR(%cr30, %r28)
  98. PUSH_CR(%cr31, %r28)
  99. PUSH_CR(%cr15, %r28)
  100. bv 0(%r2)
  101. nop
  102. restore_control_regs:
  103. load32 PA(save_cr_space + (N_SAVED_REGS * REG_SZ)), %r26
  104. POP_CR(%cr15, %r26)
  105. POP_CR(%cr31, %r26)
  106. POP_CR(%cr30, %r26)
  107. POP_CR(%cr29, %r26)
  108. POP_CR(%cr28, %r26)
  109. POP_CR(%cr27, %r26)
  110. POP_CR(%cr26, %r26)
  111. POP_CR(%cr25, %r26)
  112. POP_CR(%cr24, %r26)
  113. bv 0(%r2)
  114. nop
  115. /* rfi_virt2real() and rfi_real2virt() could perhaps be adapted for
  116.  * more general-purpose use by the several places which need RFIs
  117.  */
  118. .align 128
  119. .text
  120. rfi_virt2real:
  121. /* switch to real mode... */
  122. ssm 0,0 /* See "relied upon translation" */
  123. nop /* comment in interruption.S */
  124. nop
  125. nop
  126. nop
  127. nop
  128. nop
  129. nop
  130. nop
  131. rsm             (PSW_SM_Q|PSW_SM_I),%r0  /* disable Q & I bits to load iia queue */
  132. mtctl 0, %cr17 /* space 0 */
  133. mtctl 0, %cr17
  134. load32 PA(rfi_v2r_1), %r1
  135. mtctl %r1, %cr18
  136. ldo 4(%r1), %r1
  137. mtctl %r1, %cr18
  138. load32          REAL_MODE_PSW, %r1
  139. mtctl %r1, %cr22
  140. rfi
  141. nop
  142. nop
  143. nop
  144. nop
  145. nop
  146. nop
  147. nop
  148. nop
  149. rfi_v2r_1:
  150. tophys_r1 %r2
  151. bv 0(%r2)
  152. nop
  153. .text
  154. .align 128
  155. rfi_real2virt:
  156. ssm 0,0 /* See "relied upon translation" */
  157. nop /* comment in interruption.S */
  158. nop
  159. nop
  160. nop
  161. nop
  162. nop
  163. nop
  164. nop
  165. rsm             PSW_SM_Q,%r0    /* disable Q bit to load iia queue */
  166. mtctl 0, %cr17 /* space 0 */
  167. mtctl 0, %cr17
  168. load32 (rfi_r2v_1), %r1
  169. mtctl %r1, %cr18
  170. ldo 4(%r1), %r1
  171. mtctl %r1, %cr18
  172. load32 KERNEL_PSW, %r1
  173. mtctl %r1, %cr22
  174. rfi
  175. nop
  176. nop
  177. nop
  178. nop
  179. nop
  180. nop
  181. nop
  182. nop
  183. rfi_r2v_1:
  184. tovirt_r1 %r2
  185. bv 0(%r2)
  186. nop
  187. #ifdef __LP64__
  188. /************************ 64-bit real-mode calls ***********************/
  189. /* This is only usable in wide kernels right now and will probably stay so */
  190. .text
  191. .export real64_call_asm
  192. /* unsigned long real64_call_asm(unsigned long *sp,
  193.  * unsigned long *arg0p,
  194.  * unsigned long fn)
  195.  * sp is value of stack pointer to adopt before calling PDC (virt)
  196.  * arg0p points to where saved arg values may be found
  197.  * iodc_fn is the IODC function to call
  198.  */
  199. real64_call_asm:
  200. std %rp, -0x10(%sp) /* save RP */
  201. std %sp, -8(%arg0) /* save SP on real-mode stack */
  202. copy %arg0, %sp /* adopt the real-mode SP */
  203. /* save fn */
  204. copy %arg2, %r31
  205. /* set up the new ap */
  206. ldo 64(%arg1), %r29
  207. /* load up the arg registers from the saved arg area */
  208. /* 32-bit calling convention passes first 4 args in registers */
  209. ldd 0*REG_SZ(%arg1), %arg0 /* note overwriting arg0 */
  210. ldd 2*REG_SZ(%arg1), %arg2
  211. ldd 3*REG_SZ(%arg1), %arg3
  212. ldd 4*REG_SZ(%arg1), %r22
  213. ldd 5*REG_SZ(%arg1), %r21
  214. ldd 6*REG_SZ(%arg1), %r20
  215. ldd 7*REG_SZ(%arg1), %r19
  216. ldd 1*REG_SZ(%arg1), %arg1 /* do this one last! */
  217. tophys_r1 %sp
  218. b,l rfi_virt2real,%r2
  219. nop
  220. b,l save_control_regs,%r2 /* modifies r1, r2, r28 */
  221. nop
  222. load32 PA(r64_ret), %r2
  223. bv 0(%r31)
  224. nop
  225. r64_ret:
  226. /* restore CRs before going virtual in case we page fault */
  227. b,l restore_control_regs, %r2 /* modifies r1, r2, r26 */
  228. nop
  229. b,l rfi_real2virt,%r2
  230. nop
  231. tovirt_r1 %sp
  232. ldd -8(%sp), %sp /* restore SP */
  233. ldd -0x10(%sp), %rp /* restore RP */
  234. bv 0(%rp)
  235. nop
  236. #endif
  237. .export pc_in_user_space
  238. .text
  239. /* Doesn't belong here but I couldn't find a nicer spot. */
  240. /* Should never get called, only used by profile stuff in time.c */
  241. pc_in_user_space:
  242. bv,n 0(%rp)
  243. nop