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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/ppc64/kernel/hvCall.S
  3.  *
  4.  *
  5.  * This file contains the code to perform calls to the
  6.  * iSeries LPAR hypervisor
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  */
  13. #include "ppc_asm.h"
  14. #include <asm/processor.h>
  15. #include <linux/config.h>
  16. .text
  17. /* 
  18.  * Hypervisor call
  19.  * 
  20.  * Invoke the iSeries hypervisor via the System Call instruction
  21.  * Parameters are passed to this routine in registers r3 - r10
  22.  * 
  23.  * r3 contains the HV function to be called
  24.  * r4-r10 contain the operands to the hypervisor function
  25.  *
  26.  */
  27. _GLOBAL(HvCall)
  28. _GLOBAL(HvCall0)
  29. _GLOBAL(HvCall1)
  30. _GLOBAL(HvCall2)
  31. _GLOBAL(HvCall3)
  32. _GLOBAL(HvCall4)
  33. _GLOBAL(HvCall5)
  34. _GLOBAL(HvCall6)
  35. _GLOBAL(HvCall7)
  36. mfcr r0
  37. std r0,-8(r1)
  38. stdu r1,-(STACK_FRAME_OVERHEAD+16)(r1)
  39. /* r0 = 0xffffffffffffffff indicates a hypervisor call */
  40. li r0,-1
  41. /* Invoke the hypervisor */
  42. sc
  43. ld r1,0(r1)
  44. ld r0,-8(r1)
  45. mtcrf 0xff,r0
  46. /*  return to caller, return value in r3 */
  47. blr
  48. _GLOBAL(HvCall0Ret16)
  49. _GLOBAL(HvCall1Ret16)
  50. _GLOBAL(HvCall2Ret16)
  51. _GLOBAL(HvCall3Ret16)
  52. _GLOBAL(HvCall4Ret16)
  53. _GLOBAL(HvCall5Ret16)
  54. _GLOBAL(HvCall6Ret16)
  55. _GLOBAL(HvCall7Ret16)
  56. mfcr r0
  57. std r0,-8(r1)
  58. std r31,-16(r1)
  59. stdu r1,-(STACK_FRAME_OVERHEAD+32)(r1)
  60. mr r31,r4
  61. li r0,-1
  62. mr r4,r5
  63. mr r5,r6
  64. mr r6,r7
  65. mr r7,r8
  66. mr r8,r9
  67. mr r9,r10
  68. sc
  69. std r3,0(r31)
  70. std r4,8(r31)
  71. mr r3,r5
  72. ld r1,0(r1)
  73. ld r0,-8(r1)
  74. mtcrf 0xff,r0
  75. ld r31,-16(r1)
  76. blr