1 /******************************************************************************
2 * hypercall.h
3 *
4 * Linux-specific hypervisor handling.
5 *
6 * Copyright (c) 2002-2004, K A Fraser
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 version 2
10 * as published by the Free Software Foundation; or, when distributed
11 * separately from the Linux kernel or incorporated into other
12 * software packages, subject to the following license:
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this source file (the "Software"), to deal in the Software without
16 * restriction, including without limitation the rights to use, copy, modify,
17 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18 * and to permit persons to whom the Software is furnished to do so, subject to
19 * the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 * IN THE SOFTWARE.
31 */
32
33 #ifndef _ASM_X86_XEN_HYPERCALL_H
34 #define _ASM_X86_XEN_HYPERCALL_H
35
36 #include <linux/kernel.h>
37 #include <linux/spinlock.h>
38 #include <linux/errno.h>
39 #include <linux/string.h>
40 #include <linux/types.h>
41
42 #include <trace/events/xen.h>
43
44 #include <asm/page.h>
45 #include <asm/pgtable.h>
46 #include <asm/smap.h>
47 #include <asm/nospec-branch.h>
48
49 #include <xen/interface/xen.h>
50 #include <xen/interface/sched.h>
51 #include <xen/interface/physdev.h>
52 #include <xen/interface/platform.h>
53 #include <xen/interface/xen-mca.h>
54
55 /*
56 * The hypercall asms have to meet several constraints:
57 * - Work on 32- and 64-bit.
58 * The two architectures put their arguments in different sets of
59 * registers.
60 *
61 * - Work around asm syntax quirks
62 * It isn't possible to specify one of the rNN registers in a
63 * constraint, so we use explicit register variables to get the
64 * args into the right place.
65 *
66 * - Mark all registers as potentially clobbered
67 * Even unused parameters can be clobbered by the hypervisor, so we
68 * need to make sure gcc knows it.
69 *
70 * - Avoid compiler bugs.
71 * This is the tricky part. Because x86_32 has such a constrained
72 * register set, gcc versions below 4.3 have trouble generating
73 * code when all the arg registers and memory are trashed by the
74 * asm. There are syntactically simpler ways of achieving the
75 * semantics below, but they cause the compiler to crash.
76 *
77 * The only combination I found which works is:
78 * - assign the __argX variables first
79 * - list all actually used parameters as "+r" (__argX)
80 * - clobber the rest
81 *
82 * The result certainly isn't pretty, and it really shows up cpp's
83 * weakness as as macro language. Sorry. (But let's just give thanks
84 * there aren't more than 5 arguments...)
85 */
86
87 extern struct { char _entry[32]; } hypercall_page[];
88
89 #define __HYPERCALL "call hypercall_page+%c[offset]"
90 #define __HYPERCALL_ENTRY(x) \
91 [offset] "i" (__HYPERVISOR_##x * sizeof(hypercall_page[0]))
92
93 #ifdef CONFIG_X86_32
94 #define __HYPERCALL_RETREG "eax"
95 #define __HYPERCALL_ARG1REG "ebx"
96 #define __HYPERCALL_ARG2REG "ecx"
97 #define __HYPERCALL_ARG3REG "edx"
98 #define __HYPERCALL_ARG4REG "esi"
99 #define __HYPERCALL_ARG5REG "edi"
100 #else
101 #define __HYPERCALL_RETREG "rax"
102 #define __HYPERCALL_ARG1REG "rdi"
103 #define __HYPERCALL_ARG2REG "rsi"
104 #define __HYPERCALL_ARG3REG "rdx"
105 #define __HYPERCALL_ARG4REG "r10"
106 #define __HYPERCALL_ARG5REG "r8"
107 #endif
108
109 #define __HYPERCALL_DECLS \
110 register unsigned long __res asm(__HYPERCALL_RETREG); \
111 register unsigned long __arg1 asm(__HYPERCALL_ARG1REG) = __arg1; \
112 register unsigned long __arg2 asm(__HYPERCALL_ARG2REG) = __arg2; \
113 register unsigned long __arg3 asm(__HYPERCALL_ARG3REG) = __arg3; \
114 register unsigned long __arg4 asm(__HYPERCALL_ARG4REG) = __arg4; \
115 register unsigned long __arg5 asm(__HYPERCALL_ARG5REG) = __arg5;
116
117 #define __HYPERCALL_0PARAM "=r" (__res), ASM_CALL_CONSTRAINT
118 #define __HYPERCALL_1PARAM __HYPERCALL_0PARAM, "+r" (__arg1)
119 #define __HYPERCALL_2PARAM __HYPERCALL_1PARAM, "+r" (__arg2)
120 #define __HYPERCALL_3PARAM __HYPERCALL_2PARAM, "+r" (__arg3)
121 #define __HYPERCALL_4PARAM __HYPERCALL_3PARAM, "+r" (__arg4)
122 #define __HYPERCALL_5PARAM __HYPERCALL_4PARAM, "+r" (__arg5)
123
124 #define __HYPERCALL_0ARG()
125 #define __HYPERCALL_1ARG(a1) \
126 __HYPERCALL_0ARG() __arg1 = (unsigned long)(a1);
127 #define __HYPERCALL_2ARG(a1,a2) \
128 __HYPERCALL_1ARG(a1) __arg2 = (unsigned long)(a2);
129 #define __HYPERCALL_3ARG(a1,a2,a3) \
130 __HYPERCALL_2ARG(a1,a2) __arg3 = (unsigned long)(a3);
131 #define __HYPERCALL_4ARG(a1,a2,a3,a4) \
132 __HYPERCALL_3ARG(a1,a2,a3) __arg4 = (unsigned long)(a4);
133 #define __HYPERCALL_5ARG(a1,a2,a3,a4,a5) \
134 __HYPERCALL_4ARG(a1,a2,a3,a4) __arg5 = (unsigned long)(a5);
135
136 #define __HYPERCALL_CLOBBER5 "memory"
137 #define __HYPERCALL_CLOBBER4 __HYPERCALL_CLOBBER5, __HYPERCALL_ARG5REG
138 #define __HYPERCALL_CLOBBER3 __HYPERCALL_CLOBBER4, __HYPERCALL_ARG4REG
139 #define __HYPERCALL_CLOBBER2 __HYPERCALL_CLOBBER3, __HYPERCALL_ARG3REG
140 #define __HYPERCALL_CLOBBER1 __HYPERCALL_CLOBBER2, __HYPERCALL_ARG2REG
141 #define __HYPERCALL_CLOBBER0 __HYPERCALL_CLOBBER1, __HYPERCALL_ARG1REG
142
143 #define _hypercall0(type, name) \
144 ({ \
145 __HYPERCALL_DECLS; \
146 __HYPERCALL_0ARG(); \
147 asm volatile (__HYPERCALL \
148 : __HYPERCALL_0PARAM \
149 : __HYPERCALL_ENTRY(name) \
150 : __HYPERCALL_CLOBBER0); \
151 (type)__res; \
152 })
153
154 #define _hypercall1(type, name, a1) \
155 ({ \
156 __HYPERCALL_DECLS; \
157 __HYPERCALL_1ARG(a1); \
158 asm volatile (__HYPERCALL \
159 : __HYPERCALL_1PARAM \
160 : __HYPERCALL_ENTRY(name) \
161 : __HYPERCALL_CLOBBER1); \
162 (type)__res; \
163 })
164
165 #define _hypercall2(type, name, a1, a2) \
166 ({ \
167 __HYPERCALL_DECLS; \
168 __HYPERCALL_2ARG(a1, a2); \
169 asm volatile (__HYPERCALL \
170 : __HYPERCALL_2PARAM \
171 : __HYPERCALL_ENTRY(name) \
172 : __HYPERCALL_CLOBBER2); \
173 (type)__res; \
174 })
175
176 #define _hypercall3(type, name, a1, a2, a3) \
177 ({ \
178 __HYPERCALL_DECLS; \
179 __HYPERCALL_3ARG(a1, a2, a3); \
180 asm volatile (__HYPERCALL \
181 : __HYPERCALL_3PARAM \
182 : __HYPERCALL_ENTRY(name) \
183 : __HYPERCALL_CLOBBER3); \
184 (type)__res; \
185 })
186
187 #define _hypercall4(type, name, a1, a2, a3, a4) \
188 ({ \
189 __HYPERCALL_DECLS; \
190 __HYPERCALL_4ARG(a1, a2, a3, a4); \
191 asm volatile (__HYPERCALL \
192 : __HYPERCALL_4PARAM \
193 : __HYPERCALL_ENTRY(name) \
194 : __HYPERCALL_CLOBBER4); \
195 (type)__res; \
196 })
197
198 #define _hypercall5(type, name, a1, a2, a3, a4, a5) \
199 ({ \
200 __HYPERCALL_DECLS; \
201 __HYPERCALL_5ARG(a1, a2, a3, a4, a5); \
202 asm volatile (__HYPERCALL \
203 : __HYPERCALL_5PARAM \
204 : __HYPERCALL_ENTRY(name) \
205 : __HYPERCALL_CLOBBER5); \
206 (type)__res; \
207 })
208
209 static inline long
privcmd_call(unsigned call,unsigned long a1,unsigned long a2,unsigned long a3,unsigned long a4,unsigned long a5)210 privcmd_call(unsigned call,
211 unsigned long a1, unsigned long a2,
212 unsigned long a3, unsigned long a4,
213 unsigned long a5)
214 {
215 __HYPERCALL_DECLS;
216 __HYPERCALL_5ARG(a1, a2, a3, a4, a5);
217
218 stac();
219 asm volatile(CALL_NOSPEC
220 : __HYPERCALL_5PARAM
221 : [thunk_target] "a" (&hypercall_page[call])
222 : __HYPERCALL_CLOBBER5);
223 clac();
224
225 return (long)__res;
226 }
227
228 static inline int
HYPERVISOR_set_trap_table(struct trap_info * table)229 HYPERVISOR_set_trap_table(struct trap_info *table)
230 {
231 return _hypercall1(int, set_trap_table, table);
232 }
233
234 static inline int
HYPERVISOR_mmu_update(struct mmu_update * req,int count,int * success_count,domid_t domid)235 HYPERVISOR_mmu_update(struct mmu_update *req, int count,
236 int *success_count, domid_t domid)
237 {
238 return _hypercall4(int, mmu_update, req, count, success_count, domid);
239 }
240
241 static inline int
HYPERVISOR_mmuext_op(struct mmuext_op * op,int count,int * success_count,domid_t domid)242 HYPERVISOR_mmuext_op(struct mmuext_op *op, int count,
243 int *success_count, domid_t domid)
244 {
245 return _hypercall4(int, mmuext_op, op, count, success_count, domid);
246 }
247
248 static inline int
HYPERVISOR_set_gdt(unsigned long * frame_list,int entries)249 HYPERVISOR_set_gdt(unsigned long *frame_list, int entries)
250 {
251 return _hypercall2(int, set_gdt, frame_list, entries);
252 }
253
254 static inline int
HYPERVISOR_stack_switch(unsigned long ss,unsigned long esp)255 HYPERVISOR_stack_switch(unsigned long ss, unsigned long esp)
256 {
257 return _hypercall2(int, stack_switch, ss, esp);
258 }
259
260 #ifdef CONFIG_X86_32
261 static inline int
HYPERVISOR_set_callbacks(unsigned long event_selector,unsigned long event_address,unsigned long failsafe_selector,unsigned long failsafe_address)262 HYPERVISOR_set_callbacks(unsigned long event_selector,
263 unsigned long event_address,
264 unsigned long failsafe_selector,
265 unsigned long failsafe_address)
266 {
267 return _hypercall4(int, set_callbacks,
268 event_selector, event_address,
269 failsafe_selector, failsafe_address);
270 }
271 #else /* CONFIG_X86_64 */
272 static inline int
HYPERVISOR_set_callbacks(unsigned long event_address,unsigned long failsafe_address,unsigned long syscall_address)273 HYPERVISOR_set_callbacks(unsigned long event_address,
274 unsigned long failsafe_address,
275 unsigned long syscall_address)
276 {
277 return _hypercall3(int, set_callbacks,
278 event_address, failsafe_address,
279 syscall_address);
280 }
281 #endif /* CONFIG_X86_{32,64} */
282
283 static inline int
HYPERVISOR_callback_op(int cmd,void * arg)284 HYPERVISOR_callback_op(int cmd, void *arg)
285 {
286 return _hypercall2(int, callback_op, cmd, arg);
287 }
288
289 static inline int
HYPERVISOR_fpu_taskswitch(int set)290 HYPERVISOR_fpu_taskswitch(int set)
291 {
292 return _hypercall1(int, fpu_taskswitch, set);
293 }
294
295 static inline int
HYPERVISOR_sched_op(int cmd,void * arg)296 HYPERVISOR_sched_op(int cmd, void *arg)
297 {
298 return _hypercall2(int, sched_op, cmd, arg);
299 }
300
301 static inline long
HYPERVISOR_set_timer_op(u64 timeout)302 HYPERVISOR_set_timer_op(u64 timeout)
303 {
304 unsigned long timeout_hi = (unsigned long)(timeout>>32);
305 unsigned long timeout_lo = (unsigned long)timeout;
306 return _hypercall2(long, set_timer_op, timeout_lo, timeout_hi);
307 }
308
309 static inline int
HYPERVISOR_mca(struct xen_mc * mc_op)310 HYPERVISOR_mca(struct xen_mc *mc_op)
311 {
312 mc_op->interface_version = XEN_MCA_INTERFACE_VERSION;
313 return _hypercall1(int, mca, mc_op);
314 }
315
316 static inline int
HYPERVISOR_platform_op(struct xen_platform_op * op)317 HYPERVISOR_platform_op(struct xen_platform_op *op)
318 {
319 op->interface_version = XENPF_INTERFACE_VERSION;
320 return _hypercall1(int, platform_op, op);
321 }
322
323 static inline int
HYPERVISOR_set_debugreg(int reg,unsigned long value)324 HYPERVISOR_set_debugreg(int reg, unsigned long value)
325 {
326 return _hypercall2(int, set_debugreg, reg, value);
327 }
328
329 static inline unsigned long
HYPERVISOR_get_debugreg(int reg)330 HYPERVISOR_get_debugreg(int reg)
331 {
332 return _hypercall1(unsigned long, get_debugreg, reg);
333 }
334
335 static inline int
HYPERVISOR_update_descriptor(u64 ma,u64 desc)336 HYPERVISOR_update_descriptor(u64 ma, u64 desc)
337 {
338 if (sizeof(u64) == sizeof(long))
339 return _hypercall2(int, update_descriptor, ma, desc);
340 return _hypercall4(int, update_descriptor, ma, ma>>32, desc, desc>>32);
341 }
342
343 static inline long
HYPERVISOR_memory_op(unsigned int cmd,void * arg)344 HYPERVISOR_memory_op(unsigned int cmd, void *arg)
345 {
346 return _hypercall2(long, memory_op, cmd, arg);
347 }
348
349 static inline int
HYPERVISOR_multicall(void * call_list,uint32_t nr_calls)350 HYPERVISOR_multicall(void *call_list, uint32_t nr_calls)
351 {
352 return _hypercall2(int, multicall, call_list, nr_calls);
353 }
354
355 static inline int
HYPERVISOR_update_va_mapping(unsigned long va,pte_t new_val,unsigned long flags)356 HYPERVISOR_update_va_mapping(unsigned long va, pte_t new_val,
357 unsigned long flags)
358 {
359 if (sizeof(new_val) == sizeof(long))
360 return _hypercall3(int, update_va_mapping, va,
361 new_val.pte, flags);
362 else
363 return _hypercall4(int, update_va_mapping, va,
364 new_val.pte, new_val.pte >> 32, flags);
365 }
366 extern int __must_check xen_event_channel_op_compat(int, void *);
367
368 static inline int
HYPERVISOR_event_channel_op(int cmd,void * arg)369 HYPERVISOR_event_channel_op(int cmd, void *arg)
370 {
371 int rc = _hypercall2(int, event_channel_op, cmd, arg);
372 if (unlikely(rc == -ENOSYS))
373 rc = xen_event_channel_op_compat(cmd, arg);
374 return rc;
375 }
376
377 static inline int
HYPERVISOR_xen_version(int cmd,void * arg)378 HYPERVISOR_xen_version(int cmd, void *arg)
379 {
380 return _hypercall2(int, xen_version, cmd, arg);
381 }
382
383 static inline int
HYPERVISOR_console_io(int cmd,int count,char * str)384 HYPERVISOR_console_io(int cmd, int count, char *str)
385 {
386 return _hypercall3(int, console_io, cmd, count, str);
387 }
388
389 extern int __must_check xen_physdev_op_compat(int, void *);
390
391 static inline int
HYPERVISOR_physdev_op(int cmd,void * arg)392 HYPERVISOR_physdev_op(int cmd, void *arg)
393 {
394 int rc = _hypercall2(int, physdev_op, cmd, arg);
395 if (unlikely(rc == -ENOSYS))
396 rc = xen_physdev_op_compat(cmd, arg);
397 return rc;
398 }
399
400 static inline int
HYPERVISOR_grant_table_op(unsigned int cmd,void * uop,unsigned int count)401 HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count)
402 {
403 return _hypercall3(int, grant_table_op, cmd, uop, count);
404 }
405
406 static inline int
HYPERVISOR_update_va_mapping_otherdomain(unsigned long va,pte_t new_val,unsigned long flags,domid_t domid)407 HYPERVISOR_update_va_mapping_otherdomain(unsigned long va, pte_t new_val,
408 unsigned long flags, domid_t domid)
409 {
410 if (sizeof(new_val) == sizeof(long))
411 return _hypercall4(int, update_va_mapping_otherdomain, va,
412 new_val.pte, flags, domid);
413 else
414 return _hypercall5(int, update_va_mapping_otherdomain, va,
415 new_val.pte, new_val.pte >> 32,
416 flags, domid);
417 }
418
419 static inline int
HYPERVISOR_vm_assist(unsigned int cmd,unsigned int type)420 HYPERVISOR_vm_assist(unsigned int cmd, unsigned int type)
421 {
422 return _hypercall2(int, vm_assist, cmd, type);
423 }
424
425 static inline int
HYPERVISOR_vcpu_op(int cmd,int vcpuid,void * extra_args)426 HYPERVISOR_vcpu_op(int cmd, int vcpuid, void *extra_args)
427 {
428 return _hypercall3(int, vcpu_op, cmd, vcpuid, extra_args);
429 }
430
431 #ifdef CONFIG_X86_64
432 static inline int
HYPERVISOR_set_segment_base(int reg,unsigned long value)433 HYPERVISOR_set_segment_base(int reg, unsigned long value)
434 {
435 return _hypercall2(int, set_segment_base, reg, value);
436 }
437 #endif
438
439 static inline int
HYPERVISOR_suspend(unsigned long start_info_mfn)440 HYPERVISOR_suspend(unsigned long start_info_mfn)
441 {
442 struct sched_shutdown r = { .reason = SHUTDOWN_suspend };
443
444 /*
445 * For a PV guest the tools require that the start_info mfn be
446 * present in rdx/edx when the hypercall is made. Per the
447 * hypercall calling convention this is the third hypercall
448 * argument, which is start_info_mfn here.
449 */
450 return _hypercall3(int, sched_op, SCHEDOP_shutdown, &r, start_info_mfn);
451 }
452
453 static inline int
HYPERVISOR_nmi_op(unsigned long op,unsigned long arg)454 HYPERVISOR_nmi_op(unsigned long op, unsigned long arg)
455 {
456 return _hypercall2(int, nmi_op, op, arg);
457 }
458
459 static inline unsigned long __must_check
HYPERVISOR_hvm_op(int op,void * arg)460 HYPERVISOR_hvm_op(int op, void *arg)
461 {
462 return _hypercall2(unsigned long, hvm_op, op, arg);
463 }
464
465 static inline int
HYPERVISOR_tmem_op(struct tmem_op * op)466 HYPERVISOR_tmem_op(
467 struct tmem_op *op)
468 {
469 return _hypercall1(int, tmem_op, op);
470 }
471
472 static inline int
HYPERVISOR_xenpmu_op(unsigned int op,void * arg)473 HYPERVISOR_xenpmu_op(unsigned int op, void *arg)
474 {
475 return _hypercall2(int, xenpmu_op, op, arg);
476 }
477
478 static inline void
MULTI_fpu_taskswitch(struct multicall_entry * mcl,int set)479 MULTI_fpu_taskswitch(struct multicall_entry *mcl, int set)
480 {
481 mcl->op = __HYPERVISOR_fpu_taskswitch;
482 mcl->args[0] = set;
483
484 trace_xen_mc_entry(mcl, 1);
485 }
486
487 static inline void
MULTI_update_va_mapping(struct multicall_entry * mcl,unsigned long va,pte_t new_val,unsigned long flags)488 MULTI_update_va_mapping(struct multicall_entry *mcl, unsigned long va,
489 pte_t new_val, unsigned long flags)
490 {
491 mcl->op = __HYPERVISOR_update_va_mapping;
492 mcl->args[0] = va;
493 if (sizeof(new_val) == sizeof(long)) {
494 mcl->args[1] = new_val.pte;
495 mcl->args[2] = flags;
496 } else {
497 mcl->args[1] = new_val.pte;
498 mcl->args[2] = new_val.pte >> 32;
499 mcl->args[3] = flags;
500 }
501
502 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 3 : 4);
503 }
504
505 static inline void
MULTI_grant_table_op(struct multicall_entry * mcl,unsigned int cmd,void * uop,unsigned int count)506 MULTI_grant_table_op(struct multicall_entry *mcl, unsigned int cmd,
507 void *uop, unsigned int count)
508 {
509 mcl->op = __HYPERVISOR_grant_table_op;
510 mcl->args[0] = cmd;
511 mcl->args[1] = (unsigned long)uop;
512 mcl->args[2] = count;
513
514 trace_xen_mc_entry(mcl, 3);
515 }
516
517 static inline void
MULTI_update_va_mapping_otherdomain(struct multicall_entry * mcl,unsigned long va,pte_t new_val,unsigned long flags,domid_t domid)518 MULTI_update_va_mapping_otherdomain(struct multicall_entry *mcl, unsigned long va,
519 pte_t new_val, unsigned long flags,
520 domid_t domid)
521 {
522 mcl->op = __HYPERVISOR_update_va_mapping_otherdomain;
523 mcl->args[0] = va;
524 if (sizeof(new_val) == sizeof(long)) {
525 mcl->args[1] = new_val.pte;
526 mcl->args[2] = flags;
527 mcl->args[3] = domid;
528 } else {
529 mcl->args[1] = new_val.pte;
530 mcl->args[2] = new_val.pte >> 32;
531 mcl->args[3] = flags;
532 mcl->args[4] = domid;
533 }
534
535 trace_xen_mc_entry(mcl, sizeof(new_val) == sizeof(long) ? 4 : 5);
536 }
537
538 static inline void
MULTI_update_descriptor(struct multicall_entry * mcl,u64 maddr,struct desc_struct desc)539 MULTI_update_descriptor(struct multicall_entry *mcl, u64 maddr,
540 struct desc_struct desc)
541 {
542 mcl->op = __HYPERVISOR_update_descriptor;
543 if (sizeof(maddr) == sizeof(long)) {
544 mcl->args[0] = maddr;
545 mcl->args[1] = *(unsigned long *)&desc;
546 } else {
547 mcl->args[0] = maddr;
548 mcl->args[1] = maddr >> 32;
549 mcl->args[2] = desc.a;
550 mcl->args[3] = desc.b;
551 }
552
553 trace_xen_mc_entry(mcl, sizeof(maddr) == sizeof(long) ? 2 : 4);
554 }
555
556 static inline void
MULTI_memory_op(struct multicall_entry * mcl,unsigned int cmd,void * arg)557 MULTI_memory_op(struct multicall_entry *mcl, unsigned int cmd, void *arg)
558 {
559 mcl->op = __HYPERVISOR_memory_op;
560 mcl->args[0] = cmd;
561 mcl->args[1] = (unsigned long)arg;
562
563 trace_xen_mc_entry(mcl, 2);
564 }
565
566 static inline void
MULTI_mmu_update(struct multicall_entry * mcl,struct mmu_update * req,int count,int * success_count,domid_t domid)567 MULTI_mmu_update(struct multicall_entry *mcl, struct mmu_update *req,
568 int count, int *success_count, domid_t domid)
569 {
570 mcl->op = __HYPERVISOR_mmu_update;
571 mcl->args[0] = (unsigned long)req;
572 mcl->args[1] = count;
573 mcl->args[2] = (unsigned long)success_count;
574 mcl->args[3] = domid;
575
576 trace_xen_mc_entry(mcl, 4);
577 }
578
579 static inline void
MULTI_mmuext_op(struct multicall_entry * mcl,struct mmuext_op * op,int count,int * success_count,domid_t domid)580 MULTI_mmuext_op(struct multicall_entry *mcl, struct mmuext_op *op, int count,
581 int *success_count, domid_t domid)
582 {
583 mcl->op = __HYPERVISOR_mmuext_op;
584 mcl->args[0] = (unsigned long)op;
585 mcl->args[1] = count;
586 mcl->args[2] = (unsigned long)success_count;
587 mcl->args[3] = domid;
588
589 trace_xen_mc_entry(mcl, 4);
590 }
591
592 static inline void
MULTI_set_gdt(struct multicall_entry * mcl,unsigned long * frames,int entries)593 MULTI_set_gdt(struct multicall_entry *mcl, unsigned long *frames, int entries)
594 {
595 mcl->op = __HYPERVISOR_set_gdt;
596 mcl->args[0] = (unsigned long)frames;
597 mcl->args[1] = entries;
598
599 trace_xen_mc_entry(mcl, 2);
600 }
601
602 static inline void
MULTI_stack_switch(struct multicall_entry * mcl,unsigned long ss,unsigned long esp)603 MULTI_stack_switch(struct multicall_entry *mcl,
604 unsigned long ss, unsigned long esp)
605 {
606 mcl->op = __HYPERVISOR_stack_switch;
607 mcl->args[0] = ss;
608 mcl->args[1] = esp;
609
610 trace_xen_mc_entry(mcl, 2);
611 }
612
613 #endif /* _ASM_X86_XEN_HYPERCALL_H */
614