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