x86: adds paravirt hook for swapgs
[sfrench/cifs-2.6.git] / include / asm-x86 / paravirt.h
1 #ifndef __ASM_PARAVIRT_H
2 #define __ASM_PARAVIRT_H
3 /* Various instructions on x86 need to be replaced for
4  * para-virtualization: those hooks are defined here. */
5
6 #ifdef CONFIG_PARAVIRT
7 #include <asm/page.h>
8 #include <asm/asm.h>
9
10 /* Bitmask of what can be clobbered: usually at least eax. */
11 #define CLBR_NONE 0x0
12 #define CLBR_EAX 0x1
13 #define CLBR_ECX 0x2
14 #define CLBR_EDX 0x4
15 #define CLBR_ANY 0x7
16
17 #ifndef __ASSEMBLY__
18 #include <linux/types.h>
19 #include <linux/cpumask.h>
20 #include <asm/kmap_types.h>
21 #include <asm/desc_defs.h>
22
23 struct page;
24 struct thread_struct;
25 struct desc_ptr;
26 struct tss_struct;
27 struct mm_struct;
28 struct desc_struct;
29
30 /* general info */
31 struct pv_info {
32         unsigned int kernel_rpl;
33         int shared_kernel_pmd;
34         int paravirt_enabled;
35         const char *name;
36 };
37
38 struct pv_init_ops {
39         /*
40          * Patch may replace one of the defined code sequences with
41          * arbitrary code, subject to the same register constraints.
42          * This generally means the code is not free to clobber any
43          * registers other than EAX.  The patch function should return
44          * the number of bytes of code generated, as we nop pad the
45          * rest in generic code.
46          */
47         unsigned (*patch)(u8 type, u16 clobber, void *insnbuf,
48                           unsigned long addr, unsigned len);
49
50         /* Basic arch-specific setup */
51         void (*arch_setup)(void);
52         char *(*memory_setup)(void);
53         void (*post_allocator_init)(void);
54
55         /* Print a banner to identify the environment */
56         void (*banner)(void);
57 };
58
59
60 struct pv_lazy_ops {
61         /* Set deferred update mode, used for batching operations. */
62         void (*enter)(void);
63         void (*leave)(void);
64 };
65
66 struct pv_time_ops {
67         void (*time_init)(void);
68
69         /* Set and set time of day */
70         unsigned long (*get_wallclock)(void);
71         int (*set_wallclock)(unsigned long);
72
73         unsigned long long (*sched_clock)(void);
74         unsigned long (*get_cpu_khz)(void);
75 };
76
77 struct pv_cpu_ops {
78         /* hooks for various privileged instructions */
79         unsigned long (*get_debugreg)(int regno);
80         void (*set_debugreg)(int regno, unsigned long value);
81
82         void (*clts)(void);
83
84         unsigned long (*read_cr0)(void);
85         void (*write_cr0)(unsigned long);
86
87         unsigned long (*read_cr4_safe)(void);
88         unsigned long (*read_cr4)(void);
89         void (*write_cr4)(unsigned long);
90
91         /* Segment descriptor handling */
92         void (*load_tr_desc)(void);
93         void (*load_gdt)(const struct desc_ptr *);
94         void (*load_idt)(const struct desc_ptr *);
95         void (*store_gdt)(struct desc_ptr *);
96         void (*store_idt)(struct desc_ptr *);
97         void (*set_ldt)(const void *desc, unsigned entries);
98         unsigned long (*store_tr)(void);
99         void (*load_tls)(struct thread_struct *t, unsigned int cpu);
100         void (*write_ldt_entry)(struct desc_struct *ldt, int entrynum,
101                                 const void *desc);
102         void (*write_gdt_entry)(struct desc_struct *,
103                                 int entrynum, const void *desc, int size);
104         void (*write_idt_entry)(gate_desc *,
105                                 int entrynum, const gate_desc *gate);
106         void (*load_sp0)(struct tss_struct *tss, struct thread_struct *t);
107
108         void (*set_iopl_mask)(unsigned mask);
109
110         void (*wbinvd)(void);
111         void (*io_delay)(void);
112
113         /* cpuid emulation, mostly so that caps bits can be disabled */
114         void (*cpuid)(unsigned int *eax, unsigned int *ebx,
115                       unsigned int *ecx, unsigned int *edx);
116
117         /* MSR, PMC and TSR operations.
118            err = 0/-EFAULT.  wrmsr returns 0/-EFAULT. */
119         u64 (*read_msr)(unsigned int msr, int *err);
120         int (*write_msr)(unsigned int msr, unsigned low, unsigned high);
121
122         u64 (*read_tsc)(void);
123         u64 (*read_pmc)(int counter);
124         unsigned long long (*read_tscp)(unsigned int *aux);
125
126         /* These two are jmp to, not actually called. */
127         void (*irq_enable_syscall_ret)(void);
128         void (*iret)(void);
129
130         void (*swapgs)(void);
131
132         struct pv_lazy_ops lazy_mode;
133 };
134
135 struct pv_irq_ops {
136         void (*init_IRQ)(void);
137
138         /*
139          * Get/set interrupt state.  save_fl and restore_fl are only
140          * expected to use X86_EFLAGS_IF; all other bits
141          * returned from save_fl are undefined, and may be ignored by
142          * restore_fl.
143          */
144         unsigned long (*save_fl)(void);
145         void (*restore_fl)(unsigned long);
146         void (*irq_disable)(void);
147         void (*irq_enable)(void);
148         void (*safe_halt)(void);
149         void (*halt)(void);
150 };
151
152 struct pv_apic_ops {
153 #ifdef CONFIG_X86_LOCAL_APIC
154         /*
155          * Direct APIC operations, principally for VMI.  Ideally
156          * these shouldn't be in this interface.
157          */
158         void (*apic_write)(unsigned long reg, u32 v);
159         void (*apic_write_atomic)(unsigned long reg, u32 v);
160         u32 (*apic_read)(unsigned long reg);
161         void (*setup_boot_clock)(void);
162         void (*setup_secondary_clock)(void);
163
164         void (*startup_ipi_hook)(int phys_apicid,
165                                  unsigned long start_eip,
166                                  unsigned long start_esp);
167 #endif
168 };
169
170 struct pv_mmu_ops {
171         /*
172          * Called before/after init_mm pagetable setup. setup_start
173          * may reset %cr3, and may pre-install parts of the pagetable;
174          * pagetable setup is expected to preserve any existing
175          * mapping.
176          */
177         void (*pagetable_setup_start)(pgd_t *pgd_base);
178         void (*pagetable_setup_done)(pgd_t *pgd_base);
179
180         unsigned long (*read_cr2)(void);
181         void (*write_cr2)(unsigned long);
182
183         unsigned long (*read_cr3)(void);
184         void (*write_cr3)(unsigned long);
185
186         /*
187          * Hooks for intercepting the creation/use/destruction of an
188          * mm_struct.
189          */
190         void (*activate_mm)(struct mm_struct *prev,
191                             struct mm_struct *next);
192         void (*dup_mmap)(struct mm_struct *oldmm,
193                          struct mm_struct *mm);
194         void (*exit_mmap)(struct mm_struct *mm);
195
196
197         /* TLB operations */
198         void (*flush_tlb_user)(void);
199         void (*flush_tlb_kernel)(void);
200         void (*flush_tlb_single)(unsigned long addr);
201         void (*flush_tlb_others)(const cpumask_t *cpus, struct mm_struct *mm,
202                                  unsigned long va);
203
204         /* Hooks for allocating/releasing pagetable pages */
205         void (*alloc_pt)(struct mm_struct *mm, u32 pfn);
206         void (*alloc_pd)(u32 pfn);
207         void (*alloc_pd_clone)(u32 pfn, u32 clonepfn, u32 start, u32 count);
208         void (*release_pt)(u32 pfn);
209         void (*release_pd)(u32 pfn);
210
211         /* Pagetable manipulation functions */
212         void (*set_pte)(pte_t *ptep, pte_t pteval);
213         void (*set_pte_at)(struct mm_struct *mm, unsigned long addr,
214                            pte_t *ptep, pte_t pteval);
215         void (*set_pmd)(pmd_t *pmdp, pmd_t pmdval);
216         void (*pte_update)(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
217         void (*pte_update_defer)(struct mm_struct *mm,
218                                  unsigned long addr, pte_t *ptep);
219
220 #ifdef CONFIG_X86_PAE
221         void (*set_pte_atomic)(pte_t *ptep, pte_t pteval);
222         void (*set_pte_present)(struct mm_struct *mm, unsigned long addr,
223                                 pte_t *ptep, pte_t pte);
224         void (*set_pud)(pud_t *pudp, pud_t pudval);
225         void (*pte_clear)(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
226         void (*pmd_clear)(pmd_t *pmdp);
227
228         unsigned long long (*pte_val)(pte_t);
229         unsigned long long (*pmd_val)(pmd_t);
230         unsigned long long (*pgd_val)(pgd_t);
231
232         pte_t (*make_pte)(unsigned long long pte);
233         pmd_t (*make_pmd)(unsigned long long pmd);
234         pgd_t (*make_pgd)(unsigned long long pgd);
235 #else
236         unsigned long (*pte_val)(pte_t);
237         unsigned long (*pgd_val)(pgd_t);
238
239         pte_t (*make_pte)(unsigned long pte);
240         pgd_t (*make_pgd)(unsigned long pgd);
241 #endif
242
243 #ifdef CONFIG_HIGHPTE
244         void *(*kmap_atomic_pte)(struct page *page, enum km_type type);
245 #endif
246
247         struct pv_lazy_ops lazy_mode;
248 };
249
250 /* This contains all the paravirt structures: we get a convenient
251  * number for each function using the offset which we use to indicate
252  * what to patch. */
253 struct paravirt_patch_template
254 {
255         struct pv_init_ops pv_init_ops;
256         struct pv_time_ops pv_time_ops;
257         struct pv_cpu_ops pv_cpu_ops;
258         struct pv_irq_ops pv_irq_ops;
259         struct pv_apic_ops pv_apic_ops;
260         struct pv_mmu_ops pv_mmu_ops;
261 };
262
263 extern struct pv_info pv_info;
264 extern struct pv_init_ops pv_init_ops;
265 extern struct pv_time_ops pv_time_ops;
266 extern struct pv_cpu_ops pv_cpu_ops;
267 extern struct pv_irq_ops pv_irq_ops;
268 extern struct pv_apic_ops pv_apic_ops;
269 extern struct pv_mmu_ops pv_mmu_ops;
270
271 #define PARAVIRT_PATCH(x)                                       \
272         (offsetof(struct paravirt_patch_template, x) / sizeof(void *))
273
274 #define paravirt_type(op)                               \
275         [paravirt_typenum] "i" (PARAVIRT_PATCH(op)),    \
276         [paravirt_opptr] "m" (op)
277 #define paravirt_clobber(clobber)               \
278         [paravirt_clobber] "i" (clobber)
279
280 /*
281  * Generate some code, and mark it as patchable by the
282  * apply_paravirt() alternate instruction patcher.
283  */
284 #define _paravirt_alt(insn_string, type, clobber)       \
285         "771:\n\t" insn_string "\n" "772:\n"            \
286         ".pushsection .parainstructions,\"a\"\n"        \
287         _ASM_ALIGN "\n"                                 \
288         _ASM_PTR " 771b\n"                              \
289         "  .byte " type "\n"                            \
290         "  .byte 772b-771b\n"                           \
291         "  .short " clobber "\n"                        \
292         ".popsection\n"
293
294 /* Generate patchable code, with the default asm parameters. */
295 #define paravirt_alt(insn_string)                                       \
296         _paravirt_alt(insn_string, "%c[paravirt_typenum]", "%c[paravirt_clobber]")
297
298 unsigned paravirt_patch_nop(void);
299 unsigned paravirt_patch_ignore(unsigned len);
300 unsigned paravirt_patch_call(void *insnbuf,
301                              const void *target, u16 tgt_clobbers,
302                              unsigned long addr, u16 site_clobbers,
303                              unsigned len);
304 unsigned paravirt_patch_jmp(void *insnbuf, const void *target,
305                             unsigned long addr, unsigned len);
306 unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
307                                 unsigned long addr, unsigned len);
308
309 unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
310                               const char *start, const char *end);
311
312 int paravirt_disable_iospace(void);
313
314 /*
315  * This generates an indirect call based on the operation type number.
316  * The type number, computed in PARAVIRT_PATCH, is derived from the
317  * offset into the paravirt_patch_template structure, and can therefore be
318  * freely converted back into a structure offset.
319  */
320 #define PARAVIRT_CALL   "call *%[paravirt_opptr];"
321
322 /*
323  * These macros are intended to wrap calls through one of the paravirt
324  * ops structs, so that they can be later identified and patched at
325  * runtime.
326  *
327  * Normally, a call to a pv_op function is a simple indirect call:
328  * (pv_op_struct.operations)(args...).
329  *
330  * Unfortunately, this is a relatively slow operation for modern CPUs,
331  * because it cannot necessarily determine what the destination
332  * address is.  In this case, the address is a runtime constant, so at
333  * the very least we can patch the call to e a simple direct call, or
334  * ideally, patch an inline implementation into the callsite.  (Direct
335  * calls are essentially free, because the call and return addresses
336  * are completely predictable.)
337  *
338  * For i386, these macros rely on the standard gcc "regparm(3)" calling
339  * convention, in which the first three arguments are placed in %eax,
340  * %edx, %ecx (in that order), and the remaining arguments are placed
341  * on the stack.  All caller-save registers (eax,edx,ecx) are expected
342  * to be modified (either clobbered or used for return values).
343  * X86_64, on the other hand, already specifies a register-based calling
344  * conventions, returning at %rax, with parameteres going on %rdi, %rsi,
345  * %rdx, and %rcx. Note that for this reason, x86_64 does not need any
346  * special handling for dealing with 4 arguments, unlike i386.
347  * However, x86_64 also have to clobber all caller saved registers, which
348  * unfortunately, are quite a bit (r8 - r11)
349  *
350  * The call instruction itself is marked by placing its start address
351  * and size into the .parainstructions section, so that
352  * apply_paravirt() in arch/i386/kernel/alternative.c can do the
353  * appropriate patching under the control of the backend pv_init_ops
354  * implementation.
355  *
356  * Unfortunately there's no way to get gcc to generate the args setup
357  * for the call, and then allow the call itself to be generated by an
358  * inline asm.  Because of this, we must do the complete arg setup and
359  * return value handling from within these macros.  This is fairly
360  * cumbersome.
361  *
362  * There are 5 sets of PVOP_* macros for dealing with 0-4 arguments.
363  * It could be extended to more arguments, but there would be little
364  * to be gained from that.  For each number of arguments, there are
365  * the two VCALL and CALL variants for void and non-void functions.
366  *
367  * When there is a return value, the invoker of the macro must specify
368  * the return type.  The macro then uses sizeof() on that type to
369  * determine whether its a 32 or 64 bit value, and places the return
370  * in the right register(s) (just %eax for 32-bit, and %edx:%eax for
371  * 64-bit). For x86_64 machines, it just returns at %rax regardless of
372  * the return value size.
373  *
374  * 64-bit arguments are passed as a pair of adjacent 32-bit arguments
375  * i386 also passes 64-bit arguments as a pair of adjacent 32-bit arguments
376  * in low,high order
377  *
378  * Small structures are passed and returned in registers.  The macro
379  * calling convention can't directly deal with this, so the wrapper
380  * functions must do this.
381  *
382  * These PVOP_* macros are only defined within this header.  This
383  * means that all uses must be wrapped in inline functions.  This also
384  * makes sure the incoming and outgoing types are always correct.
385  */
386 #ifdef CONFIG_X86_32
387 #define PVOP_VCALL_ARGS                 unsigned long __eax, __edx, __ecx
388 #define PVOP_CALL_ARGS                  PVOP_VCALL_ARGS
389 #define PVOP_VCALL_CLOBBERS             "=a" (__eax), "=d" (__edx),     \
390                                         "=c" (__ecx)
391 #define PVOP_CALL_CLOBBERS              PVOP_VCALL_CLOBBERS
392 #define EXTRA_CLOBBERS
393 #define VEXTRA_CLOBBERS
394 #else
395 #define PVOP_VCALL_ARGS         unsigned long __edi, __esi, __edx, __ecx
396 #define PVOP_CALL_ARGS          PVOP_VCALL_ARGS, __eax
397 #define PVOP_VCALL_CLOBBERS     "=D" (__edi),                           \
398                                 "=S" (__esi), "=d" (__edx),             \
399                                 "=c" (__ecx)
400
401 #define PVOP_CALL_CLOBBERS      PVOP_VCALL_CLOBBERS, "=a" (__eax)
402
403 #define EXTRA_CLOBBERS   , "r8", "r9", "r10", "r11"
404 #define VEXTRA_CLOBBERS  , "rax", "r8", "r9", "r10", "r11"
405 #endif
406
407 #define __PVOP_CALL(rettype, op, pre, post, ...)                        \
408         ({                                                              \
409                 rettype __ret;                                          \
410                 PVOP_CALL_ARGS;                                 \
411                 /* This is 32-bit specific, but is okay in 64-bit */    \
412                 /* since this condition will never hold */              \
413                 if (sizeof(rettype) > sizeof(unsigned long)) {          \
414                         asm volatile(pre                                \
415                                      paravirt_alt(PARAVIRT_CALL)        \
416                                      post                               \
417                                      : PVOP_CALL_CLOBBERS               \
418                                      : paravirt_type(op),               \
419                                        paravirt_clobber(CLBR_ANY),      \
420                                        ##__VA_ARGS__                    \
421                                      : "memory", "cc" EXTRA_CLOBBERS);  \
422                         __ret = (rettype)((((u64)__edx) << 32) | __eax); \
423                 } else {                                                \
424                         asm volatile(pre                                \
425                                      paravirt_alt(PARAVIRT_CALL)        \
426                                      post                               \
427                                      : PVOP_CALL_CLOBBERS               \
428                                      : paravirt_type(op),               \
429                                        paravirt_clobber(CLBR_ANY),      \
430                                        ##__VA_ARGS__                    \
431                                      : "memory", "cc" EXTRA_CLOBBERS);  \
432                         __ret = (rettype)__eax;                         \
433                 }                                                       \
434                 __ret;                                                  \
435         })
436 #define __PVOP_VCALL(op, pre, post, ...)                                \
437         ({                                                              \
438                 PVOP_VCALL_ARGS;                                        \
439                 asm volatile(pre                                        \
440                              paravirt_alt(PARAVIRT_CALL)                \
441                              post                                       \
442                              : PVOP_VCALL_CLOBBERS                      \
443                              : paravirt_type(op),                       \
444                                paravirt_clobber(CLBR_ANY),              \
445                                ##__VA_ARGS__                            \
446                              : "memory", "cc" VEXTRA_CLOBBERS);         \
447         })
448
449 #define PVOP_CALL0(rettype, op)                                         \
450         __PVOP_CALL(rettype, op, "", "")
451 #define PVOP_VCALL0(op)                                                 \
452         __PVOP_VCALL(op, "", "")
453
454 #define PVOP_CALL1(rettype, op, arg1)                                   \
455         __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)))
456 #define PVOP_VCALL1(op, arg1)                                           \
457         __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)))
458
459 #define PVOP_CALL2(rettype, op, arg1, arg2)                             \
460         __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)),   \
461         "1" ((unsigned long)(arg2)))
462 #define PVOP_VCALL2(op, arg1, arg2)                                     \
463         __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)),           \
464         "1" ((unsigned long)(arg2)))
465
466 #define PVOP_CALL3(rettype, op, arg1, arg2, arg3)                       \
467         __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)),   \
468         "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
469 #define PVOP_VCALL3(op, arg1, arg2, arg3)                               \
470         __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)),           \
471         "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
472
473 /* This is the only difference in x86_64. We can make it much simpler */
474 #ifdef CONFIG_X86_32
475 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4)                 \
476         __PVOP_CALL(rettype, op,                                        \
477                     "push %[_arg4];", "lea 4(%%esp),%%esp;",            \
478                     "0" ((u32)(arg1)), "1" ((u32)(arg2)),               \
479                     "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
480 #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4)                         \
481         __PVOP_VCALL(op,                                                \
482                     "push %[_arg4];", "lea 4(%%esp),%%esp;",            \
483                     "0" ((u32)(arg1)), "1" ((u32)(arg2)),               \
484                     "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
485 #else
486 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4)                 \
487         __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)),   \
488         "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)),         \
489         "3"((unsigned long)(arg4)))
490 #define PVOP_VCALL4(op, arg1, arg2, arg3, arg4)                         \
491         __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)),           \
492         "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)),         \
493         "3"((unsigned long)(arg4)))
494 #endif
495
496 static inline int paravirt_enabled(void)
497 {
498         return pv_info.paravirt_enabled;
499 }
500
501 static inline void load_sp0(struct tss_struct *tss,
502                              struct thread_struct *thread)
503 {
504         PVOP_VCALL2(pv_cpu_ops.load_sp0, tss, thread);
505 }
506
507 #define ARCH_SETUP                      pv_init_ops.arch_setup();
508 static inline unsigned long get_wallclock(void)
509 {
510         return PVOP_CALL0(unsigned long, pv_time_ops.get_wallclock);
511 }
512
513 static inline int set_wallclock(unsigned long nowtime)
514 {
515         return PVOP_CALL1(int, pv_time_ops.set_wallclock, nowtime);
516 }
517
518 static inline void (*choose_time_init(void))(void)
519 {
520         return pv_time_ops.time_init;
521 }
522
523 /* The paravirtualized CPUID instruction. */
524 static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
525                            unsigned int *ecx, unsigned int *edx)
526 {
527         PVOP_VCALL4(pv_cpu_ops.cpuid, eax, ebx, ecx, edx);
528 }
529
530 /*
531  * These special macros can be used to get or set a debugging register
532  */
533 static inline unsigned long paravirt_get_debugreg(int reg)
534 {
535         return PVOP_CALL1(unsigned long, pv_cpu_ops.get_debugreg, reg);
536 }
537 #define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
538 static inline void set_debugreg(unsigned long val, int reg)
539 {
540         PVOP_VCALL2(pv_cpu_ops.set_debugreg, reg, val);
541 }
542
543 static inline void clts(void)
544 {
545         PVOP_VCALL0(pv_cpu_ops.clts);
546 }
547
548 static inline unsigned long read_cr0(void)
549 {
550         return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr0);
551 }
552
553 static inline void write_cr0(unsigned long x)
554 {
555         PVOP_VCALL1(pv_cpu_ops.write_cr0, x);
556 }
557
558 static inline unsigned long read_cr2(void)
559 {
560         return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr2);
561 }
562
563 static inline void write_cr2(unsigned long x)
564 {
565         PVOP_VCALL1(pv_mmu_ops.write_cr2, x);
566 }
567
568 static inline unsigned long read_cr3(void)
569 {
570         return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr3);
571 }
572
573 static inline void write_cr3(unsigned long x)
574 {
575         PVOP_VCALL1(pv_mmu_ops.write_cr3, x);
576 }
577
578 static inline unsigned long read_cr4(void)
579 {
580         return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4);
581 }
582 static inline unsigned long read_cr4_safe(void)
583 {
584         return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4_safe);
585 }
586
587 static inline void write_cr4(unsigned long x)
588 {
589         PVOP_VCALL1(pv_cpu_ops.write_cr4, x);
590 }
591
592 static inline void raw_safe_halt(void)
593 {
594         PVOP_VCALL0(pv_irq_ops.safe_halt);
595 }
596
597 static inline void halt(void)
598 {
599         PVOP_VCALL0(pv_irq_ops.safe_halt);
600 }
601
602 static inline void wbinvd(void)
603 {
604         PVOP_VCALL0(pv_cpu_ops.wbinvd);
605 }
606
607 #define get_kernel_rpl()  (pv_info.kernel_rpl)
608
609 static inline u64 paravirt_read_msr(unsigned msr, int *err)
610 {
611         return PVOP_CALL2(u64, pv_cpu_ops.read_msr, msr, err);
612 }
613 static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
614 {
615         return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
616 }
617
618 /* These should all do BUG_ON(_err), but our headers are too tangled. */
619 #define rdmsr(msr,val1,val2) do {               \
620         int _err;                               \
621         u64 _l = paravirt_read_msr(msr, &_err); \
622         val1 = (u32)_l;                         \
623         val2 = _l >> 32;                        \
624 } while(0)
625
626 #define wrmsr(msr,val1,val2) do {               \
627         paravirt_write_msr(msr, val1, val2);    \
628 } while(0)
629
630 #define rdmsrl(msr,val) do {                    \
631         int _err;                               \
632         val = paravirt_read_msr(msr, &_err);    \
633 } while(0)
634
635 #define wrmsrl(msr,val)         wrmsr(msr, (u32)((u64)(val)), ((u64)(val))>>32)
636 #define wrmsr_safe(msr,a,b)     paravirt_write_msr(msr, a, b)
637
638 /* rdmsr with exception handling */
639 #define rdmsr_safe(msr,a,b) ({                  \
640         int _err;                               \
641         u64 _l = paravirt_read_msr(msr, &_err); \
642         (*a) = (u32)_l;                         \
643         (*b) = _l >> 32;                        \
644         _err; })
645
646
647 static inline u64 paravirt_read_tsc(void)
648 {
649         return PVOP_CALL0(u64, pv_cpu_ops.read_tsc);
650 }
651
652 #define rdtscl(low) do {                        \
653         u64 _l = paravirt_read_tsc();           \
654         low = (int)_l;                          \
655 } while(0)
656
657 #define rdtscll(val) (val = paravirt_read_tsc())
658
659 static inline unsigned long long paravirt_sched_clock(void)
660 {
661         return PVOP_CALL0(unsigned long long, pv_time_ops.sched_clock);
662 }
663 #define calculate_cpu_khz() (pv_time_ops.get_cpu_khz())
664
665 static inline unsigned long long paravirt_read_pmc(int counter)
666 {
667         return PVOP_CALL1(u64, pv_cpu_ops.read_pmc, counter);
668 }
669
670 #define rdpmc(counter,low,high) do {            \
671         u64 _l = paravirt_read_pmc(counter);    \
672         low = (u32)_l;                          \
673         high = _l >> 32;                        \
674 } while(0)
675
676 static inline unsigned long long paravirt_rdtscp(unsigned int *aux)
677 {
678         return PVOP_CALL1(u64, pv_cpu_ops.read_tscp, aux);
679 }
680
681 #define rdtscp(low, high, aux)                          \
682 do {                                                    \
683         int __aux;                                      \
684         unsigned long __val = paravirt_rdtscp(&__aux);  \
685         (low) = (u32)__val;                             \
686         (high) = (u32)(__val >> 32);                    \
687         (aux) = __aux;                                  \
688 } while (0)
689
690 #define rdtscpll(val, aux)                              \
691 do {                                                    \
692         unsigned long __aux;                            \
693         val = paravirt_rdtscp(&__aux);                  \
694         (aux) = __aux;                                  \
695 } while (0)
696
697 static inline void load_TR_desc(void)
698 {
699         PVOP_VCALL0(pv_cpu_ops.load_tr_desc);
700 }
701 static inline void load_gdt(const struct desc_ptr *dtr)
702 {
703         PVOP_VCALL1(pv_cpu_ops.load_gdt, dtr);
704 }
705 static inline void load_idt(const struct desc_ptr *dtr)
706 {
707         PVOP_VCALL1(pv_cpu_ops.load_idt, dtr);
708 }
709 static inline void set_ldt(const void *addr, unsigned entries)
710 {
711         PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries);
712 }
713 static inline void store_gdt(struct desc_ptr *dtr)
714 {
715         PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr);
716 }
717 static inline void store_idt(struct desc_ptr *dtr)
718 {
719         PVOP_VCALL1(pv_cpu_ops.store_idt, dtr);
720 }
721 static inline unsigned long paravirt_store_tr(void)
722 {
723         return PVOP_CALL0(unsigned long, pv_cpu_ops.store_tr);
724 }
725 #define store_tr(tr)    ((tr) = paravirt_store_tr())
726 static inline void load_TLS(struct thread_struct *t, unsigned cpu)
727 {
728         PVOP_VCALL2(pv_cpu_ops.load_tls, t, cpu);
729 }
730
731 static inline void write_ldt_entry(struct desc_struct *dt, int entry,
732                                    const void *desc)
733 {
734         PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc);
735 }
736
737 static inline void write_gdt_entry(struct desc_struct *dt, int entry,
738                                    void *desc, int type)
739 {
740         PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type);
741 }
742
743 static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
744 {
745         PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g);
746 }
747 static inline void set_iopl_mask(unsigned mask)
748 {
749         PVOP_VCALL1(pv_cpu_ops.set_iopl_mask, mask);
750 }
751
752 /* The paravirtualized I/O functions */
753 static inline void slow_down_io(void) {
754         pv_cpu_ops.io_delay();
755 #ifdef REALLY_SLOW_IO
756         pv_cpu_ops.io_delay();
757         pv_cpu_ops.io_delay();
758         pv_cpu_ops.io_delay();
759 #endif
760 }
761
762 #ifdef CONFIG_X86_LOCAL_APIC
763 /*
764  * Basic functions accessing APICs.
765  */
766 static inline void apic_write(unsigned long reg, u32 v)
767 {
768         PVOP_VCALL2(pv_apic_ops.apic_write, reg, v);
769 }
770
771 static inline void apic_write_atomic(unsigned long reg, u32 v)
772 {
773         PVOP_VCALL2(pv_apic_ops.apic_write_atomic, reg, v);
774 }
775
776 static inline u32 apic_read(unsigned long reg)
777 {
778         return PVOP_CALL1(unsigned long, pv_apic_ops.apic_read, reg);
779 }
780
781 static inline void setup_boot_clock(void)
782 {
783         PVOP_VCALL0(pv_apic_ops.setup_boot_clock);
784 }
785
786 static inline void setup_secondary_clock(void)
787 {
788         PVOP_VCALL0(pv_apic_ops.setup_secondary_clock);
789 }
790 #endif
791
792 static inline void paravirt_post_allocator_init(void)
793 {
794         if (pv_init_ops.post_allocator_init)
795                 (*pv_init_ops.post_allocator_init)();
796 }
797
798 static inline void paravirt_pagetable_setup_start(pgd_t *base)
799 {
800         (*pv_mmu_ops.pagetable_setup_start)(base);
801 }
802
803 static inline void paravirt_pagetable_setup_done(pgd_t *base)
804 {
805         (*pv_mmu_ops.pagetable_setup_done)(base);
806 }
807
808 #ifdef CONFIG_SMP
809 static inline void startup_ipi_hook(int phys_apicid, unsigned long start_eip,
810                                     unsigned long start_esp)
811 {
812         PVOP_VCALL3(pv_apic_ops.startup_ipi_hook,
813                     phys_apicid, start_eip, start_esp);
814 }
815 #endif
816
817 static inline void paravirt_activate_mm(struct mm_struct *prev,
818                                         struct mm_struct *next)
819 {
820         PVOP_VCALL2(pv_mmu_ops.activate_mm, prev, next);
821 }
822
823 static inline void arch_dup_mmap(struct mm_struct *oldmm,
824                                  struct mm_struct *mm)
825 {
826         PVOP_VCALL2(pv_mmu_ops.dup_mmap, oldmm, mm);
827 }
828
829 static inline void arch_exit_mmap(struct mm_struct *mm)
830 {
831         PVOP_VCALL1(pv_mmu_ops.exit_mmap, mm);
832 }
833
834 static inline void __flush_tlb(void)
835 {
836         PVOP_VCALL0(pv_mmu_ops.flush_tlb_user);
837 }
838 static inline void __flush_tlb_global(void)
839 {
840         PVOP_VCALL0(pv_mmu_ops.flush_tlb_kernel);
841 }
842 static inline void __flush_tlb_single(unsigned long addr)
843 {
844         PVOP_VCALL1(pv_mmu_ops.flush_tlb_single, addr);
845 }
846
847 static inline void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
848                                     unsigned long va)
849 {
850         PVOP_VCALL3(pv_mmu_ops.flush_tlb_others, &cpumask, mm, va);
851 }
852
853 static inline void paravirt_alloc_pt(struct mm_struct *mm, unsigned pfn)
854 {
855         PVOP_VCALL2(pv_mmu_ops.alloc_pt, mm, pfn);
856 }
857 static inline void paravirt_release_pt(unsigned pfn)
858 {
859         PVOP_VCALL1(pv_mmu_ops.release_pt, pfn);
860 }
861
862 static inline void paravirt_alloc_pd(unsigned pfn)
863 {
864         PVOP_VCALL1(pv_mmu_ops.alloc_pd, pfn);
865 }
866
867 static inline void paravirt_alloc_pd_clone(unsigned pfn, unsigned clonepfn,
868                                            unsigned start, unsigned count)
869 {
870         PVOP_VCALL4(pv_mmu_ops.alloc_pd_clone, pfn, clonepfn, start, count);
871 }
872 static inline void paravirt_release_pd(unsigned pfn)
873 {
874         PVOP_VCALL1(pv_mmu_ops.release_pd, pfn);
875 }
876
877 #ifdef CONFIG_HIGHPTE
878 static inline void *kmap_atomic_pte(struct page *page, enum km_type type)
879 {
880         unsigned long ret;
881         ret = PVOP_CALL2(unsigned long, pv_mmu_ops.kmap_atomic_pte, page, type);
882         return (void *)ret;
883 }
884 #endif
885
886 static inline void pte_update(struct mm_struct *mm, unsigned long addr,
887                               pte_t *ptep)
888 {
889         PVOP_VCALL3(pv_mmu_ops.pte_update, mm, addr, ptep);
890 }
891
892 static inline void pte_update_defer(struct mm_struct *mm, unsigned long addr,
893                                     pte_t *ptep)
894 {
895         PVOP_VCALL3(pv_mmu_ops.pte_update_defer, mm, addr, ptep);
896 }
897
898 #ifdef CONFIG_X86_PAE
899 static inline pte_t __pte(unsigned long long val)
900 {
901         unsigned long long ret = PVOP_CALL2(unsigned long long,
902                                             pv_mmu_ops.make_pte,
903                                             val, val >> 32);
904         return (pte_t) { ret, ret >> 32 };
905 }
906
907 static inline pmd_t __pmd(unsigned long long val)
908 {
909         return (pmd_t) { PVOP_CALL2(unsigned long long, pv_mmu_ops.make_pmd,
910                                     val, val >> 32) };
911 }
912
913 static inline pgd_t __pgd(unsigned long long val)
914 {
915         return (pgd_t) { PVOP_CALL2(unsigned long long, pv_mmu_ops.make_pgd,
916                                     val, val >> 32) };
917 }
918
919 static inline unsigned long long pte_val(pte_t x)
920 {
921         return PVOP_CALL2(unsigned long long, pv_mmu_ops.pte_val,
922                           x.pte_low, x.pte_high);
923 }
924
925 static inline unsigned long long pmd_val(pmd_t x)
926 {
927         return PVOP_CALL2(unsigned long long, pv_mmu_ops.pmd_val,
928                           x.pmd, x.pmd >> 32);
929 }
930
931 static inline unsigned long long pgd_val(pgd_t x)
932 {
933         return PVOP_CALL2(unsigned long long, pv_mmu_ops.pgd_val,
934                           x.pgd, x.pgd >> 32);
935 }
936
937 static inline void set_pte(pte_t *ptep, pte_t pteval)
938 {
939         PVOP_VCALL3(pv_mmu_ops.set_pte, ptep, pteval.pte_low, pteval.pte_high);
940 }
941
942 static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
943                               pte_t *ptep, pte_t pteval)
944 {
945         /* 5 arg words */
946         pv_mmu_ops.set_pte_at(mm, addr, ptep, pteval);
947 }
948
949 static inline void set_pte_atomic(pte_t *ptep, pte_t pteval)
950 {
951         PVOP_VCALL3(pv_mmu_ops.set_pte_atomic, ptep,
952                     pteval.pte_low, pteval.pte_high);
953 }
954
955 static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
956                                    pte_t *ptep, pte_t pte)
957 {
958         /* 5 arg words */
959         pv_mmu_ops.set_pte_present(mm, addr, ptep, pte);
960 }
961
962 static inline void set_pmd(pmd_t *pmdp, pmd_t pmdval)
963 {
964         PVOP_VCALL3(pv_mmu_ops.set_pmd, pmdp,
965                     pmdval.pmd, pmdval.pmd >> 32);
966 }
967
968 static inline void set_pud(pud_t *pudp, pud_t pudval)
969 {
970         PVOP_VCALL3(pv_mmu_ops.set_pud, pudp,
971                     pudval.pgd.pgd, pudval.pgd.pgd >> 32);
972 }
973
974 static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
975 {
976         PVOP_VCALL3(pv_mmu_ops.pte_clear, mm, addr, ptep);
977 }
978
979 static inline void pmd_clear(pmd_t *pmdp)
980 {
981         PVOP_VCALL1(pv_mmu_ops.pmd_clear, pmdp);
982 }
983
984 #else  /* !CONFIG_X86_PAE */
985
986 static inline pte_t __pte(unsigned long val)
987 {
988         return (pte_t) { PVOP_CALL1(unsigned long, pv_mmu_ops.make_pte, val) };
989 }
990
991 static inline pgd_t __pgd(unsigned long val)
992 {
993         return (pgd_t) { PVOP_CALL1(unsigned long, pv_mmu_ops.make_pgd, val) };
994 }
995
996 static inline unsigned long pte_val(pte_t x)
997 {
998         return PVOP_CALL1(unsigned long, pv_mmu_ops.pte_val, x.pte_low);
999 }
1000
1001 static inline unsigned long pgd_val(pgd_t x)
1002 {
1003         return PVOP_CALL1(unsigned long, pv_mmu_ops.pgd_val, x.pgd);
1004 }
1005
1006 static inline void set_pte(pte_t *ptep, pte_t pteval)
1007 {
1008         PVOP_VCALL2(pv_mmu_ops.set_pte, ptep, pteval.pte_low);
1009 }
1010
1011 static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1012                               pte_t *ptep, pte_t pteval)
1013 {
1014         PVOP_VCALL4(pv_mmu_ops.set_pte_at, mm, addr, ptep, pteval.pte_low);
1015 }
1016
1017 static inline void set_pmd(pmd_t *pmdp, pmd_t pmdval)
1018 {
1019         PVOP_VCALL2(pv_mmu_ops.set_pmd, pmdp, pmdval.pud.pgd.pgd);
1020 }
1021 #endif  /* CONFIG_X86_PAE */
1022
1023 /* Lazy mode for batching updates / context switch */
1024 enum paravirt_lazy_mode {
1025         PARAVIRT_LAZY_NONE,
1026         PARAVIRT_LAZY_MMU,
1027         PARAVIRT_LAZY_CPU,
1028 };
1029
1030 enum paravirt_lazy_mode paravirt_get_lazy_mode(void);
1031 void paravirt_enter_lazy_cpu(void);
1032 void paravirt_leave_lazy_cpu(void);
1033 void paravirt_enter_lazy_mmu(void);
1034 void paravirt_leave_lazy_mmu(void);
1035 void paravirt_leave_lazy(enum paravirt_lazy_mode mode);
1036
1037 #define  __HAVE_ARCH_ENTER_LAZY_CPU_MODE
1038 static inline void arch_enter_lazy_cpu_mode(void)
1039 {
1040         PVOP_VCALL0(pv_cpu_ops.lazy_mode.enter);
1041 }
1042
1043 static inline void arch_leave_lazy_cpu_mode(void)
1044 {
1045         PVOP_VCALL0(pv_cpu_ops.lazy_mode.leave);
1046 }
1047
1048 static inline void arch_flush_lazy_cpu_mode(void)
1049 {
1050         if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)) {
1051                 arch_leave_lazy_cpu_mode();
1052                 arch_enter_lazy_cpu_mode();
1053         }
1054 }
1055
1056
1057 #define  __HAVE_ARCH_ENTER_LAZY_MMU_MODE
1058 static inline void arch_enter_lazy_mmu_mode(void)
1059 {
1060         PVOP_VCALL0(pv_mmu_ops.lazy_mode.enter);
1061 }
1062
1063 static inline void arch_leave_lazy_mmu_mode(void)
1064 {
1065         PVOP_VCALL0(pv_mmu_ops.lazy_mode.leave);
1066 }
1067
1068 static inline void arch_flush_lazy_mmu_mode(void)
1069 {
1070         if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU)) {
1071                 arch_leave_lazy_mmu_mode();
1072                 arch_enter_lazy_mmu_mode();
1073         }
1074 }
1075
1076 void _paravirt_nop(void);
1077 #define paravirt_nop    ((void *)_paravirt_nop)
1078
1079 /* These all sit in the .parainstructions section to tell us what to patch. */
1080 struct paravirt_patch_site {
1081         u8 *instr;              /* original instructions */
1082         u8 instrtype;           /* type of this instruction */
1083         u8 len;                 /* length of original instruction */
1084         u16 clobbers;           /* what registers you may clobber */
1085 };
1086
1087 extern struct paravirt_patch_site __parainstructions[],
1088         __parainstructions_end[];
1089
1090 #ifdef CONFIG_X86_32
1091 #define PV_SAVE_REGS "pushl %%ecx; pushl %%edx;"
1092 #define PV_RESTORE_REGS "popl %%edx; popl %%ecx"
1093 #define PV_FLAGS_ARG "0"
1094 #define PV_EXTRA_CLOBBERS
1095 #define PV_VEXTRA_CLOBBERS
1096 #else
1097 /* We save some registers, but all of them, that's too much. We clobber all
1098  * caller saved registers but the argument parameter */
1099 #define PV_SAVE_REGS "pushq %%rdi;"
1100 #define PV_RESTORE_REGS "popq %%rdi;"
1101 #define PV_EXTRA_CLOBBERS EXTRA_CLOBBERS, "rcx" , "rdx"
1102 #define PV_VEXTRA_CLOBBERS EXTRA_CLOBBERS, "rdi", "rcx" , "rdx"
1103 #define PV_FLAGS_ARG "D"
1104 #endif
1105
1106 static inline unsigned long __raw_local_save_flags(void)
1107 {
1108         unsigned long f;
1109
1110         asm volatile(paravirt_alt(PV_SAVE_REGS
1111                                   PARAVIRT_CALL
1112                                   PV_RESTORE_REGS)
1113                      : "=a"(f)
1114                      : paravirt_type(pv_irq_ops.save_fl),
1115                        paravirt_clobber(CLBR_EAX)
1116                      : "memory", "cc" PV_VEXTRA_CLOBBERS);
1117         return f;
1118 }
1119
1120 static inline void raw_local_irq_restore(unsigned long f)
1121 {
1122         asm volatile(paravirt_alt(PV_SAVE_REGS
1123                                   PARAVIRT_CALL
1124                                   PV_RESTORE_REGS)
1125                      : "=a"(f)
1126                      : PV_FLAGS_ARG(f),
1127                        paravirt_type(pv_irq_ops.restore_fl),
1128                        paravirt_clobber(CLBR_EAX)
1129                      : "memory", "cc" PV_EXTRA_CLOBBERS);
1130 }
1131
1132 static inline void raw_local_irq_disable(void)
1133 {
1134         asm volatile(paravirt_alt(PV_SAVE_REGS
1135                                   PARAVIRT_CALL
1136                                   PV_RESTORE_REGS)
1137                      :
1138                      : paravirt_type(pv_irq_ops.irq_disable),
1139                        paravirt_clobber(CLBR_EAX)
1140                      : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
1141 }
1142
1143 static inline void raw_local_irq_enable(void)
1144 {
1145         asm volatile(paravirt_alt(PV_SAVE_REGS
1146                                   PARAVIRT_CALL
1147                                   PV_RESTORE_REGS)
1148                      :
1149                      : paravirt_type(pv_irq_ops.irq_enable),
1150                        paravirt_clobber(CLBR_EAX)
1151                      : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
1152 }
1153
1154 static inline unsigned long __raw_local_irq_save(void)
1155 {
1156         unsigned long f;
1157
1158         f = __raw_local_save_flags();
1159         raw_local_irq_disable();
1160         return f;
1161 }
1162
1163 /* Make sure as little as possible of this mess escapes. */
1164 #undef PARAVIRT_CALL
1165 #undef __PVOP_CALL
1166 #undef __PVOP_VCALL
1167 #undef PVOP_VCALL0
1168 #undef PVOP_CALL0
1169 #undef PVOP_VCALL1
1170 #undef PVOP_CALL1
1171 #undef PVOP_VCALL2
1172 #undef PVOP_CALL2
1173 #undef PVOP_VCALL3
1174 #undef PVOP_CALL3
1175 #undef PVOP_VCALL4
1176 #undef PVOP_CALL4
1177
1178 #else  /* __ASSEMBLY__ */
1179
1180 #define _PVSITE(ptype, clobbers, ops, word, algn)       \
1181 771:;                                           \
1182         ops;                                    \
1183 772:;                                           \
1184         .pushsection .parainstructions,"a";     \
1185          .align algn;                           \
1186          word 771b;                             \
1187          .byte ptype;                           \
1188          .byte 772b-771b;                       \
1189          .short clobbers;                       \
1190         .popsection
1191
1192
1193 #ifdef CONFIG_X86_64
1194 #define PV_SAVE_REGS   pushq %rax; pushq %rdi; pushq %rcx; pushq %rdx
1195 #define PV_RESTORE_REGS popq %rdx; popq %rcx; popq %rdi; popq %rax
1196 #define PARA_PATCH(struct, off)        ((PARAVIRT_PATCH_##struct + (off)) / 8)
1197 #define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .quad, 8)
1198 #else
1199 #define PV_SAVE_REGS   pushl %eax; pushl %edi; pushl %ecx; pushl %edx
1200 #define PV_RESTORE_REGS popl %edx; popl %ecx; popl %edi; popl %eax
1201 #define PARA_PATCH(struct, off)        ((PARAVIRT_PATCH_##struct + (off)) / 4)
1202 #define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
1203 #endif
1204
1205 #define INTERRUPT_RETURN                                                \
1206         PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_iret), CLBR_NONE,       \
1207                   jmp *%cs:pv_cpu_ops+PV_CPU_iret)
1208
1209 #define DISABLE_INTERRUPTS(clobbers)                                    \
1210         PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_disable), clobbers, \
1211                   PV_SAVE_REGS;                 \
1212                   call *%cs:pv_irq_ops+PV_IRQ_irq_disable;              \
1213                   PV_RESTORE_REGS;)                     \
1214
1215 #define ENABLE_INTERRUPTS(clobbers)                                     \
1216         PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_enable), clobbers,  \
1217                   PV_SAVE_REGS;                 \
1218                   call *%cs:pv_irq_ops+PV_IRQ_irq_enable;               \
1219                   PV_RESTORE_REGS;)
1220
1221 #define ENABLE_INTERRUPTS_SYSCALL_RET                                   \
1222         PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_syscall_ret),\
1223                   CLBR_NONE,                                            \
1224                   jmp *%cs:pv_cpu_ops+PV_CPU_irq_enable_syscall_ret)
1225
1226
1227 #ifdef CONFIG_X86_32
1228 #define GET_CR0_INTO_EAX                        \
1229         push %ecx; push %edx;                   \
1230         call *pv_cpu_ops+PV_CPU_read_cr0;       \
1231         pop %edx; pop %ecx
1232 #else
1233 #define SWAPGS                                                          \
1234         PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE,     \
1235                   PV_SAVE_REGS;                                         \
1236                   call *pv_cpu_ops+PV_CPU_swapgs;                       \
1237                   PV_RESTORE_REGS                                       \
1238                  )
1239
1240 #define GET_CR2_INTO_RCX                        \
1241         call *pv_mmu_ops+PV_MMU_read_cr2;       \
1242         movq %rax, %rcx;                        \
1243         xorq %rax, %rax;
1244
1245 #endif
1246
1247 #endif /* __ASSEMBLY__ */
1248 #endif /* CONFIG_PARAVIRT */
1249 #endif  /* __ASM_PARAVIRT_H */