2 * arch/ppc64/kernel/pSeries_hvCall.S
4 * This file contains the generic code to perform a call to the
5 * pSeries LPAR hypervisor.
6 * NOTE: this file will go away when we move to inline this work.
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.
13 #include <asm/hvcall.h>
14 #include <asm/processor.h>
15 #include <asm/ppc_asm.h>
17 #define STK_PARM(i) (48 + ((i)-3)*8)
21 /* long plpar_hcall(unsigned long opcode, R3
22 unsigned long arg1, R4
23 unsigned long arg2, R5
24 unsigned long arg3, R6
25 unsigned long arg4, R7
26 unsigned long *out1, R8
27 unsigned long *out2, R9
28 unsigned long *out3); R10
35 std r8,STK_PARM(r8)(r1) /* Save out ptrs */
36 std r9,STK_PARM(r9)(r1)
37 std r10,STK_PARM(r10)(r1)
41 HVSC /* invoke the hypervisor */
45 ld r8,STK_PARM(r8)(r1) /* Fetch r4-r6 ret args */
46 ld r9,STK_PARM(r9)(r1)
47 ld r10,STK_PARM(r10)(r1)
53 blr /* return r3 = status */
56 /* Simple interface with no output values (other than status) */
57 _GLOBAL(plpar_hcall_norets)
63 HVSC /* invoke the hypervisor */
67 blr /* return r3 = status */
70 /* long plpar_hcall_8arg_2ret(unsigned long opcode, R3
71 unsigned long arg1, R4
72 unsigned long arg2, R5
73 unsigned long arg3, R6
74 unsigned long arg4, R7
75 unsigned long arg5, R8
76 unsigned long arg6, R9
77 unsigned long arg7, R10
78 unsigned long arg8, 112(R1)
79 unsigned long *out1); 120(R1)
81 _GLOBAL(plpar_hcall_8arg_2ret)
85 ld r11,STK_PARM(r11)(r1) /* put arg8 in R11 */
88 HVSC /* invoke the hypervisor */
91 ld r10,STK_PARM(r12)(r1) /* Fetch r4 ret arg */
94 blr /* return r3 = status */
97 /* long plpar_hcall_4out(unsigned long opcode, R3
98 unsigned long arg1, R4
99 unsigned long arg2, R5
100 unsigned long arg3, R6
101 unsigned long arg4, R7
102 unsigned long *out1, R8
103 unsigned long *out2, R9
104 unsigned long *out3, R10
105 unsigned long *out4); 112(R1)
107 _GLOBAL(plpar_hcall_4out)
113 std r8,STK_PARM(r8)(r1) /* Save out ptrs */
114 std r9,STK_PARM(r9)(r1)
115 std r10,STK_PARM(r10)(r1)
117 HVSC /* invoke the hypervisor */
121 ld r8,STK_PARM(r8)(r1) /* Fetch r4-r7 ret args */
122 ld r9,STK_PARM(r9)(r1)
123 ld r10,STK_PARM(r10)(r1)
124 ld r11,STK_PARM(r11)(r1)
131 blr /* return r3 = status */