blob: e9ada314dfc15c8ef2faad180989107a4452ec7b [file] [log] [blame]
Rusty Russelld3561b72006-12-07 02:14:07 +01001#ifndef __ASM_PARAVIRT_H
2#define __ASM_PARAVIRT_H
3/* Various instructions on x86 need to be replaced for
4 * para-virtualization: those hooks are defined here. */
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +02005
6#ifdef CONFIG_PARAVIRT
Rusty Russellda181a82006-12-07 02:14:08 +01007#include <asm/page.h>
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01008#include <asm/asm.h>
Rusty Russelld3561b72006-12-07 02:14:07 +01009
Rusty Russell139ec7c2006-12-07 02:14:08 +010010/* Bitmask of what can be clobbered: usually at least eax. */
Glauber de Oliveira Costa21438f72008-01-30 13:32:09 +010011#define CLBR_NONE 0
12#define CLBR_EAX (1 << 0)
13#define CLBR_ECX (1 << 1)
14#define CLBR_EDX (1 << 2)
15
16#ifdef CONFIG_X86_64
17#define CLBR_RSI (1 << 3)
18#define CLBR_RDI (1 << 4)
19#define CLBR_R8 (1 << 5)
20#define CLBR_R9 (1 << 6)
21#define CLBR_R10 (1 << 7)
22#define CLBR_R11 (1 << 8)
23#define CLBR_ANY ((1 << 9) - 1)
24#include <asm/desc_defs.h>
25#else
26/* CLBR_ANY should match all regs platform has. For i386, that's just it */
27#define CLBR_ANY ((1 << 3) - 1)
28#endif /* X86_64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +010029
Rusty Russelld3561b72006-12-07 02:14:07 +010030#ifndef __ASSEMBLY__
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020031#include <linux/types.h>
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +020032#include <linux/cpumask.h>
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020033#include <asm/kmap_types.h>
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +010034#include <asm/desc_defs.h>
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +020035
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020036struct page;
Rusty Russelld3561b72006-12-07 02:14:07 +010037struct thread_struct;
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +010038struct desc_ptr;
Rusty Russelld3561b72006-12-07 02:14:07 +010039struct tss_struct;
Rusty Russellda181a82006-12-07 02:14:08 +010040struct mm_struct;
Rusty Russell90a0a062007-05-02 19:27:10 +020041struct desc_struct;
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020042
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070043/* general info */
44struct pv_info {
Rusty Russelld3561b72006-12-07 02:14:07 +010045 unsigned int kernel_rpl;
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +020046 int shared_kernel_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070047 int paravirt_enabled;
Rusty Russelld3561b72006-12-07 02:14:07 +010048 const char *name;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070049};
Rusty Russelld3561b72006-12-07 02:14:07 +010050
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070051struct pv_init_ops {
Rusty Russell139ec7c2006-12-07 02:14:08 +010052 /*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070053 * Patch may replace one of the defined code sequences with
54 * arbitrary code, subject to the same register constraints.
55 * This generally means the code is not free to clobber any
56 * registers other than EAX. The patch function should return
57 * the number of bytes of code generated, as we nop pad the
58 * rest in generic code.
Rusty Russell139ec7c2006-12-07 02:14:08 +010059 */
Andi Kleenab144f52007-08-10 22:31:03 +020060 unsigned (*patch)(u8 type, u16 clobber, void *insnbuf,
61 unsigned long addr, unsigned len);
Rusty Russell139ec7c2006-12-07 02:14:08 +010062
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020063 /* Basic arch-specific setup */
Rusty Russelld3561b72006-12-07 02:14:07 +010064 void (*arch_setup)(void);
65 char *(*memory_setup)(void);
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -070066 void (*post_allocator_init)(void);
67
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020068 /* Print a banner to identify the environment */
Rusty Russelld3561b72006-12-07 02:14:07 +010069 void (*banner)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070070};
71
72
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070073struct pv_lazy_ops {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070074 /* Set deferred update mode, used for batching operations. */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -070075 void (*enter)(void);
76 void (*leave)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070077};
78
79struct pv_time_ops {
80 void (*time_init)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010081
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020082 /* Set and set time of day */
Rusty Russelld3561b72006-12-07 02:14:07 +010083 unsigned long (*get_wallclock)(void);
84 int (*set_wallclock)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010085
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070086 unsigned long long (*sched_clock)(void);
87 unsigned long (*get_cpu_khz)(void);
88};
Rusty Russelld3561b72006-12-07 02:14:07 +010089
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -070090struct pv_cpu_ops {
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +020091 /* hooks for various privileged instructions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +010092 unsigned long (*get_debugreg)(int regno);
93 void (*set_debugreg)(int regno, unsigned long value);
Rusty Russelld3561b72006-12-07 02:14:07 +010094
Andi Kleen1a1eecd2007-02-13 13:26:25 +010095 void (*clts)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +010096
Andi Kleen1a1eecd2007-02-13 13:26:25 +010097 unsigned long (*read_cr0)(void);
98 void (*write_cr0)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +010099
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100100 unsigned long (*read_cr4_safe)(void);
101 unsigned long (*read_cr4)(void);
102 void (*write_cr4)(unsigned long);
Rusty Russelld3561b72006-12-07 02:14:07 +0100103
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100104#ifdef CONFIG_X86_64
105 unsigned long (*read_cr8)(void);
106 void (*write_cr8)(unsigned long);
107#endif
108
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200109 /* Segment descriptor handling */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100110 void (*load_tr_desc)(void);
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100111 void (*load_gdt)(const struct desc_ptr *);
112 void (*load_idt)(const struct desc_ptr *);
113 void (*store_gdt)(struct desc_ptr *);
114 void (*store_idt)(struct desc_ptr *);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100115 void (*set_ldt)(const void *desc, unsigned entries);
116 unsigned long (*store_tr)(void);
117 void (*load_tls)(struct thread_struct *t, unsigned int cpu);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100118 void (*write_ldt_entry)(struct desc_struct *ldt, int entrynum,
119 const void *desc);
Rusty Russell90a0a062007-05-02 19:27:10 +0200120 void (*write_gdt_entry)(struct desc_struct *,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100121 int entrynum, const void *desc, int size);
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100122 void (*write_idt_entry)(gate_desc *,
123 int entrynum, const gate_desc *gate);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100124 void (*load_sp0)(struct tss_struct *tss, struct thread_struct *t);
Rusty Russelld3561b72006-12-07 02:14:07 +0100125
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100126 void (*set_iopl_mask)(unsigned mask);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700127
128 void (*wbinvd)(void);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100129 void (*io_delay)(void);
Rusty Russelld3561b72006-12-07 02:14:07 +0100130
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700131 /* cpuid emulation, mostly so that caps bits can be disabled */
132 void (*cpuid)(unsigned int *eax, unsigned int *ebx,
133 unsigned int *ecx, unsigned int *edx);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200134
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700135 /* MSR, PMC and TSR operations.
136 err = 0/-EFAULT. wrmsr returns 0/-EFAULT. */
137 u64 (*read_msr)(unsigned int msr, int *err);
Glauber de Oliveira Costac9dcda52008-01-30 13:31:07 +0100138 int (*write_msr)(unsigned int msr, unsigned low, unsigned high);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700139
140 u64 (*read_tsc)(void);
Glauber de Oliveira Costab8d1fae2008-01-30 13:31:07 +0100141 u64 (*read_pmc)(int counter);
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100142 unsigned long long (*read_tscp)(unsigned int *aux);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700143
144 /* These two are jmp to, not actually called. */
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +0100145 void (*irq_enable_syscall_ret)(void);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700146 void (*iret)(void);
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700147
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +0100148 void (*swapgs)(void);
149
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700150 struct pv_lazy_ops lazy_mode;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700151};
152
153struct pv_irq_ops {
154 void (*init_IRQ)(void);
155
156 /*
157 * Get/set interrupt state. save_fl and restore_fl are only
158 * expected to use X86_EFLAGS_IF; all other bits
159 * returned from save_fl are undefined, and may be ignored by
160 * restore_fl.
161 */
162 unsigned long (*save_fl)(void);
163 void (*restore_fl)(unsigned long);
164 void (*irq_disable)(void);
165 void (*irq_enable)(void);
166 void (*safe_halt)(void);
167 void (*halt)(void);
168};
169
170struct pv_apic_ops {
Rusty Russell13623d72006-12-07 02:14:08 +0100171#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200172 /*
173 * Direct APIC operations, principally for VMI. Ideally
174 * these shouldn't be in this interface.
175 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100176 void (*apic_write)(unsigned long reg, u32 v);
177 void (*apic_write_atomic)(unsigned long reg, u32 v);
178 u32 (*apic_read)(unsigned long reg);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100179 void (*setup_boot_clock)(void);
180 void (*setup_secondary_clock)(void);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200181
182 void (*startup_ipi_hook)(int phys_apicid,
183 unsigned long start_eip,
184 unsigned long start_esp);
Rusty Russell13623d72006-12-07 02:14:08 +0100185#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700186};
187
188struct pv_mmu_ops {
189 /*
190 * Called before/after init_mm pagetable setup. setup_start
191 * may reset %cr3, and may pre-install parts of the pagetable;
192 * pagetable setup is expected to preserve any existing
193 * mapping.
194 */
195 void (*pagetable_setup_start)(pgd_t *pgd_base);
196 void (*pagetable_setup_done)(pgd_t *pgd_base);
197
198 unsigned long (*read_cr2)(void);
199 void (*write_cr2)(unsigned long);
200
201 unsigned long (*read_cr3)(void);
202 void (*write_cr3)(unsigned long);
203
204 /*
205 * Hooks for intercepting the creation/use/destruction of an
206 * mm_struct.
207 */
208 void (*activate_mm)(struct mm_struct *prev,
209 struct mm_struct *next);
210 void (*dup_mmap)(struct mm_struct *oldmm,
211 struct mm_struct *mm);
212 void (*exit_mmap)(struct mm_struct *mm);
213
Rusty Russell13623d72006-12-07 02:14:08 +0100214
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200215 /* TLB operations */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100216 void (*flush_tlb_user)(void);
217 void (*flush_tlb_kernel)(void);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200218 void (*flush_tlb_single)(unsigned long addr);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200219 void (*flush_tlb_others)(const cpumask_t *cpus, struct mm_struct *mm,
220 unsigned long va);
Rusty Russellda181a82006-12-07 02:14:08 +0100221
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200222 /* Hooks for allocating/releasing pagetable pages */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700223 void (*alloc_pte)(struct mm_struct *mm, u32 pfn);
224 void (*alloc_pmd)(struct mm_struct *mm, u32 pfn);
225 void (*alloc_pmd_clone)(u32 pfn, u32 clonepfn, u32 start, u32 count);
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -0700226 void (*alloc_pud)(struct mm_struct *mm, u32 pfn);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700227 void (*release_pte)(u32 pfn);
228 void (*release_pmd)(u32 pfn);
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -0700229 void (*release_pud)(u32 pfn);
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100230
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200231 /* Pagetable manipulation functions */
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100232 void (*set_pte)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200233 void (*set_pte_at)(struct mm_struct *mm, unsigned long addr,
234 pte_t *ptep, pte_t pteval);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100235 void (*set_pmd)(pmd_t *pmdp, pmd_t pmdval);
Joe Perches49cd7402008-03-23 01:03:00 -0700236 void (*pte_update)(struct mm_struct *mm, unsigned long addr,
237 pte_t *ptep);
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200238 void (*pte_update_defer)(struct mm_struct *mm,
239 unsigned long addr, pte_t *ptep);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200240
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -0700241 pte_t (*ptep_modify_prot_start)(struct mm_struct *mm, unsigned long addr,
242 pte_t *ptep);
243 void (*ptep_modify_prot_commit)(struct mm_struct *mm, unsigned long addr,
244 pte_t *ptep, pte_t pte);
245
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100246 pteval_t (*pte_val)(pte_t);
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +0100247 pteval_t (*pte_flags)(pte_t);
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100248 pte_t (*make_pte)(pteval_t pte);
249
250 pgdval_t (*pgd_val)(pgd_t);
251 pgd_t (*make_pgd)(pgdval_t pgd);
252
253#if PAGETABLE_LEVELS >= 3
Rusty Russellda181a82006-12-07 02:14:08 +0100254#ifdef CONFIG_X86_PAE
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100255 void (*set_pte_atomic)(pte_t *ptep, pte_t pteval);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700256 void (*set_pte_present)(struct mm_struct *mm, unsigned long addr,
257 pte_t *ptep, pte_t pte);
Joe Perches49cd7402008-03-23 01:03:00 -0700258 void (*pte_clear)(struct mm_struct *mm, unsigned long addr,
259 pte_t *ptep);
Andi Kleen1a1eecd2007-02-13 13:26:25 +0100260 void (*pmd_clear)(pmd_t *pmdp);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200261
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100262#endif /* CONFIG_X86_PAE */
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200263
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100264 void (*set_pud)(pud_t *pudp, pud_t pudval);
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200265
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100266 pmdval_t (*pmd_val)(pmd_t);
267 pmd_t (*make_pmd)(pmdval_t pmd);
268
269#if PAGETABLE_LEVELS == 4
270 pudval_t (*pud_val)(pud_t);
271 pud_t (*make_pud)(pudval_t pud);
Eduardo Habkost90422192008-01-30 13:33:20 +0100272
273 void (*set_pgd)(pgd_t *pudp, pgd_t pgdval);
Jeremy Fitzhardinge5b8dd1e2008-01-30 13:33:15 +0100274#endif /* PAGETABLE_LEVELS == 4 */
275#endif /* PAGETABLE_LEVELS >= 3 */
Rusty Russellda181a82006-12-07 02:14:08 +0100276
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700277#ifdef CONFIG_HIGHPTE
278 void *(*kmap_atomic_pte)(struct page *page, enum km_type type);
279#endif
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700280
281 struct pv_lazy_ops lazy_mode;
Rusty Russelld3561b72006-12-07 02:14:07 +0100282};
283
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700284/* This contains all the paravirt structures: we get a convenient
285 * number for each function using the offset which we use to indicate
286 * what to patch. */
Joe Perches49cd7402008-03-23 01:03:00 -0700287struct paravirt_patch_template {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700288 struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700289 struct pv_time_ops pv_time_ops;
290 struct pv_cpu_ops pv_cpu_ops;
291 struct pv_irq_ops pv_irq_ops;
292 struct pv_apic_ops pv_apic_ops;
293 struct pv_mmu_ops pv_mmu_ops;
294};
295
296extern struct pv_info pv_info;
297extern struct pv_init_ops pv_init_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700298extern struct pv_time_ops pv_time_ops;
299extern struct pv_cpu_ops pv_cpu_ops;
300extern struct pv_irq_ops pv_irq_ops;
301extern struct pv_apic_ops pv_apic_ops;
302extern struct pv_mmu_ops pv_mmu_ops;
Rusty Russelld3561b72006-12-07 02:14:07 +0100303
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200304#define PARAVIRT_PATCH(x) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700305 (offsetof(struct paravirt_patch_template, x) / sizeof(void *))
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200306
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700307#define paravirt_type(op) \
308 [paravirt_typenum] "i" (PARAVIRT_PATCH(op)), \
309 [paravirt_opptr] "m" (op)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200310#define paravirt_clobber(clobber) \
311 [paravirt_clobber] "i" (clobber)
312
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200313/*
314 * Generate some code, and mark it as patchable by the
315 * apply_paravirt() alternate instruction patcher.
316 */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200317#define _paravirt_alt(insn_string, type, clobber) \
318 "771:\n\t" insn_string "\n" "772:\n" \
319 ".pushsection .parainstructions,\"a\"\n" \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +0100320 _ASM_ALIGN "\n" \
321 _ASM_PTR " 771b\n" \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200322 " .byte " type "\n" \
323 " .byte 772b-771b\n" \
324 " .short " clobber "\n" \
325 ".popsection\n"
326
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200327/* Generate patchable code, with the default asm parameters. */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200328#define paravirt_alt(insn_string) \
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +0200329 _paravirt_alt(insn_string, "%c[paravirt_typenum]", "%c[paravirt_clobber]")
330
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100331/* Simple instruction patching code. */
332#define DEF_NATIVE(ops, name, code) \
333 extern const char start_##ops##_##name[], end_##ops##_##name[]; \
334 asm("start_" #ops "_" #name ": " code "; end_" #ops "_" #name ":")
335
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200336unsigned paravirt_patch_nop(void);
337unsigned paravirt_patch_ignore(unsigned len);
Andi Kleenab144f52007-08-10 22:31:03 +0200338unsigned paravirt_patch_call(void *insnbuf,
339 const void *target, u16 tgt_clobbers,
340 unsigned long addr, u16 site_clobbers,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200341 unsigned len);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700342unsigned paravirt_patch_jmp(void *insnbuf, const void *target,
Andi Kleenab144f52007-08-10 22:31:03 +0200343 unsigned long addr, unsigned len);
344unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
345 unsigned long addr, unsigned len);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200346
Andi Kleenab144f52007-08-10 22:31:03 +0200347unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200348 const char *start, const char *end);
349
Glauber de Oliveira Costa2f485ef2008-01-30 13:32:10 +0100350unsigned native_patch(u8 type, u16 clobbers, void *ibuf,
351 unsigned long addr, unsigned len);
352
Jeremy Fitzhardinged5729292007-07-17 18:37:04 -0700353int paravirt_disable_iospace(void);
Jeremy Fitzhardinge63f70272007-05-02 19:27:14 +0200354
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200355/*
356 * This generates an indirect call based on the operation type number.
357 * The type number, computed in PARAVIRT_PATCH, is derived from the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700358 * offset into the paravirt_patch_template structure, and can therefore be
359 * freely converted back into a structure offset.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200360 */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700361#define PARAVIRT_CALL "call *%[paravirt_opptr];"
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200362
363/*
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700364 * These macros are intended to wrap calls through one of the paravirt
365 * ops structs, so that they can be later identified and patched at
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200366 * runtime.
367 *
368 * Normally, a call to a pv_op function is a simple indirect call:
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100369 * (pv_op_struct.operations)(args...).
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200370 *
371 * Unfortunately, this is a relatively slow operation for modern CPUs,
372 * because it cannot necessarily determine what the destination
373 * address is. In this case, the address is a runtime constant, so at
374 * the very least we can patch the call to e a simple direct call, or
375 * ideally, patch an inline implementation into the callsite. (Direct
376 * calls are essentially free, because the call and return addresses
377 * are completely predictable.)
378 *
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100379 * For i386, these macros rely on the standard gcc "regparm(3)" calling
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200380 * convention, in which the first three arguments are placed in %eax,
381 * %edx, %ecx (in that order), and the remaining arguments are placed
382 * on the stack. All caller-save registers (eax,edx,ecx) are expected
383 * to be modified (either clobbered or used for return values).
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100384 * X86_64, on the other hand, already specifies a register-based calling
385 * conventions, returning at %rax, with parameteres going on %rdi, %rsi,
386 * %rdx, and %rcx. Note that for this reason, x86_64 does not need any
387 * special handling for dealing with 4 arguments, unlike i386.
388 * However, x86_64 also have to clobber all caller saved registers, which
389 * unfortunately, are quite a bit (r8 - r11)
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200390 *
391 * The call instruction itself is marked by placing its start address
392 * and size into the .parainstructions section, so that
393 * apply_paravirt() in arch/i386/kernel/alternative.c can do the
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700394 * appropriate patching under the control of the backend pv_init_ops
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200395 * implementation.
396 *
397 * Unfortunately there's no way to get gcc to generate the args setup
398 * for the call, and then allow the call itself to be generated by an
399 * inline asm. Because of this, we must do the complete arg setup and
400 * return value handling from within these macros. This is fairly
401 * cumbersome.
402 *
403 * There are 5 sets of PVOP_* macros for dealing with 0-4 arguments.
404 * It could be extended to more arguments, but there would be little
405 * to be gained from that. For each number of arguments, there are
406 * the two VCALL and CALL variants for void and non-void functions.
407 *
408 * When there is a return value, the invoker of the macro must specify
409 * the return type. The macro then uses sizeof() on that type to
410 * determine whether its a 32 or 64 bit value, and places the return
411 * in the right register(s) (just %eax for 32-bit, and %edx:%eax for
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100412 * 64-bit). For x86_64 machines, it just returns at %rax regardless of
413 * the return value size.
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200414 *
415 * 64-bit arguments are passed as a pair of adjacent 32-bit arguments
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100416 * i386 also passes 64-bit arguments as a pair of adjacent 32-bit arguments
417 * in low,high order
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +0200418 *
419 * Small structures are passed and returned in registers. The macro
420 * calling convention can't directly deal with this, so the wrapper
421 * functions must do this.
422 *
423 * These PVOP_* macros are only defined within this header. This
424 * means that all uses must be wrapped in inline functions. This also
425 * makes sure the incoming and outgoing types are always correct.
426 */
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100427#ifdef CONFIG_X86_32
428#define PVOP_VCALL_ARGS unsigned long __eax, __edx, __ecx
429#define PVOP_CALL_ARGS PVOP_VCALL_ARGS
430#define PVOP_VCALL_CLOBBERS "=a" (__eax), "=d" (__edx), \
431 "=c" (__ecx)
432#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS
433#define EXTRA_CLOBBERS
434#define VEXTRA_CLOBBERS
435#else
436#define PVOP_VCALL_ARGS unsigned long __edi, __esi, __edx, __ecx
437#define PVOP_CALL_ARGS PVOP_VCALL_ARGS, __eax
438#define PVOP_VCALL_CLOBBERS "=D" (__edi), \
439 "=S" (__esi), "=d" (__edx), \
440 "=c" (__ecx)
441
442#define PVOP_CALL_CLOBBERS PVOP_VCALL_CLOBBERS, "=a" (__eax)
443
444#define EXTRA_CLOBBERS , "r8", "r9", "r10", "r11"
445#define VEXTRA_CLOBBERS , "rax", "r8", "r9", "r10", "r11"
446#endif
447
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200448#define __PVOP_CALL(rettype, op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200449 ({ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200450 rettype __ret; \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100451 PVOP_CALL_ARGS; \
452 /* This is 32-bit specific, but is okay in 64-bit */ \
453 /* since this condition will never hold */ \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200454 if (sizeof(rettype) > sizeof(unsigned long)) { \
455 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200456 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200457 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100458 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200459 : paravirt_type(op), \
460 paravirt_clobber(CLBR_ANY), \
461 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100462 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200463 __ret = (rettype)((((u64)__edx) << 32) | __eax); \
464 } else { \
465 asm volatile(pre \
466 paravirt_alt(PARAVIRT_CALL) \
467 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100468 : PVOP_CALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200469 : paravirt_type(op), \
470 paravirt_clobber(CLBR_ANY), \
471 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100472 : "memory", "cc" EXTRA_CLOBBERS); \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200473 __ret = (rettype)__eax; \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200474 } \
475 __ret; \
476 })
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200477#define __PVOP_VCALL(op, pre, post, ...) \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200478 ({ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100479 PVOP_VCALL_ARGS; \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200480 asm volatile(pre \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200481 paravirt_alt(PARAVIRT_CALL) \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200482 post \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100483 : PVOP_VCALL_CLOBBERS \
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200484 : paravirt_type(op), \
485 paravirt_clobber(CLBR_ANY), \
486 ##__VA_ARGS__ \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100487 : "memory", "cc" VEXTRA_CLOBBERS); \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200488 })
489
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200490#define PVOP_CALL0(rettype, op) \
491 __PVOP_CALL(rettype, op, "", "")
492#define PVOP_VCALL0(op) \
493 __PVOP_VCALL(op, "", "")
494
495#define PVOP_CALL1(rettype, op, arg1) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100496 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200497#define PVOP_VCALL1(op, arg1) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100498 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200499
500#define PVOP_CALL2(rettype, op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100501 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
502 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200503#define PVOP_VCALL2(op, arg1, arg2) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100504 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
505 "1" ((unsigned long)(arg2)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200506
507#define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100508 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
509 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200510#define PVOP_VCALL3(op, arg1, arg2, arg3) \
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100511 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
512 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)))
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200513
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100514/* This is the only difference in x86_64. We can make it much simpler */
515#ifdef CONFIG_X86_32
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200516#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
517 __PVOP_CALL(rettype, op, \
518 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
519 "0" ((u32)(arg1)), "1" ((u32)(arg2)), \
520 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
521#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
522 __PVOP_VCALL(op, \
523 "push %[_arg4];", "lea 4(%%esp),%%esp;", \
524 "0" ((u32)(arg1)), "1" ((u32)(arg2)), \
525 "2" ((u32)(arg3)), [_arg4] "mr" ((u32)(arg4)))
Glauber de Oliveira Costaa4746362008-01-30 13:32:05 +0100526#else
527#define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
528 __PVOP_CALL(rettype, op, "", "", "0" ((unsigned long)(arg1)), \
529 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)), \
530 "3"((unsigned long)(arg4)))
531#define PVOP_VCALL4(op, arg1, arg2, arg3, arg4) \
532 __PVOP_VCALL(op, "", "", "0" ((unsigned long)(arg1)), \
533 "1"((unsigned long)(arg2)), "2"((unsigned long)(arg3)), \
534 "3"((unsigned long)(arg4)))
535#endif
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +0200536
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200537static inline int paravirt_enabled(void)
538{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700539 return pv_info.paravirt_enabled;
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200540}
Rusty Russelld3561b72006-12-07 02:14:07 +0100541
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100542static inline void load_sp0(struct tss_struct *tss,
Rusty Russelld3561b72006-12-07 02:14:07 +0100543 struct thread_struct *thread)
544{
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100545 PVOP_VCALL2(pv_cpu_ops.load_sp0, tss, thread);
Rusty Russelld3561b72006-12-07 02:14:07 +0100546}
547
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700548#define ARCH_SETUP pv_init_ops.arch_setup();
Rusty Russelld3561b72006-12-07 02:14:07 +0100549static inline unsigned long get_wallclock(void)
550{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700551 return PVOP_CALL0(unsigned long, pv_time_ops.get_wallclock);
Rusty Russelld3561b72006-12-07 02:14:07 +0100552}
553
554static inline int set_wallclock(unsigned long nowtime)
555{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700556 return PVOP_CALL1(int, pv_time_ops.set_wallclock, nowtime);
Rusty Russelld3561b72006-12-07 02:14:07 +0100557}
558
Zachary Amsdene30fab32007-03-05 00:30:39 -0800559static inline void (*choose_time_init(void))(void)
Rusty Russelld3561b72006-12-07 02:14:07 +0100560{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700561 return pv_time_ops.time_init;
Rusty Russelld3561b72006-12-07 02:14:07 +0100562}
563
564/* The paravirtualized CPUID instruction. */
565static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
566 unsigned int *ecx, unsigned int *edx)
567{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700568 PVOP_VCALL4(pv_cpu_ops.cpuid, eax, ebx, ecx, edx);
Rusty Russelld3561b72006-12-07 02:14:07 +0100569}
570
571/*
572 * These special macros can be used to get or set a debugging register
573 */
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200574static inline unsigned long paravirt_get_debugreg(int reg)
575{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700576 return PVOP_CALL1(unsigned long, pv_cpu_ops.get_debugreg, reg);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200577}
578#define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
579static inline void set_debugreg(unsigned long val, int reg)
580{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700581 PVOP_VCALL2(pv_cpu_ops.set_debugreg, reg, val);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200582}
Rusty Russelld3561b72006-12-07 02:14:07 +0100583
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200584static inline void clts(void)
585{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700586 PVOP_VCALL0(pv_cpu_ops.clts);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200587}
Rusty Russelld3561b72006-12-07 02:14:07 +0100588
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200589static inline unsigned long read_cr0(void)
590{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700591 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr0);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200592}
Rusty Russelld3561b72006-12-07 02:14:07 +0100593
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200594static inline void write_cr0(unsigned long x)
595{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700596 PVOP_VCALL1(pv_cpu_ops.write_cr0, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200597}
Rusty Russelld3561b72006-12-07 02:14:07 +0100598
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200599static inline unsigned long read_cr2(void)
600{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700601 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr2);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200602}
Rusty Russelld3561b72006-12-07 02:14:07 +0100603
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200604static inline void write_cr2(unsigned long x)
605{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700606 PVOP_VCALL1(pv_mmu_ops.write_cr2, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200607}
Rusty Russelld3561b72006-12-07 02:14:07 +0100608
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200609static inline unsigned long read_cr3(void)
610{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700611 return PVOP_CALL0(unsigned long, pv_mmu_ops.read_cr3);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200612}
613
614static inline void write_cr3(unsigned long x)
615{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700616 PVOP_VCALL1(pv_mmu_ops.write_cr3, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200617}
618
619static inline unsigned long read_cr4(void)
620{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700621 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200622}
623static inline unsigned long read_cr4_safe(void)
624{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700625 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr4_safe);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200626}
627
628static inline void write_cr4(unsigned long x)
629{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700630 PVOP_VCALL1(pv_cpu_ops.write_cr4, x);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200631}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200632
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100633#ifdef CONFIG_X86_64
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100634static inline unsigned long read_cr8(void)
635{
636 return PVOP_CALL0(unsigned long, pv_cpu_ops.read_cr8);
637}
638
639static inline void write_cr8(unsigned long x)
640{
641 PVOP_VCALL1(pv_cpu_ops.write_cr8, x);
642}
Glauber de Oliveira Costa94ea03c2008-01-30 13:33:19 +0100643#endif
Glauber de Oliveira Costa4c9890c2008-01-30 13:33:19 +0100644
Rusty Russelld3561b72006-12-07 02:14:07 +0100645static inline void raw_safe_halt(void)
646{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700647 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100648}
649
650static inline void halt(void)
651{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700652 PVOP_VCALL0(pv_irq_ops.safe_halt);
Rusty Russelld3561b72006-12-07 02:14:07 +0100653}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200654
655static inline void wbinvd(void)
656{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700657 PVOP_VCALL0(pv_cpu_ops.wbinvd);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200658}
Rusty Russelld3561b72006-12-07 02:14:07 +0100659
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700660#define get_kernel_rpl() (pv_info.kernel_rpl)
Rusty Russelld3561b72006-12-07 02:14:07 +0100661
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200662static inline u64 paravirt_read_msr(unsigned msr, int *err)
663{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700664 return PVOP_CALL2(u64, pv_cpu_ops.read_msr, msr, err);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200665}
666static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
667{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700668 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200669}
670
Rusty Russell90a0a062007-05-02 19:27:10 +0200671/* These should all do BUG_ON(_err), but our headers are too tangled. */
Joe Perches49cd7402008-03-23 01:03:00 -0700672#define rdmsr(msr, val1, val2) \
673do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200674 int _err; \
675 u64 _l = paravirt_read_msr(msr, &_err); \
676 val1 = (u32)_l; \
677 val2 = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700678} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100679
Joe Perches49cd7402008-03-23 01:03:00 -0700680#define wrmsr(msr, val1, val2) \
681do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200682 paravirt_write_msr(msr, val1, val2); \
Joe Perches49cd7402008-03-23 01:03:00 -0700683} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100684
Joe Perches49cd7402008-03-23 01:03:00 -0700685#define rdmsrl(msr, val) \
686do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200687 int _err; \
688 val = paravirt_read_msr(msr, &_err); \
Joe Perches49cd7402008-03-23 01:03:00 -0700689} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100690
Joe Perches49cd7402008-03-23 01:03:00 -0700691#define wrmsrl(msr, val) wrmsr(msr, (u32)((u64)(val)), ((u64)(val))>>32)
692#define wrmsr_safe(msr, a, b) paravirt_write_msr(msr, a, b)
Rusty Russelld3561b72006-12-07 02:14:07 +0100693
694/* rdmsr with exception handling */
Joe Perches49cd7402008-03-23 01:03:00 -0700695#define rdmsr_safe(msr, a, b) \
696({ \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200697 int _err; \
698 u64 _l = paravirt_read_msr(msr, &_err); \
699 (*a) = (u32)_l; \
700 (*b) = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700701 _err; \
702})
Rusty Russelld3561b72006-12-07 02:14:07 +0100703
Andi Kleen1de87bd2008-03-22 10:59:28 +0100704static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
705{
706 int err;
707
708 *p = paravirt_read_msr(msr, &err);
709 return err;
710}
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200711
712static inline u64 paravirt_read_tsc(void)
713{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700714 return PVOP_CALL0(u64, pv_cpu_ops.read_tsc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200715}
Rusty Russelld3561b72006-12-07 02:14:07 +0100716
Joe Perches49cd7402008-03-23 01:03:00 -0700717#define rdtscl(low) \
718do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200719 u64 _l = paravirt_read_tsc(); \
720 low = (int)_l; \
Joe Perches49cd7402008-03-23 01:03:00 -0700721} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100722
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200723#define rdtscll(val) (val = paravirt_read_tsc())
Rusty Russelld3561b72006-12-07 02:14:07 +0100724
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700725static inline unsigned long long paravirt_sched_clock(void)
726{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700727 return PVOP_CALL0(unsigned long long, pv_time_ops.sched_clock);
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -0700728}
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700729#define calculate_cpu_khz() (pv_time_ops.get_cpu_khz())
Zachary Amsden6cb9a832007-03-05 00:30:35 -0800730
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200731static inline unsigned long long paravirt_read_pmc(int counter)
732{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700733 return PVOP_CALL1(u64, pv_cpu_ops.read_pmc, counter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200734}
735
Joe Perches49cd7402008-03-23 01:03:00 -0700736#define rdpmc(counter, low, high) \
737do { \
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200738 u64 _l = paravirt_read_pmc(counter); \
739 low = (u32)_l; \
740 high = _l >> 32; \
Joe Perches49cd7402008-03-23 01:03:00 -0700741} while (0)
Rusty Russelld3561b72006-12-07 02:14:07 +0100742
Glauber de Oliveira Costae5aaac42008-01-30 13:32:05 +0100743static inline unsigned long long paravirt_rdtscp(unsigned int *aux)
744{
745 return PVOP_CALL1(u64, pv_cpu_ops.read_tscp, aux);
746}
747
748#define rdtscp(low, high, aux) \
749do { \
750 int __aux; \
751 unsigned long __val = paravirt_rdtscp(&__aux); \
752 (low) = (u32)__val; \
753 (high) = (u32)(__val >> 32); \
754 (aux) = __aux; \
755} while (0)
756
757#define rdtscpll(val, aux) \
758do { \
759 unsigned long __aux; \
760 val = paravirt_rdtscp(&__aux); \
761 (aux) = __aux; \
762} while (0)
763
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200764static inline void load_TR_desc(void)
765{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700766 PVOP_VCALL0(pv_cpu_ops.load_tr_desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200767}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100768static inline void load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200769{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700770 PVOP_VCALL1(pv_cpu_ops.load_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200771}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100772static inline void load_idt(const struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200773{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700774 PVOP_VCALL1(pv_cpu_ops.load_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200775}
776static inline void set_ldt(const void *addr, unsigned entries)
777{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700778 PVOP_VCALL2(pv_cpu_ops.set_ldt, addr, entries);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200779}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100780static inline void store_gdt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200781{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700782 PVOP_VCALL1(pv_cpu_ops.store_gdt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200783}
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100784static inline void store_idt(struct desc_ptr *dtr)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200785{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700786 PVOP_VCALL1(pv_cpu_ops.store_idt, dtr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200787}
788static inline unsigned long paravirt_store_tr(void)
789{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700790 return PVOP_CALL0(unsigned long, pv_cpu_ops.store_tr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200791}
792#define store_tr(tr) ((tr) = paravirt_store_tr())
793static inline void load_TLS(struct thread_struct *t, unsigned cpu)
794{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700795 PVOP_VCALL2(pv_cpu_ops.load_tls, t, cpu);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200796}
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100797
798static inline void write_ldt_entry(struct desc_struct *dt, int entry,
799 const void *desc)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200800{
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100801 PVOP_VCALL3(pv_cpu_ops.write_ldt_entry, dt, entry, desc);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200802}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100803
804static inline void write_gdt_entry(struct desc_struct *dt, int entry,
805 void *desc, int type)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200806{
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100807 PVOP_VCALL4(pv_cpu_ops.write_gdt_entry, dt, entry, desc, type);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200808}
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100809
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100810static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200811{
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100812 PVOP_VCALL3(pv_cpu_ops.write_idt_entry, dt, entry, g);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200813}
814static inline void set_iopl_mask(unsigned mask)
815{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700816 PVOP_VCALL1(pv_cpu_ops.set_iopl_mask, mask);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200817}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200818
Rusty Russelld3561b72006-12-07 02:14:07 +0100819/* The paravirtualized I/O functions */
Joe Perches49cd7402008-03-23 01:03:00 -0700820static inline void slow_down_io(void)
821{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700822 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100823#ifdef REALLY_SLOW_IO
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700824 pv_cpu_ops.io_delay();
825 pv_cpu_ops.io_delay();
826 pv_cpu_ops.io_delay();
Rusty Russelld3561b72006-12-07 02:14:07 +0100827#endif
828}
829
Rusty Russell13623d72006-12-07 02:14:08 +0100830#ifdef CONFIG_X86_LOCAL_APIC
831/*
832 * Basic functions accessing APICs.
833 */
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100834static inline void apic_write(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100835{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700836 PVOP_VCALL2(pv_apic_ops.apic_write, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100837}
838
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100839static inline void apic_write_atomic(unsigned long reg, u32 v)
Rusty Russell13623d72006-12-07 02:14:08 +0100840{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700841 PVOP_VCALL2(pv_apic_ops.apic_write_atomic, reg, v);
Rusty Russell13623d72006-12-07 02:14:08 +0100842}
843
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100844static inline u32 apic_read(unsigned long reg)
Rusty Russell13623d72006-12-07 02:14:08 +0100845{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700846 return PVOP_CALL1(unsigned long, pv_apic_ops.apic_read, reg);
Rusty Russell13623d72006-12-07 02:14:08 +0100847}
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100848
849static inline void setup_boot_clock(void)
850{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700851 PVOP_VCALL0(pv_apic_ops.setup_boot_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100852}
853
854static inline void setup_secondary_clock(void)
855{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700856 PVOP_VCALL0(pv_apic_ops.setup_secondary_clock);
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100857}
Rusty Russell13623d72006-12-07 02:14:08 +0100858#endif
859
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700860static inline void paravirt_post_allocator_init(void)
861{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700862 if (pv_init_ops.post_allocator_init)
863 (*pv_init_ops.post_allocator_init)();
Jeremy Fitzhardinge6996d3b2007-07-17 18:37:03 -0700864}
865
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200866static inline void paravirt_pagetable_setup_start(pgd_t *base)
867{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700868 (*pv_mmu_ops.pagetable_setup_start)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200869}
870
871static inline void paravirt_pagetable_setup_done(pgd_t *base)
872{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700873 (*pv_mmu_ops.pagetable_setup_done)(base);
Jeremy Fitzhardingeb239fb22007-05-02 19:27:13 +0200874}
Jeremy Fitzhardinge3dc494e2007-05-02 19:27:13 +0200875
Zachary Amsdenae5da272007-02-13 13:26:21 +0100876#ifdef CONFIG_SMP
877static inline void startup_ipi_hook(int phys_apicid, unsigned long start_eip,
878 unsigned long start_esp)
879{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700880 PVOP_VCALL3(pv_apic_ops.startup_ipi_hook,
881 phys_apicid, start_eip, start_esp);
Zachary Amsdenae5da272007-02-13 13:26:21 +0100882}
883#endif
Rusty Russell13623d72006-12-07 02:14:08 +0100884
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200885static inline void paravirt_activate_mm(struct mm_struct *prev,
886 struct mm_struct *next)
887{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700888 PVOP_VCALL2(pv_mmu_ops.activate_mm, prev, next);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200889}
890
891static inline void arch_dup_mmap(struct mm_struct *oldmm,
892 struct mm_struct *mm)
893{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700894 PVOP_VCALL2(pv_mmu_ops.dup_mmap, oldmm, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200895}
896
897static inline void arch_exit_mmap(struct mm_struct *mm)
898{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700899 PVOP_VCALL1(pv_mmu_ops.exit_mmap, mm);
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +0200900}
901
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200902static inline void __flush_tlb(void)
903{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700904 PVOP_VCALL0(pv_mmu_ops.flush_tlb_user);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200905}
906static inline void __flush_tlb_global(void)
907{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700908 PVOP_VCALL0(pv_mmu_ops.flush_tlb_kernel);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200909}
910static inline void __flush_tlb_single(unsigned long addr)
911{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700912 PVOP_VCALL1(pv_mmu_ops.flush_tlb_single, addr);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200913}
Rusty Russellda181a82006-12-07 02:14:08 +0100914
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200915static inline void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
916 unsigned long va)
917{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700918 PVOP_VCALL3(pv_mmu_ops.flush_tlb_others, &cpumask, mm, va);
Jeremy Fitzhardinged4c10472007-05-02 19:27:15 +0200919}
920
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700921static inline void paravirt_alloc_pte(struct mm_struct *mm, unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200922{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700923 PVOP_VCALL2(pv_mmu_ops.alloc_pte, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200924}
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700925static inline void paravirt_release_pte(unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200926{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700927 PVOP_VCALL1(pv_mmu_ops.release_pte, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200928}
Zachary Amsdenc119ecc2007-02-13 13:26:21 +0100929
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700930static inline void paravirt_alloc_pmd(struct mm_struct *mm, unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200931{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700932 PVOP_VCALL2(pv_mmu_ops.alloc_pmd, mm, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200933}
934
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700935static inline void paravirt_alloc_pmd_clone(unsigned pfn, unsigned clonepfn,
936 unsigned start, unsigned count)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200937{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700938 PVOP_VCALL4(pv_mmu_ops.alloc_pmd_clone, pfn, clonepfn, start, count);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200939}
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700940static inline void paravirt_release_pmd(unsigned pfn)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200941{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700942 PVOP_VCALL1(pv_mmu_ops.release_pmd, pfn);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200943}
944
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -0700945static inline void paravirt_alloc_pud(struct mm_struct *mm, unsigned pfn)
946{
947 PVOP_VCALL2(pv_mmu_ops.alloc_pud, mm, pfn);
948}
949static inline void paravirt_release_pud(unsigned pfn)
950{
951 PVOP_VCALL1(pv_mmu_ops.release_pud, pfn);
952}
953
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +0200954#ifdef CONFIG_HIGHPTE
955static inline void *kmap_atomic_pte(struct page *page, enum km_type type)
956{
957 unsigned long ret;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700958 ret = PVOP_CALL2(unsigned long, pv_mmu_ops.kmap_atomic_pte, page, type);
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +0200959 return (void *)ret;
960}
961#endif
962
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200963static inline void pte_update(struct mm_struct *mm, unsigned long addr,
964 pte_t *ptep)
965{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700966 PVOP_VCALL3(pv_mmu_ops.pte_update, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200967}
968
969static inline void pte_update_defer(struct mm_struct *mm, unsigned long addr,
970 pte_t *ptep)
971{
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700972 PVOP_VCALL3(pv_mmu_ops.pte_update_defer, mm, addr, ptep);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200973}
974
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +0100975static inline pte_t __pte(pteval_t val)
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200976{
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +0100977 pteval_t ret;
978
979 if (sizeof(pteval_t) > sizeof(long))
980 ret = PVOP_CALL2(pteval_t,
981 pv_mmu_ops.make_pte,
982 val, (u64)val >> 32);
983 else
984 ret = PVOP_CALL1(pteval_t,
985 pv_mmu_ops.make_pte,
986 val);
987
Jeremy Fitzhardingec8e53932008-01-30 13:32:57 +0100988 return (pte_t) { .pte = ret };
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +0200989}
990
Jeremy Fitzhardinge773221f2008-01-30 13:33:15 +0100991static inline pteval_t pte_val(pte_t pte)
992{
993 pteval_t ret;
994
995 if (sizeof(pteval_t) > sizeof(long))
996 ret = PVOP_CALL2(pteval_t, pv_mmu_ops.pte_val,
997 pte.pte, (u64)pte.pte >> 32);
998 else
999 ret = PVOP_CALL1(pteval_t, pv_mmu_ops.pte_val,
1000 pte.pte);
1001
1002 return ret;
1003}
1004
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001005static inline pteval_t pte_flags(pte_t pte)
1006{
1007 pteval_t ret;
1008
1009 if (sizeof(pteval_t) > sizeof(long))
1010 ret = PVOP_CALL2(pteval_t, pv_mmu_ops.pte_flags,
1011 pte.pte, (u64)pte.pte >> 32);
1012 else
1013 ret = PVOP_CALL1(pteval_t, pv_mmu_ops.pte_flags,
1014 pte.pte);
1015
1016 return ret;
1017}
1018
Jeremy Fitzhardingeef385032008-01-30 13:33:15 +01001019static inline pgd_t __pgd(pgdval_t val)
1020{
1021 pgdval_t ret;
1022
1023 if (sizeof(pgdval_t) > sizeof(long))
1024 ret = PVOP_CALL2(pgdval_t, pv_mmu_ops.make_pgd,
1025 val, (u64)val >> 32);
1026 else
1027 ret = PVOP_CALL1(pgdval_t, pv_mmu_ops.make_pgd,
1028 val);
1029
1030 return (pgd_t) { ret };
1031}
1032
1033static inline pgdval_t pgd_val(pgd_t pgd)
1034{
1035 pgdval_t ret;
1036
1037 if (sizeof(pgdval_t) > sizeof(long))
1038 ret = PVOP_CALL2(pgdval_t, pv_mmu_ops.pgd_val,
1039 pgd.pgd, (u64)pgd.pgd >> 32);
1040 else
1041 ret = PVOP_CALL1(pgdval_t, pv_mmu_ops.pgd_val,
1042 pgd.pgd);
1043
1044 return ret;
1045}
1046
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001047#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1048static inline pte_t ptep_modify_prot_start(struct mm_struct *mm, unsigned long addr,
1049 pte_t *ptep)
1050{
1051 pteval_t ret;
1052
1053 ret = PVOP_CALL3(pteval_t, pv_mmu_ops.ptep_modify_prot_start,
1054 mm, addr, ptep);
1055
1056 return (pte_t) { .pte = ret };
1057}
1058
1059static inline void ptep_modify_prot_commit(struct mm_struct *mm, unsigned long addr,
1060 pte_t *ptep, pte_t pte)
1061{
1062 if (sizeof(pteval_t) > sizeof(long))
1063 /* 5 arg words */
1064 pv_mmu_ops.ptep_modify_prot_commit(mm, addr, ptep, pte);
1065 else
1066 PVOP_VCALL4(pv_mmu_ops.ptep_modify_prot_commit,
1067 mm, addr, ptep, pte.pte);
1068}
1069
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001070static inline void set_pte(pte_t *ptep, pte_t pte)
1071{
1072 if (sizeof(pteval_t) > sizeof(long))
1073 PVOP_VCALL3(pv_mmu_ops.set_pte, ptep,
1074 pte.pte, (u64)pte.pte >> 32);
1075 else
1076 PVOP_VCALL2(pv_mmu_ops.set_pte, ptep,
1077 pte.pte);
1078}
1079
1080static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1081 pte_t *ptep, pte_t pte)
1082{
1083 if (sizeof(pteval_t) > sizeof(long))
1084 /* 5 arg words */
1085 pv_mmu_ops.set_pte_at(mm, addr, ptep, pte);
1086 else
1087 PVOP_VCALL4(pv_mmu_ops.set_pte_at, mm, addr, ptep, pte.pte);
1088}
1089
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001090static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
1091{
1092 pmdval_t val = native_pmd_val(pmd);
1093
1094 if (sizeof(pmdval_t) > sizeof(long))
1095 PVOP_VCALL3(pv_mmu_ops.set_pmd, pmdp, val, (u64)val >> 32);
1096 else
1097 PVOP_VCALL2(pv_mmu_ops.set_pmd, pmdp, val);
1098}
1099
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001100#if PAGETABLE_LEVELS >= 3
1101static inline pmd_t __pmd(pmdval_t val)
1102{
1103 pmdval_t ret;
1104
1105 if (sizeof(pmdval_t) > sizeof(long))
1106 ret = PVOP_CALL2(pmdval_t, pv_mmu_ops.make_pmd,
1107 val, (u64)val >> 32);
1108 else
1109 ret = PVOP_CALL1(pmdval_t, pv_mmu_ops.make_pmd,
1110 val);
1111
1112 return (pmd_t) { ret };
1113}
1114
1115static inline pmdval_t pmd_val(pmd_t pmd)
1116{
1117 pmdval_t ret;
1118
1119 if (sizeof(pmdval_t) > sizeof(long))
1120 ret = PVOP_CALL2(pmdval_t, pv_mmu_ops.pmd_val,
1121 pmd.pmd, (u64)pmd.pmd >> 32);
1122 else
1123 ret = PVOP_CALL1(pmdval_t, pv_mmu_ops.pmd_val,
1124 pmd.pmd);
1125
1126 return ret;
1127}
1128
1129static inline void set_pud(pud_t *pudp, pud_t pud)
1130{
1131 pudval_t val = native_pud_val(pud);
1132
1133 if (sizeof(pudval_t) > sizeof(long))
1134 PVOP_VCALL3(pv_mmu_ops.set_pud, pudp,
1135 val, (u64)val >> 32);
1136 else
1137 PVOP_VCALL2(pv_mmu_ops.set_pud, pudp,
1138 val);
1139}
Eduardo Habkost90422192008-01-30 13:33:20 +01001140#if PAGETABLE_LEVELS == 4
1141static inline pud_t __pud(pudval_t val)
1142{
1143 pudval_t ret;
1144
1145 if (sizeof(pudval_t) > sizeof(long))
1146 ret = PVOP_CALL2(pudval_t, pv_mmu_ops.make_pud,
1147 val, (u64)val >> 32);
1148 else
1149 ret = PVOP_CALL1(pudval_t, pv_mmu_ops.make_pud,
1150 val);
1151
1152 return (pud_t) { ret };
1153}
1154
1155static inline pudval_t pud_val(pud_t pud)
1156{
1157 pudval_t ret;
1158
1159 if (sizeof(pudval_t) > sizeof(long))
1160 ret = PVOP_CALL2(pudval_t, pv_mmu_ops.pud_val,
1161 pud.pud, (u64)pud.pud >> 32);
1162 else
1163 ret = PVOP_CALL1(pudval_t, pv_mmu_ops.pud_val,
1164 pud.pud);
1165
1166 return ret;
1167}
1168
1169static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
1170{
1171 pgdval_t val = native_pgd_val(pgd);
1172
1173 if (sizeof(pgdval_t) > sizeof(long))
1174 PVOP_VCALL3(pv_mmu_ops.set_pgd, pgdp,
1175 val, (u64)val >> 32);
1176 else
1177 PVOP_VCALL2(pv_mmu_ops.set_pgd, pgdp,
1178 val);
1179}
1180
1181static inline void pgd_clear(pgd_t *pgdp)
1182{
1183 set_pgd(pgdp, __pgd(0));
1184}
1185
1186static inline void pud_clear(pud_t *pudp)
1187{
1188 set_pud(pudp, __pud(0));
1189}
1190
1191#endif /* PAGETABLE_LEVELS == 4 */
1192
Glauber de Oliveira Costa1fe91512008-01-30 13:33:19 +01001193#endif /* PAGETABLE_LEVELS >= 3 */
1194
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001195#ifdef CONFIG_X86_PAE
1196/* Special-case pte-setting operations for PAE, which can't update a
1197 64-bit pte atomically */
1198static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1199{
1200 PVOP_VCALL3(pv_mmu_ops.set_pte_atomic, ptep,
1201 pte.pte, pte.pte >> 32);
1202}
1203
1204static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
1205 pte_t *ptep, pte_t pte)
1206{
1207 /* 5 arg words */
1208 pv_mmu_ops.set_pte_present(mm, addr, ptep, pte);
1209}
1210
1211static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1212 pte_t *ptep)
1213{
1214 PVOP_VCALL3(pv_mmu_ops.pte_clear, mm, addr, ptep);
1215}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001216
1217static inline void pmd_clear(pmd_t *pmdp)
1218{
1219 PVOP_VCALL1(pv_mmu_ops.pmd_clear, pmdp);
1220}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001221#else /* !CONFIG_X86_PAE */
1222static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
1223{
1224 set_pte(ptep, pte);
1225}
1226
1227static inline void set_pte_present(struct mm_struct *mm, unsigned long addr,
1228 pte_t *ptep, pte_t pte)
1229{
1230 set_pte(ptep, pte);
1231}
1232
1233static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
1234 pte_t *ptep)
1235{
1236 set_pte_at(mm, addr, ptep, __pte(0));
1237}
Jeremy Fitzhardinge60b3f622008-01-30 13:33:15 +01001238
1239static inline void pmd_clear(pmd_t *pmdp)
1240{
1241 set_pmd(pmdp, __pmd(0));
1242}
Jeremy Fitzhardinge4eed80c2008-01-30 13:33:15 +01001243#endif /* CONFIG_X86_PAE */
1244
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001245/* Lazy mode for batching updates / context switch */
1246enum paravirt_lazy_mode {
1247 PARAVIRT_LAZY_NONE,
1248 PARAVIRT_LAZY_MMU,
1249 PARAVIRT_LAZY_CPU,
1250};
1251
1252enum paravirt_lazy_mode paravirt_get_lazy_mode(void);
1253void paravirt_enter_lazy_cpu(void);
1254void paravirt_leave_lazy_cpu(void);
1255void paravirt_enter_lazy_mmu(void);
1256void paravirt_leave_lazy_mmu(void);
1257void paravirt_leave_lazy(enum paravirt_lazy_mode mode);
1258
Zachary Amsden9226d122007-02-13 13:26:21 +01001259#define __HAVE_ARCH_ENTER_LAZY_CPU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001260static inline void arch_enter_lazy_cpu_mode(void)
1261{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001262 PVOP_VCALL0(pv_cpu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001263}
1264
1265static inline void arch_leave_lazy_cpu_mode(void)
1266{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001267 PVOP_VCALL0(pv_cpu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001268}
1269
1270static inline void arch_flush_lazy_cpu_mode(void)
1271{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001272 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)) {
1273 arch_leave_lazy_cpu_mode();
1274 arch_enter_lazy_cpu_mode();
1275 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001276}
1277
Zachary Amsden9226d122007-02-13 13:26:21 +01001278
1279#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001280static inline void arch_enter_lazy_mmu_mode(void)
1281{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001282 PVOP_VCALL0(pv_mmu_ops.lazy_mode.enter);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001283}
1284
1285static inline void arch_leave_lazy_mmu_mode(void)
1286{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001287 PVOP_VCALL0(pv_mmu_ops.lazy_mode.leave);
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001288}
1289
1290static inline void arch_flush_lazy_mmu_mode(void)
1291{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001292 if (unlikely(paravirt_get_lazy_mode() == PARAVIRT_LAZY_MMU)) {
1293 arch_leave_lazy_mmu_mode();
1294 arch_enter_lazy_mmu_mode();
1295 }
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001296}
Zachary Amsden9226d122007-02-13 13:26:21 +01001297
Jeremy Fitzhardinge45876232007-05-02 19:27:13 +02001298void _paravirt_nop(void);
1299#define paravirt_nop ((void *)_paravirt_nop)
1300
Rusty Russell139ec7c2006-12-07 02:14:08 +01001301/* These all sit in the .parainstructions section to tell us what to patch. */
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001302struct paravirt_patch_site {
Rusty Russell139ec7c2006-12-07 02:14:08 +01001303 u8 *instr; /* original instructions */
1304 u8 instrtype; /* type of this instruction */
1305 u8 len; /* length of original instruction */
1306 u16 clobbers; /* what registers you may clobber */
1307};
1308
Jeremy Fitzhardinge98de0322007-05-02 19:27:14 +02001309extern struct paravirt_patch_site __parainstructions[],
1310 __parainstructions_end[];
1311
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001312#ifdef CONFIG_X86_32
1313#define PV_SAVE_REGS "pushl %%ecx; pushl %%edx;"
1314#define PV_RESTORE_REGS "popl %%edx; popl %%ecx"
1315#define PV_FLAGS_ARG "0"
1316#define PV_EXTRA_CLOBBERS
1317#define PV_VEXTRA_CLOBBERS
1318#else
1319/* We save some registers, but all of them, that's too much. We clobber all
1320 * caller saved registers but the argument parameter */
1321#define PV_SAVE_REGS "pushq %%rdi;"
1322#define PV_RESTORE_REGS "popq %%rdi;"
1323#define PV_EXTRA_CLOBBERS EXTRA_CLOBBERS, "rcx" , "rdx"
1324#define PV_VEXTRA_CLOBBERS EXTRA_CLOBBERS, "rdi", "rcx" , "rdx"
1325#define PV_FLAGS_ARG "D"
1326#endif
1327
Rusty Russell139ec7c2006-12-07 02:14:08 +01001328static inline unsigned long __raw_local_save_flags(void)
1329{
1330 unsigned long f;
1331
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001332 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001333 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001334 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001335 : "=a"(f)
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001336 : paravirt_type(pv_irq_ops.save_fl),
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001337 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001338 : "memory", "cc" PV_VEXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001339 return f;
1340}
1341
1342static inline void raw_local_irq_restore(unsigned long f)
1343{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001344 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001345 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001346 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001347 : "=a"(f)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001348 : PV_FLAGS_ARG(f),
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001349 paravirt_type(pv_irq_ops.restore_fl),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001350 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001351 : "memory", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001352}
1353
1354static inline void raw_local_irq_disable(void)
1355{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001356 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001357 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001358 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001359 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001360 : paravirt_type(pv_irq_ops.irq_disable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001361 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001362 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001363}
1364
1365static inline void raw_local_irq_enable(void)
1366{
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001367 asm volatile(paravirt_alt(PV_SAVE_REGS
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001368 PARAVIRT_CALL
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001369 PV_RESTORE_REGS)
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001370 :
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001371 : paravirt_type(pv_irq_ops.irq_enable),
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001372 paravirt_clobber(CLBR_EAX)
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001373 : "memory", "eax", "cc" PV_EXTRA_CLOBBERS);
Rusty Russell139ec7c2006-12-07 02:14:08 +01001374}
1375
1376static inline unsigned long __raw_local_irq_save(void)
1377{
1378 unsigned long f;
1379
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001380 f = __raw_local_save_flags();
1381 raw_local_irq_disable();
Rusty Russell139ec7c2006-12-07 02:14:08 +01001382 return f;
1383}
1384
Jeremy Fitzhardinge294688c2007-05-02 19:27:14 +02001385/* Make sure as little as possible of this mess escapes. */
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001386#undef PARAVIRT_CALL
Jeremy Fitzhardinge1a45b7a2007-05-02 19:27:15 +02001387#undef __PVOP_CALL
1388#undef __PVOP_VCALL
Jeremy Fitzhardingef8822f42007-05-02 19:27:14 +02001389#undef PVOP_VCALL0
1390#undef PVOP_CALL0
1391#undef PVOP_VCALL1
1392#undef PVOP_CALL1
1393#undef PVOP_VCALL2
1394#undef PVOP_CALL2
1395#undef PVOP_VCALL3
1396#undef PVOP_CALL3
1397#undef PVOP_VCALL4
1398#undef PVOP_CALL4
Rusty Russell139ec7c2006-12-07 02:14:08 +01001399
Rusty Russelld3561b72006-12-07 02:14:07 +01001400#else /* __ASSEMBLY__ */
1401
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001402#define _PVSITE(ptype, clobbers, ops, word, algn) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001403771:; \
1404 ops; \
1405772:; \
1406 .pushsection .parainstructions,"a"; \
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001407 .align algn; \
1408 word 771b; \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001409 .byte ptype; \
1410 .byte 772b-771b; \
1411 .short clobbers; \
1412 .popsection
1413
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001414
1415#ifdef CONFIG_X86_64
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001416#define PV_SAVE_REGS pushq %rax; pushq %rdi; pushq %rcx; pushq %rdx
1417#define PV_RESTORE_REGS popq %rdx; popq %rcx; popq %rdi; popq %rax
1418#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 8)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001419#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .quad, 8)
1420#else
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001421#define PV_SAVE_REGS pushl %eax; pushl %edi; pushl %ecx; pushl %edx
1422#define PV_RESTORE_REGS popl %edx; popl %ecx; popl %edi; popl %eax
1423#define PARA_PATCH(struct, off) ((PARAVIRT_PATCH_##struct + (off)) / 4)
Glauber de Oliveira Costa658be9d2008-01-30 13:32:06 +01001424#define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
1425#endif
1426
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001427#define INTERRUPT_RETURN \
1428 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_iret), CLBR_NONE, \
1429 jmp *%cs:pv_cpu_ops+PV_CPU_iret)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001430
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001431#define DISABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001432 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_disable), clobbers, \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001433 PV_SAVE_REGS; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001434 call *%cs:pv_irq_ops+PV_IRQ_irq_disable; \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001435 PV_RESTORE_REGS;) \
Rusty Russell139ec7c2006-12-07 02:14:08 +01001436
Jeremy Fitzhardinged5822032007-05-02 19:27:14 +02001437#define ENABLE_INTERRUPTS(clobbers) \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001438 PARA_SITE(PARA_PATCH(pv_irq_ops, PV_IRQ_irq_enable), clobbers, \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001439 PV_SAVE_REGS; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001440 call *%cs:pv_irq_ops+PV_IRQ_irq_enable; \
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001441 PV_RESTORE_REGS;)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001442
Glauber de Oliveira Costa6abcd982008-01-30 13:30:33 +01001443#define ENABLE_INTERRUPTS_SYSCALL_RET \
1444 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_syscall_ret),\
1445 CLBR_NONE, \
1446 jmp *%cs:pv_cpu_ops+PV_CPU_irq_enable_syscall_ret)
Rusty Russell139ec7c2006-12-07 02:14:08 +01001447
Glauber de Oliveira Costa2e47d3e2008-01-30 13:32:07 +01001448
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001449#ifdef CONFIG_X86_32
Rusty Russell139ec7c2006-12-07 02:14:08 +01001450#define GET_CR0_INTO_EAX \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001451 push %ecx; push %edx; \
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001452 call *pv_cpu_ops+PV_CPU_read_cr0; \
Jeremy Fitzhardinge42c24fa2007-05-02 19:27:14 +02001453 pop %edx; pop %ecx
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001454#else
Glauber de Oliveira Costae801f862008-01-30 13:32:08 +01001455#define SWAPGS \
1456 PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_swapgs), CLBR_NONE, \
1457 PV_SAVE_REGS; \
1458 call *pv_cpu_ops+PV_CPU_swapgs; \
1459 PV_RESTORE_REGS \
1460 )
1461
Glauber de Oliveira Costa4a8c4c42008-01-30 13:32:07 +01001462#define GET_CR2_INTO_RCX \
1463 call *pv_mmu_ops+PV_MMU_read_cr2; \
1464 movq %rax, %rcx; \
1465 xorq %rax, %rax;
1466
Glauber de Oliveira Costa6057fc82008-01-30 13:32:06 +01001467#endif
Rusty Russell139ec7c2006-12-07 02:14:08 +01001468
Rusty Russelld3561b72006-12-07 02:14:07 +01001469#endif /* __ASSEMBLY__ */
1470#endif /* CONFIG_PARAVIRT */
1471#endif /* __ASM_PARAVIRT_H */