blob: 3dc223da200b036cfd96ebe663b09783c094f1f5 [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. */
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010011#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 */
Rusty Russell139ec7c2006-12-07 02:14:08 +010029
Rusty Russelld3561b72006-12-07 02:14:07 +010030#ifndef __ASSEMBLY__
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020031#include <linux/types.h>
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +020032#include <linux/cpumask.h>
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020033#include <asm/kmap_types.h>
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +010034#include <asm/desc_defs.h>
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020035
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020036struct page;
Rusty Russelld3561b72006-12-07 02:14:07 +010037struct thread_struct;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010038struct desc_ptr;
Rusty Russelld3561b72006-12-07 02:14:07 +010039struct tss_struct;
Rusty Russellda181a82006-12-07 02:14:08 +010040struct mm_struct;
Rusty Russell90a0a062007-05-02 19:27:10 +020041struct desc_struct;
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020042
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070043/* general info */
44struct pv_info {
Rusty Russelld3561b72006-12-07 02:14:07 +010045 unsigned int kernel_rpl;
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020046 int shared_kernel_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070047 int paravirt_enabled;
Rusty Russelld3561b72006-12-07 02:14:07 +010048 const char *name;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070049};
Rusty Russelld3561b72006-12-07 02:14:07 +010050
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070051struct pv_init_ops {
Rusty Russell139ec7c2006-12-07 02:14:08 +010052 /*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070053 * 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.
Rusty Russell139ec7c2006-12-07 02:14:08 +010059 */
Andi Kleenab144f52007-08-10 22:31:03 +020060 unsigned (*patch)(u8 type, u16 clobber, void *insnbuf,
61 unsigned long addr, unsigned len);
Rusty Russell139ec7c2006-12-07 02:14:08 +010062
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020063 /* Basic arch-specific setup */
Rusty Russelld3561b72006-12-07 02:14:07 +010064 void (*arch_setup)(void);
65 char *(*memory_setup)(void);
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -070066 void (*post_allocator_init)(void);
67
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020068 /* Print a banner to identify the environment */
Rusty Russelld3561b72006-12-07 02:14:07 +010069 void (*banner)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070070};
71
72
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070073struct pv_lazy_ops {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070074 /* Set deferred update mode, used for batching operations. */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070075 void (*enter)(void);
76 void (*leave)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070077};
78
79struct pv_time_ops {
80 void (*time_init)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010081
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020082 /* Set and set time of day */
Rusty Russelld3561b72006-12-07 02:14:07 +010083 unsigned long (*get_wallclock)(void);
84 int (*set_wallclock)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010085
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070086 unsigned long long (*sched_clock)(void);
87 unsigned long (*get_cpu_khz)(void);
88};
Rusty Russelld3561b72006-12-07 02:14:07 +010089
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070090struct pv_cpu_ops {
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020091 /* hooks for various privileged instructions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +010092 unsigned long (*get_debugreg)(int regno);
93 void (*set_debugreg)(int regno, unsigned long value);
Rusty Russelld3561b72006-12-07 02:14:07 +010094
Andi Kleen1a1eecd2007-02-13 13:26:25 +010095 void (*clts)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010096
Andi Kleen1a1eecd2007-02-13 13:26:25 +010097 unsigned long (*read_cr0)(void);
98 void (*write_cr0)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010099
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100100 unsigned long (*read_cr4_safe)(void);
101 unsigned long (*read_cr4)(void);
102 void (*write_cr4)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +0100103
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100104#ifdef CONFIG_X86_64
105 unsigned long (*read_cr8)(void);
106 void (*write_cr8)(unsigned long);
107#endif
108
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200109 /* Segment descriptor handling */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100110 void (*load_tr_desc)(void);
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100111 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 *);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100115 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);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100118 void (*write_ldt_entry)(struct desc_struct *ldt, int entrynum,
119 const void *desc);
Rusty Russell90a0a062007-05-02 19:27:10 +0200120 void (*write_gdt_entry)(struct desc_struct *,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100121 int entrynum, const void *desc, int size);
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100122 void (*write_idt_entry)(gate_desc *,
123 int entrynum, const gate_desc *gate);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100124 void (*load_sp0)(struct tss_struct *tss, struct thread_struct *t);
Rusty Russelld3561b72006-12-07 02:14:07 +0100125
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100126 void (*set_iopl_mask)(unsigned mask);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700127
128 void (*wbinvd)(void);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100129 void (*io_delay)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100130
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700131 /* 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);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200134
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700135 /* MSR, PMC and TSR operations.
136 err = 0/-EFAULT. wrmsr returns 0/-EFAULT. */
137 u64 (*read_msr)(unsigned int msr, int *err);
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100138 int (*write_msr)(unsigned int msr, unsigned low, unsigned high);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700139
140 u64 (*read_tsc)(void);
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100141 u64 (*read_pmc)(int counter);
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100142 unsigned long long (*read_tscp)(unsigned int *aux);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700143
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400144 /*
145 * Atomically enable interrupts and return to userspace. This
146 * is only ever used to return to 32-bit processes; in a
147 * 64-bit kernel, it's used for 32-on-64 compat processes, but
148 * never native 64-bit processes. (Jump, not call.)
149 */
Jeremy Fitzhardinged75cd22f2008-06-25 00:19:26 -0400150 void (*irq_enable_sysexit)(void);
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400151
152 /*
153 * Switch to usermode gs and return to 64-bit usermode using
154 * sysret. Only used in 64-bit kernels to return to 64-bit
155 * processes. Usermode register state, including %rsp, must
156 * already be restored.
157 */
158 void (*usergs_sysret64)(void);
159
160 /*
161 * Switch to usermode gs and return to 32-bit usermode using
162 * sysret. Used to return to 32-on-64 compat processes.
163 * Other usermode register state, including %esp, must already
164 * be restored.
165 */
166 void (*usergs_sysret32)(void);
167
168 /* Normal iret. Jump to this with the standard iret stack
169 frame set up. */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700170 void (*iret)(void);
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700171
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100172 void (*swapgs)(void);
173
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700174 struct pv_lazy_ops lazy_mode;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700175};
176
177struct pv_irq_ops {
178 void (*init_IRQ)(void);
179
180 /*
181 * Get/set interrupt state. save_fl and restore_fl are only
182 * expected to use X86_EFLAGS_IF; all other bits
183 * returned from save_fl are undefined, and may be ignored by
184 * restore_fl.
185 */
186 unsigned long (*save_fl)(void);
187 void (*restore_fl)(unsigned long);
188 void (*irq_disable)(void);
189 void (*irq_enable)(void);
190 void (*safe_halt)(void);
191 void (*halt)(void);
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -0400192
193#ifdef CONFIG_X86_64
194 void (*adjust_exception_frame)(void);
195#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700196};
197
198struct pv_apic_ops {
Rusty Russell13623d72006-12-07 02:14:08 +0100199#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200200 /*
201 * Direct APIC operations, principally for VMI. Ideally
202 * these shouldn't be in this interface.
203 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100204 void (*apic_write)(unsigned long reg, u32 v);
205 void (*apic_write_atomic)(unsigned long reg, u32 v);
206 u32 (*apic_read)(unsigned long reg);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100207 void (*setup_boot_clock)(void);
208 void (*setup_secondary_clock)(void);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200209
210 void (*startup_ipi_hook)(int phys_apicid,
211 unsigned long start_eip,
212 unsigned long start_esp);
Rusty Russell13623d72006-12-07 02:14:08 +0100213#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700214};
215
216struct pv_mmu_ops {
217 /*
218 * Called before/after init_mm pagetable setup. setup_start
219 * may reset %cr3, and may pre-install parts of the pagetable;
220 * pagetable setup is expected to preserve any existing
221 * mapping.
222 */
223 void (*pagetable_setup_start)(pgd_t *pgd_base);
224 void (*pagetable_setup_done)(pgd_t *pgd_base);
225
226 unsigned long (*read_cr2)(void);
227 void (*write_cr2)(unsigned long);
228
229 unsigned long (*read_cr3)(void);
230 void (*write_cr3)(unsigned long);
231
232 /*
233 * Hooks for intercepting the creation/use/destruction of an
234 * mm_struct.
235 */
236 void (*activate_mm)(struct mm_struct *prev,
237 struct mm_struct *next);
238 void (*dup_mmap)(struct mm_struct *oldmm,
239 struct mm_struct *mm);
240 void (*exit_mmap)(struct mm_struct *mm);
241
Rusty Russell13623d72006-12-07 02:14:08 +0100242
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200243 /* TLB operations */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100244 void (*flush_tlb_user)(void);
245 void (*flush_tlb_kernel)(void);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200246 void (*flush_tlb_single)(unsigned long addr);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200247 void (*flush_tlb_others)(const cpumask_t *cpus, struct mm_struct *mm,
248 unsigned long va);
Rusty Russellda181a82006-12-07 02:14:08 +0100249
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400250 /* Hooks for allocating and freeing a pagetable top-level */
251 int (*pgd_alloc)(struct mm_struct *mm);
252 void (*pgd_free)(struct mm_struct *mm, pgd_t *pgd);
253
254 /*
255 * Hooks for allocating/releasing pagetable pages when they're
256 * attached to a pagetable
257 */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700258 void (*alloc_pte)(struct mm_struct *mm, u32 pfn);
259 void (*alloc_pmd)(struct mm_struct *mm, u32 pfn);
260 void (*alloc_pmd_clone)(u32 pfn, u32 clonepfn, u32 start, u32 count);
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -0700261 void (*alloc_pud)(struct mm_struct *mm, u32 pfn);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700262 void (*release_pte)(u32 pfn);
263 void (*release_pmd)(u32 pfn);
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -0700264 void (*release_pud)(u32 pfn);
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100265
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200266 /* Pagetable manipulation functions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100267 void (*set_pte)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200268 void (*set_pte_at)(struct mm_struct *mm, unsigned long addr,
269 pte_t *ptep, pte_t pteval);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100270 void (*set_pmd)(pmd_t *pmdp, pmd_t pmdval);
Joe Perches49cd7402008-03-23 01:03:00 -0700271 void (*pte_update)(struct mm_struct *mm, unsigned long addr,
272 pte_t *ptep);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200273 void (*pte_update_defer)(struct mm_struct *mm,
274 unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200275
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -0700276 pte_t (*ptep_modify_prot_start)(struct mm_struct *mm, unsigned long addr,
277 pte_t *ptep);
278 void (*ptep_modify_prot_commit)(struct mm_struct *mm, unsigned long addr,
279 pte_t *ptep, pte_t pte);
280
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100281 pteval_t (*pte_val)(pte_t);
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100282 pteval_t (*pte_flags)(pte_t);
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100283 pte_t (*make_pte)(pteval_t pte);
284
285 pgdval_t (*pgd_val)(pgd_t);
286 pgd_t (*make_pgd)(pgdval_t pgd);
287
288#if PAGETABLE_LEVELS >= 3
Rusty Russellda181a82006-12-07 02:14:08 +0100289#ifdef CONFIG_X86_PAE
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100290 void (*set_pte_atomic)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700291 void (*set_pte_present)(struct mm_struct *mm, unsigned long addr,
292 pte_t *ptep, pte_t pte);
Joe Perches49cd7402008-03-23 01:03:00 -0700293 void (*pte_clear)(struct mm_struct *mm, unsigned long addr,
294 pte_t *ptep);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100295 void (*pmd_clear)(pmd_t *pmdp);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200296
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100297#endif /* CONFIG_X86_PAE */
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200298
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100299 void (*set_pud)(pud_t *pudp, pud_t pudval);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200300
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100301 pmdval_t (*pmd_val)(pmd_t);
302 pmd_t (*make_pmd)(pmdval_t pmd);
303
304#if PAGETABLE_LEVELS == 4
305 pudval_t (*pud_val)(pud_t);
306 pud_t (*make_pud)(pudval_t pud);
Eduardo Habkost90422192008-01-30 13:33:20 +0100307
308 void (*set_pgd)(pgd_t *pudp, pgd_t pgdval);
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100309#endif /* PAGETABLE_LEVELS == 4 */
310#endif /* PAGETABLE_LEVELS >= 3 */
Rusty Russellda181a82006-12-07 02:14:08 +0100311
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700312#ifdef CONFIG_HIGHPTE
313 void *(*kmap_atomic_pte)(struct page *page, enum km_type type);
314#endif
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700315
316 struct pv_lazy_ops lazy_mode;
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700317
318 /* dom0 ops */
319
320 /* Sometimes the physical address is a pfn, and sometimes its
321 an mfn. We can tell which is which from the index. */
322 void (*set_fixmap)(unsigned /* enum fixed_addresses */ idx,
323 unsigned long phys, pgprot_t flags);
Rusty Russelld3561b72006-12-07 02:14:07 +0100324};
325
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700326/* This contains all the paravirt structures: we get a convenient
327 * number for each function using the offset which we use to indicate
328 * what to patch. */
Joe Perches49cd7402008-03-23 01:03:00 -0700329struct paravirt_patch_template {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700330 struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700331 struct pv_time_ops pv_time_ops;
332 struct pv_cpu_ops pv_cpu_ops;
333 struct pv_irq_ops pv_irq_ops;
334 struct pv_apic_ops pv_apic_ops;
335 struct pv_mmu_ops pv_mmu_ops;
336};
337
338extern struct pv_info pv_info;
339extern struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700340extern struct pv_time_ops pv_time_ops;
341extern struct pv_cpu_ops pv_cpu_ops;
342extern struct pv_irq_ops pv_irq_ops;
343extern struct pv_apic_ops pv_apic_ops;
344extern struct pv_mmu_ops pv_mmu_ops;
Rusty Russelld3561b72006-12-07 02:14:07 +0100345
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200346#define PARAVIRT_PATCH(x) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700347 (offsetof(struct paravirt_patch_template, x) / sizeof(void *))
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200348
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700349#define paravirt_type(op) \
350 [paravirt_typenum] "i" (PARAVIRT_PATCH(op)), \
351 [paravirt_opptr] "m" (op)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200352#define paravirt_clobber(clobber) \
353 [paravirt_clobber] "i" (clobber)
354
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200355/*
356 * Generate some code, and mark it as patchable by the
357 * apply_paravirt() alternate instruction patcher.
358 */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200359#define _paravirt_alt(insn_string, type, clobber) \
360 "771:\n\t" insn_string "\n" "772:\n" \
361 ".pushsection .parainstructions,\"a\"\n" \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +0100362 _ASM_ALIGN "\n" \
363 _ASM_PTR " 771b\n" \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200364 " .byte " type "\n" \
365 " .byte 772b-771b\n" \
366 " .short " clobber "\n" \
367 ".popsection\n"
368
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200369/* Generate patchable code, with the default asm parameters. */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200370#define paravirt_alt(insn_string) \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200371 _paravirt_alt(insn_string, "%c[paravirt_typenum]", "%c[paravirt_clobber]")
372
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100373/* Simple instruction patching code. */
374#define DEF_NATIVE(ops, name, code) \
375 extern const char start_##ops##_##name[], end_##ops##_##name[]; \
376 asm("start_" #ops "_" #name ": " code "; end_" #ops "_" #name ":")
377
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200378unsigned paravirt_patch_nop(void);
379unsigned paravirt_patch_ignore(unsigned len);
Andi Kleenab144f52007-08-10 22:31:03 +0200380unsigned paravirt_patch_call(void *insnbuf,
381 const void *target, u16 tgt_clobbers,
382 unsigned long addr, u16 site_clobbers,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200383 unsigned len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700384unsigned paravirt_patch_jmp(void *insnbuf, const void *target,
Andi Kleenab144f52007-08-10 22:31:03 +0200385 unsigned long addr, unsigned len);
386unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
387 unsigned long addr, unsigned len);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200388
Andi Kleenab144f52007-08-10 22:31:03 +0200389unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200390 const char *start, const char *end);
391
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100392unsigned native_patch(u8 type, u16 clobbers, void *ibuf,
393 unsigned long addr, unsigned len);
394
Jeremy Fitzhardinged5729292007-07-17 18:37:04 -0700395int paravirt_disable_iospace(void);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200396
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200397/*
398 * This generates an indirect call based on the operation type number.
399 * The type number, computed in PARAVIRT_PATCH, is derived from the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700400 * offset into the paravirt_patch_template structure, and can therefore be
401 * freely converted back into a structure offset.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200402 */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700403#define PARAVIRT_CALL "call *%[paravirt_opptr];"
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200404
405/*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700406 * These macros are intended to wrap calls through one of the paravirt
407 * ops structs, so that they can be later identified and patched at
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200408 * runtime.
409 *
410 * Normally, a call to a pv_op function is a simple indirect call:
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100411 * (pv_op_struct.operations)(args...).
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200412 *
413 * Unfortunately, this is a relatively slow operation for modern CPUs,
414 * because it cannot necessarily determine what the destination
415 * address is. In this case, the address is a runtime constant, so at
416 * the very least we can patch the call to e a simple direct call, or
417 * ideally, patch an inline implementation into the callsite. (Direct
418 * calls are essentially free, because the call and return addresses
419 * are completely predictable.)
420 *
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100421 * For i386, these macros rely on the standard gcc "regparm(3)" calling
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200422 * convention, in which the first three arguments are placed in %eax,
423 * %edx, %ecx (in that order), and the remaining arguments are placed
424 * on the stack. All caller-save registers (eax,edx,ecx) are expected
425 * to be modified (either clobbered or used for return values).
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100426 * X86_64, on the other hand, already specifies a register-based calling
427 * conventions, returning at %rax, with parameteres going on %rdi, %rsi,
428 * %rdx, and %rcx. Note that for this reason, x86_64 does not need any
429 * special handling for dealing with 4 arguments, unlike i386.
430 * However, x86_64 also have to clobber all caller saved registers, which
431 * unfortunately, are quite a bit (r8 - r11)
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200432 *
433 * The call instruction itself is marked by placing its start address
434 * and size into the .parainstructions section, so that
435 * apply_paravirt() in arch/i386/kernel/alternative.c can do the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700436 * appropriate patching under the control of the backend pv_init_ops
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200437 * implementation.
438 *
439 * Unfortunately there's no way to get gcc to generate the args setup
440 * for the call, and then allow the call itself to be generated by an
441 * inline asm. Because of this, we must do the complete arg setup and
442 * return value handling from within these macros. This is fairly
443 * cumbersome.
444 *
445 * There are 5 sets of PVOP_* macros for dealing with 0-4 arguments.
446 * It could be extended to more arguments, but there would be little
447 * to be gained from that. For each number of arguments, there are
448 * the two VCALL and CALL variants for void and non-void functions.
449 *
450 * When there is a return value, the invoker of the macro must specify
451 * the return type. The macro then uses sizeof() on that type to
452 * determine whether its a 32 or 64 bit value, and places the return
453 * in the right register(s) (just %eax for 32-bit, and %edx:%eax for
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100454 * 64-bit). For x86_64 machines, it just returns at %rax regardless of
455 * the return value size.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200456 *
457 * 64-bit arguments are passed as a pair of adjacent 32-bit arguments
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100458 * i386 also passes 64-bit arguments as a pair of adjacent 32-bit arguments
459 * in low,high order
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200460 *
461 * Small structures are passed and returned in registers. The macro
462 * calling convention can't directly deal with this, so the wrapper
463 * functions must do this.
464 *
465 * These PVOP_* macros are only defined within this header. This
466 * means that all uses must be wrapped in inline functions. This also
467 * makes sure the incoming and outgoing types are always correct.
468 */
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100469#ifdef CONFIG_X86_32
470#define PVOP_VCALL_ARGS unsigned long __eax, __edx, __ecx
471#define PVOP_CALL_ARGS PVOP_VCALL_ARGS
472#define PVOP_VCALL_CLOBBERS "=a" (__eax), "=d" (__edx), \
473 "=c" (__ecx)
474#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS
475#define EXTRA_CLOBBERS
476#define VEXTRA_CLOBBERS
477#else
478#define PVOP_VCALL_ARGS unsigned long __edi, __esi, __edx, __ecx
479#define PVOP_CALL_ARGS PVOP_VCALL_ARGS, __eax
480#define PVOP_VCALL_CLOBBERS "=D" (__edi), \
481 "=S" (__esi), "=d" (__edx), \
482 "=c" (__ecx)
483
484#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS, "=a" (__eax)
485
486#define EXTRA_CLOBBERS , "r8", "r9", "r10", "r11"
487#define VEXTRA_CLOBBERS , "rax", "r8", "r9", "r10", "r11"
488#endif
489
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400490#ifdef CONFIG_PARAVIRT_DEBUG
491#define PVOP_TEST_NULL(op) BUG_ON(op == NULL)
492#else
493#define PVOP_TEST_NULL(op) ((void)op)
494#endif
495
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200496#define __PVOP_CALL(rettype, op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200497 ({ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200498 rettype __ret; \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100499 PVOP_CALL_ARGS; \
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400500 PVOP_TEST_NULL(op); \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100501 /* This is 32-bit specific, but is okay in 64-bit */ \
502 /* since this condition will never hold */ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200503 if (sizeof(rettype) > sizeof(unsigned long)) { \
504 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200505 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200506 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100507 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200508 : paravirt_type(op), \
509 paravirt_clobber(CLBR_ANY), \
510 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100511 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200512 __ret = (rettype)((((u64)__edx) << 32) | __eax); \
513 } else { \
514 asm volatile(pre \
515 paravirt_alt(PARAVIRT_CALL) \
516 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100517 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200518 : paravirt_type(op), \
519 paravirt_clobber(CLBR_ANY), \
520 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100521 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200522 __ret = (rettype)__eax; \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200523 } \
524 __ret; \
525 })
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200526#define __PVOP_VCALL(op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200527 ({ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100528 PVOP_VCALL_ARGS; \
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400529 PVOP_TEST_NULL(op); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200530 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200531 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200532 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100533 : PVOP_VCALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200534 : paravirt_type(op), \
535 paravirt_clobber(CLBR_ANY), \
536 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100537 : "memory", "cc" VEXTRA_CLOBBERS); \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200538 })
539
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200540#define PVOP_CALL0(rettype, op) \
541 __PVOP_CALL(rettype, op, "", "")
542#define PVOP_VCALL0(op) \
543 __PVOP_VCALL(op, "", "")
544
545#define PVOP_CALL1(rettype, op, arg1) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100546 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200547#define PVOP_VCALL1(op, arg1) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100548 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200549
550#define PVOP_CALL2(rettype, op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100551 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
552 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200553#define PVOP_VCALL2(op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100554 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
555 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200556
557#define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100558 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
559 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200560#define PVOP_VCALL3(op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100561 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
562 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200563
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100564/* This is the only difference in x86_64. We can make it much simpler */
565#ifdef CONFIG_X86_32
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200566#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
567 __PVOP_CALL(rettype, op, \
568 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
569 "0" ((u32)(arg1)), "1" ((u32)(arg2)), \
570 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
571#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
572 __PVOP_VCALL(op, \
573 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
574 "0" ((u32)(arg1)), "1" ((u32)(arg2)), \
575 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100576#else
577#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
578 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
579 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)), \
580 "3"((unsigned long)(arg4)))
581#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
582 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
583 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)), \
584 "3"((unsigned long)(arg4)))
585#endif
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200586
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200587static inline int paravirt_enabled(void)
588{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700589 return pv_info.paravirt_enabled;
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200590}
Rusty Russelld3561b72006-12-07 02:14:07 +0100591
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100592static inline void load_sp0(struct tss_struct *tss,
Rusty Russelld3561b72006-12-07 02:14:07 +0100593 struct thread_struct *thread)
594{
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100595 PVOP_VCALL2(pv_cpu_ops.load_sp0, tss, thread);
Rusty Russelld3561b72006-12-07 02:14:07 +0100596}
597
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700598#define ARCH_SETUP pv_init_ops.arch_setup();
Rusty Russelld3561b72006-12-07 02:14:07 +0100599static inline unsigned long get_wallclock(void)
600{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700601 return PVOP_CALL0(unsigned long, pv_time_ops.get_wallclock);
Rusty Russelld3561b72006-12-07 02:14:07 +0100602}
603
604static inline int set_wallclock(unsigned long nowtime)
605{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700606 return PVOP_CALL1(int, pv_time_ops.set_wallclock, nowtime);
Rusty Russelld3561b72006-12-07 02:14:07 +0100607}
608
Zachary Amsdene30fab32007-03-05 00:30:39 -0800609static inline void (*choose_time_init(void))(void)
Rusty Russelld3561b72006-12-07 02:14:07 +0100610{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700611 return pv_time_ops.time_init;
Rusty Russelld3561b72006-12-07 02:14:07 +0100612}
613
614/* The paravirtualized CPUID instruction. */
615static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
616 unsigned int *ecx, unsigned int *edx)
617{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700618 PVOP_VCALL4(pv_cpu_ops.cpuid, eax, ebx, ecx, edx);
Rusty Russelld3561b72006-12-07 02:14:07 +0100619}
620
621/*
622 * These special macros can be used to get or set a debugging register
623 */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200624static inline unsigned long paravirt_get_debugreg(int reg)
625{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700626 return PVOP_CALL1(unsigned long, pv_cpu_ops.get_debugreg, reg);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200627}
628#define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
629static inline void set_debugreg(unsigned long val, int reg)
630{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700631 PVOP_VCALL2(pv_cpu_ops.set_debugreg, reg, val);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200632}
Rusty Russelld3561b72006-12-07 02:14:07 +0100633
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200634static inline void clts(void)
635{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700636 PVOP_VCALL0(pv_cpu_ops.clts);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200637}
Rusty Russelld3561b72006-12-07 02:14:07 +0100638
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200639static inline unsigned long read_cr0(void)
640{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700641 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr0);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200642}
Rusty Russelld3561b72006-12-07 02:14:07 +0100643
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200644static inline void write_cr0(unsigned long x)
645{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700646 PVOP_VCALL1(pv_cpu_ops.write_cr0, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200647}
Rusty Russelld3561b72006-12-07 02:14:07 +0100648
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200649static inline unsigned long read_cr2(void)
650{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700651 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr2);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200652}
Rusty Russelld3561b72006-12-07 02:14:07 +0100653
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200654static inline void write_cr2(unsigned long x)
655{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700656 PVOP_VCALL1(pv_mmu_ops.write_cr2, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200657}
Rusty Russelld3561b72006-12-07 02:14:07 +0100658
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200659static inline unsigned long read_cr3(void)
660{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700661 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr3);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200662}
663
664static inline void write_cr3(unsigned long x)
665{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700666 PVOP_VCALL1(pv_mmu_ops.write_cr3, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200667}
668
669static inline unsigned long read_cr4(void)
670{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700671 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200672}
673static inline unsigned long read_cr4_safe(void)
674{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700675 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4_safe);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200676}
677
678static inline void write_cr4(unsigned long x)
679{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700680 PVOP_VCALL1(pv_cpu_ops.write_cr4, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200681}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200682
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100683#ifdef CONFIG_X86_64
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100684static inline unsigned long read_cr8(void)
685{
686 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr8);
687}
688
689static inline void write_cr8(unsigned long x)
690{
691 PVOP_VCALL1(pv_cpu_ops.write_cr8, x);
692}
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100693#endif
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100694
Rusty Russelld3561b72006-12-07 02:14:07 +0100695static inline void raw_safe_halt(void)
696{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700697 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100698}
699
700static inline void halt(void)
701{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700702 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100703}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200704
705static inline void wbinvd(void)
706{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700707 PVOP_VCALL0(pv_cpu_ops.wbinvd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200708}
Rusty Russelld3561b72006-12-07 02:14:07 +0100709
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700710#define get_kernel_rpl() (pv_info.kernel_rpl)
Rusty Russelld3561b72006-12-07 02:14:07 +0100711
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200712static inline u64 paravirt_read_msr(unsigned msr, int *err)
713{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700714 return PVOP_CALL2(u64, pv_cpu_ops.read_msr, msr, err);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200715}
716static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
717{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700718 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200719}
720
Rusty Russell90a0a062007-05-02 19:27:10 +0200721/* These should all do BUG_ON(_err), but our headers are too tangled. */
Joe Perches49cd7402008-03-23 01:03:00 -0700722#define rdmsr(msr, val1, val2) \
723do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200724 int _err; \
725 u64 _l = paravirt_read_msr(msr, &_err); \
726 val1 = (u32)_l; \
727 val2 = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700728} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100729
Joe Perches49cd7402008-03-23 01:03:00 -0700730#define wrmsr(msr, val1, val2) \
731do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200732 paravirt_write_msr(msr, val1, val2); \
Joe Perches49cd7402008-03-23 01:03:00 -0700733} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100734
Joe Perches49cd7402008-03-23 01:03:00 -0700735#define rdmsrl(msr, val) \
736do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200737 int _err; \
738 val = paravirt_read_msr(msr, &_err); \
Joe Perches49cd7402008-03-23 01:03:00 -0700739} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100740
Joe Perches49cd7402008-03-23 01:03:00 -0700741#define wrmsrl(msr, val) wrmsr(msr, (u32)((u64)(val)), ((u64)(val))>>32)
742#define wrmsr_safe(msr, a, b) paravirt_write_msr(msr, a, b)
Rusty Russelld3561b72006-12-07 02:14:07 +0100743
744/* rdmsr with exception handling */
Joe Perches49cd7402008-03-23 01:03:00 -0700745#define rdmsr_safe(msr, a, b) \
746({ \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200747 int _err; \
748 u64 _l = paravirt_read_msr(msr, &_err); \
749 (*a) = (u32)_l; \
750 (*b) = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700751 _err; \
752})
Rusty Russelld3561b72006-12-07 02:14:07 +0100753
Andi Kleen1de87bd2008-03-22 10:59:28 +0100754static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
755{
756 int err;
757
758 *p = paravirt_read_msr(msr, &err);
759 return err;
760}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200761
762static inline u64 paravirt_read_tsc(void)
763{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700764 return PVOP_CALL0(u64, pv_cpu_ops.read_tsc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200765}
Rusty Russelld3561b72006-12-07 02:14:07 +0100766
Joe Perches49cd7402008-03-23 01:03:00 -0700767#define rdtscl(low) \
768do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200769 u64 _l = paravirt_read_tsc(); \
770 low = (int)_l; \
Joe Perches49cd7402008-03-23 01:03:00 -0700771} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100772
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200773#define rdtscll(val) (val = paravirt_read_tsc())
Rusty Russelld3561b72006-12-07 02:14:07 +0100774
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700775static inline unsigned long long paravirt_sched_clock(void)
776{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700777 return PVOP_CALL0(unsigned long long, pv_time_ops.sched_clock);
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700778}
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700779#define calculate_cpu_khz() (pv_time_ops.get_cpu_khz())
Zachary Amsden6cb9a832007-03-05 00:30:35 -0800780
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200781static inline unsigned long long paravirt_read_pmc(int counter)
782{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700783 return PVOP_CALL1(u64, pv_cpu_ops.read_pmc, counter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200784}
785
Joe Perches49cd7402008-03-23 01:03:00 -0700786#define rdpmc(counter, low, high) \
787do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200788 u64 _l = paravirt_read_pmc(counter); \
789 low = (u32)_l; \
790 high = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700791} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100792
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100793static inline unsigned long long paravirt_rdtscp(unsigned int *aux)
794{
795 return PVOP_CALL1(u64, pv_cpu_ops.read_tscp, aux);
796}
797
798#define rdtscp(low, high, aux) \
799do { \
800 int __aux; \
801 unsigned long __val = paravirt_rdtscp(&__aux); \
802 (low) = (u32)__val; \
803 (high) = (u32)(__val >> 32); \
804 (aux) = __aux; \
805} while (0)
806
807#define rdtscpll(val, aux) \
808do { \
809 unsigned long __aux; \
810 val = paravirt_rdtscp(&__aux); \
811 (aux) = __aux; \
812} while (0)
813
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200814static inline void load_TR_desc(void)
815{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700816 PVOP_VCALL0(pv_cpu_ops.load_tr_desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200817}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100818static inline void load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200819{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700820 PVOP_VCALL1(pv_cpu_ops.load_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200821}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100822static inline void load_idt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200823{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700824 PVOP_VCALL1(pv_cpu_ops.load_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200825}
826static inline void set_ldt(const void *addr, unsigned entries)
827{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700828 PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200829}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100830static inline void store_gdt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200831{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700832 PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200833}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100834static inline void store_idt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200835{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700836 PVOP_VCALL1(pv_cpu_ops.store_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200837}
838static inline unsigned long paravirt_store_tr(void)
839{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700840 return PVOP_CALL0(unsigned long, pv_cpu_ops.store_tr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200841}
842#define store_tr(tr) ((tr) = paravirt_store_tr())
843static inline void load_TLS(struct thread_struct *t, unsigned cpu)
844{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700845 PVOP_VCALL2(pv_cpu_ops.load_tls, t, cpu);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200846}
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100847
848static inline void write_ldt_entry(struct desc_struct *dt, int entry,
849 const void *desc)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200850{
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100851 PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200852}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100853
854static inline void write_gdt_entry(struct desc_struct *dt, int entry,
855 void *desc, int type)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200856{
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100857 PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200858}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100859
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100860static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200861{
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100862 PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200863}
864static inline void set_iopl_mask(unsigned mask)
865{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700866 PVOP_VCALL1(pv_cpu_ops.set_iopl_mask, mask);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200867}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200868
Rusty Russelld3561b72006-12-07 02:14:07 +0100869/* The paravirtualized I/O functions */
Joe Perches49cd7402008-03-23 01:03:00 -0700870static inline void slow_down_io(void)
871{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700872 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100873#ifdef REALLY_SLOW_IO
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700874 pv_cpu_ops.io_delay();
875 pv_cpu_ops.io_delay();
876 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100877#endif
878}
879
Rusty Russell13623d72006-12-07 02:14:08 +0100880#ifdef CONFIG_X86_LOCAL_APIC
881/*
882 * Basic functions accessing APICs.
883 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100884static inline void apic_write(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100885{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700886 PVOP_VCALL2(pv_apic_ops.apic_write, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100887}
888
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100889static inline void apic_write_atomic(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100890{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700891 PVOP_VCALL2(pv_apic_ops.apic_write_atomic, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100892}
893
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100894static inline u32 apic_read(unsigned long reg)
Rusty Russell13623d72006-12-07 02:14:08 +0100895{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700896 return PVOP_CALL1(unsigned long, pv_apic_ops.apic_read, reg);
Rusty Russell13623d72006-12-07 02:14:08 +0100897}
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100898
899static inline void setup_boot_clock(void)
900{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700901 PVOP_VCALL0(pv_apic_ops.setup_boot_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100902}
903
904static inline void setup_secondary_clock(void)
905{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700906 PVOP_VCALL0(pv_apic_ops.setup_secondary_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100907}
Rusty Russell13623d72006-12-07 02:14:08 +0100908#endif
909
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700910static inline void paravirt_post_allocator_init(void)
911{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700912 if (pv_init_ops.post_allocator_init)
913 (*pv_init_ops.post_allocator_init)();
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700914}
915
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200916static inline void paravirt_pagetable_setup_start(pgd_t *base)
917{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700918 (*pv_mmu_ops.pagetable_setup_start)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200919}
920
921static inline void paravirt_pagetable_setup_done(pgd_t *base)
922{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700923 (*pv_mmu_ops.pagetable_setup_done)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200924}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200925
Zachary Amsdenae5da272007-02-13 13:26:21 +0100926#ifdef CONFIG_SMP
927static inline void startup_ipi_hook(int phys_apicid, unsigned long start_eip,
928 unsigned long start_esp)
929{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700930 PVOP_VCALL3(pv_apic_ops.startup_ipi_hook,
931 phys_apicid, start_eip, start_esp);
Zachary Amsdenae5da272007-02-13 13:26:21 +0100932}
933#endif
Rusty Russell13623d72006-12-07 02:14:08 +0100934
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200935static inline void paravirt_activate_mm(struct mm_struct *prev,
936 struct mm_struct *next)
937{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700938 PVOP_VCALL2(pv_mmu_ops.activate_mm, prev, next);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200939}
940
941static inline void arch_dup_mmap(struct mm_struct *oldmm,
942 struct mm_struct *mm)
943{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700944 PVOP_VCALL2(pv_mmu_ops.dup_mmap, oldmm, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200945}
946
947static inline void arch_exit_mmap(struct mm_struct *mm)
948{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700949 PVOP_VCALL1(pv_mmu_ops.exit_mmap, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200950}
951
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200952static inline void __flush_tlb(void)
953{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700954 PVOP_VCALL0(pv_mmu_ops.flush_tlb_user);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200955}
956static inline void __flush_tlb_global(void)
957{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700958 PVOP_VCALL0(pv_mmu_ops.flush_tlb_kernel);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200959}
960static inline void __flush_tlb_single(unsigned long addr)
961{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700962 PVOP_VCALL1(pv_mmu_ops.flush_tlb_single, addr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200963}
Rusty Russellda181a82006-12-07 02:14:08 +0100964
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200965static inline void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
966 unsigned long va)
967{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700968 PVOP_VCALL3(pv_mmu_ops.flush_tlb_others, &cpumask, mm, va);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200969}
970
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400971static inline int paravirt_pgd_alloc(struct mm_struct *mm)
972{
973 return PVOP_CALL1(int, pv_mmu_ops.pgd_alloc, mm);
974}
975
976static inline void paravirt_pgd_free(struct mm_struct *mm, pgd_t *pgd)
977{
978 PVOP_VCALL2(pv_mmu_ops.pgd_free, mm, pgd);
979}
980
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700981static inline void paravirt_alloc_pte(struct mm_struct *mm, unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200982{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700983 PVOP_VCALL2(pv_mmu_ops.alloc_pte, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200984}
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700985static inline void paravirt_release_pte(unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200986{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700987 PVOP_VCALL1(pv_mmu_ops.release_pte, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200988}
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100989
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700990static inline void paravirt_alloc_pmd(struct mm_struct *mm, unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200991{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700992 PVOP_VCALL2(pv_mmu_ops.alloc_pmd, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200993}
994
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700995static inline void paravirt_alloc_pmd_clone(unsigned pfn, unsigned clonepfn,
996 unsigned start, unsigned count)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200997{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700998 PVOP_VCALL4(pv_mmu_ops.alloc_pmd_clone, pfn, clonepfn, start, count);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200999}
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001000static inline void paravirt_release_pmd(unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001001{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001002 PVOP_VCALL1(pv_mmu_ops.release_pmd, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001003}
1004
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -07001005static inline void paravirt_alloc_pud(struct mm_struct *mm, unsigned pfn)
1006{
1007 PVOP_VCALL2(pv_mmu_ops.alloc_pud, mm, pfn);
1008}
1009static inline void paravirt_release_pud(unsigned pfn)
1010{
1011 PVOP_VCALL1(pv_mmu_ops.release_pud, pfn);
1012}
1013
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +02001014#ifdef CONFIG_HIGHPTE
1015static inline void *kmap_atomic_pte(struct page *page, enum km_type type)
1016{
1017 unsigned long ret;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001018 ret = PVOP_CALL2(unsigned long, pv_mmu_ops.kmap_atomic_pte, page, type);
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +02001019 return (void *)ret;
1020}
1021#endif
1022
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001023static inline void pte_update(struct mm_struct *mm, unsigned long addr,
1024 pte_t *ptep)
1025{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001026 PVOP_VCALL3(pv_mmu_ops.pte_update, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001027}
1028
1029static inline void pte_update_defer(struct mm_struct *mm, unsigned long addr,
1030 pte_t *ptep)
1031{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001032 PVOP_VCALL3(pv_mmu_ops.pte_update_defer, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001033}
1034
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001035static inline pte_t __pte(pteval_t val)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001036{
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001037 pteval_t ret;
1038
1039 if (sizeof(pteval_t) > sizeof(long))
1040 ret = PVOP_CALL2(pteval_t,
1041 pv_mmu_ops.make_pte,
1042 val, (u64)val >> 32);
1043 else
1044 ret = PVOP_CALL1(pteval_t,
1045 pv_mmu_ops.make_pte,
1046 val);
1047
Jeremy Fitzhardingec8e53932008-01-30 13:32:57 +01001048 return (pte_t) { .pte = ret };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001049}
1050
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001051static inline pteval_t pte_val(pte_t pte)
1052{
1053 pteval_t ret;
1054
1055 if (sizeof(pteval_t) > sizeof(long))
1056 ret = PVOP_CALL2(pteval_t, pv_mmu_ops.pte_val,
1057 pte.pte, (u64)pte.pte >> 32);
1058 else
1059 ret = PVOP_CALL1(pteval_t, pv_mmu_ops.pte_val,
1060 pte.pte);
1061
1062 return ret;
1063}
1064
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001065static inline pteval_t pte_flags(pte_t pte)
1066{
1067 pteval_t ret;
1068
1069 if (sizeof(pteval_t) > sizeof(long))
1070 ret = PVOP_CALL2(pteval_t, pv_mmu_ops.pte_flags,
1071 pte.pte, (u64)pte.pte >> 32);
1072 else
1073 ret = PVOP_CALL1(pteval_t, pv_mmu_ops.pte_flags,
1074 pte.pte);
1075
1076 return ret;
1077}
1078
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001079static inline pgd_t __pgd(pgdval_t val)
1080{
1081 pgdval_t ret;
1082
1083 if (sizeof(pgdval_t) > sizeof(long))
1084 ret = PVOP_CALL2(pgdval_t, pv_mmu_ops.make_pgd,
1085 val, (u64)val >> 32);
1086 else
1087 ret = PVOP_CALL1(pgdval_t, pv_mmu_ops.make_pgd,
1088 val);
1089
1090 return (pgd_t) { ret };
1091}
1092
1093static inline pgdval_t pgd_val(pgd_t pgd)
1094{
1095 pgdval_t ret;
1096
1097 if (sizeof(pgdval_t) > sizeof(long))
1098 ret = PVOP_CALL2(pgdval_t, pv_mmu_ops.pgd_val,
1099 pgd.pgd, (u64)pgd.pgd >> 32);
1100 else
1101 ret = PVOP_CALL1(pgdval_t, pv_mmu_ops.pgd_val,
1102 pgd.pgd);
1103
1104 return ret;
1105}
1106
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001107#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1108static inline pte_t ptep_modify_prot_start(struct mm_struct *mm, unsigned long addr,
1109 pte_t *ptep)
1110{
1111 pteval_t ret;
1112
1113 ret = PVOP_CALL3(pteval_t, pv_mmu_ops.ptep_modify_prot_start,
1114 mm, addr, ptep);
1115
1116 return (pte_t) { .pte = ret };
1117}
1118
1119static inline void ptep_modify_prot_commit(struct mm_struct *mm, unsigned long addr,
1120 pte_t *ptep, pte_t pte)
1121{
1122 if (sizeof(pteval_t) > sizeof(long))
1123 /* 5 arg words */
1124 pv_mmu_ops.ptep_modify_prot_commit(mm, addr, ptep, pte);
1125 else
1126 PVOP_VCALL4(pv_mmu_ops.ptep_modify_prot_commit,
1127 mm, addr, ptep, pte.pte);
1128}
1129
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001130static inline void set_pte(pte_t *ptep, pte_t pte)
1131{
1132 if (sizeof(pteval_t) > sizeof(long))
1133 PVOP_VCALL3(pv_mmu_ops.set_pte, ptep,
1134 pte.pte, (u64)pte.pte >> 32);
1135 else
1136 PVOP_VCALL2(pv_mmu_ops.set_pte, ptep,
1137 pte.pte);
1138}
1139
1140static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1141 pte_t *ptep, pte_t pte)
1142{
1143 if (sizeof(pteval_t) > sizeof(long))
1144 /* 5 arg words */
1145 pv_mmu_ops.set_pte_at(mm, addr, ptep, pte);
1146 else
1147 PVOP_VCALL4(pv_mmu_ops.set_pte_at, mm, addr, ptep, pte.pte);
1148}
1149
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001150static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
1151{
1152 pmdval_t val = native_pmd_val(pmd);
1153
1154 if (sizeof(pmdval_t) > sizeof(long))
1155 PVOP_VCALL3(pv_mmu_ops.set_pmd, pmdp, val, (u64)val >> 32);
1156 else
1157 PVOP_VCALL2(pv_mmu_ops.set_pmd, pmdp, val);
1158}
1159
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001160#if PAGETABLE_LEVELS >= 3
1161static inline pmd_t __pmd(pmdval_t val)
1162{
1163 pmdval_t ret;
1164
1165 if (sizeof(pmdval_t) > sizeof(long))
1166 ret = PVOP_CALL2(pmdval_t, pv_mmu_ops.make_pmd,
1167 val, (u64)val >> 32);
1168 else
1169 ret = PVOP_CALL1(pmdval_t, pv_mmu_ops.make_pmd,
1170 val);
1171
1172 return (pmd_t) { ret };
1173}
1174
1175static inline pmdval_t pmd_val(pmd_t pmd)
1176{
1177 pmdval_t ret;
1178
1179 if (sizeof(pmdval_t) > sizeof(long))
1180 ret = PVOP_CALL2(pmdval_t, pv_mmu_ops.pmd_val,
1181 pmd.pmd, (u64)pmd.pmd >> 32);
1182 else
1183 ret = PVOP_CALL1(pmdval_t, pv_mmu_ops.pmd_val,
1184 pmd.pmd);
1185
1186 return ret;
1187}
1188
1189static inline void set_pud(pud_t *pudp, pud_t pud)
1190{
1191 pudval_t val = native_pud_val(pud);
1192
1193 if (sizeof(pudval_t) > sizeof(long))
1194 PVOP_VCALL3(pv_mmu_ops.set_pud, pudp,
1195 val, (u64)val >> 32);
1196 else
1197 PVOP_VCALL2(pv_mmu_ops.set_pud, pudp,
1198 val);
1199}
Eduardo Habkost90422192008-01-30 13:33:20 +01001200#if PAGETABLE_LEVELS == 4
1201static inline pud_t __pud(pudval_t val)
1202{
1203 pudval_t ret;
1204
1205 if (sizeof(pudval_t) > sizeof(long))
1206 ret = PVOP_CALL2(pudval_t, pv_mmu_ops.make_pud,
1207 val, (u64)val >> 32);
1208 else
1209 ret = PVOP_CALL1(pudval_t, pv_mmu_ops.make_pud,
1210 val);
1211
1212 return (pud_t) { ret };
1213}
1214
1215static inline pudval_t pud_val(pud_t pud)
1216{
1217 pudval_t ret;
1218
1219 if (sizeof(pudval_t) > sizeof(long))
1220 ret = PVOP_CALL2(pudval_t, pv_mmu_ops.pud_val,
1221 pud.pud, (u64)pud.pud >> 32);
1222 else
1223 ret = PVOP_CALL1(pudval_t, pv_mmu_ops.pud_val,
1224 pud.pud);
1225
1226 return ret;
1227}
1228
1229static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
1230{
1231 pgdval_t val = native_pgd_val(pgd);
1232
1233 if (sizeof(pgdval_t) > sizeof(long))
1234 PVOP_VCALL3(pv_mmu_ops.set_pgd, pgdp,
1235 val, (u64)val >> 32);
1236 else
1237 PVOP_VCALL2(pv_mmu_ops.set_pgd, pgdp,
1238 val);
1239}
1240
1241static inline void pgd_clear(pgd_t *pgdp)
1242{
1243 set_pgd(pgdp, __pgd(0));
1244}
1245
1246static inline void pud_clear(pud_t *pudp)
1247{
1248 set_pud(pudp, __pud(0));
1249}
1250
1251#endif /* PAGETABLE_LEVELS == 4 */
1252
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001253#endif /* PAGETABLE_LEVELS >= 3 */
1254
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001255#ifdef CONFIG_X86_PAE
1256/* Special-case pte-setting operations for PAE, which can't update a
1257 64-bit pte atomically */
1258static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1259{
1260 PVOP_VCALL3(pv_mmu_ops.set_pte_atomic, ptep,
1261 pte.pte, pte.pte >> 32);
1262}
1263
1264static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
1265 pte_t *ptep, pte_t pte)
1266{
1267 /* 5 arg words */
1268 pv_mmu_ops.set_pte_present(mm, addr, ptep, pte);
1269}
1270
1271static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1272 pte_t *ptep)
1273{
1274 PVOP_VCALL3(pv_mmu_ops.pte_clear, mm, addr, ptep);
1275}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001276
1277static inline void pmd_clear(pmd_t *pmdp)
1278{
1279 PVOP_VCALL1(pv_mmu_ops.pmd_clear, pmdp);
1280}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001281#else /* !CONFIG_X86_PAE */
1282static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1283{
1284 set_pte(ptep, pte);
1285}
1286
1287static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
1288 pte_t *ptep, pte_t pte)
1289{
1290 set_pte(ptep, pte);
1291}
1292
1293static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1294 pte_t *ptep)
1295{
1296 set_pte_at(mm, addr, ptep, __pte(0));
1297}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001298
1299static inline void pmd_clear(pmd_t *pmdp)
1300{
1301 set_pmd(pmdp, __pmd(0));
1302}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001303#endif /* CONFIG_X86_PAE */
1304
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001305/* Lazy mode for batching updates / context switch */
1306enum paravirt_lazy_mode {
1307 PARAVIRT_LAZY_NONE,
1308 PARAVIRT_LAZY_MMU,
1309 PARAVIRT_LAZY_CPU,
1310};
1311
1312enum paravirt_lazy_mode paravirt_get_lazy_mode(void);
1313void paravirt_enter_lazy_cpu(void);
1314void paravirt_leave_lazy_cpu(void);
1315void paravirt_enter_lazy_mmu(void);
1316void paravirt_leave_lazy_mmu(void);
1317void paravirt_leave_lazy(enum paravirt_lazy_mode mode);
1318
Zachary Amsden9226d122007-02-13 13:26:21 +01001319#define __HAVE_ARCH_ENTER_LAZY_CPU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001320static inline void arch_enter_lazy_cpu_mode(void)
1321{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001322 PVOP_VCALL0(pv_cpu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001323}
1324
1325static inline void arch_leave_lazy_cpu_mode(void)
1326{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001327 PVOP_VCALL0(pv_cpu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001328}
1329
1330static inline void arch_flush_lazy_cpu_mode(void)
1331{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001332 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)) {
1333 arch_leave_lazy_cpu_mode();
1334 arch_enter_lazy_cpu_mode();
1335 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001336}
1337
Zachary Amsden9226d122007-02-13 13:26:21 +01001338
1339#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001340static inline void arch_enter_lazy_mmu_mode(void)
1341{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001342 PVOP_VCALL0(pv_mmu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001343}
1344
1345static inline void arch_leave_lazy_mmu_mode(void)
1346{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001347 PVOP_VCALL0(pv_mmu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001348}
1349
1350static inline void arch_flush_lazy_mmu_mode(void)
1351{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001352 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU)) {
1353 arch_leave_lazy_mmu_mode();
1354 arch_enter_lazy_mmu_mode();
1355 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001356}
Zachary Amsden9226d122007-02-13 13:26:21 +01001357
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001358static inline void __set_fixmap(unsigned /* enum fixed_addresses */ idx,
1359 unsigned long phys, pgprot_t flags)
1360{
1361 pv_mmu_ops.set_fixmap(idx, phys, flags);
1362}
1363
Jeremy Fitzhardinge45876232007-05-02 19:27:13 +02001364void _paravirt_nop(void);
1365#define paravirt_nop ((void *)_paravirt_nop)
1366
Rusty Russell139ec7c2006-12-07 02:14:08 +01001367/* These all sit in the .parainstructions section to tell us what to patch. */
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001368struct paravirt_patch_site {
Rusty Russell139ec7c2006-12-07 02:14:08 +01001369 u8 *instr; /* original instructions */
1370 u8 instrtype; /* type of this instruction */
1371 u8 len; /* length of original instruction */
1372 u16 clobbers; /* what registers you may clobber */
1373};
1374
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001375extern struct paravirt_patch_site __parainstructions[],
1376 __parainstructions_end[];
1377
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001378#ifdef CONFIG_X86_32
1379#define PV_SAVE_REGS "pushl %%ecx; pushl %%edx;"
1380#define PV_RESTORE_REGS "popl %%edx; popl %%ecx"
1381#define PV_FLAGS_ARG "0"
1382#define PV_EXTRA_CLOBBERS
1383#define PV_VEXTRA_CLOBBERS
1384#else
1385/* We save some registers, but all of them, that's too much. We clobber all
1386 * caller saved registers but the argument parameter */
1387#define PV_SAVE_REGS "pushq %%rdi;"
1388#define PV_RESTORE_REGS "popq %%rdi;"
1389#define PV_EXTRA_CLOBBERS EXTRA_CLOBBERS, "rcx" , "rdx"
1390#define PV_VEXTRA_CLOBBERS EXTRA_CLOBBERS, "rdi", "rcx" , "rdx"
1391#define PV_FLAGS_ARG "D"
1392#endif
1393
Rusty Russell139ec7c2006-12-07 02:14:08 +01001394static inline unsigned long __raw_local_save_flags(void)
1395{
1396 unsigned long f;
1397
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001398 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001399 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001400 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001401 : "=a"(f)
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001402 : paravirt_type(pv_irq_ops.save_fl),
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001403 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001404 : "memory", "cc" PV_VEXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001405 return f;
1406}
1407
1408static inline void raw_local_irq_restore(unsigned long f)
1409{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001410 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001411 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001412 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001413 : "=a"(f)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001414 : PV_FLAGS_ARG(f),
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001415 paravirt_type(pv_irq_ops.restore_fl),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001416 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001417 : "memory", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001418}
1419
1420static inline void raw_local_irq_disable(void)
1421{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001422 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001423 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001424 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001425 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001426 : paravirt_type(pv_irq_ops.irq_disable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001427 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001428 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001429}
1430
1431static inline void raw_local_irq_enable(void)
1432{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001433 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001434 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001435 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001436 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001437 : paravirt_type(pv_irq_ops.irq_enable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001438 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001439 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001440}
1441
1442static inline unsigned long __raw_local_irq_save(void)
1443{
1444 unsigned long f;
1445
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001446 f = __raw_local_save_flags();
1447 raw_local_irq_disable();
Rusty Russell139ec7c2006-12-07 02:14:08 +01001448 return f;
1449}
1450
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +02001451/* Make sure as little as possible of this mess escapes. */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001452#undef PARAVIRT_CALL
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +02001453#undef __PVOP_CALL
1454#undef __PVOP_VCALL
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001455#undef PVOP_VCALL0
1456#undef PVOP_CALL0
1457#undef PVOP_VCALL1
1458#undef PVOP_CALL1
1459#undef PVOP_VCALL2
1460#undef PVOP_CALL2
1461#undef PVOP_VCALL3
1462#undef PVOP_CALL3
1463#undef PVOP_VCALL4
1464#undef PVOP_CALL4
Rusty Russell139ec7c2006-12-07 02:14:08 +01001465
Rusty Russelld3561b72006-12-07 02:14:07 +01001466#else /* __ASSEMBLY__ */
1467
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001468#define _PVSITE(ptype, clobbers, ops, word, algn) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001469771:; \
1470 ops; \
1471772:; \
1472 .pushsection .parainstructions,"a"; \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001473 .align algn; \
1474 word 771b; \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001475 .byte ptype; \
1476 .byte 772b-771b; \
1477 .short clobbers; \
1478 .popsection
1479
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001480
1481#ifdef CONFIG_X86_64
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001482#define PV_SAVE_REGS pushq %rax; pushq %rdi; pushq %rcx; pushq %rdx
1483#define PV_RESTORE_REGS popq %rdx; popq %rcx; popq %rdi; popq %rax
1484#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 8)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001485#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .quad, 8)
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001486#define PARA_INDIRECT(addr) *addr(%rip)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001487#else
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001488#define PV_SAVE_REGS pushl %eax; pushl %edi; pushl %ecx; pushl %edx
1489#define PV_RESTORE_REGS popl %edx; popl %ecx; popl %edi; popl %eax
1490#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 4)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001491#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001492#define PARA_INDIRECT(addr) *%cs:addr
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001493#endif
1494
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001495#define INTERRUPT_RETURN \
1496 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_iret), CLBR_NONE, \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001497 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_iret))
Rusty Russell139ec7c2006-12-07 02:14:08 +01001498
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001499#define DISABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001500 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_disable), clobbers, \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001501 PV_SAVE_REGS; \
1502 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_irq_disable); \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001503 PV_RESTORE_REGS;) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001504
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001505#define ENABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001506 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_enable), clobbers, \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001507 PV_SAVE_REGS; \
1508 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_irq_enable); \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001509 PV_RESTORE_REGS;)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001510
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001511#define USERGS_SYSRET32 \
1512 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_usergs_sysret32), \
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +01001513 CLBR_NONE, \
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001514 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_usergs_sysret32))
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001515
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001516#ifdef CONFIG_X86_32
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001517#define GET_CR0_INTO_EAX \
1518 push %ecx; push %edx; \
1519 call PARA_INDIRECT(pv_cpu_ops+PV_CPU_read_cr0); \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001520 pop %edx; pop %ecx
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001521
1522#define ENABLE_INTERRUPTS_SYSEXIT \
1523 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_sysexit), \
1524 CLBR_NONE, \
1525 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_irq_enable_sysexit))
1526
1527
1528#else /* !CONFIG_X86_32 */
Jeremy Fitzhardingea00394f2008-06-25 00:19:30 -04001529
1530/*
1531 * If swapgs is used while the userspace stack is still current,
1532 * there's no way to call a pvop. The PV replacement *must* be
1533 * inlined, or the swapgs instruction must be trapped and emulated.
1534 */
1535#define SWAPGS_UNSAFE_STACK \
1536 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE, \
1537 swapgs)
1538
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001539#define SWAPGS \
1540 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE, \
1541 PV_SAVE_REGS; \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001542 call PARA_INDIRECT(pv_cpu_ops+PV_CPU_swapgs); \
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001543 PV_RESTORE_REGS \
1544 )
1545
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001546#define GET_CR2_INTO_RCX \
1547 call PARA_INDIRECT(pv_mmu_ops+PV_MMU_read_cr2); \
1548 movq %rax, %rcx; \
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001549 xorq %rax, %rax;
1550
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001551#define PARAVIRT_ADJUST_EXCEPTION_FRAME \
1552 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_adjust_exception_frame), \
1553 CLBR_NONE, \
1554 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_adjust_exception_frame))
1555
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001556#define USERGS_SYSRET64 \
1557 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_usergs_sysret64), \
Jeremy Fitzhardinged75cd22f2008-06-25 00:19:26 -04001558 CLBR_NONE, \
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001559 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_usergs_sysret64))
1560
1561#define ENABLE_INTERRUPTS_SYSEXIT32 \
1562 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_sysexit), \
1563 CLBR_NONE, \
1564 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_irq_enable_sysexit))
1565#endif /* CONFIG_X86_32 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001566
Rusty Russelld3561b72006-12-07 02:14:07 +01001567#endif /* __ASSEMBLY__ */
1568#endif /* CONFIG_PARAVIRT */
1569#endif /* __ASM_PARAVIRT_H */