blob: 11574934a994f199a765e16a1f55ff2e77eb5bcf [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PARAVIRT_H
2#define _ASM_X86_PARAVIRT_H
Rusty Russelld3561b72006-12-07 02:14:07 +01003/* 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
Jeremy Fitzhardinge54321d92009-02-11 10:20:05 -08007#include <asm/pgtable_types.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)
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -080015#define CLBR_EDI (1 << 3)
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010016
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -080017#ifdef CONFIG_X86_32
18/* CLBR_ANY should match all regs platform has. For i386, that's just it */
19#define CLBR_ANY ((1 << 4) - 1)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080020
21#define CLBR_ARG_REGS (CLBR_EAX | CLBR_EDX | CLBR_ECX)
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -080022#define CLBR_RET_REG (CLBR_EAX | CLBR_EDX)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080023#define CLBR_SCRATCH (0)
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -080024#else
25#define CLBR_RAX CLBR_EAX
26#define CLBR_RCX CLBR_ECX
27#define CLBR_RDX CLBR_EDX
28#define CLBR_RDI CLBR_EDI
29#define CLBR_RSI (1 << 4)
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010030#define CLBR_R8 (1 << 5)
31#define CLBR_R9 (1 << 6)
32#define CLBR_R10 (1 << 7)
33#define CLBR_R11 (1 << 8)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080034
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010035#define CLBR_ANY ((1 << 9) - 1)
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -080036
37#define CLBR_ARG_REGS (CLBR_RDI | CLBR_RSI | CLBR_RDX | \
38 CLBR_RCX | CLBR_R8 | CLBR_R9)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080039#define CLBR_RET_REG (CLBR_RAX)
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -080040#define CLBR_SCRATCH (CLBR_R10 | CLBR_R11)
41
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010042#include <asm/desc_defs.h>
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010043#endif /* X86_64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +010044
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080045#define CLBR_CALLEE_SAVE ((CLBR_ARG_REGS | CLBR_SCRATCH) & ~CLBR_RET_REG)
46
Rusty Russelld3561b72006-12-07 02:14:07 +010047#ifndef __ASSEMBLY__
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020048#include <linux/types.h>
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +020049#include <linux/cpumask.h>
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020050#include <asm/kmap_types.h>
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +010051#include <asm/desc_defs.h>
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020052
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020053struct page;
Rusty Russelld3561b72006-12-07 02:14:07 +010054struct thread_struct;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010055struct desc_ptr;
Rusty Russelld3561b72006-12-07 02:14:07 +010056struct tss_struct;
Rusty Russellda181a82006-12-07 02:14:08 +010057struct mm_struct;
Rusty Russell90a0a062007-05-02 19:27:10 +020058struct desc_struct;
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -080059struct task_struct;
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020060
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080061/*
62 * Wrapper type for pointers to code which uses the non-standard
63 * calling convention. See PV_CALL_SAVE_REGS_THUNK below.
64 */
65struct paravirt_callee_save {
66 void *func;
67};
68
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070069/* general info */
70struct pv_info {
Rusty Russelld3561b72006-12-07 02:14:07 +010071 unsigned int kernel_rpl;
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020072 int shared_kernel_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070073 int paravirt_enabled;
Rusty Russelld3561b72006-12-07 02:14:07 +010074 const char *name;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070075};
Rusty Russelld3561b72006-12-07 02:14:07 +010076
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070077struct pv_init_ops {
Rusty Russell139ec7c2006-12-07 02:14:08 +010078 /*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070079 * Patch may replace one of the defined code sequences with
80 * arbitrary code, subject to the same register constraints.
81 * This generally means the code is not free to clobber any
82 * registers other than EAX. The patch function should return
83 * the number of bytes of code generated, as we nop pad the
84 * rest in generic code.
Rusty Russell139ec7c2006-12-07 02:14:08 +010085 */
Andi Kleenab144f52007-08-10 22:31:03 +020086 unsigned (*patch)(u8 type, u16 clobber, void *insnbuf,
87 unsigned long addr, unsigned len);
Rusty Russell139ec7c2006-12-07 02:14:08 +010088
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020089 /* Basic arch-specific setup */
Rusty Russelld3561b72006-12-07 02:14:07 +010090 void (*arch_setup)(void);
91 char *(*memory_setup)(void);
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -070092 void (*post_allocator_init)(void);
93
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020094 /* Print a banner to identify the environment */
Rusty Russelld3561b72006-12-07 02:14:07 +010095 void (*banner)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070096};
97
98
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070099struct pv_lazy_ops {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700100 /* Set deferred update mode, used for batching operations. */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700101 void (*enter)(void);
102 void (*leave)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700103};
104
105struct pv_time_ops {
106 void (*time_init)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100107
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200108 /* Set and set time of day */
Rusty Russelld3561b72006-12-07 02:14:07 +0100109 unsigned long (*get_wallclock)(void);
110 int (*set_wallclock)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +0100111
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700112 unsigned long long (*sched_clock)(void);
Alok Katariae93ef942008-07-01 11:43:36 -0700113 unsigned long (*get_tsc_khz)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700114};
Rusty Russelld3561b72006-12-07 02:14:07 +0100115
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700116struct pv_cpu_ops {
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200117 /* hooks for various privileged instructions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100118 unsigned long (*get_debugreg)(int regno);
119 void (*set_debugreg)(int regno, unsigned long value);
Rusty Russelld3561b72006-12-07 02:14:07 +0100120
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100121 void (*clts)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100122
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100123 unsigned long (*read_cr0)(void);
124 void (*write_cr0)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +0100125
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100126 unsigned long (*read_cr4_safe)(void);
127 unsigned long (*read_cr4)(void);
128 void (*write_cr4)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +0100129
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100130#ifdef CONFIG_X86_64
131 unsigned long (*read_cr8)(void);
132 void (*write_cr8)(unsigned long);
133#endif
134
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200135 /* Segment descriptor handling */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100136 void (*load_tr_desc)(void);
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100137 void (*load_gdt)(const struct desc_ptr *);
138 void (*load_idt)(const struct desc_ptr *);
139 void (*store_gdt)(struct desc_ptr *);
140 void (*store_idt)(struct desc_ptr *);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100141 void (*set_ldt)(const void *desc, unsigned entries);
142 unsigned long (*store_tr)(void);
143 void (*load_tls)(struct thread_struct *t, unsigned int cpu);
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -0400144#ifdef CONFIG_X86_64
145 void (*load_gs_index)(unsigned int idx);
146#endif
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100147 void (*write_ldt_entry)(struct desc_struct *ldt, int entrynum,
148 const void *desc);
Rusty Russell90a0a062007-05-02 19:27:10 +0200149 void (*write_gdt_entry)(struct desc_struct *,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100150 int entrynum, const void *desc, int size);
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100151 void (*write_idt_entry)(gate_desc *,
152 int entrynum, const gate_desc *gate);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700153 void (*alloc_ldt)(struct desc_struct *ldt, unsigned entries);
154 void (*free_ldt)(struct desc_struct *ldt, unsigned entries);
155
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100156 void (*load_sp0)(struct tss_struct *tss, struct thread_struct *t);
Rusty Russelld3561b72006-12-07 02:14:07 +0100157
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100158 void (*set_iopl_mask)(unsigned mask);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700159
160 void (*wbinvd)(void);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100161 void (*io_delay)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100162
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700163 /* cpuid emulation, mostly so that caps bits can be disabled */
164 void (*cpuid)(unsigned int *eax, unsigned int *ebx,
165 unsigned int *ecx, unsigned int *edx);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200166
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700167 /* MSR, PMC and TSR operations.
168 err = 0/-EFAULT. wrmsr returns 0/-EFAULT. */
169 u64 (*read_msr)(unsigned int msr, int *err);
Borislav Petkov132ec922009-08-31 09:50:09 +0200170 int (*rdmsr_regs)(u32 *regs);
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100171 int (*write_msr)(unsigned int msr, unsigned low, unsigned high);
Borislav Petkov132ec922009-08-31 09:50:09 +0200172 int (*wrmsr_regs)(u32 *regs);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700173
174 u64 (*read_tsc)(void);
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100175 u64 (*read_pmc)(int counter);
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100176 unsigned long long (*read_tscp)(unsigned int *aux);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700177
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400178 /*
179 * Atomically enable interrupts and return to userspace. This
180 * is only ever used to return to 32-bit processes; in a
181 * 64-bit kernel, it's used for 32-on-64 compat processes, but
182 * never native 64-bit processes. (Jump, not call.)
183 */
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -0400184 void (*irq_enable_sysexit)(void);
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400185
186 /*
187 * Switch to usermode gs and return to 64-bit usermode using
188 * sysret. Only used in 64-bit kernels to return to 64-bit
189 * processes. Usermode register state, including %rsp, must
190 * already be restored.
191 */
192 void (*usergs_sysret64)(void);
193
194 /*
195 * Switch to usermode gs and return to 32-bit usermode using
196 * sysret. Used to return to 32-on-64 compat processes.
197 * Other usermode register state, including %esp, must already
198 * be restored.
199 */
200 void (*usergs_sysret32)(void);
201
202 /* Normal iret. Jump to this with the standard iret stack
203 frame set up. */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700204 void (*iret)(void);
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700205
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100206 void (*swapgs)(void);
207
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800208 void (*start_context_switch)(struct task_struct *prev);
209 void (*end_context_switch)(struct task_struct *next);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700210};
211
212struct pv_irq_ops {
213 void (*init_IRQ)(void);
214
215 /*
216 * Get/set interrupt state. save_fl and restore_fl are only
217 * expected to use X86_EFLAGS_IF; all other bits
218 * returned from save_fl are undefined, and may be ignored by
219 * restore_fl.
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800220 *
221 * NOTE: These functions callers expect the callee to preserve
222 * more registers than the standard C calling convention.
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700223 */
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800224 struct paravirt_callee_save save_fl;
225 struct paravirt_callee_save restore_fl;
226 struct paravirt_callee_save irq_disable;
227 struct paravirt_callee_save irq_enable;
228
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700229 void (*safe_halt)(void);
230 void (*halt)(void);
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -0400231
232#ifdef CONFIG_X86_64
233 void (*adjust_exception_frame)(void);
234#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700235};
236
237struct pv_apic_ops {
Rusty Russell13623d72006-12-07 02:14:08 +0100238#ifdef CONFIG_X86_LOCAL_APIC
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100239 void (*setup_boot_clock)(void);
240 void (*setup_secondary_clock)(void);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200241
242 void (*startup_ipi_hook)(int phys_apicid,
243 unsigned long start_eip,
244 unsigned long start_esp);
Rusty Russell13623d72006-12-07 02:14:08 +0100245#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700246};
247
248struct pv_mmu_ops {
249 /*
250 * Called before/after init_mm pagetable setup. setup_start
251 * may reset %cr3, and may pre-install parts of the pagetable;
252 * pagetable setup is expected to preserve any existing
253 * mapping.
254 */
255 void (*pagetable_setup_start)(pgd_t *pgd_base);
256 void (*pagetable_setup_done)(pgd_t *pgd_base);
257
258 unsigned long (*read_cr2)(void);
259 void (*write_cr2)(unsigned long);
260
261 unsigned long (*read_cr3)(void);
262 void (*write_cr3)(unsigned long);
263
264 /*
265 * Hooks for intercepting the creation/use/destruction of an
266 * mm_struct.
267 */
268 void (*activate_mm)(struct mm_struct *prev,
269 struct mm_struct *next);
270 void (*dup_mmap)(struct mm_struct *oldmm,
271 struct mm_struct *mm);
272 void (*exit_mmap)(struct mm_struct *mm);
273
Rusty Russell13623d72006-12-07 02:14:08 +0100274
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200275 /* TLB operations */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100276 void (*flush_tlb_user)(void);
277 void (*flush_tlb_kernel)(void);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200278 void (*flush_tlb_single)(unsigned long addr);
Rusty Russell4595f962009-01-10 21:58:09 -0800279 void (*flush_tlb_others)(const struct cpumask *cpus,
280 struct mm_struct *mm,
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200281 unsigned long va);
Rusty Russellda181a82006-12-07 02:14:08 +0100282
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400283 /* Hooks for allocating and freeing a pagetable top-level */
284 int (*pgd_alloc)(struct mm_struct *mm);
285 void (*pgd_free)(struct mm_struct *mm, pgd_t *pgd);
286
287 /*
288 * Hooks for allocating/releasing pagetable pages when they're
289 * attached to a pagetable
290 */
Eduardo Habkostf8639932008-07-30 18:32:27 -0300291 void (*alloc_pte)(struct mm_struct *mm, unsigned long pfn);
292 void (*alloc_pmd)(struct mm_struct *mm, unsigned long pfn);
293 void (*alloc_pmd_clone)(unsigned long pfn, unsigned long clonepfn, unsigned long start, unsigned long count);
294 void (*alloc_pud)(struct mm_struct *mm, unsigned long pfn);
295 void (*release_pte)(unsigned long pfn);
296 void (*release_pmd)(unsigned long pfn);
297 void (*release_pud)(unsigned long pfn);
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100298
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200299 /* Pagetable manipulation functions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100300 void (*set_pte)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200301 void (*set_pte_at)(struct mm_struct *mm, unsigned long addr,
302 pte_t *ptep, pte_t pteval);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100303 void (*set_pmd)(pmd_t *pmdp, pmd_t pmdval);
Joe Perches49cd7402008-03-23 01:03:00 -0700304 void (*pte_update)(struct mm_struct *mm, unsigned long addr,
305 pte_t *ptep);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200306 void (*pte_update_defer)(struct mm_struct *mm,
307 unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200308
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -0700309 pte_t (*ptep_modify_prot_start)(struct mm_struct *mm, unsigned long addr,
310 pte_t *ptep);
311 void (*ptep_modify_prot_commit)(struct mm_struct *mm, unsigned long addr,
312 pte_t *ptep, pte_t pte);
313
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -0800314 struct paravirt_callee_save pte_val;
315 struct paravirt_callee_save make_pte;
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100316
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -0800317 struct paravirt_callee_save pgd_val;
318 struct paravirt_callee_save make_pgd;
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100319
320#if PAGETABLE_LEVELS >= 3
Rusty Russellda181a82006-12-07 02:14:08 +0100321#ifdef CONFIG_X86_PAE
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100322 void (*set_pte_atomic)(pte_t *ptep, pte_t pteval);
Joe Perches49cd7402008-03-23 01:03:00 -0700323 void (*pte_clear)(struct mm_struct *mm, unsigned long addr,
324 pte_t *ptep);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100325 void (*pmd_clear)(pmd_t *pmdp);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200326
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100327#endif /* CONFIG_X86_PAE */
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200328
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100329 void (*set_pud)(pud_t *pudp, pud_t pudval);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200330
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -0800331 struct paravirt_callee_save pmd_val;
332 struct paravirt_callee_save make_pmd;
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100333
334#if PAGETABLE_LEVELS == 4
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -0800335 struct paravirt_callee_save pud_val;
336 struct paravirt_callee_save make_pud;
Eduardo Habkost90422192008-01-30 13:33:20 +0100337
338 void (*set_pgd)(pgd_t *pudp, pgd_t pgdval);
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100339#endif /* PAGETABLE_LEVELS == 4 */
340#endif /* PAGETABLE_LEVELS >= 3 */
Rusty Russellda181a82006-12-07 02:14:08 +0100341
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700342#ifdef CONFIG_HIGHPTE
343 void *(*kmap_atomic_pte)(struct page *page, enum km_type type);
344#endif
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700345
346 struct pv_lazy_ops lazy_mode;
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700347
348 /* dom0 ops */
349
350 /* Sometimes the physical address is a pfn, and sometimes its
351 an mfn. We can tell which is which from the index. */
352 void (*set_fixmap)(unsigned /* enum fixed_addresses */ idx,
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700353 phys_addr_t phys, pgprot_t flags);
Rusty Russelld3561b72006-12-07 02:14:07 +0100354};
355
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700356struct raw_spinlock;
357struct pv_lock_ops {
358 int (*spin_is_locked)(struct raw_spinlock *lock);
359 int (*spin_is_contended)(struct raw_spinlock *lock);
360 void (*spin_lock)(struct raw_spinlock *lock);
Jeremy Fitzhardinge63d3a752008-08-19 13:19:36 -0700361 void (*spin_lock_flags)(struct raw_spinlock *lock, unsigned long flags);
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700362 int (*spin_trylock)(struct raw_spinlock *lock);
363 void (*spin_unlock)(struct raw_spinlock *lock);
364};
365
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700366/* This contains all the paravirt structures: we get a convenient
367 * number for each function using the offset which we use to indicate
368 * what to patch. */
Joe Perches49cd7402008-03-23 01:03:00 -0700369struct paravirt_patch_template {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700370 struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700371 struct pv_time_ops pv_time_ops;
372 struct pv_cpu_ops pv_cpu_ops;
373 struct pv_irq_ops pv_irq_ops;
374 struct pv_apic_ops pv_apic_ops;
375 struct pv_mmu_ops pv_mmu_ops;
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700376 struct pv_lock_ops pv_lock_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700377};
378
379extern struct pv_info pv_info;
380extern struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700381extern struct pv_time_ops pv_time_ops;
382extern struct pv_cpu_ops pv_cpu_ops;
383extern struct pv_irq_ops pv_irq_ops;
384extern struct pv_apic_ops pv_apic_ops;
385extern struct pv_mmu_ops pv_mmu_ops;
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700386extern struct pv_lock_ops pv_lock_ops;
Rusty Russelld3561b72006-12-07 02:14:07 +0100387
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200388#define PARAVIRT_PATCH(x) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700389 (offsetof(struct paravirt_patch_template, x) / sizeof(void *))
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200390
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700391#define paravirt_type(op) \
392 [paravirt_typenum] "i" (PARAVIRT_PATCH(op)), \
Jeremy Fitzhardinge42854dc2009-03-16 17:24:34 -0700393 [paravirt_opptr] "i" (&(op))
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200394#define paravirt_clobber(clobber) \
395 [paravirt_clobber] "i" (clobber)
396
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200397/*
398 * Generate some code, and mark it as patchable by the
399 * apply_paravirt() alternate instruction patcher.
400 */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200401#define _paravirt_alt(insn_string, type, clobber) \
402 "771:\n\t" insn_string "\n" "772:\n" \
403 ".pushsection .parainstructions,\"a\"\n" \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +0100404 _ASM_ALIGN "\n" \
405 _ASM_PTR " 771b\n" \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200406 " .byte " type "\n" \
407 " .byte 772b-771b\n" \
408 " .short " clobber "\n" \
409 ".popsection\n"
410
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200411/* Generate patchable code, with the default asm parameters. */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200412#define paravirt_alt(insn_string) \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200413 _paravirt_alt(insn_string, "%c[paravirt_typenum]", "%c[paravirt_clobber]")
414
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100415/* Simple instruction patching code. */
416#define DEF_NATIVE(ops, name, code) \
417 extern const char start_##ops##_##name[], end_##ops##_##name[]; \
418 asm("start_" #ops "_" #name ": " code "; end_" #ops "_" #name ":")
419
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200420unsigned paravirt_patch_nop(void);
Jeremy Fitzhardinge41edafd2009-01-28 14:35:02 -0800421unsigned paravirt_patch_ident_32(void *insnbuf, unsigned len);
422unsigned paravirt_patch_ident_64(void *insnbuf, unsigned len);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200423unsigned paravirt_patch_ignore(unsigned len);
Andi Kleenab144f52007-08-10 22:31:03 +0200424unsigned paravirt_patch_call(void *insnbuf,
425 const void *target, u16 tgt_clobbers,
426 unsigned long addr, u16 site_clobbers,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200427 unsigned len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700428unsigned paravirt_patch_jmp(void *insnbuf, const void *target,
Andi Kleenab144f52007-08-10 22:31:03 +0200429 unsigned long addr, unsigned len);
430unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
431 unsigned long addr, unsigned len);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200432
Andi Kleenab144f52007-08-10 22:31:03 +0200433unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200434 const char *start, const char *end);
435
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100436unsigned native_patch(u8 type, u16 clobbers, void *ibuf,
437 unsigned long addr, unsigned len);
438
Jeremy Fitzhardinged5729292007-07-17 18:37:04 -0700439int paravirt_disable_iospace(void);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200440
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200441/*
442 * This generates an indirect call based on the operation type number.
443 * The type number, computed in PARAVIRT_PATCH, is derived from the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700444 * offset into the paravirt_patch_template structure, and can therefore be
445 * freely converted back into a structure offset.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200446 */
Jeremy Fitzhardinge42854dc2009-03-16 17:24:34 -0700447#define PARAVIRT_CALL "call *%c[paravirt_opptr];"
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200448
449/*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700450 * These macros are intended to wrap calls through one of the paravirt
451 * ops structs, so that they can be later identified and patched at
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200452 * runtime.
453 *
454 * Normally, a call to a pv_op function is a simple indirect call:
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100455 * (pv_op_struct.operations)(args...).
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200456 *
457 * Unfortunately, this is a relatively slow operation for modern CPUs,
458 * because it cannot necessarily determine what the destination
459 * address is. In this case, the address is a runtime constant, so at
460 * the very least we can patch the call to e a simple direct call, or
461 * ideally, patch an inline implementation into the callsite. (Direct
462 * calls are essentially free, because the call and return addresses
463 * are completely predictable.)
464 *
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100465 * For i386, these macros rely on the standard gcc "regparm(3)" calling
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200466 * convention, in which the first three arguments are placed in %eax,
467 * %edx, %ecx (in that order), and the remaining arguments are placed
468 * on the stack. All caller-save registers (eax,edx,ecx) are expected
469 * to be modified (either clobbered or used for return values).
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100470 * X86_64, on the other hand, already specifies a register-based calling
471 * conventions, returning at %rax, with parameteres going on %rdi, %rsi,
472 * %rdx, and %rcx. Note that for this reason, x86_64 does not need any
473 * special handling for dealing with 4 arguments, unlike i386.
474 * However, x86_64 also have to clobber all caller saved registers, which
475 * unfortunately, are quite a bit (r8 - r11)
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200476 *
477 * The call instruction itself is marked by placing its start address
478 * and size into the .parainstructions section, so that
479 * apply_paravirt() in arch/i386/kernel/alternative.c can do the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700480 * appropriate patching under the control of the backend pv_init_ops
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200481 * implementation.
482 *
483 * Unfortunately there's no way to get gcc to generate the args setup
484 * for the call, and then allow the call itself to be generated by an
485 * inline asm. Because of this, we must do the complete arg setup and
486 * return value handling from within these macros. This is fairly
487 * cumbersome.
488 *
489 * There are 5 sets of PVOP_* macros for dealing with 0-4 arguments.
490 * It could be extended to more arguments, but there would be little
491 * to be gained from that. For each number of arguments, there are
492 * the two VCALL and CALL variants for void and non-void functions.
493 *
494 * When there is a return value, the invoker of the macro must specify
495 * the return type. The macro then uses sizeof() on that type to
496 * determine whether its a 32 or 64 bit value, and places the return
497 * in the right register(s) (just %eax for 32-bit, and %edx:%eax for
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100498 * 64-bit). For x86_64 machines, it just returns at %rax regardless of
499 * the return value size.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200500 *
501 * 64-bit arguments are passed as a pair of adjacent 32-bit arguments
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100502 * i386 also passes 64-bit arguments as a pair of adjacent 32-bit arguments
503 * in low,high order
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200504 *
505 * Small structures are passed and returned in registers. The macro
506 * calling convention can't directly deal with this, so the wrapper
507 * functions must do this.
508 *
509 * These PVOP_* macros are only defined within this header. This
510 * means that all uses must be wrapped in inline functions. This also
511 * makes sure the incoming and outgoing types are always correct.
512 */
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100513#ifdef CONFIG_X86_32
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800514#define PVOP_VCALL_ARGS \
515 unsigned long __eax = __eax, __edx = __edx, __ecx = __ecx
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100516#define PVOP_CALL_ARGS PVOP_VCALL_ARGS
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800517
518#define PVOP_CALL_ARG1(x) "a" ((unsigned long)(x))
519#define PVOP_CALL_ARG2(x) "d" ((unsigned long)(x))
520#define PVOP_CALL_ARG3(x) "c" ((unsigned long)(x))
521
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100522#define PVOP_VCALL_CLOBBERS "=a" (__eax), "=d" (__edx), \
523 "=c" (__ecx)
524#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800525
Jeremy Fitzhardinge0eb592d2009-02-03 16:00:38 -0800526#define PVOP_VCALLEE_CLOBBERS "=a" (__eax), "=d" (__edx)
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800527#define PVOP_CALLEE_CLOBBERS PVOP_VCALLEE_CLOBBERS
528
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100529#define EXTRA_CLOBBERS
530#define VEXTRA_CLOBBERS
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800531#else /* CONFIG_X86_64 */
532#define PVOP_VCALL_ARGS \
533 unsigned long __edi = __edi, __esi = __esi, \
534 __edx = __edx, __ecx = __ecx
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100535#define PVOP_CALL_ARGS PVOP_VCALL_ARGS, __eax
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800536
537#define PVOP_CALL_ARG1(x) "D" ((unsigned long)(x))
538#define PVOP_CALL_ARG2(x) "S" ((unsigned long)(x))
539#define PVOP_CALL_ARG3(x) "d" ((unsigned long)(x))
540#define PVOP_CALL_ARG4(x) "c" ((unsigned long)(x))
541
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100542#define PVOP_VCALL_CLOBBERS "=D" (__edi), \
543 "=S" (__esi), "=d" (__edx), \
544 "=c" (__ecx)
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100545#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS, "=a" (__eax)
546
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800547#define PVOP_VCALLEE_CLOBBERS "=a" (__eax)
548#define PVOP_CALLEE_CLOBBERS PVOP_VCALLEE_CLOBBERS
549
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100550#define EXTRA_CLOBBERS , "r8", "r9", "r10", "r11"
551#define VEXTRA_CLOBBERS , "rax", "r8", "r9", "r10", "r11"
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800552#endif /* CONFIG_X86_32 */
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100553
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400554#ifdef CONFIG_PARAVIRT_DEBUG
555#define PVOP_TEST_NULL(op) BUG_ON(op == NULL)
556#else
557#define PVOP_TEST_NULL(op) ((void)op)
558#endif
559
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800560#define ____PVOP_CALL(rettype, op, clbr, call_clbr, extra_clbr, \
561 pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200562 ({ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200563 rettype __ret; \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800564 PVOP_CALL_ARGS; \
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400565 PVOP_TEST_NULL(op); \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100566 /* This is 32-bit specific, but is okay in 64-bit */ \
567 /* since this condition will never hold */ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200568 if (sizeof(rettype) > sizeof(unsigned long)) { \
569 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200570 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200571 post \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800572 : call_clbr \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200573 : paravirt_type(op), \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800574 paravirt_clobber(clbr), \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200575 ##__VA_ARGS__ \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800576 : "memory", "cc" extra_clbr); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200577 __ret = (rettype)((((u64)__edx) << 32) | __eax); \
578 } else { \
579 asm volatile(pre \
580 paravirt_alt(PARAVIRT_CALL) \
581 post \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800582 : call_clbr \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200583 : paravirt_type(op), \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800584 paravirt_clobber(clbr), \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200585 ##__VA_ARGS__ \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800586 : "memory", "cc" extra_clbr); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200587 __ret = (rettype)__eax; \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200588 } \
589 __ret; \
590 })
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800591
592#define __PVOP_CALL(rettype, op, pre, post, ...) \
593 ____PVOP_CALL(rettype, op, CLBR_ANY, PVOP_CALL_CLOBBERS, \
594 EXTRA_CLOBBERS, pre, post, ##__VA_ARGS__)
595
596#define __PVOP_CALLEESAVE(rettype, op, pre, post, ...) \
597 ____PVOP_CALL(rettype, op.func, CLBR_RET_REG, \
598 PVOP_CALLEE_CLOBBERS, , \
599 pre, post, ##__VA_ARGS__)
600
601
602#define ____PVOP_VCALL(op, clbr, call_clbr, extra_clbr, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200603 ({ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100604 PVOP_VCALL_ARGS; \
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400605 PVOP_TEST_NULL(op); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200606 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200607 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200608 post \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800609 : call_clbr \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200610 : paravirt_type(op), \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800611 paravirt_clobber(clbr), \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200612 ##__VA_ARGS__ \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800613 : "memory", "cc" extra_clbr); \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200614 })
615
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800616#define __PVOP_VCALL(op, pre, post, ...) \
617 ____PVOP_VCALL(op, CLBR_ANY, PVOP_VCALL_CLOBBERS, \
618 VEXTRA_CLOBBERS, \
619 pre, post, ##__VA_ARGS__)
620
621#define __PVOP_VCALLEESAVE(rettype, op, pre, post, ...) \
622 ____PVOP_CALL(rettype, op.func, CLBR_RET_REG, \
623 PVOP_VCALLEE_CLOBBERS, , \
624 pre, post, ##__VA_ARGS__)
625
626
627
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200628#define PVOP_CALL0(rettype, op) \
629 __PVOP_CALL(rettype, op, "", "")
630#define PVOP_VCALL0(op) \
631 __PVOP_VCALL(op, "", "")
632
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800633#define PVOP_CALLEE0(rettype, op) \
634 __PVOP_CALLEESAVE(rettype, op, "", "")
635#define PVOP_VCALLEE0(op) \
636 __PVOP_VCALLEESAVE(op, "", "")
637
638
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200639#define PVOP_CALL1(rettype, op, arg1) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800640 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200641#define PVOP_VCALL1(op, arg1) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800642 __PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1))
643
644#define PVOP_CALLEE1(rettype, op, arg1) \
645 __PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1))
646#define PVOP_VCALLEE1(op, arg1) \
647 __PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1))
648
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200649
650#define PVOP_CALL2(rettype, op, arg1, arg2) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800651 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1), \
652 PVOP_CALL_ARG2(arg2))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200653#define PVOP_VCALL2(op, arg1, arg2) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800654 __PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1), \
655 PVOP_CALL_ARG2(arg2))
656
657#define PVOP_CALLEE2(rettype, op, arg1, arg2) \
658 __PVOP_CALLEESAVE(rettype, op, "", "", PVOP_CALL_ARG1(arg1), \
659 PVOP_CALL_ARG2(arg2))
660#define PVOP_VCALLEE2(op, arg1, arg2) \
661 __PVOP_VCALLEESAVE(op, "", "", PVOP_CALL_ARG1(arg1), \
662 PVOP_CALL_ARG2(arg2))
663
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200664
665#define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800666 __PVOP_CALL(rettype, op, "", "", PVOP_CALL_ARG1(arg1), \
667 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200668#define PVOP_VCALL3(op, arg1, arg2, arg3) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800669 __PVOP_VCALL(op, "", "", PVOP_CALL_ARG1(arg1), \
670 PVOP_CALL_ARG2(arg2), PVOP_CALL_ARG3(arg3))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200671
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100672/* This is the only difference in x86_64. We can make it much simpler */
673#ifdef CONFIG_X86_32
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200674#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
675 __PVOP_CALL(rettype, op, \
676 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800677 PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2), \
678 PVOP_CALL_ARG3(arg3), [_arg4] "mr" ((u32)(arg4)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200679#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
680 __PVOP_VCALL(op, \
681 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
682 "0" ((u32)(arg1)), "1" ((u32)(arg2)), \
683 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100684#else
685#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800686 __PVOP_CALL(rettype, op, "", "", \
687 PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2), \
688 PVOP_CALL_ARG3(arg3), PVOP_CALL_ARG4(arg4))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100689#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
Jeremy Fitzhardinge791bad92009-01-28 14:35:06 -0800690 __PVOP_VCALL(op, "", "", \
691 PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2), \
692 PVOP_CALL_ARG3(arg3), PVOP_CALL_ARG4(arg4))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100693#endif
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200694
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200695static inline int paravirt_enabled(void)
696{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700697 return pv_info.paravirt_enabled;
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200698}
Rusty Russelld3561b72006-12-07 02:14:07 +0100699
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100700static inline void load_sp0(struct tss_struct *tss,
Rusty Russelld3561b72006-12-07 02:14:07 +0100701 struct thread_struct *thread)
702{
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100703 PVOP_VCALL2(pv_cpu_ops.load_sp0, tss, thread);
Rusty Russelld3561b72006-12-07 02:14:07 +0100704}
705
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700706#define ARCH_SETUP pv_init_ops.arch_setup();
Rusty Russelld3561b72006-12-07 02:14:07 +0100707static inline unsigned long get_wallclock(void)
708{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700709 return PVOP_CALL0(unsigned long, pv_time_ops.get_wallclock);
Rusty Russelld3561b72006-12-07 02:14:07 +0100710}
711
712static inline int set_wallclock(unsigned long nowtime)
713{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700714 return PVOP_CALL1(int, pv_time_ops.set_wallclock, nowtime);
Rusty Russelld3561b72006-12-07 02:14:07 +0100715}
716
Zachary Amsdene30fab32007-03-05 00:30:39 -0800717static inline void (*choose_time_init(void))(void)
Rusty Russelld3561b72006-12-07 02:14:07 +0100718{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700719 return pv_time_ops.time_init;
Rusty Russelld3561b72006-12-07 02:14:07 +0100720}
721
722/* The paravirtualized CPUID instruction. */
723static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
724 unsigned int *ecx, unsigned int *edx)
725{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700726 PVOP_VCALL4(pv_cpu_ops.cpuid, eax, ebx, ecx, edx);
Rusty Russelld3561b72006-12-07 02:14:07 +0100727}
728
729/*
730 * These special macros can be used to get or set a debugging register
731 */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200732static inline unsigned long paravirt_get_debugreg(int reg)
733{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700734 return PVOP_CALL1(unsigned long, pv_cpu_ops.get_debugreg, reg);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200735}
736#define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
737static inline void set_debugreg(unsigned long val, int reg)
738{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700739 PVOP_VCALL2(pv_cpu_ops.set_debugreg, reg, val);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200740}
Rusty Russelld3561b72006-12-07 02:14:07 +0100741
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200742static inline void clts(void)
743{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700744 PVOP_VCALL0(pv_cpu_ops.clts);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200745}
Rusty Russelld3561b72006-12-07 02:14:07 +0100746
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200747static inline unsigned long read_cr0(void)
748{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700749 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr0);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200750}
Rusty Russelld3561b72006-12-07 02:14:07 +0100751
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200752static inline void write_cr0(unsigned long x)
753{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700754 PVOP_VCALL1(pv_cpu_ops.write_cr0, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200755}
Rusty Russelld3561b72006-12-07 02:14:07 +0100756
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200757static inline unsigned long read_cr2(void)
758{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700759 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr2);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200760}
Rusty Russelld3561b72006-12-07 02:14:07 +0100761
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200762static inline void write_cr2(unsigned long x)
763{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700764 PVOP_VCALL1(pv_mmu_ops.write_cr2, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200765}
Rusty Russelld3561b72006-12-07 02:14:07 +0100766
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200767static inline unsigned long read_cr3(void)
768{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700769 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr3);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200770}
771
772static inline void write_cr3(unsigned long x)
773{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700774 PVOP_VCALL1(pv_mmu_ops.write_cr3, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200775}
776
777static inline unsigned long read_cr4(void)
778{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700779 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200780}
781static inline unsigned long read_cr4_safe(void)
782{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700783 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4_safe);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200784}
785
786static inline void write_cr4(unsigned long x)
787{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700788 PVOP_VCALL1(pv_cpu_ops.write_cr4, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200789}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200790
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100791#ifdef CONFIG_X86_64
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100792static inline unsigned long read_cr8(void)
793{
794 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr8);
795}
796
797static inline void write_cr8(unsigned long x)
798{
799 PVOP_VCALL1(pv_cpu_ops.write_cr8, x);
800}
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100801#endif
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100802
Rusty Russelld3561b72006-12-07 02:14:07 +0100803static inline void raw_safe_halt(void)
804{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700805 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100806}
807
808static inline void halt(void)
809{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700810 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100811}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200812
813static inline void wbinvd(void)
814{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700815 PVOP_VCALL0(pv_cpu_ops.wbinvd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200816}
Rusty Russelld3561b72006-12-07 02:14:07 +0100817
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700818#define get_kernel_rpl() (pv_info.kernel_rpl)
Rusty Russelld3561b72006-12-07 02:14:07 +0100819
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200820static inline u64 paravirt_read_msr(unsigned msr, int *err)
821{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700822 return PVOP_CALL2(u64, pv_cpu_ops.read_msr, msr, err);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200823}
Borislav Petkov132ec922009-08-31 09:50:09 +0200824
825static inline int paravirt_rdmsr_regs(u32 *regs)
826{
827 return PVOP_CALL1(int, pv_cpu_ops.rdmsr_regs, regs);
828}
829
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200830static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
831{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700832 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200833}
834
Borislav Petkov132ec922009-08-31 09:50:09 +0200835static inline int paravirt_wrmsr_regs(u32 *regs)
836{
837 return PVOP_CALL1(int, pv_cpu_ops.wrmsr_regs, regs);
838}
839
Rusty Russell90a0a062007-05-02 19:27:10 +0200840/* These should all do BUG_ON(_err), but our headers are too tangled. */
Joe Perches49cd7402008-03-23 01:03:00 -0700841#define rdmsr(msr, val1, val2) \
842do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200843 int _err; \
844 u64 _l = paravirt_read_msr(msr, &_err); \
845 val1 = (u32)_l; \
846 val2 = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700847} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100848
Joe Perches49cd7402008-03-23 01:03:00 -0700849#define wrmsr(msr, val1, val2) \
850do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200851 paravirt_write_msr(msr, val1, val2); \
Joe Perches49cd7402008-03-23 01:03:00 -0700852} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100853
Joe Perches49cd7402008-03-23 01:03:00 -0700854#define rdmsrl(msr, val) \
855do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200856 int _err; \
857 val = paravirt_read_msr(msr, &_err); \
Joe Perches49cd7402008-03-23 01:03:00 -0700858} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100859
Joe Perches49cd7402008-03-23 01:03:00 -0700860#define wrmsrl(msr, val) wrmsr(msr, (u32)((u64)(val)), ((u64)(val))>>32)
861#define wrmsr_safe(msr, a, b) paravirt_write_msr(msr, a, b)
Rusty Russelld3561b72006-12-07 02:14:07 +0100862
863/* rdmsr with exception handling */
Joe Perches49cd7402008-03-23 01:03:00 -0700864#define rdmsr_safe(msr, a, b) \
865({ \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200866 int _err; \
867 u64 _l = paravirt_read_msr(msr, &_err); \
868 (*a) = (u32)_l; \
869 (*b) = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700870 _err; \
871})
Rusty Russelld3561b72006-12-07 02:14:07 +0100872
Borislav Petkov132ec922009-08-31 09:50:09 +0200873#define rdmsr_safe_regs(regs) paravirt_rdmsr_regs(regs)
874#define wrmsr_safe_regs(regs) paravirt_wrmsr_regs(regs)
875
Andi Kleen1de87bd2008-03-22 10:59:28 +0100876static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
877{
878 int err;
879
880 *p = paravirt_read_msr(msr, &err);
881 return err;
882}
Yinghai Lub05f78f2008-08-22 01:32:50 -0700883static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
884{
Borislav Petkov177fed12009-08-31 09:50:10 +0200885 u32 gprs[8] = { 0 };
Yinghai Lub05f78f2008-08-22 01:32:50 -0700886 int err;
887
Borislav Petkov177fed12009-08-31 09:50:10 +0200888 gprs[1] = msr;
889 gprs[7] = 0x9c5a203a;
890
891 err = paravirt_rdmsr_regs(gprs);
892
893 *p = gprs[0] | ((u64)gprs[2] << 32);
894
Yinghai Lub05f78f2008-08-22 01:32:50 -0700895 return err;
896}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200897
Borislav Petkov177fed12009-08-31 09:50:10 +0200898static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
899{
900 u32 gprs[8] = { 0 };
901
902 gprs[0] = (u32)val;
903 gprs[1] = msr;
904 gprs[2] = val >> 32;
905 gprs[7] = 0x9c5a203a;
906
907 return paravirt_wrmsr_regs(gprs);
908}
909
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200910static inline u64 paravirt_read_tsc(void)
911{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700912 return PVOP_CALL0(u64, pv_cpu_ops.read_tsc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200913}
Rusty Russelld3561b72006-12-07 02:14:07 +0100914
Joe Perches49cd7402008-03-23 01:03:00 -0700915#define rdtscl(low) \
916do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200917 u64 _l = paravirt_read_tsc(); \
918 low = (int)_l; \
Joe Perches49cd7402008-03-23 01:03:00 -0700919} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100920
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200921#define rdtscll(val) (val = paravirt_read_tsc())
Rusty Russelld3561b72006-12-07 02:14:07 +0100922
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700923static inline unsigned long long paravirt_sched_clock(void)
924{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700925 return PVOP_CALL0(unsigned long long, pv_time_ops.sched_clock);
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700926}
Alok Katariae93ef942008-07-01 11:43:36 -0700927#define calibrate_tsc() (pv_time_ops.get_tsc_khz())
Zachary Amsden6cb9a832007-03-05 00:30:35 -0800928
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200929static inline unsigned long long paravirt_read_pmc(int counter)
930{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700931 return PVOP_CALL1(u64, pv_cpu_ops.read_pmc, counter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200932}
933
Joe Perches49cd7402008-03-23 01:03:00 -0700934#define rdpmc(counter, low, high) \
935do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200936 u64 _l = paravirt_read_pmc(counter); \
937 low = (u32)_l; \
938 high = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700939} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100940
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100941static inline unsigned long long paravirt_rdtscp(unsigned int *aux)
942{
943 return PVOP_CALL1(u64, pv_cpu_ops.read_tscp, aux);
944}
945
946#define rdtscp(low, high, aux) \
947do { \
948 int __aux; \
949 unsigned long __val = paravirt_rdtscp(&__aux); \
950 (low) = (u32)__val; \
951 (high) = (u32)(__val >> 32); \
952 (aux) = __aux; \
953} while (0)
954
955#define rdtscpll(val, aux) \
956do { \
957 unsigned long __aux; \
958 val = paravirt_rdtscp(&__aux); \
959 (aux) = __aux; \
960} while (0)
961
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700962static inline void paravirt_alloc_ldt(struct desc_struct *ldt, unsigned entries)
963{
964 PVOP_VCALL2(pv_cpu_ops.alloc_ldt, ldt, entries);
965}
966
967static inline void paravirt_free_ldt(struct desc_struct *ldt, unsigned entries)
968{
969 PVOP_VCALL2(pv_cpu_ops.free_ldt, ldt, entries);
970}
971
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200972static inline void load_TR_desc(void)
973{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700974 PVOP_VCALL0(pv_cpu_ops.load_tr_desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200975}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100976static inline void load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200977{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700978 PVOP_VCALL1(pv_cpu_ops.load_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200979}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100980static inline void load_idt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200981{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700982 PVOP_VCALL1(pv_cpu_ops.load_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200983}
984static inline void set_ldt(const void *addr, unsigned entries)
985{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700986 PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200987}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100988static inline void store_gdt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200989{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700990 PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200991}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100992static inline void store_idt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200993{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700994 PVOP_VCALL1(pv_cpu_ops.store_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200995}
996static inline unsigned long paravirt_store_tr(void)
997{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700998 return PVOP_CALL0(unsigned long, pv_cpu_ops.store_tr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200999}
1000#define store_tr(tr) ((tr) = paravirt_store_tr())
1001static inline void load_TLS(struct thread_struct *t, unsigned cpu)
1002{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001003 PVOP_VCALL2(pv_cpu_ops.load_tls, t, cpu);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001004}
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +01001005
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001006#ifdef CONFIG_X86_64
1007static inline void load_gs_index(unsigned int gs)
1008{
1009 PVOP_VCALL1(pv_cpu_ops.load_gs_index, gs);
1010}
1011#endif
1012
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +01001013static inline void write_ldt_entry(struct desc_struct *dt, int entry,
1014 const void *desc)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001015{
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +01001016 PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001017}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +01001018
1019static inline void write_gdt_entry(struct desc_struct *dt, int entry,
1020 void *desc, int type)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001021{
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +01001022 PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001023}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +01001024
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +01001025static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001026{
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +01001027 PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001028}
1029static inline void set_iopl_mask(unsigned mask)
1030{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001031 PVOP_VCALL1(pv_cpu_ops.set_iopl_mask, mask);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001032}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +02001033
Rusty Russelld3561b72006-12-07 02:14:07 +01001034/* The paravirtualized I/O functions */
Joe Perches49cd7402008-03-23 01:03:00 -07001035static inline void slow_down_io(void)
1036{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001037 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +01001038#ifdef REALLY_SLOW_IO
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001039 pv_cpu_ops.io_delay();
1040 pv_cpu_ops.io_delay();
1041 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +01001042#endif
1043}
1044
Rusty Russell13623d72006-12-07 02:14:08 +01001045#ifdef CONFIG_X86_LOCAL_APIC
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001046static inline void setup_boot_clock(void)
1047{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001048 PVOP_VCALL0(pv_apic_ops.setup_boot_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001049}
1050
1051static inline void setup_secondary_clock(void)
1052{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001053 PVOP_VCALL0(pv_apic_ops.setup_secondary_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001054}
Rusty Russell13623d72006-12-07 02:14:08 +01001055#endif
1056
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -07001057static inline void paravirt_post_allocator_init(void)
1058{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001059 if (pv_init_ops.post_allocator_init)
1060 (*pv_init_ops.post_allocator_init)();
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -07001061}
1062
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +02001063static inline void paravirt_pagetable_setup_start(pgd_t *base)
1064{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001065 (*pv_mmu_ops.pagetable_setup_start)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +02001066}
1067
1068static inline void paravirt_pagetable_setup_done(pgd_t *base)
1069{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001070 (*pv_mmu_ops.pagetable_setup_done)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +02001071}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +02001072
Zachary Amsdenae5da272007-02-13 13:26:21 +01001073#ifdef CONFIG_SMP
1074static inline void startup_ipi_hook(int phys_apicid, unsigned long start_eip,
1075 unsigned long start_esp)
1076{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001077 PVOP_VCALL3(pv_apic_ops.startup_ipi_hook,
1078 phys_apicid, start_eip, start_esp);
Zachary Amsdenae5da272007-02-13 13:26:21 +01001079}
1080#endif
Rusty Russell13623d72006-12-07 02:14:08 +01001081
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02001082static inline void paravirt_activate_mm(struct mm_struct *prev,
1083 struct mm_struct *next)
1084{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001085 PVOP_VCALL2(pv_mmu_ops.activate_mm, prev, next);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02001086}
1087
1088static inline void arch_dup_mmap(struct mm_struct *oldmm,
1089 struct mm_struct *mm)
1090{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001091 PVOP_VCALL2(pv_mmu_ops.dup_mmap, oldmm, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02001092}
1093
1094static inline void arch_exit_mmap(struct mm_struct *mm)
1095{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001096 PVOP_VCALL1(pv_mmu_ops.exit_mmap, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +02001097}
1098
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001099static inline void __flush_tlb(void)
1100{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001101 PVOP_VCALL0(pv_mmu_ops.flush_tlb_user);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001102}
1103static inline void __flush_tlb_global(void)
1104{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001105 PVOP_VCALL0(pv_mmu_ops.flush_tlb_kernel);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001106}
1107static inline void __flush_tlb_single(unsigned long addr)
1108{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001109 PVOP_VCALL1(pv_mmu_ops.flush_tlb_single, addr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001110}
Rusty Russellda181a82006-12-07 02:14:08 +01001111
Rusty Russell4595f962009-01-10 21:58:09 -08001112static inline void flush_tlb_others(const struct cpumask *cpumask,
1113 struct mm_struct *mm,
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +02001114 unsigned long va)
1115{
Rusty Russell4595f962009-01-10 21:58:09 -08001116 PVOP_VCALL3(pv_mmu_ops.flush_tlb_others, cpumask, mm, va);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +02001117}
1118
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001119static inline int paravirt_pgd_alloc(struct mm_struct *mm)
1120{
1121 return PVOP_CALL1(int, pv_mmu_ops.pgd_alloc, mm);
1122}
1123
1124static inline void paravirt_pgd_free(struct mm_struct *mm, pgd_t *pgd)
1125{
1126 PVOP_VCALL2(pv_mmu_ops.pgd_free, mm, pgd);
1127}
1128
Eduardo Habkostf8639932008-07-30 18:32:27 -03001129static inline void paravirt_alloc_pte(struct mm_struct *mm, unsigned long pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001130{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001131 PVOP_VCALL2(pv_mmu_ops.alloc_pte, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001132}
Eduardo Habkostf8639932008-07-30 18:32:27 -03001133static inline void paravirt_release_pte(unsigned long pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001134{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001135 PVOP_VCALL1(pv_mmu_ops.release_pte, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001136}
Zachary Amsdenc119ecc2007-02-13 13:26:21 +01001137
Eduardo Habkostf8639932008-07-30 18:32:27 -03001138static inline void paravirt_alloc_pmd(struct mm_struct *mm, unsigned long pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001139{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001140 PVOP_VCALL2(pv_mmu_ops.alloc_pmd, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001141}
1142
Eduardo Habkostf8639932008-07-30 18:32:27 -03001143static inline void paravirt_alloc_pmd_clone(unsigned long pfn, unsigned long clonepfn,
1144 unsigned long start, unsigned long count)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001145{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001146 PVOP_VCALL4(pv_mmu_ops.alloc_pmd_clone, pfn, clonepfn, start, count);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001147}
Eduardo Habkostf8639932008-07-30 18:32:27 -03001148static inline void paravirt_release_pmd(unsigned long pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001149{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001150 PVOP_VCALL1(pv_mmu_ops.release_pmd, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001151}
1152
Eduardo Habkostf8639932008-07-30 18:32:27 -03001153static inline void paravirt_alloc_pud(struct mm_struct *mm, unsigned long pfn)
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -07001154{
1155 PVOP_VCALL2(pv_mmu_ops.alloc_pud, mm, pfn);
1156}
Eduardo Habkostf8639932008-07-30 18:32:27 -03001157static inline void paravirt_release_pud(unsigned long pfn)
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -07001158{
1159 PVOP_VCALL1(pv_mmu_ops.release_pud, pfn);
1160}
1161
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +02001162#ifdef CONFIG_HIGHPTE
1163static inline void *kmap_atomic_pte(struct page *page, enum km_type type)
1164{
1165 unsigned long ret;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001166 ret = PVOP_CALL2(unsigned long, pv_mmu_ops.kmap_atomic_pte, page, type);
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +02001167 return (void *)ret;
1168}
1169#endif
1170
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001171static inline void pte_update(struct mm_struct *mm, unsigned long addr,
1172 pte_t *ptep)
1173{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001174 PVOP_VCALL3(pv_mmu_ops.pte_update, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001175}
1176
1177static inline void pte_update_defer(struct mm_struct *mm, unsigned long addr,
1178 pte_t *ptep)
1179{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001180 PVOP_VCALL3(pv_mmu_ops.pte_update_defer, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001181}
1182
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001183static inline pte_t __pte(pteval_t val)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001184{
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001185 pteval_t ret;
1186
1187 if (sizeof(pteval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001188 ret = PVOP_CALLEE2(pteval_t,
1189 pv_mmu_ops.make_pte,
1190 val, (u64)val >> 32);
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001191 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001192 ret = PVOP_CALLEE1(pteval_t,
1193 pv_mmu_ops.make_pte,
1194 val);
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001195
Jeremy Fitzhardingec8e53932008-01-30 13:32:57 +01001196 return (pte_t) { .pte = ret };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001197}
1198
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001199static inline pteval_t pte_val(pte_t pte)
1200{
1201 pteval_t ret;
1202
1203 if (sizeof(pteval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001204 ret = PVOP_CALLEE2(pteval_t, pv_mmu_ops.pte_val,
1205 pte.pte, (u64)pte.pte >> 32);
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001206 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001207 ret = PVOP_CALLEE1(pteval_t, pv_mmu_ops.pte_val,
1208 pte.pte);
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +01001209
1210 return ret;
1211}
1212
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001213static inline pgd_t __pgd(pgdval_t val)
1214{
1215 pgdval_t ret;
1216
1217 if (sizeof(pgdval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001218 ret = PVOP_CALLEE2(pgdval_t, pv_mmu_ops.make_pgd,
1219 val, (u64)val >> 32);
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001220 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001221 ret = PVOP_CALLEE1(pgdval_t, pv_mmu_ops.make_pgd,
1222 val);
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001223
1224 return (pgd_t) { ret };
1225}
1226
1227static inline pgdval_t pgd_val(pgd_t pgd)
1228{
1229 pgdval_t ret;
1230
1231 if (sizeof(pgdval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001232 ret = PVOP_CALLEE2(pgdval_t, pv_mmu_ops.pgd_val,
1233 pgd.pgd, (u64)pgd.pgd >> 32);
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001234 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001235 ret = PVOP_CALLEE1(pgdval_t, pv_mmu_ops.pgd_val,
1236 pgd.pgd);
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001237
1238 return ret;
1239}
1240
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001241#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1242static inline pte_t ptep_modify_prot_start(struct mm_struct *mm, unsigned long addr,
1243 pte_t *ptep)
1244{
1245 pteval_t ret;
1246
1247 ret = PVOP_CALL3(pteval_t, pv_mmu_ops.ptep_modify_prot_start,
1248 mm, addr, ptep);
1249
1250 return (pte_t) { .pte = ret };
1251}
1252
1253static inline void ptep_modify_prot_commit(struct mm_struct *mm, unsigned long addr,
1254 pte_t *ptep, pte_t pte)
1255{
1256 if (sizeof(pteval_t) > sizeof(long))
1257 /* 5 arg words */
1258 pv_mmu_ops.ptep_modify_prot_commit(mm, addr, ptep, pte);
1259 else
1260 PVOP_VCALL4(pv_mmu_ops.ptep_modify_prot_commit,
1261 mm, addr, ptep, pte.pte);
1262}
1263
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001264static inline void set_pte(pte_t *ptep, pte_t pte)
1265{
1266 if (sizeof(pteval_t) > sizeof(long))
1267 PVOP_VCALL3(pv_mmu_ops.set_pte, ptep,
1268 pte.pte, (u64)pte.pte >> 32);
1269 else
1270 PVOP_VCALL2(pv_mmu_ops.set_pte, ptep,
1271 pte.pte);
1272}
1273
1274static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1275 pte_t *ptep, pte_t pte)
1276{
1277 if (sizeof(pteval_t) > sizeof(long))
1278 /* 5 arg words */
1279 pv_mmu_ops.set_pte_at(mm, addr, ptep, pte);
1280 else
1281 PVOP_VCALL4(pv_mmu_ops.set_pte_at, mm, addr, ptep, pte.pte);
1282}
1283
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001284static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
1285{
1286 pmdval_t val = native_pmd_val(pmd);
1287
1288 if (sizeof(pmdval_t) > sizeof(long))
1289 PVOP_VCALL3(pv_mmu_ops.set_pmd, pmdp, val, (u64)val >> 32);
1290 else
1291 PVOP_VCALL2(pv_mmu_ops.set_pmd, pmdp, val);
1292}
1293
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001294#if PAGETABLE_LEVELS >= 3
1295static inline pmd_t __pmd(pmdval_t val)
1296{
1297 pmdval_t ret;
1298
1299 if (sizeof(pmdval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001300 ret = PVOP_CALLEE2(pmdval_t, pv_mmu_ops.make_pmd,
1301 val, (u64)val >> 32);
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001302 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001303 ret = PVOP_CALLEE1(pmdval_t, pv_mmu_ops.make_pmd,
1304 val);
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001305
1306 return (pmd_t) { ret };
1307}
1308
1309static inline pmdval_t pmd_val(pmd_t pmd)
1310{
1311 pmdval_t ret;
1312
1313 if (sizeof(pmdval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001314 ret = PVOP_CALLEE2(pmdval_t, pv_mmu_ops.pmd_val,
1315 pmd.pmd, (u64)pmd.pmd >> 32);
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001316 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001317 ret = PVOP_CALLEE1(pmdval_t, pv_mmu_ops.pmd_val,
1318 pmd.pmd);
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001319
1320 return ret;
1321}
1322
1323static inline void set_pud(pud_t *pudp, pud_t pud)
1324{
1325 pudval_t val = native_pud_val(pud);
1326
1327 if (sizeof(pudval_t) > sizeof(long))
1328 PVOP_VCALL3(pv_mmu_ops.set_pud, pudp,
1329 val, (u64)val >> 32);
1330 else
1331 PVOP_VCALL2(pv_mmu_ops.set_pud, pudp,
1332 val);
1333}
Eduardo Habkost90422192008-01-30 13:33:20 +01001334#if PAGETABLE_LEVELS == 4
1335static inline pud_t __pud(pudval_t val)
1336{
1337 pudval_t ret;
1338
1339 if (sizeof(pudval_t) > sizeof(long))
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001340 ret = PVOP_CALLEE2(pudval_t, pv_mmu_ops.make_pud,
1341 val, (u64)val >> 32);
Eduardo Habkost90422192008-01-30 13:33:20 +01001342 else
Jeremy Fitzhardingeda5de7c2009-01-28 14:35:07 -08001343 ret = PVOP_CALLEE1(pudval_t, pv_mmu_ops.make_pud,
1344 val);
Eduardo Habkost90422192008-01-30 13:33:20 +01001345
1346 return (pud_t) { ret };
1347}
1348
1349static inline pudval_t pud_val(pud_t pud)
1350{
1351 pudval_t ret;
1352
1353 if (sizeof(pudval_t) > sizeof(long))
Jeremy Fitzhardinge4767afb2009-01-29 01:51:34 -08001354 ret = PVOP_CALLEE2(pudval_t, pv_mmu_ops.pud_val,
1355 pud.pud, (u64)pud.pud >> 32);
Eduardo Habkost90422192008-01-30 13:33:20 +01001356 else
Jeremy Fitzhardinge4767afb2009-01-29 01:51:34 -08001357 ret = PVOP_CALLEE1(pudval_t, pv_mmu_ops.pud_val,
1358 pud.pud);
Eduardo Habkost90422192008-01-30 13:33:20 +01001359
1360 return ret;
1361}
1362
1363static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
1364{
1365 pgdval_t val = native_pgd_val(pgd);
1366
1367 if (sizeof(pgdval_t) > sizeof(long))
1368 PVOP_VCALL3(pv_mmu_ops.set_pgd, pgdp,
1369 val, (u64)val >> 32);
1370 else
1371 PVOP_VCALL2(pv_mmu_ops.set_pgd, pgdp,
1372 val);
1373}
1374
1375static inline void pgd_clear(pgd_t *pgdp)
1376{
1377 set_pgd(pgdp, __pgd(0));
1378}
1379
1380static inline void pud_clear(pud_t *pudp)
1381{
1382 set_pud(pudp, __pud(0));
1383}
1384
1385#endif /* PAGETABLE_LEVELS == 4 */
1386
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001387#endif /* PAGETABLE_LEVELS >= 3 */
1388
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001389#ifdef CONFIG_X86_PAE
1390/* Special-case pte-setting operations for PAE, which can't update a
1391 64-bit pte atomically */
1392static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1393{
1394 PVOP_VCALL3(pv_mmu_ops.set_pte_atomic, ptep,
1395 pte.pte, pte.pte >> 32);
1396}
1397
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001398static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1399 pte_t *ptep)
1400{
1401 PVOP_VCALL3(pv_mmu_ops.pte_clear, mm, addr, ptep);
1402}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001403
1404static inline void pmd_clear(pmd_t *pmdp)
1405{
1406 PVOP_VCALL1(pv_mmu_ops.pmd_clear, pmdp);
1407}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001408#else /* !CONFIG_X86_PAE */
1409static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1410{
1411 set_pte(ptep, pte);
1412}
1413
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001414static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1415 pte_t *ptep)
1416{
1417 set_pte_at(mm, addr, ptep, __pte(0));
1418}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001419
1420static inline void pmd_clear(pmd_t *pmdp)
1421{
1422 set_pmd(pmdp, __pmd(0));
1423}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001424#endif /* CONFIG_X86_PAE */
1425
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001426/* Lazy mode for batching updates / context switch */
1427enum paravirt_lazy_mode {
1428 PARAVIRT_LAZY_NONE,
1429 PARAVIRT_LAZY_MMU,
1430 PARAVIRT_LAZY_CPU,
1431};
1432
1433enum paravirt_lazy_mode paravirt_get_lazy_mode(void);
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001434void paravirt_start_context_switch(struct task_struct *prev);
1435void paravirt_end_context_switch(struct task_struct *next);
1436
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001437void paravirt_enter_lazy_mmu(void);
1438void paravirt_leave_lazy_mmu(void);
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001439
Jeremy Fitzhardinge7fd7d832009-02-17 23:24:03 -08001440#define __HAVE_ARCH_START_CONTEXT_SWITCH
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001441static inline void arch_start_context_switch(struct task_struct *prev)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001442{
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001443 PVOP_VCALL1(pv_cpu_ops.start_context_switch, prev);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001444}
1445
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001446static inline void arch_end_context_switch(struct task_struct *next)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001447{
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001448 PVOP_VCALL1(pv_cpu_ops.end_context_switch, next);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001449}
1450
Zachary Amsden9226d122007-02-13 13:26:21 +01001451#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001452static inline void arch_enter_lazy_mmu_mode(void)
1453{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001454 PVOP_VCALL0(pv_mmu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001455}
1456
1457static inline void arch_leave_lazy_mmu_mode(void)
1458{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001459 PVOP_VCALL0(pv_mmu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001460}
1461
Jeremy Fitzhardinged85cf932009-02-12 10:02:56 -08001462void arch_flush_lazy_mmu_mode(void);
Zachary Amsden9226d122007-02-13 13:26:21 +01001463
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001464static inline void __set_fixmap(unsigned /* enum fixed_addresses */ idx,
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -07001465 phys_addr_t phys, pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001466{
1467 pv_mmu_ops.set_fixmap(idx, phys, flags);
1468}
1469
Jeremy Fitzhardinge45876232007-05-02 19:27:13 +02001470void _paravirt_nop(void);
Jeremy Fitzhardinge41edafd2009-01-28 14:35:02 -08001471u32 _paravirt_ident_32(u32);
1472u64 _paravirt_ident_64(u64);
1473
Jeremy Fitzhardinge45876232007-05-02 19:27:13 +02001474#define paravirt_nop ((void *)_paravirt_nop)
1475
Jeremy Fitzhardingeb4ecc122009-05-13 17:16:55 -07001476#if defined(CONFIG_SMP) && defined(CONFIG_PARAVIRT_SPINLOCKS)
Ingo Molnar4bb689e2008-07-09 14:33:33 +02001477
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001478static inline int __raw_spin_is_locked(struct raw_spinlock *lock)
1479{
1480 return PVOP_CALL1(int, pv_lock_ops.spin_is_locked, lock);
1481}
1482
1483static inline int __raw_spin_is_contended(struct raw_spinlock *lock)
1484{
1485 return PVOP_CALL1(int, pv_lock_ops.spin_is_contended, lock);
1486}
Kyle McMartina5ef7ca2009-02-08 17:39:58 -05001487#define __raw_spin_is_contended __raw_spin_is_contended
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001488
1489static __always_inline void __raw_spin_lock(struct raw_spinlock *lock)
1490{
Harvey Harrison32172562008-07-17 14:22:34 -07001491 PVOP_VCALL1(pv_lock_ops.spin_lock, lock);
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001492}
1493
Jeremy Fitzhardinge63d3a752008-08-19 13:19:36 -07001494static __always_inline void __raw_spin_lock_flags(struct raw_spinlock *lock,
1495 unsigned long flags)
1496{
1497 PVOP_VCALL2(pv_lock_ops.spin_lock_flags, lock, flags);
1498}
1499
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001500static __always_inline int __raw_spin_trylock(struct raw_spinlock *lock)
1501{
1502 return PVOP_CALL1(int, pv_lock_ops.spin_trylock, lock);
1503}
1504
1505static __always_inline void __raw_spin_unlock(struct raw_spinlock *lock)
1506{
Harvey Harrison32172562008-07-17 14:22:34 -07001507 PVOP_VCALL1(pv_lock_ops.spin_unlock, lock);
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001508}
1509
Ingo Molnar4bb689e2008-07-09 14:33:33 +02001510#endif
1511
Rusty Russell139ec7c2006-12-07 02:14:08 +01001512/* These all sit in the .parainstructions section to tell us what to patch. */
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001513struct paravirt_patch_site {
Rusty Russell139ec7c2006-12-07 02:14:08 +01001514 u8 *instr; /* original instructions */
1515 u8 instrtype; /* type of this instruction */
1516 u8 len; /* length of original instruction */
1517 u16 clobbers; /* what registers you may clobber */
1518};
1519
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001520extern struct paravirt_patch_site __parainstructions[],
1521 __parainstructions_end[];
1522
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001523#ifdef CONFIG_X86_32
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001524#define PV_SAVE_REGS "pushl %ecx; pushl %edx;"
1525#define PV_RESTORE_REGS "popl %edx; popl %ecx;"
1526
1527/* save and restore all caller-save registers, except return value */
Jeremy Fitzhardingee584f552009-01-30 23:17:23 -08001528#define PV_SAVE_ALL_CALLER_REGS "pushl %ecx;"
1529#define PV_RESTORE_ALL_CALLER_REGS "popl %ecx;"
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001530
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001531#define PV_FLAGS_ARG "0"
1532#define PV_EXTRA_CLOBBERS
1533#define PV_VEXTRA_CLOBBERS
1534#else
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001535/* save and restore all caller-save registers, except return value */
1536#define PV_SAVE_ALL_CALLER_REGS \
1537 "push %rcx;" \
1538 "push %rdx;" \
1539 "push %rsi;" \
1540 "push %rdi;" \
1541 "push %r8;" \
1542 "push %r9;" \
1543 "push %r10;" \
1544 "push %r11;"
1545#define PV_RESTORE_ALL_CALLER_REGS \
1546 "pop %r11;" \
1547 "pop %r10;" \
1548 "pop %r9;" \
1549 "pop %r8;" \
1550 "pop %rdi;" \
1551 "pop %rsi;" \
1552 "pop %rdx;" \
1553 "pop %rcx;"
1554
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001555/* We save some registers, but all of them, that's too much. We clobber all
1556 * caller saved registers but the argument parameter */
1557#define PV_SAVE_REGS "pushq %%rdi;"
1558#define PV_RESTORE_REGS "popq %%rdi;"
Jeremy Fitzhardingec24481e2008-07-08 15:07:12 -07001559#define PV_EXTRA_CLOBBERS EXTRA_CLOBBERS, "rcx" , "rdx", "rsi"
1560#define PV_VEXTRA_CLOBBERS EXTRA_CLOBBERS, "rdi", "rcx" , "rdx", "rsi"
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001561#define PV_FLAGS_ARG "D"
1562#endif
1563
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001564/*
1565 * Generate a thunk around a function which saves all caller-save
1566 * registers except for the return value. This allows C functions to
1567 * be called from assembler code where fewer than normal registers are
1568 * available. It may also help code generation around calls from C
1569 * code if the common case doesn't use many registers.
1570 *
1571 * When a callee is wrapped in a thunk, the caller can assume that all
1572 * arg regs and all scratch registers are preserved across the
1573 * call. The return value in rax/eax will not be saved, even for void
1574 * functions.
1575 */
1576#define PV_CALLEE_SAVE_REGS_THUNK(func) \
1577 extern typeof(func) __raw_callee_save_##func; \
1578 static void *__##func##__ __used = func; \
1579 \
1580 asm(".pushsection .text;" \
1581 "__raw_callee_save_" #func ": " \
1582 PV_SAVE_ALL_CALLER_REGS \
1583 "call " #func ";" \
1584 PV_RESTORE_ALL_CALLER_REGS \
1585 "ret;" \
1586 ".popsection")
1587
1588/* Get a reference to a callee-save function */
1589#define PV_CALLEE_SAVE(func) \
1590 ((struct paravirt_callee_save) { __raw_callee_save_##func })
1591
1592/* Promise that "func" already uses the right calling convention */
1593#define __PV_IS_CALLEE_SAVE(func) \
1594 ((struct paravirt_callee_save) { func })
1595
Rusty Russell139ec7c2006-12-07 02:14:08 +01001596static inline unsigned long __raw_local_save_flags(void)
1597{
1598 unsigned long f;
1599
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001600 asm volatile(paravirt_alt(PARAVIRT_CALL)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001601 : "=a"(f)
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001602 : paravirt_type(pv_irq_ops.save_fl),
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001603 paravirt_clobber(CLBR_EAX)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001604 : "memory", "cc");
Rusty Russell139ec7c2006-12-07 02:14:08 +01001605 return f;
1606}
1607
1608static inline void raw_local_irq_restore(unsigned long f)
1609{
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001610 asm volatile(paravirt_alt(PARAVIRT_CALL)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001611 : "=a"(f)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001612 : PV_FLAGS_ARG(f),
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001613 paravirt_type(pv_irq_ops.restore_fl),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001614 paravirt_clobber(CLBR_EAX)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001615 : "memory", "cc");
Rusty Russell139ec7c2006-12-07 02:14:08 +01001616}
1617
1618static inline void raw_local_irq_disable(void)
1619{
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001620 asm volatile(paravirt_alt(PARAVIRT_CALL)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001621 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001622 : paravirt_type(pv_irq_ops.irq_disable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001623 paravirt_clobber(CLBR_EAX)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001624 : "memory", "eax", "cc");
Rusty Russell139ec7c2006-12-07 02:14:08 +01001625}
1626
1627static inline void raw_local_irq_enable(void)
1628{
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001629 asm volatile(paravirt_alt(PARAVIRT_CALL)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001630 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001631 : paravirt_type(pv_irq_ops.irq_enable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001632 paravirt_clobber(CLBR_EAX)
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001633 : "memory", "eax", "cc");
Rusty Russell139ec7c2006-12-07 02:14:08 +01001634}
1635
1636static inline unsigned long __raw_local_irq_save(void)
1637{
1638 unsigned long f;
1639
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001640 f = __raw_local_save_flags();
1641 raw_local_irq_disable();
Rusty Russell139ec7c2006-12-07 02:14:08 +01001642 return f;
1643}
1644
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07001645
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +02001646/* Make sure as little as possible of this mess escapes. */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001647#undef PARAVIRT_CALL
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +02001648#undef __PVOP_CALL
1649#undef __PVOP_VCALL
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001650#undef PVOP_VCALL0
1651#undef PVOP_CALL0
1652#undef PVOP_VCALL1
1653#undef PVOP_CALL1
1654#undef PVOP_VCALL2
1655#undef PVOP_CALL2
1656#undef PVOP_VCALL3
1657#undef PVOP_CALL3
1658#undef PVOP_VCALL4
1659#undef PVOP_CALL4
Rusty Russell139ec7c2006-12-07 02:14:08 +01001660
Rusty Russelld3561b72006-12-07 02:14:07 +01001661#else /* __ASSEMBLY__ */
1662
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001663#define _PVSITE(ptype, clobbers, ops, word, algn) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001664771:; \
1665 ops; \
1666772:; \
1667 .pushsection .parainstructions,"a"; \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001668 .align algn; \
1669 word 771b; \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001670 .byte ptype; \
1671 .byte 772b-771b; \
1672 .short clobbers; \
1673 .popsection
1674
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001675
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001676#define COND_PUSH(set, mask, reg) \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001677 .if ((~(set)) & mask); push %reg; .endif
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001678#define COND_POP(set, mask, reg) \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001679 .if ((~(set)) & mask); pop %reg; .endif
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001680
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001681#ifdef CONFIG_X86_64
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001682
1683#define PV_SAVE_REGS(set) \
1684 COND_PUSH(set, CLBR_RAX, rax); \
1685 COND_PUSH(set, CLBR_RCX, rcx); \
1686 COND_PUSH(set, CLBR_RDX, rdx); \
1687 COND_PUSH(set, CLBR_RSI, rsi); \
1688 COND_PUSH(set, CLBR_RDI, rdi); \
1689 COND_PUSH(set, CLBR_R8, r8); \
1690 COND_PUSH(set, CLBR_R9, r9); \
1691 COND_PUSH(set, CLBR_R10, r10); \
1692 COND_PUSH(set, CLBR_R11, r11)
1693#define PV_RESTORE_REGS(set) \
1694 COND_POP(set, CLBR_R11, r11); \
1695 COND_POP(set, CLBR_R10, r10); \
1696 COND_POP(set, CLBR_R9, r9); \
1697 COND_POP(set, CLBR_R8, r8); \
1698 COND_POP(set, CLBR_RDI, rdi); \
1699 COND_POP(set, CLBR_RSI, rsi); \
1700 COND_POP(set, CLBR_RDX, rdx); \
1701 COND_POP(set, CLBR_RCX, rcx); \
1702 COND_POP(set, CLBR_RAX, rax)
1703
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001704#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 8)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001705#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .quad, 8)
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001706#define PARA_INDIRECT(addr) *addr(%rip)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001707#else
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001708#define PV_SAVE_REGS(set) \
1709 COND_PUSH(set, CLBR_EAX, eax); \
1710 COND_PUSH(set, CLBR_EDI, edi); \
1711 COND_PUSH(set, CLBR_ECX, ecx); \
1712 COND_PUSH(set, CLBR_EDX, edx)
1713#define PV_RESTORE_REGS(set) \
1714 COND_POP(set, CLBR_EDX, edx); \
1715 COND_POP(set, CLBR_ECX, ecx); \
1716 COND_POP(set, CLBR_EDI, edi); \
1717 COND_POP(set, CLBR_EAX, eax)
1718
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001719#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 4)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001720#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001721#define PARA_INDIRECT(addr) *%cs:addr
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001722#endif
1723
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001724#define INTERRUPT_RETURN \
1725 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_iret), CLBR_NONE, \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001726 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_iret))
Rusty Russell139ec7c2006-12-07 02:14:08 +01001727
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001728#define DISABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001729 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_disable), clobbers, \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001730 PV_SAVE_REGS(clobbers | CLBR_CALLEE_SAVE); \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001731 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_irq_disable); \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001732 PV_RESTORE_REGS(clobbers | CLBR_CALLEE_SAVE);)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001733
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001734#define ENABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001735 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_enable), clobbers, \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001736 PV_SAVE_REGS(clobbers | CLBR_CALLEE_SAVE); \
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001737 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_irq_enable); \
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001738 PV_RESTORE_REGS(clobbers | CLBR_CALLEE_SAVE);)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001739
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001740#define USERGS_SYSRET32 \
1741 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_usergs_sysret32), \
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +01001742 CLBR_NONE, \
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001743 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_usergs_sysret32))
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001744
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001745#ifdef CONFIG_X86_32
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001746#define GET_CR0_INTO_EAX \
1747 push %ecx; push %edx; \
1748 call PARA_INDIRECT(pv_cpu_ops+PV_CPU_read_cr0); \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001749 pop %edx; pop %ecx
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001750
1751#define ENABLE_INTERRUPTS_SYSEXIT \
1752 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_sysexit), \
1753 CLBR_NONE, \
1754 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_irq_enable_sysexit))
1755
1756
1757#else /* !CONFIG_X86_32 */
Jeremy Fitzhardingea00394f2008-06-25 00:19:30 -04001758
1759/*
1760 * If swapgs is used while the userspace stack is still current,
1761 * there's no way to call a pvop. The PV replacement *must* be
1762 * inlined, or the swapgs instruction must be trapped and emulated.
1763 */
1764#define SWAPGS_UNSAFE_STACK \
1765 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE, \
1766 swapgs)
1767
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001768/*
1769 * Note: swapgs is very special, and in practise is either going to be
1770 * implemented with a single "swapgs" instruction or something very
1771 * special. Either way, we don't need to save any registers for
1772 * it.
1773 */
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001774#define SWAPGS \
1775 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE, \
Jeremy Fitzhardinge9104a182009-01-28 14:35:04 -08001776 call PARA_INDIRECT(pv_cpu_ops+PV_CPU_swapgs) \
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001777 )
1778
Jeremy Fitzhardinge491eccb2008-06-25 00:19:15 -04001779#define GET_CR2_INTO_RCX \
1780 call PARA_INDIRECT(pv_mmu_ops+PV_MMU_read_cr2); \
1781 movq %rax, %rcx; \
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001782 xorq %rax, %rax;
1783
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001784#define PARAVIRT_ADJUST_EXCEPTION_FRAME \
1785 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_adjust_exception_frame), \
1786 CLBR_NONE, \
1787 call PARA_INDIRECT(pv_irq_ops+PV_IRQ_adjust_exception_frame))
1788
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001789#define USERGS_SYSRET64 \
1790 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_usergs_sysret64), \
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001791 CLBR_NONE, \
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -04001792 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_usergs_sysret64))
1793
1794#define ENABLE_INTERRUPTS_SYSEXIT32 \
1795 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_sysexit), \
1796 CLBR_NONE, \
1797 jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_irq_enable_sysexit))
1798#endif /* CONFIG_X86_32 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001799
Rusty Russelld3561b72006-12-07 02:14:07 +01001800#endif /* __ASSEMBLY__ */
1801#endif /* CONFIG_PARAVIRT */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001802#endif /* _ASM_X86_PARAVIRT_H */