blob: e8fbf742d42567e02b489f1a4ec0c5d61a260e65 [file] [log] [blame]
Rusty Russelld3561b72006-12-07 02:14:07 +01001#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. */
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +02005
6#ifdef CONFIG_PARAVIRT
Rusty Russellda181a82006-12-07 02:14:08 +01007#include <asm/page.h>
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01008#include <asm/asm.h>
Rusty Russelld3561b72006-12-07 02:14:07 +01009
Rusty Russell139ec7c2006-12-07 02:14:08 +010010/* 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
Rusty Russelld3561b72006-12-07 02:14:07 +010017#ifndef __ASSEMBLY__
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020018#include <linux/types.h>
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +020019#include <linux/cpumask.h>
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020020#include <asm/kmap_types.h>
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +010021#include <asm/desc_defs.h>
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020022
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020023struct page;
Rusty Russelld3561b72006-12-07 02:14:07 +010024struct thread_struct;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010025struct desc_ptr;
Rusty Russelld3561b72006-12-07 02:14:07 +010026struct tss_struct;
Rusty Russellda181a82006-12-07 02:14:08 +010027struct mm_struct;
Rusty Russell90a0a062007-05-02 19:27:10 +020028struct desc_struct;
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020029
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070030/* general info */
31struct pv_info {
Rusty Russelld3561b72006-12-07 02:14:07 +010032 unsigned int kernel_rpl;
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020033 int shared_kernel_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070034 int paravirt_enabled;
Rusty Russelld3561b72006-12-07 02:14:07 +010035 const char *name;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070036};
Rusty Russelld3561b72006-12-07 02:14:07 +010037
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070038struct pv_init_ops {
Rusty Russell139ec7c2006-12-07 02:14:08 +010039 /*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070040 * 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.
Rusty Russell139ec7c2006-12-07 02:14:08 +010046 */
Andi Kleenab144f52007-08-10 22:31:03 +020047 unsigned (*patch)(u8 type, u16 clobber, void *insnbuf,
48 unsigned long addr, unsigned len);
Rusty Russell139ec7c2006-12-07 02:14:08 +010049
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020050 /* Basic arch-specific setup */
Rusty Russelld3561b72006-12-07 02:14:07 +010051 void (*arch_setup)(void);
52 char *(*memory_setup)(void);
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -070053 void (*post_allocator_init)(void);
54
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020055 /* Print a banner to identify the environment */
Rusty Russelld3561b72006-12-07 02:14:07 +010056 void (*banner)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070057};
58
59
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070060struct pv_lazy_ops {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070061 /* Set deferred update mode, used for batching operations. */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070062 void (*enter)(void);
63 void (*leave)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070064};
65
66struct pv_time_ops {
67 void (*time_init)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010068
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020069 /* Set and set time of day */
Rusty Russelld3561b72006-12-07 02:14:07 +010070 unsigned long (*get_wallclock)(void);
71 int (*set_wallclock)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010072
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070073 unsigned long long (*sched_clock)(void);
74 unsigned long (*get_cpu_khz)(void);
75};
Rusty Russelld3561b72006-12-07 02:14:07 +010076
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070077struct pv_cpu_ops {
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020078 /* hooks for various privileged instructions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +010079 unsigned long (*get_debugreg)(int regno);
80 void (*set_debugreg)(int regno, unsigned long value);
Rusty Russelld3561b72006-12-07 02:14:07 +010081
Andi Kleen1a1eecd2007-02-13 13:26:25 +010082 void (*clts)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010083
Andi Kleen1a1eecd2007-02-13 13:26:25 +010084 unsigned long (*read_cr0)(void);
85 void (*write_cr0)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010086
Andi Kleen1a1eecd2007-02-13 13:26:25 +010087 unsigned long (*read_cr4_safe)(void);
88 unsigned long (*read_cr4)(void);
89 void (*write_cr4)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010090
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020091 /* Segment descriptor handling */
Andi Kleen1a1eecd2007-02-13 13:26:25 +010092 void (*load_tr_desc)(void);
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010093 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 *);
Andi Kleen1a1eecd2007-02-13 13:26:25 +010097 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);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100100 void (*write_ldt_entry)(struct desc_struct *ldt, int entrynum,
101 const void *desc);
Rusty Russell90a0a062007-05-02 19:27:10 +0200102 void (*write_gdt_entry)(struct desc_struct *,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100103 int entrynum, const void *desc, int size);
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100104 void (*write_idt_entry)(gate_desc *,
105 int entrynum, const gate_desc *gate);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100106 void (*load_sp0)(struct tss_struct *tss, struct thread_struct *t);
Rusty Russelld3561b72006-12-07 02:14:07 +0100107
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100108 void (*set_iopl_mask)(unsigned mask);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700109
110 void (*wbinvd)(void);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100111 void (*io_delay)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100112
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700113 /* 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);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200116
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700117 /* MSR, PMC and TSR operations.
118 err = 0/-EFAULT. wrmsr returns 0/-EFAULT. */
119 u64 (*read_msr)(unsigned int msr, int *err);
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100120 int (*write_msr)(unsigned int msr, unsigned low, unsigned high);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700121
122 u64 (*read_tsc)(void);
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100123 u64 (*read_pmc)(int counter);
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100124 unsigned long long (*read_tscp)(unsigned int *aux);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700125
126 /* These two are jmp to, not actually called. */
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +0100127 void (*irq_enable_syscall_ret)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700128 void (*iret)(void);
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700129
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100130 void (*swapgs)(void);
131
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700132 struct pv_lazy_ops lazy_mode;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700133};
134
135struct 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
152struct pv_apic_ops {
Rusty Russell13623d72006-12-07 02:14:08 +0100153#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200154 /*
155 * Direct APIC operations, principally for VMI. Ideally
156 * these shouldn't be in this interface.
157 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100158 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);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100161 void (*setup_boot_clock)(void);
162 void (*setup_secondary_clock)(void);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200163
164 void (*startup_ipi_hook)(int phys_apicid,
165 unsigned long start_eip,
166 unsigned long start_esp);
Rusty Russell13623d72006-12-07 02:14:08 +0100167#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700168};
169
170struct 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
Rusty Russell13623d72006-12-07 02:14:08 +0100196
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200197 /* TLB operations */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100198 void (*flush_tlb_user)(void);
199 void (*flush_tlb_kernel)(void);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200200 void (*flush_tlb_single)(unsigned long addr);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200201 void (*flush_tlb_others)(const cpumask_t *cpus, struct mm_struct *mm,
202 unsigned long va);
Rusty Russellda181a82006-12-07 02:14:08 +0100203
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200204 /* Hooks for allocating/releasing pagetable pages */
Jeremy Fitzhardingefdb4c332007-07-17 18:37:03 -0700205 void (*alloc_pt)(struct mm_struct *mm, u32 pfn);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100206 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);
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100210
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200211 /* Pagetable manipulation functions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100212 void (*set_pte)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200213 void (*set_pte_at)(struct mm_struct *mm, unsigned long addr,
214 pte_t *ptep, pte_t pteval);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100215 void (*set_pmd)(pmd_t *pmdp, pmd_t pmdval);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200216 void (*pte_update)(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200217 void (*pte_update_defer)(struct mm_struct *mm,
218 unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200219
Rusty Russellda181a82006-12-07 02:14:08 +0100220#ifdef CONFIG_X86_PAE
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100221 void (*set_pte_atomic)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700222 void (*set_pte_present)(struct mm_struct *mm, unsigned long addr,
223 pte_t *ptep, pte_t pte);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100224 void (*set_pud)(pud_t *pudp, pud_t pudval);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700225 void (*pte_clear)(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100226 void (*pmd_clear)(pmd_t *pmdp);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200227
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);
Rusty Russellda181a82006-12-07 02:14:08 +0100241#endif
242
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700243#ifdef CONFIG_HIGHPTE
244 void *(*kmap_atomic_pte)(struct page *page, enum km_type type);
245#endif
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700246
247 struct pv_lazy_ops lazy_mode;
Rusty Russelld3561b72006-12-07 02:14:07 +0100248};
249
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700250/* 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. */
253struct paravirt_patch_template
254{
255 struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700256 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
263extern struct pv_info pv_info;
264extern struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700265extern struct pv_time_ops pv_time_ops;
266extern struct pv_cpu_ops pv_cpu_ops;
267extern struct pv_irq_ops pv_irq_ops;
268extern struct pv_apic_ops pv_apic_ops;
269extern struct pv_mmu_ops pv_mmu_ops;
Rusty Russelld3561b72006-12-07 02:14:07 +0100270
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200271#define PARAVIRT_PATCH(x) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700272 (offsetof(struct paravirt_patch_template, x) / sizeof(void *))
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200273
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700274#define paravirt_type(op) \
275 [paravirt_typenum] "i" (PARAVIRT_PATCH(op)), \
276 [paravirt_opptr] "m" (op)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200277#define paravirt_clobber(clobber) \
278 [paravirt_clobber] "i" (clobber)
279
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200280/*
281 * Generate some code, and mark it as patchable by the
282 * apply_paravirt() alternate instruction patcher.
283 */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200284#define _paravirt_alt(insn_string, type, clobber) \
285 "771:\n\t" insn_string "\n" "772:\n" \
286 ".pushsection .parainstructions,\"a\"\n" \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +0100287 _ASM_ALIGN "\n" \
288 _ASM_PTR " 771b\n" \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200289 " .byte " type "\n" \
290 " .byte 772b-771b\n" \
291 " .short " clobber "\n" \
292 ".popsection\n"
293
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200294/* Generate patchable code, with the default asm parameters. */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200295#define paravirt_alt(insn_string) \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200296 _paravirt_alt(insn_string, "%c[paravirt_typenum]", "%c[paravirt_clobber]")
297
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200298unsigned paravirt_patch_nop(void);
299unsigned paravirt_patch_ignore(unsigned len);
Andi Kleenab144f52007-08-10 22:31:03 +0200300unsigned paravirt_patch_call(void *insnbuf,
301 const void *target, u16 tgt_clobbers,
302 unsigned long addr, u16 site_clobbers,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200303 unsigned len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700304unsigned paravirt_patch_jmp(void *insnbuf, const void *target,
Andi Kleenab144f52007-08-10 22:31:03 +0200305 unsigned long addr, unsigned len);
306unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
307 unsigned long addr, unsigned len);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200308
Andi Kleenab144f52007-08-10 22:31:03 +0200309unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200310 const char *start, const char *end);
311
Jeremy Fitzhardinged5729292007-07-17 18:37:04 -0700312int paravirt_disable_iospace(void);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200313
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200314/*
315 * This generates an indirect call based on the operation type number.
316 * The type number, computed in PARAVIRT_PATCH, is derived from the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700317 * offset into the paravirt_patch_template structure, and can therefore be
318 * freely converted back into a structure offset.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200319 */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700320#define PARAVIRT_CALL "call *%[paravirt_opptr];"
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200321
322/*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700323 * 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
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200325 * runtime.
326 *
327 * Normally, a call to a pv_op function is a simple indirect call:
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100328 * (pv_op_struct.operations)(args...).
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200329 *
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 *
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100338 * For i386, these macros rely on the standard gcc "regparm(3)" calling
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200339 * 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).
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100343 * 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)
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200349 *
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
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700353 * appropriate patching under the control of the backend pv_init_ops
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200354 * 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
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100371 * 64-bit). For x86_64 machines, it just returns at %rax regardless of
372 * the return value size.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200373 *
374 * 64-bit arguments are passed as a pair of adjacent 32-bit arguments
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100375 * i386 also passes 64-bit arguments as a pair of adjacent 32-bit arguments
376 * in low,high order
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200377 *
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 */
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100386#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
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200407#define __PVOP_CALL(rettype, op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200408 ({ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200409 rettype __ret; \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100410 PVOP_CALL_ARGS; \
411 /* This is 32-bit specific, but is okay in 64-bit */ \
412 /* since this condition will never hold */ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200413 if (sizeof(rettype) > sizeof(unsigned long)) { \
414 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200415 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200416 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100417 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200418 : paravirt_type(op), \
419 paravirt_clobber(CLBR_ANY), \
420 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100421 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200422 __ret = (rettype)((((u64)__edx) << 32) | __eax); \
423 } else { \
424 asm volatile(pre \
425 paravirt_alt(PARAVIRT_CALL) \
426 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100427 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200428 : paravirt_type(op), \
429 paravirt_clobber(CLBR_ANY), \
430 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100431 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200432 __ret = (rettype)__eax; \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200433 } \
434 __ret; \
435 })
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200436#define __PVOP_VCALL(op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200437 ({ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100438 PVOP_VCALL_ARGS; \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200439 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200440 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200441 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100442 : PVOP_VCALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200443 : paravirt_type(op), \
444 paravirt_clobber(CLBR_ANY), \
445 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100446 : "memory", "cc" VEXTRA_CLOBBERS); \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200447 })
448
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200449#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) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100455 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200456#define PVOP_VCALL1(op, arg1) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100457 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200458
459#define PVOP_CALL2(rettype, op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100460 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
461 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200462#define PVOP_VCALL2(op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100463 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
464 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200465
466#define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100467 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
468 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200469#define PVOP_VCALL3(op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100470 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
471 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200472
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100473/* This is the only difference in x86_64. We can make it much simpler */
474#ifdef CONFIG_X86_32
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200475#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)))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100485#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
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200495
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200496static inline int paravirt_enabled(void)
497{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700498 return pv_info.paravirt_enabled;
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200499}
Rusty Russelld3561b72006-12-07 02:14:07 +0100500
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100501static inline void load_sp0(struct tss_struct *tss,
Rusty Russelld3561b72006-12-07 02:14:07 +0100502 struct thread_struct *thread)
503{
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100504 PVOP_VCALL2(pv_cpu_ops.load_sp0, tss, thread);
Rusty Russelld3561b72006-12-07 02:14:07 +0100505}
506
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700507#define ARCH_SETUP pv_init_ops.arch_setup();
Rusty Russelld3561b72006-12-07 02:14:07 +0100508static inline unsigned long get_wallclock(void)
509{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700510 return PVOP_CALL0(unsigned long, pv_time_ops.get_wallclock);
Rusty Russelld3561b72006-12-07 02:14:07 +0100511}
512
513static inline int set_wallclock(unsigned long nowtime)
514{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700515 return PVOP_CALL1(int, pv_time_ops.set_wallclock, nowtime);
Rusty Russelld3561b72006-12-07 02:14:07 +0100516}
517
Zachary Amsdene30fab32007-03-05 00:30:39 -0800518static inline void (*choose_time_init(void))(void)
Rusty Russelld3561b72006-12-07 02:14:07 +0100519{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700520 return pv_time_ops.time_init;
Rusty Russelld3561b72006-12-07 02:14:07 +0100521}
522
523/* The paravirtualized CPUID instruction. */
524static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
525 unsigned int *ecx, unsigned int *edx)
526{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700527 PVOP_VCALL4(pv_cpu_ops.cpuid, eax, ebx, ecx, edx);
Rusty Russelld3561b72006-12-07 02:14:07 +0100528}
529
530/*
531 * These special macros can be used to get or set a debugging register
532 */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200533static inline unsigned long paravirt_get_debugreg(int reg)
534{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700535 return PVOP_CALL1(unsigned long, pv_cpu_ops.get_debugreg, reg);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200536}
537#define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
538static inline void set_debugreg(unsigned long val, int reg)
539{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700540 PVOP_VCALL2(pv_cpu_ops.set_debugreg, reg, val);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200541}
Rusty Russelld3561b72006-12-07 02:14:07 +0100542
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200543static inline void clts(void)
544{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700545 PVOP_VCALL0(pv_cpu_ops.clts);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200546}
Rusty Russelld3561b72006-12-07 02:14:07 +0100547
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200548static inline unsigned long read_cr0(void)
549{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700550 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr0);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200551}
Rusty Russelld3561b72006-12-07 02:14:07 +0100552
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200553static inline void write_cr0(unsigned long x)
554{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700555 PVOP_VCALL1(pv_cpu_ops.write_cr0, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200556}
Rusty Russelld3561b72006-12-07 02:14:07 +0100557
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200558static inline unsigned long read_cr2(void)
559{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700560 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr2);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200561}
Rusty Russelld3561b72006-12-07 02:14:07 +0100562
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200563static inline void write_cr2(unsigned long x)
564{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700565 PVOP_VCALL1(pv_mmu_ops.write_cr2, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200566}
Rusty Russelld3561b72006-12-07 02:14:07 +0100567
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200568static inline unsigned long read_cr3(void)
569{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700570 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr3);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200571}
572
573static inline void write_cr3(unsigned long x)
574{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700575 PVOP_VCALL1(pv_mmu_ops.write_cr3, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200576}
577
578static inline unsigned long read_cr4(void)
579{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700580 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200581}
582static inline unsigned long read_cr4_safe(void)
583{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700584 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4_safe);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200585}
586
587static inline void write_cr4(unsigned long x)
588{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700589 PVOP_VCALL1(pv_cpu_ops.write_cr4, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200590}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200591
Rusty Russelld3561b72006-12-07 02:14:07 +0100592static inline void raw_safe_halt(void)
593{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700594 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100595}
596
597static inline void halt(void)
598{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700599 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100600}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200601
602static inline void wbinvd(void)
603{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700604 PVOP_VCALL0(pv_cpu_ops.wbinvd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200605}
Rusty Russelld3561b72006-12-07 02:14:07 +0100606
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700607#define get_kernel_rpl() (pv_info.kernel_rpl)
Rusty Russelld3561b72006-12-07 02:14:07 +0100608
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200609static inline u64 paravirt_read_msr(unsigned msr, int *err)
610{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700611 return PVOP_CALL2(u64, pv_cpu_ops.read_msr, msr, err);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200612}
613static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
614{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700615 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200616}
617
Rusty Russell90a0a062007-05-02 19:27:10 +0200618/* These should all do BUG_ON(_err), but our headers are too tangled. */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200619#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; \
Rusty Russelld3561b72006-12-07 02:14:07 +0100624} while(0)
625
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200626#define wrmsr(msr,val1,val2) do { \
627 paravirt_write_msr(msr, val1, val2); \
Rusty Russelld3561b72006-12-07 02:14:07 +0100628} while(0)
629
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200630#define rdmsrl(msr,val) do { \
631 int _err; \
632 val = paravirt_read_msr(msr, &_err); \
Rusty Russelld3561b72006-12-07 02:14:07 +0100633} while(0)
634
Björn Steinbrinkb9e36142007-06-25 23:04:37 +0200635#define wrmsrl(msr,val) wrmsr(msr, (u32)((u64)(val)), ((u64)(val))>>32)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200636#define wrmsr_safe(msr,a,b) paravirt_write_msr(msr, a, b)
Rusty Russelld3561b72006-12-07 02:14:07 +0100637
638/* rdmsr with exception handling */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200639#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; \
Rusty Russelld3561b72006-12-07 02:14:07 +0100644 _err; })
645
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200646
647static inline u64 paravirt_read_tsc(void)
648{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700649 return PVOP_CALL0(u64, pv_cpu_ops.read_tsc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200650}
Rusty Russelld3561b72006-12-07 02:14:07 +0100651
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200652#define rdtscl(low) do { \
653 u64 _l = paravirt_read_tsc(); \
654 low = (int)_l; \
Rusty Russelld3561b72006-12-07 02:14:07 +0100655} while(0)
656
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200657#define rdtscll(val) (val = paravirt_read_tsc())
Rusty Russelld3561b72006-12-07 02:14:07 +0100658
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700659static inline unsigned long long paravirt_sched_clock(void)
660{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700661 return PVOP_CALL0(unsigned long long, pv_time_ops.sched_clock);
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700662}
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700663#define calculate_cpu_khz() (pv_time_ops.get_cpu_khz())
Zachary Amsden6cb9a832007-03-05 00:30:35 -0800664
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200665static inline unsigned long long paravirt_read_pmc(int counter)
666{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700667 return PVOP_CALL1(u64, pv_cpu_ops.read_pmc, counter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200668}
669
670#define rdpmc(counter,low,high) do { \
671 u64 _l = paravirt_read_pmc(counter); \
672 low = (u32)_l; \
673 high = _l >> 32; \
Rusty Russelld3561b72006-12-07 02:14:07 +0100674} while(0)
675
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100676static 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) \
682do { \
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) \
691do { \
692 unsigned long __aux; \
693 val = paravirt_rdtscp(&__aux); \
694 (aux) = __aux; \
695} while (0)
696
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200697static inline void load_TR_desc(void)
698{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700699 PVOP_VCALL0(pv_cpu_ops.load_tr_desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200700}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100701static inline void load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200702{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700703 PVOP_VCALL1(pv_cpu_ops.load_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200704}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100705static inline void load_idt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200706{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700707 PVOP_VCALL1(pv_cpu_ops.load_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200708}
709static inline void set_ldt(const void *addr, unsigned entries)
710{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700711 PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200712}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100713static inline void store_gdt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200714{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700715 PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200716}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100717static inline void store_idt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200718{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700719 PVOP_VCALL1(pv_cpu_ops.store_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200720}
721static inline unsigned long paravirt_store_tr(void)
722{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700723 return PVOP_CALL0(unsigned long, pv_cpu_ops.store_tr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200724}
725#define store_tr(tr) ((tr) = paravirt_store_tr())
726static inline void load_TLS(struct thread_struct *t, unsigned cpu)
727{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700728 PVOP_VCALL2(pv_cpu_ops.load_tls, t, cpu);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200729}
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100730
731static inline void write_ldt_entry(struct desc_struct *dt, int entry,
732 const void *desc)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200733{
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100734 PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200735}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100736
737static inline void write_gdt_entry(struct desc_struct *dt, int entry,
738 void *desc, int type)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200739{
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100740 PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200741}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100742
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100743static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200744{
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100745 PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200746}
747static inline void set_iopl_mask(unsigned mask)
748{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700749 PVOP_VCALL1(pv_cpu_ops.set_iopl_mask, mask);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200750}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200751
Rusty Russelld3561b72006-12-07 02:14:07 +0100752/* The paravirtualized I/O functions */
753static inline void slow_down_io(void) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700754 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100755#ifdef REALLY_SLOW_IO
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700756 pv_cpu_ops.io_delay();
757 pv_cpu_ops.io_delay();
758 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100759#endif
760}
761
Rusty Russell13623d72006-12-07 02:14:08 +0100762#ifdef CONFIG_X86_LOCAL_APIC
763/*
764 * Basic functions accessing APICs.
765 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100766static inline void apic_write(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100767{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700768 PVOP_VCALL2(pv_apic_ops.apic_write, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100769}
770
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100771static inline void apic_write_atomic(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100772{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700773 PVOP_VCALL2(pv_apic_ops.apic_write_atomic, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100774}
775
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100776static inline u32 apic_read(unsigned long reg)
Rusty Russell13623d72006-12-07 02:14:08 +0100777{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700778 return PVOP_CALL1(unsigned long, pv_apic_ops.apic_read, reg);
Rusty Russell13623d72006-12-07 02:14:08 +0100779}
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100780
781static inline void setup_boot_clock(void)
782{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700783 PVOP_VCALL0(pv_apic_ops.setup_boot_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100784}
785
786static inline void setup_secondary_clock(void)
787{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700788 PVOP_VCALL0(pv_apic_ops.setup_secondary_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100789}
Rusty Russell13623d72006-12-07 02:14:08 +0100790#endif
791
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700792static inline void paravirt_post_allocator_init(void)
793{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700794 if (pv_init_ops.post_allocator_init)
795 (*pv_init_ops.post_allocator_init)();
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700796}
797
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200798static inline void paravirt_pagetable_setup_start(pgd_t *base)
799{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700800 (*pv_mmu_ops.pagetable_setup_start)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200801}
802
803static inline void paravirt_pagetable_setup_done(pgd_t *base)
804{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700805 (*pv_mmu_ops.pagetable_setup_done)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200806}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200807
Zachary Amsdenae5da272007-02-13 13:26:21 +0100808#ifdef CONFIG_SMP
809static inline void startup_ipi_hook(int phys_apicid, unsigned long start_eip,
810 unsigned long start_esp)
811{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700812 PVOP_VCALL3(pv_apic_ops.startup_ipi_hook,
813 phys_apicid, start_eip, start_esp);
Zachary Amsdenae5da272007-02-13 13:26:21 +0100814}
815#endif
Rusty Russell13623d72006-12-07 02:14:08 +0100816
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200817static inline void paravirt_activate_mm(struct mm_struct *prev,
818 struct mm_struct *next)
819{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700820 PVOP_VCALL2(pv_mmu_ops.activate_mm, prev, next);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200821}
822
823static inline void arch_dup_mmap(struct mm_struct *oldmm,
824 struct mm_struct *mm)
825{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700826 PVOP_VCALL2(pv_mmu_ops.dup_mmap, oldmm, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200827}
828
829static inline void arch_exit_mmap(struct mm_struct *mm)
830{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700831 PVOP_VCALL1(pv_mmu_ops.exit_mmap, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200832}
833
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200834static inline void __flush_tlb(void)
835{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700836 PVOP_VCALL0(pv_mmu_ops.flush_tlb_user);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200837}
838static inline void __flush_tlb_global(void)
839{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700840 PVOP_VCALL0(pv_mmu_ops.flush_tlb_kernel);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200841}
842static inline void __flush_tlb_single(unsigned long addr)
843{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700844 PVOP_VCALL1(pv_mmu_ops.flush_tlb_single, addr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200845}
Rusty Russellda181a82006-12-07 02:14:08 +0100846
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200847static inline void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
848 unsigned long va)
849{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700850 PVOP_VCALL3(pv_mmu_ops.flush_tlb_others, &cpumask, mm, va);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200851}
852
Jeremy Fitzhardingefdb4c332007-07-17 18:37:03 -0700853static inline void paravirt_alloc_pt(struct mm_struct *mm, unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200854{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700855 PVOP_VCALL2(pv_mmu_ops.alloc_pt, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200856}
857static inline void paravirt_release_pt(unsigned pfn)
858{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700859 PVOP_VCALL1(pv_mmu_ops.release_pt, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200860}
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100861
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200862static inline void paravirt_alloc_pd(unsigned pfn)
863{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700864 PVOP_VCALL1(pv_mmu_ops.alloc_pd, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200865}
866
867static inline void paravirt_alloc_pd_clone(unsigned pfn, unsigned clonepfn,
868 unsigned start, unsigned count)
869{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700870 PVOP_VCALL4(pv_mmu_ops.alloc_pd_clone, pfn, clonepfn, start, count);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200871}
872static inline void paravirt_release_pd(unsigned pfn)
873{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700874 PVOP_VCALL1(pv_mmu_ops.release_pd, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200875}
876
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +0200877#ifdef CONFIG_HIGHPTE
878static inline void *kmap_atomic_pte(struct page *page, enum km_type type)
879{
880 unsigned long ret;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700881 ret = PVOP_CALL2(unsigned long, pv_mmu_ops.kmap_atomic_pte, page, type);
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +0200882 return (void *)ret;
883}
884#endif
885
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200886static inline void pte_update(struct mm_struct *mm, unsigned long addr,
887 pte_t *ptep)
888{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700889 PVOP_VCALL3(pv_mmu_ops.pte_update, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200890}
891
892static inline void pte_update_defer(struct mm_struct *mm, unsigned long addr,
893 pte_t *ptep)
894{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700895 PVOP_VCALL3(pv_mmu_ops.pte_update_defer, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200896}
897
898#ifdef CONFIG_X86_PAE
899static inline pte_t __pte(unsigned long long val)
900{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700901 unsigned long long ret = PVOP_CALL2(unsigned long long,
902 pv_mmu_ops.make_pte,
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200903 val, val >> 32);
904 return (pte_t) { ret, ret >> 32 };
905}
906
907static inline pmd_t __pmd(unsigned long long val)
908{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700909 return (pmd_t) { PVOP_CALL2(unsigned long long, pv_mmu_ops.make_pmd,
910 val, val >> 32) };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200911}
912
913static inline pgd_t __pgd(unsigned long long val)
914{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700915 return (pgd_t) { PVOP_CALL2(unsigned long long, pv_mmu_ops.make_pgd,
916 val, val >> 32) };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200917}
918
919static inline unsigned long long pte_val(pte_t x)
920{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700921 return PVOP_CALL2(unsigned long long, pv_mmu_ops.pte_val,
922 x.pte_low, x.pte_high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200923}
924
925static inline unsigned long long pmd_val(pmd_t x)
926{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700927 return PVOP_CALL2(unsigned long long, pv_mmu_ops.pmd_val,
928 x.pmd, x.pmd >> 32);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200929}
930
931static inline unsigned long long pgd_val(pgd_t x)
932{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700933 return PVOP_CALL2(unsigned long long, pv_mmu_ops.pgd_val,
934 x.pgd, x.pgd >> 32);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200935}
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100936
Rusty Russellda181a82006-12-07 02:14:08 +0100937static inline void set_pte(pte_t *ptep, pte_t pteval)
938{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700939 PVOP_VCALL3(pv_mmu_ops.set_pte, ptep, pteval.pte_low, pteval.pte_high);
Rusty Russellda181a82006-12-07 02:14:08 +0100940}
941
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200942static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
943 pte_t *ptep, pte_t pteval)
Rusty Russellda181a82006-12-07 02:14:08 +0100944{
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200945 /* 5 arg words */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700946 pv_mmu_ops.set_pte_at(mm, addr, ptep, pteval);
Rusty Russellda181a82006-12-07 02:14:08 +0100947}
948
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200949static inline void set_pte_atomic(pte_t *ptep, pte_t pteval)
950{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700951 PVOP_VCALL3(pv_mmu_ops.set_pte_atomic, ptep,
952 pteval.pte_low, pteval.pte_high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200953}
954
955static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
956 pte_t *ptep, pte_t pte)
957{
958 /* 5 arg words */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700959 pv_mmu_ops.set_pte_present(mm, addr, ptep, pte);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200960}
961
Rusty Russellda181a82006-12-07 02:14:08 +0100962static inline void set_pmd(pmd_t *pmdp, pmd_t pmdval)
963{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700964 PVOP_VCALL3(pv_mmu_ops.set_pmd, pmdp,
965 pmdval.pmd, pmdval.pmd >> 32);
Rusty Russellda181a82006-12-07 02:14:08 +0100966}
967
968static inline void set_pud(pud_t *pudp, pud_t pudval)
969{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700970 PVOP_VCALL3(pv_mmu_ops.set_pud, pudp,
971 pudval.pgd.pgd, pudval.pgd.pgd >> 32);
Rusty Russellda181a82006-12-07 02:14:08 +0100972}
973
974static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
975{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700976 PVOP_VCALL3(pv_mmu_ops.pte_clear, mm, addr, ptep);
Rusty Russellda181a82006-12-07 02:14:08 +0100977}
978
979static inline void pmd_clear(pmd_t *pmdp)
980{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700981 PVOP_VCALL1(pv_mmu_ops.pmd_clear, pmdp);
Rusty Russellda181a82006-12-07 02:14:08 +0100982}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200983
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200984#else /* !CONFIG_X86_PAE */
Jeremy Fitzhardinge4cdd9c82007-05-02 19:27:15 +0200985
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200986static inline pte_t __pte(unsigned long val)
987{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700988 return (pte_t) { PVOP_CALL1(unsigned long, pv_mmu_ops.make_pte, val) };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200989}
990
991static inline pgd_t __pgd(unsigned long val)
992{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700993 return (pgd_t) { PVOP_CALL1(unsigned long, pv_mmu_ops.make_pgd, val) };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200994}
995
996static inline unsigned long pte_val(pte_t x)
997{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700998 return PVOP_CALL1(unsigned long, pv_mmu_ops.pte_val, x.pte_low);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200999}
1000
1001static inline unsigned long pgd_val(pgd_t x)
1002{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001003 return PVOP_CALL1(unsigned long, pv_mmu_ops.pgd_val, x.pgd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001004}
1005
1006static inline void set_pte(pte_t *ptep, pte_t pteval)
1007{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001008 PVOP_VCALL2(pv_mmu_ops.set_pte, ptep, pteval.pte_low);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001009}
1010
1011static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1012 pte_t *ptep, pte_t pteval)
1013{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001014 PVOP_VCALL4(pv_mmu_ops.set_pte_at, mm, addr, ptep, pteval.pte_low);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001015}
1016
1017static inline void set_pmd(pmd_t *pmdp, pmd_t pmdval)
1018{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001019 PVOP_VCALL2(pv_mmu_ops.set_pmd, pmdp, pmdval.pud.pgd.pgd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001020}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001021#endif /* CONFIG_X86_PAE */
Rusty Russellda181a82006-12-07 02:14:08 +01001022
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001023/* Lazy mode for batching updates / context switch */
1024enum paravirt_lazy_mode {
1025 PARAVIRT_LAZY_NONE,
1026 PARAVIRT_LAZY_MMU,
1027 PARAVIRT_LAZY_CPU,
1028};
1029
1030enum paravirt_lazy_mode paravirt_get_lazy_mode(void);
1031void paravirt_enter_lazy_cpu(void);
1032void paravirt_leave_lazy_cpu(void);
1033void paravirt_enter_lazy_mmu(void);
1034void paravirt_leave_lazy_mmu(void);
1035void paravirt_leave_lazy(enum paravirt_lazy_mode mode);
1036
Zachary Amsden9226d122007-02-13 13:26:21 +01001037#define __HAVE_ARCH_ENTER_LAZY_CPU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001038static inline void arch_enter_lazy_cpu_mode(void)
1039{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001040 PVOP_VCALL0(pv_cpu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001041}
1042
1043static inline void arch_leave_lazy_cpu_mode(void)
1044{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001045 PVOP_VCALL0(pv_cpu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001046}
1047
1048static inline void arch_flush_lazy_cpu_mode(void)
1049{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001050 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)) {
1051 arch_leave_lazy_cpu_mode();
1052 arch_enter_lazy_cpu_mode();
1053 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001054}
1055
Zachary Amsden9226d122007-02-13 13:26:21 +01001056
1057#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001058static inline void arch_enter_lazy_mmu_mode(void)
1059{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001060 PVOP_VCALL0(pv_mmu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001061}
1062
1063static inline void arch_leave_lazy_mmu_mode(void)
1064{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001065 PVOP_VCALL0(pv_mmu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001066}
1067
1068static inline void arch_flush_lazy_mmu_mode(void)
1069{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001070 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU)) {
1071 arch_leave_lazy_mmu_mode();
1072 arch_enter_lazy_mmu_mode();
1073 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001074}
Zachary Amsden9226d122007-02-13 13:26:21 +01001075
Jeremy Fitzhardinge45876232007-05-02 19:27:13 +02001076void _paravirt_nop(void);
1077#define paravirt_nop ((void *)_paravirt_nop)
1078
Rusty Russell139ec7c2006-12-07 02:14:08 +01001079/* These all sit in the .parainstructions section to tell us what to patch. */
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001080struct paravirt_patch_site {
Rusty Russell139ec7c2006-12-07 02:14:08 +01001081 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
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001087extern struct paravirt_patch_site __parainstructions[],
1088 __parainstructions_end[];
1089
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001090#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
Rusty Russell139ec7c2006-12-07 02:14:08 +01001106static inline unsigned long __raw_local_save_flags(void)
1107{
1108 unsigned long f;
1109
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001110 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001111 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001112 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001113 : "=a"(f)
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001114 : paravirt_type(pv_irq_ops.save_fl),
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001115 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001116 : "memory", "cc" PV_VEXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001117 return f;
1118}
1119
1120static inline void raw_local_irq_restore(unsigned long f)
1121{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001122 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001123 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001124 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001125 : "=a"(f)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001126 : PV_FLAGS_ARG(f),
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001127 paravirt_type(pv_irq_ops.restore_fl),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001128 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001129 : "memory", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001130}
1131
1132static inline void raw_local_irq_disable(void)
1133{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001134 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001135 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001136 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001137 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001138 : paravirt_type(pv_irq_ops.irq_disable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001139 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001140 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001141}
1142
1143static inline void raw_local_irq_enable(void)
1144{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001145 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001146 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001147 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001148 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001149 : paravirt_type(pv_irq_ops.irq_enable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001150 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001151 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001152}
1153
1154static inline unsigned long __raw_local_irq_save(void)
1155{
1156 unsigned long f;
1157
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001158 f = __raw_local_save_flags();
1159 raw_local_irq_disable();
Rusty Russell139ec7c2006-12-07 02:14:08 +01001160 return f;
1161}
1162
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +02001163/* Make sure as little as possible of this mess escapes. */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001164#undef PARAVIRT_CALL
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +02001165#undef __PVOP_CALL
1166#undef __PVOP_VCALL
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001167#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
Rusty Russell139ec7c2006-12-07 02:14:08 +01001177
Rusty Russelld3561b72006-12-07 02:14:07 +01001178#else /* __ASSEMBLY__ */
1179
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001180#define _PVSITE(ptype, clobbers, ops, word, algn) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001181771:; \
1182 ops; \
1183772:; \
1184 .pushsection .parainstructions,"a"; \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001185 .align algn; \
1186 word 771b; \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001187 .byte ptype; \
1188 .byte 772b-771b; \
1189 .short clobbers; \
1190 .popsection
1191
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001192
1193#ifdef CONFIG_X86_64
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001194#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)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001197#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .quad, 8)
1198#else
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001199#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)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001202#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
1203#endif
1204
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001205#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)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001208
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001209#define DISABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001210 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_disable), clobbers, \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001211 PV_SAVE_REGS; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001212 call *%cs:pv_irq_ops+PV_IRQ_irq_disable; \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001213 PV_RESTORE_REGS;) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001214
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001215#define ENABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001216 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_enable), clobbers, \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001217 PV_SAVE_REGS; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001218 call *%cs:pv_irq_ops+PV_IRQ_irq_enable; \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001219 PV_RESTORE_REGS;)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001220
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +01001221#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)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001225
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001226
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001227#ifdef CONFIG_X86_32
Rusty Russell139ec7c2006-12-07 02:14:08 +01001228#define GET_CR0_INTO_EAX \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001229 push %ecx; push %edx; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001230 call *pv_cpu_ops+PV_CPU_read_cr0; \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001231 pop %edx; pop %ecx
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001232#else
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001233#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
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001240#define GET_CR2_INTO_RCX \
1241 call *pv_mmu_ops+PV_MMU_read_cr2; \
1242 movq %rax, %rcx; \
1243 xorq %rax, %rax;
1244
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001245#endif
Rusty Russell139ec7c2006-12-07 02:14:08 +01001246
Rusty Russelld3561b72006-12-07 02:14:07 +01001247#endif /* __ASSEMBLY__ */
1248#endif /* CONFIG_PARAVIRT */
1249#endif /* __ASM_PARAVIRT_H */