treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / x86 / include / asm / paravirt.h
blob86e7317eb31f9a11c3f3b638f0882929b76af777
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_PARAVIRT_H
3 #define _ASM_X86_PARAVIRT_H
4 /* Various instructions on x86 need to be replaced for
5 * para-virtualization: those hooks are defined here. */
7 #ifdef CONFIG_PARAVIRT
8 #include <asm/pgtable_types.h>
9 #include <asm/asm.h>
10 #include <asm/nospec-branch.h>
12 #include <asm/paravirt_types.h>
14 #ifndef __ASSEMBLY__
15 #include <linux/bug.h>
16 #include <linux/types.h>
17 #include <linux/cpumask.h>
18 #include <asm/frame.h>
20 static inline unsigned long long paravirt_sched_clock(void)
22 return PVOP_CALL0(unsigned long long, time.sched_clock);
25 struct static_key;
26 extern struct static_key paravirt_steal_enabled;
27 extern struct static_key paravirt_steal_rq_enabled;
29 __visible void __native_queued_spin_unlock(struct qspinlock *lock);
30 bool pv_is_native_spin_unlock(void);
31 __visible bool __native_vcpu_is_preempted(long cpu);
32 bool pv_is_native_vcpu_is_preempted(void);
34 static inline u64 paravirt_steal_clock(int cpu)
36 return PVOP_CALL1(u64, time.steal_clock, cpu);
39 /* The paravirtualized I/O functions */
40 static inline void slow_down_io(void)
42 pv_ops.cpu.io_delay();
43 #ifdef REALLY_SLOW_IO
44 pv_ops.cpu.io_delay();
45 pv_ops.cpu.io_delay();
46 pv_ops.cpu.io_delay();
47 #endif
50 static inline void __flush_tlb(void)
52 PVOP_VCALL0(mmu.flush_tlb_user);
55 static inline void __flush_tlb_global(void)
57 PVOP_VCALL0(mmu.flush_tlb_kernel);
60 static inline void __flush_tlb_one_user(unsigned long addr)
62 PVOP_VCALL1(mmu.flush_tlb_one_user, addr);
65 static inline void flush_tlb_others(const struct cpumask *cpumask,
66 const struct flush_tlb_info *info)
68 PVOP_VCALL2(mmu.flush_tlb_others, cpumask, info);
71 static inline void paravirt_tlb_remove_table(struct mmu_gather *tlb, void *table)
73 PVOP_VCALL2(mmu.tlb_remove_table, tlb, table);
76 static inline void paravirt_arch_exit_mmap(struct mm_struct *mm)
78 PVOP_VCALL1(mmu.exit_mmap, mm);
81 #ifdef CONFIG_PARAVIRT_XXL
82 static inline void load_sp0(unsigned long sp0)
84 PVOP_VCALL1(cpu.load_sp0, sp0);
87 /* The paravirtualized CPUID instruction. */
88 static inline void __cpuid(unsigned int *eax, unsigned int *ebx,
89 unsigned int *ecx, unsigned int *edx)
91 PVOP_VCALL4(cpu.cpuid, eax, ebx, ecx, edx);
95 * These special macros can be used to get or set a debugging register
97 static inline unsigned long paravirt_get_debugreg(int reg)
99 return PVOP_CALL1(unsigned long, cpu.get_debugreg, reg);
101 #define get_debugreg(var, reg) var = paravirt_get_debugreg(reg)
102 static inline void set_debugreg(unsigned long val, int reg)
104 PVOP_VCALL2(cpu.set_debugreg, reg, val);
107 static inline unsigned long read_cr0(void)
109 return PVOP_CALL0(unsigned long, cpu.read_cr0);
112 static inline void write_cr0(unsigned long x)
114 PVOP_VCALL1(cpu.write_cr0, x);
117 static inline unsigned long read_cr2(void)
119 return PVOP_CALLEE0(unsigned long, mmu.read_cr2);
122 static inline void write_cr2(unsigned long x)
124 PVOP_VCALL1(mmu.write_cr2, x);
127 static inline unsigned long __read_cr3(void)
129 return PVOP_CALL0(unsigned long, mmu.read_cr3);
132 static inline void write_cr3(unsigned long x)
134 PVOP_VCALL1(mmu.write_cr3, x);
137 static inline void __write_cr4(unsigned long x)
139 PVOP_VCALL1(cpu.write_cr4, x);
142 static inline void arch_safe_halt(void)
144 PVOP_VCALL0(irq.safe_halt);
147 static inline void halt(void)
149 PVOP_VCALL0(irq.halt);
152 static inline void wbinvd(void)
154 PVOP_VCALL0(cpu.wbinvd);
157 #define get_kernel_rpl() (pv_info.kernel_rpl)
159 static inline u64 paravirt_read_msr(unsigned msr)
161 return PVOP_CALL1(u64, cpu.read_msr, msr);
164 static inline void paravirt_write_msr(unsigned msr,
165 unsigned low, unsigned high)
167 PVOP_VCALL3(cpu.write_msr, msr, low, high);
170 static inline u64 paravirt_read_msr_safe(unsigned msr, int *err)
172 return PVOP_CALL2(u64, cpu.read_msr_safe, msr, err);
175 static inline int paravirt_write_msr_safe(unsigned msr,
176 unsigned low, unsigned high)
178 return PVOP_CALL3(int, cpu.write_msr_safe, msr, low, high);
181 #define rdmsr(msr, val1, val2) \
182 do { \
183 u64 _l = paravirt_read_msr(msr); \
184 val1 = (u32)_l; \
185 val2 = _l >> 32; \
186 } while (0)
188 #define wrmsr(msr, val1, val2) \
189 do { \
190 paravirt_write_msr(msr, val1, val2); \
191 } while (0)
193 #define rdmsrl(msr, val) \
194 do { \
195 val = paravirt_read_msr(msr); \
196 } while (0)
198 static inline void wrmsrl(unsigned msr, u64 val)
200 wrmsr(msr, (u32)val, (u32)(val>>32));
203 #define wrmsr_safe(msr, a, b) paravirt_write_msr_safe(msr, a, b)
205 /* rdmsr with exception handling */
206 #define rdmsr_safe(msr, a, b) \
207 ({ \
208 int _err; \
209 u64 _l = paravirt_read_msr_safe(msr, &_err); \
210 (*a) = (u32)_l; \
211 (*b) = _l >> 32; \
212 _err; \
215 static inline int rdmsrl_safe(unsigned msr, unsigned long long *p)
217 int err;
219 *p = paravirt_read_msr_safe(msr, &err);
220 return err;
223 static inline unsigned long long paravirt_read_pmc(int counter)
225 return PVOP_CALL1(u64, cpu.read_pmc, counter);
228 #define rdpmc(counter, low, high) \
229 do { \
230 u64 _l = paravirt_read_pmc(counter); \
231 low = (u32)_l; \
232 high = _l >> 32; \
233 } while (0)
235 #define rdpmcl(counter, val) ((val) = paravirt_read_pmc(counter))
237 static inline void paravirt_alloc_ldt(struct desc_struct *ldt, unsigned entries)
239 PVOP_VCALL2(cpu.alloc_ldt, ldt, entries);
242 static inline void paravirt_free_ldt(struct desc_struct *ldt, unsigned entries)
244 PVOP_VCALL2(cpu.free_ldt, ldt, entries);
247 static inline void load_TR_desc(void)
249 PVOP_VCALL0(cpu.load_tr_desc);
251 static inline void load_gdt(const struct desc_ptr *dtr)
253 PVOP_VCALL1(cpu.load_gdt, dtr);
255 static inline void load_idt(const struct desc_ptr *dtr)
257 PVOP_VCALL1(cpu.load_idt, dtr);
259 static inline void set_ldt(const void *addr, unsigned entries)
261 PVOP_VCALL2(cpu.set_ldt, addr, entries);
263 static inline unsigned long paravirt_store_tr(void)
265 return PVOP_CALL0(unsigned long, cpu.store_tr);
268 #define store_tr(tr) ((tr) = paravirt_store_tr())
269 static inline void load_TLS(struct thread_struct *t, unsigned cpu)
271 PVOP_VCALL2(cpu.load_tls, t, cpu);
274 #ifdef CONFIG_X86_64
275 static inline void load_gs_index(unsigned int gs)
277 PVOP_VCALL1(cpu.load_gs_index, gs);
279 #endif
281 static inline void write_ldt_entry(struct desc_struct *dt, int entry,
282 const void *desc)
284 PVOP_VCALL3(cpu.write_ldt_entry, dt, entry, desc);
287 static inline void write_gdt_entry(struct desc_struct *dt, int entry,
288 void *desc, int type)
290 PVOP_VCALL4(cpu.write_gdt_entry, dt, entry, desc, type);
293 static inline void write_idt_entry(gate_desc *dt, int entry, const gate_desc *g)
295 PVOP_VCALL3(cpu.write_idt_entry, dt, entry, g);
298 static inline void paravirt_activate_mm(struct mm_struct *prev,
299 struct mm_struct *next)
301 PVOP_VCALL2(mmu.activate_mm, prev, next);
304 static inline void paravirt_arch_dup_mmap(struct mm_struct *oldmm,
305 struct mm_struct *mm)
307 PVOP_VCALL2(mmu.dup_mmap, oldmm, mm);
310 static inline int paravirt_pgd_alloc(struct mm_struct *mm)
312 return PVOP_CALL1(int, mmu.pgd_alloc, mm);
315 static inline void paravirt_pgd_free(struct mm_struct *mm, pgd_t *pgd)
317 PVOP_VCALL2(mmu.pgd_free, mm, pgd);
320 static inline void paravirt_alloc_pte(struct mm_struct *mm, unsigned long pfn)
322 PVOP_VCALL2(mmu.alloc_pte, mm, pfn);
324 static inline void paravirt_release_pte(unsigned long pfn)
326 PVOP_VCALL1(mmu.release_pte, pfn);
329 static inline void paravirt_alloc_pmd(struct mm_struct *mm, unsigned long pfn)
331 PVOP_VCALL2(mmu.alloc_pmd, mm, pfn);
334 static inline void paravirt_release_pmd(unsigned long pfn)
336 PVOP_VCALL1(mmu.release_pmd, pfn);
339 static inline void paravirt_alloc_pud(struct mm_struct *mm, unsigned long pfn)
341 PVOP_VCALL2(mmu.alloc_pud, mm, pfn);
343 static inline void paravirt_release_pud(unsigned long pfn)
345 PVOP_VCALL1(mmu.release_pud, pfn);
348 static inline void paravirt_alloc_p4d(struct mm_struct *mm, unsigned long pfn)
350 PVOP_VCALL2(mmu.alloc_p4d, mm, pfn);
353 static inline void paravirt_release_p4d(unsigned long pfn)
355 PVOP_VCALL1(mmu.release_p4d, pfn);
358 static inline pte_t __pte(pteval_t val)
360 pteval_t ret;
362 if (sizeof(pteval_t) > sizeof(long))
363 ret = PVOP_CALLEE2(pteval_t, mmu.make_pte, val, (u64)val >> 32);
364 else
365 ret = PVOP_CALLEE1(pteval_t, mmu.make_pte, val);
367 return (pte_t) { .pte = ret };
370 static inline pteval_t pte_val(pte_t pte)
372 pteval_t ret;
374 if (sizeof(pteval_t) > sizeof(long))
375 ret = PVOP_CALLEE2(pteval_t, mmu.pte_val,
376 pte.pte, (u64)pte.pte >> 32);
377 else
378 ret = PVOP_CALLEE1(pteval_t, mmu.pte_val, pte.pte);
380 return ret;
383 static inline pgd_t __pgd(pgdval_t val)
385 pgdval_t ret;
387 if (sizeof(pgdval_t) > sizeof(long))
388 ret = PVOP_CALLEE2(pgdval_t, mmu.make_pgd, val, (u64)val >> 32);
389 else
390 ret = PVOP_CALLEE1(pgdval_t, mmu.make_pgd, val);
392 return (pgd_t) { ret };
395 static inline pgdval_t pgd_val(pgd_t pgd)
397 pgdval_t ret;
399 if (sizeof(pgdval_t) > sizeof(long))
400 ret = PVOP_CALLEE2(pgdval_t, mmu.pgd_val,
401 pgd.pgd, (u64)pgd.pgd >> 32);
402 else
403 ret = PVOP_CALLEE1(pgdval_t, mmu.pgd_val, pgd.pgd);
405 return ret;
408 #define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
409 static inline pte_t ptep_modify_prot_start(struct vm_area_struct *vma, unsigned long addr,
410 pte_t *ptep)
412 pteval_t ret;
414 ret = PVOP_CALL3(pteval_t, mmu.ptep_modify_prot_start, vma, addr, ptep);
416 return (pte_t) { .pte = ret };
419 static inline void ptep_modify_prot_commit(struct vm_area_struct *vma, unsigned long addr,
420 pte_t *ptep, pte_t old_pte, pte_t pte)
423 if (sizeof(pteval_t) > sizeof(long))
424 /* 5 arg words */
425 pv_ops.mmu.ptep_modify_prot_commit(vma, addr, ptep, pte);
426 else
427 PVOP_VCALL4(mmu.ptep_modify_prot_commit,
428 vma, addr, ptep, pte.pte);
431 static inline void set_pte(pte_t *ptep, pte_t pte)
433 if (sizeof(pteval_t) > sizeof(long))
434 PVOP_VCALL3(mmu.set_pte, ptep, pte.pte, (u64)pte.pte >> 32);
435 else
436 PVOP_VCALL2(mmu.set_pte, ptep, pte.pte);
439 static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
440 pte_t *ptep, pte_t pte)
442 if (sizeof(pteval_t) > sizeof(long))
443 /* 5 arg words */
444 pv_ops.mmu.set_pte_at(mm, addr, ptep, pte);
445 else
446 PVOP_VCALL4(mmu.set_pte_at, mm, addr, ptep, pte.pte);
449 static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
451 pmdval_t val = native_pmd_val(pmd);
453 if (sizeof(pmdval_t) > sizeof(long))
454 PVOP_VCALL3(mmu.set_pmd, pmdp, val, (u64)val >> 32);
455 else
456 PVOP_VCALL2(mmu.set_pmd, pmdp, val);
459 #if CONFIG_PGTABLE_LEVELS >= 3
460 static inline pmd_t __pmd(pmdval_t val)
462 pmdval_t ret;
464 if (sizeof(pmdval_t) > sizeof(long))
465 ret = PVOP_CALLEE2(pmdval_t, mmu.make_pmd, val, (u64)val >> 32);
466 else
467 ret = PVOP_CALLEE1(pmdval_t, mmu.make_pmd, val);
469 return (pmd_t) { ret };
472 static inline pmdval_t pmd_val(pmd_t pmd)
474 pmdval_t ret;
476 if (sizeof(pmdval_t) > sizeof(long))
477 ret = PVOP_CALLEE2(pmdval_t, mmu.pmd_val,
478 pmd.pmd, (u64)pmd.pmd >> 32);
479 else
480 ret = PVOP_CALLEE1(pmdval_t, mmu.pmd_val, pmd.pmd);
482 return ret;
485 static inline void set_pud(pud_t *pudp, pud_t pud)
487 pudval_t val = native_pud_val(pud);
489 if (sizeof(pudval_t) > sizeof(long))
490 PVOP_VCALL3(mmu.set_pud, pudp, val, (u64)val >> 32);
491 else
492 PVOP_VCALL2(mmu.set_pud, pudp, val);
494 #if CONFIG_PGTABLE_LEVELS >= 4
495 static inline pud_t __pud(pudval_t val)
497 pudval_t ret;
499 ret = PVOP_CALLEE1(pudval_t, mmu.make_pud, val);
501 return (pud_t) { ret };
504 static inline pudval_t pud_val(pud_t pud)
506 return PVOP_CALLEE1(pudval_t, mmu.pud_val, pud.pud);
509 static inline void pud_clear(pud_t *pudp)
511 set_pud(pudp, __pud(0));
514 static inline void set_p4d(p4d_t *p4dp, p4d_t p4d)
516 p4dval_t val = native_p4d_val(p4d);
518 PVOP_VCALL2(mmu.set_p4d, p4dp, val);
521 #if CONFIG_PGTABLE_LEVELS >= 5
523 static inline p4d_t __p4d(p4dval_t val)
525 p4dval_t ret = PVOP_CALLEE1(p4dval_t, mmu.make_p4d, val);
527 return (p4d_t) { ret };
530 static inline p4dval_t p4d_val(p4d_t p4d)
532 return PVOP_CALLEE1(p4dval_t, mmu.p4d_val, p4d.p4d);
535 static inline void __set_pgd(pgd_t *pgdp, pgd_t pgd)
537 PVOP_VCALL2(mmu.set_pgd, pgdp, native_pgd_val(pgd));
540 #define set_pgd(pgdp, pgdval) do { \
541 if (pgtable_l5_enabled()) \
542 __set_pgd(pgdp, pgdval); \
543 else \
544 set_p4d((p4d_t *)(pgdp), (p4d_t) { (pgdval).pgd }); \
545 } while (0)
547 #define pgd_clear(pgdp) do { \
548 if (pgtable_l5_enabled()) \
549 set_pgd(pgdp, __pgd(0)); \
550 } while (0)
552 #endif /* CONFIG_PGTABLE_LEVELS == 5 */
554 static inline void p4d_clear(p4d_t *p4dp)
556 set_p4d(p4dp, __p4d(0));
559 #endif /* CONFIG_PGTABLE_LEVELS == 4 */
561 #endif /* CONFIG_PGTABLE_LEVELS >= 3 */
563 #ifdef CONFIG_X86_PAE
564 /* Special-case pte-setting operations for PAE, which can't update a
565 64-bit pte atomically */
566 static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
568 PVOP_VCALL3(mmu.set_pte_atomic, ptep, pte.pte, pte.pte >> 32);
571 static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
572 pte_t *ptep)
574 PVOP_VCALL3(mmu.pte_clear, mm, addr, ptep);
577 static inline void pmd_clear(pmd_t *pmdp)
579 PVOP_VCALL1(mmu.pmd_clear, pmdp);
581 #else /* !CONFIG_X86_PAE */
582 static inline void set_pte_atomic(pte_t *ptep, pte_t pte)
584 set_pte(ptep, pte);
587 static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
588 pte_t *ptep)
590 set_pte_at(mm, addr, ptep, __pte(0));
593 static inline void pmd_clear(pmd_t *pmdp)
595 set_pmd(pmdp, __pmd(0));
597 #endif /* CONFIG_X86_PAE */
599 #define __HAVE_ARCH_START_CONTEXT_SWITCH
600 static inline void arch_start_context_switch(struct task_struct *prev)
602 PVOP_VCALL1(cpu.start_context_switch, prev);
605 static inline void arch_end_context_switch(struct task_struct *next)
607 PVOP_VCALL1(cpu.end_context_switch, next);
610 #define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
611 static inline void arch_enter_lazy_mmu_mode(void)
613 PVOP_VCALL0(mmu.lazy_mode.enter);
616 static inline void arch_leave_lazy_mmu_mode(void)
618 PVOP_VCALL0(mmu.lazy_mode.leave);
621 static inline void arch_flush_lazy_mmu_mode(void)
623 PVOP_VCALL0(mmu.lazy_mode.flush);
626 static inline void __set_fixmap(unsigned /* enum fixed_addresses */ idx,
627 phys_addr_t phys, pgprot_t flags)
629 pv_ops.mmu.set_fixmap(idx, phys, flags);
631 #endif
633 #if defined(CONFIG_SMP) && defined(CONFIG_PARAVIRT_SPINLOCKS)
635 static __always_inline void pv_queued_spin_lock_slowpath(struct qspinlock *lock,
636 u32 val)
638 PVOP_VCALL2(lock.queued_spin_lock_slowpath, lock, val);
641 static __always_inline void pv_queued_spin_unlock(struct qspinlock *lock)
643 PVOP_VCALLEE1(lock.queued_spin_unlock, lock);
646 static __always_inline void pv_wait(u8 *ptr, u8 val)
648 PVOP_VCALL2(lock.wait, ptr, val);
651 static __always_inline void pv_kick(int cpu)
653 PVOP_VCALL1(lock.kick, cpu);
656 static __always_inline bool pv_vcpu_is_preempted(long cpu)
658 return PVOP_CALLEE1(bool, lock.vcpu_is_preempted, cpu);
661 void __raw_callee_save___native_queued_spin_unlock(struct qspinlock *lock);
662 bool __raw_callee_save___native_vcpu_is_preempted(long cpu);
664 #endif /* SMP && PARAVIRT_SPINLOCKS */
666 #ifdef CONFIG_X86_32
667 #define PV_SAVE_REGS "pushl %ecx; pushl %edx;"
668 #define PV_RESTORE_REGS "popl %edx; popl %ecx;"
670 /* save and restore all caller-save registers, except return value */
671 #define PV_SAVE_ALL_CALLER_REGS "pushl %ecx;"
672 #define PV_RESTORE_ALL_CALLER_REGS "popl %ecx;"
674 #define PV_FLAGS_ARG "0"
675 #define PV_EXTRA_CLOBBERS
676 #define PV_VEXTRA_CLOBBERS
677 #else
678 /* save and restore all caller-save registers, except return value */
679 #define PV_SAVE_ALL_CALLER_REGS \
680 "push %rcx;" \
681 "push %rdx;" \
682 "push %rsi;" \
683 "push %rdi;" \
684 "push %r8;" \
685 "push %r9;" \
686 "push %r10;" \
687 "push %r11;"
688 #define PV_RESTORE_ALL_CALLER_REGS \
689 "pop %r11;" \
690 "pop %r10;" \
691 "pop %r9;" \
692 "pop %r8;" \
693 "pop %rdi;" \
694 "pop %rsi;" \
695 "pop %rdx;" \
696 "pop %rcx;"
698 /* We save some registers, but all of them, that's too much. We clobber all
699 * caller saved registers but the argument parameter */
700 #define PV_SAVE_REGS "pushq %%rdi;"
701 #define PV_RESTORE_REGS "popq %%rdi;"
702 #define PV_EXTRA_CLOBBERS EXTRA_CLOBBERS, "rcx" , "rdx", "rsi"
703 #define PV_VEXTRA_CLOBBERS EXTRA_CLOBBERS, "rdi", "rcx" , "rdx", "rsi"
704 #define PV_FLAGS_ARG "D"
705 #endif
708 * Generate a thunk around a function which saves all caller-save
709 * registers except for the return value. This allows C functions to
710 * be called from assembler code where fewer than normal registers are
711 * available. It may also help code generation around calls from C
712 * code if the common case doesn't use many registers.
714 * When a callee is wrapped in a thunk, the caller can assume that all
715 * arg regs and all scratch registers are preserved across the
716 * call. The return value in rax/eax will not be saved, even for void
717 * functions.
719 #define PV_THUNK_NAME(func) "__raw_callee_save_" #func
720 #define PV_CALLEE_SAVE_REGS_THUNK(func) \
721 extern typeof(func) __raw_callee_save_##func; \
723 asm(".pushsection .text;" \
724 ".globl " PV_THUNK_NAME(func) ";" \
725 ".type " PV_THUNK_NAME(func) ", @function;" \
726 PV_THUNK_NAME(func) ":" \
727 FRAME_BEGIN \
728 PV_SAVE_ALL_CALLER_REGS \
729 "call " #func ";" \
730 PV_RESTORE_ALL_CALLER_REGS \
731 FRAME_END \
732 "ret;" \
733 ".size " PV_THUNK_NAME(func) ", .-" PV_THUNK_NAME(func) ";" \
734 ".popsection")
736 /* Get a reference to a callee-save function */
737 #define PV_CALLEE_SAVE(func) \
738 ((struct paravirt_callee_save) { __raw_callee_save_##func })
740 /* Promise that "func" already uses the right calling convention */
741 #define __PV_IS_CALLEE_SAVE(func) \
742 ((struct paravirt_callee_save) { func })
744 #ifdef CONFIG_PARAVIRT_XXL
745 static inline notrace unsigned long arch_local_save_flags(void)
747 return PVOP_CALLEE0(unsigned long, irq.save_fl);
750 static inline notrace void arch_local_irq_restore(unsigned long f)
752 PVOP_VCALLEE1(irq.restore_fl, f);
755 static inline notrace void arch_local_irq_disable(void)
757 PVOP_VCALLEE0(irq.irq_disable);
760 static inline notrace void arch_local_irq_enable(void)
762 PVOP_VCALLEE0(irq.irq_enable);
765 static inline notrace unsigned long arch_local_irq_save(void)
767 unsigned long f;
769 f = arch_local_save_flags();
770 arch_local_irq_disable();
771 return f;
773 #endif
776 /* Make sure as little as possible of this mess escapes. */
777 #undef PARAVIRT_CALL
778 #undef __PVOP_CALL
779 #undef __PVOP_VCALL
780 #undef PVOP_VCALL0
781 #undef PVOP_CALL0
782 #undef PVOP_VCALL1
783 #undef PVOP_CALL1
784 #undef PVOP_VCALL2
785 #undef PVOP_CALL2
786 #undef PVOP_VCALL3
787 #undef PVOP_CALL3
788 #undef PVOP_VCALL4
789 #undef PVOP_CALL4
791 extern void default_banner(void);
793 #else /* __ASSEMBLY__ */
795 #define _PVSITE(ptype, ops, word, algn) \
796 771:; \
797 ops; \
798 772:; \
799 .pushsection .parainstructions,"a"; \
800 .align algn; \
801 word 771b; \
802 .byte ptype; \
803 .byte 772b-771b; \
804 .popsection
807 #define COND_PUSH(set, mask, reg) \
808 .if ((~(set)) & mask); push %reg; .endif
809 #define COND_POP(set, mask, reg) \
810 .if ((~(set)) & mask); pop %reg; .endif
812 #ifdef CONFIG_X86_64
814 #define PV_SAVE_REGS(set) \
815 COND_PUSH(set, CLBR_RAX, rax); \
816 COND_PUSH(set, CLBR_RCX, rcx); \
817 COND_PUSH(set, CLBR_RDX, rdx); \
818 COND_PUSH(set, CLBR_RSI, rsi); \
819 COND_PUSH(set, CLBR_RDI, rdi); \
820 COND_PUSH(set, CLBR_R8, r8); \
821 COND_PUSH(set, CLBR_R9, r9); \
822 COND_PUSH(set, CLBR_R10, r10); \
823 COND_PUSH(set, CLBR_R11, r11)
824 #define PV_RESTORE_REGS(set) \
825 COND_POP(set, CLBR_R11, r11); \
826 COND_POP(set, CLBR_R10, r10); \
827 COND_POP(set, CLBR_R9, r9); \
828 COND_POP(set, CLBR_R8, r8); \
829 COND_POP(set, CLBR_RDI, rdi); \
830 COND_POP(set, CLBR_RSI, rsi); \
831 COND_POP(set, CLBR_RDX, rdx); \
832 COND_POP(set, CLBR_RCX, rcx); \
833 COND_POP(set, CLBR_RAX, rax)
835 #define PARA_PATCH(off) ((off) / 8)
836 #define PARA_SITE(ptype, ops) _PVSITE(ptype, ops, .quad, 8)
837 #define PARA_INDIRECT(addr) *addr(%rip)
838 #else
839 #define PV_SAVE_REGS(set) \
840 COND_PUSH(set, CLBR_EAX, eax); \
841 COND_PUSH(set, CLBR_EDI, edi); \
842 COND_PUSH(set, CLBR_ECX, ecx); \
843 COND_PUSH(set, CLBR_EDX, edx)
844 #define PV_RESTORE_REGS(set) \
845 COND_POP(set, CLBR_EDX, edx); \
846 COND_POP(set, CLBR_ECX, ecx); \
847 COND_POP(set, CLBR_EDI, edi); \
848 COND_POP(set, CLBR_EAX, eax)
850 #define PARA_PATCH(off) ((off) / 4)
851 #define PARA_SITE(ptype, ops) _PVSITE(ptype, ops, .long, 4)
852 #define PARA_INDIRECT(addr) *%cs:addr
853 #endif
855 #ifdef CONFIG_PARAVIRT_XXL
856 #define INTERRUPT_RETURN \
857 PARA_SITE(PARA_PATCH(PV_CPU_iret), \
858 ANNOTATE_RETPOLINE_SAFE; \
859 jmp PARA_INDIRECT(pv_ops+PV_CPU_iret);)
861 #define DISABLE_INTERRUPTS(clobbers) \
862 PARA_SITE(PARA_PATCH(PV_IRQ_irq_disable), \
863 PV_SAVE_REGS(clobbers | CLBR_CALLEE_SAVE); \
864 ANNOTATE_RETPOLINE_SAFE; \
865 call PARA_INDIRECT(pv_ops+PV_IRQ_irq_disable); \
866 PV_RESTORE_REGS(clobbers | CLBR_CALLEE_SAVE);)
868 #define ENABLE_INTERRUPTS(clobbers) \
869 PARA_SITE(PARA_PATCH(PV_IRQ_irq_enable), \
870 PV_SAVE_REGS(clobbers | CLBR_CALLEE_SAVE); \
871 ANNOTATE_RETPOLINE_SAFE; \
872 call PARA_INDIRECT(pv_ops+PV_IRQ_irq_enable); \
873 PV_RESTORE_REGS(clobbers | CLBR_CALLEE_SAVE);)
874 #endif
876 #ifdef CONFIG_X86_64
877 #ifdef CONFIG_PARAVIRT_XXL
879 * If swapgs is used while the userspace stack is still current,
880 * there's no way to call a pvop. The PV replacement *must* be
881 * inlined, or the swapgs instruction must be trapped and emulated.
883 #define SWAPGS_UNSAFE_STACK \
884 PARA_SITE(PARA_PATCH(PV_CPU_swapgs), swapgs)
887 * Note: swapgs is very special, and in practise is either going to be
888 * implemented with a single "swapgs" instruction or something very
889 * special. Either way, we don't need to save any registers for
890 * it.
892 #define SWAPGS \
893 PARA_SITE(PARA_PATCH(PV_CPU_swapgs), \
894 ANNOTATE_RETPOLINE_SAFE; \
895 call PARA_INDIRECT(pv_ops+PV_CPU_swapgs); \
898 #define USERGS_SYSRET64 \
899 PARA_SITE(PARA_PATCH(PV_CPU_usergs_sysret64), \
900 ANNOTATE_RETPOLINE_SAFE; \
901 jmp PARA_INDIRECT(pv_ops+PV_CPU_usergs_sysret64);)
903 #ifdef CONFIG_DEBUG_ENTRY
904 #define SAVE_FLAGS(clobbers) \
905 PARA_SITE(PARA_PATCH(PV_IRQ_save_fl), \
906 PV_SAVE_REGS(clobbers | CLBR_CALLEE_SAVE); \
907 ANNOTATE_RETPOLINE_SAFE; \
908 call PARA_INDIRECT(pv_ops+PV_IRQ_save_fl); \
909 PV_RESTORE_REGS(clobbers | CLBR_CALLEE_SAVE);)
910 #endif
911 #endif /* CONFIG_PARAVIRT_XXL */
912 #endif /* CONFIG_X86_64 */
914 #ifdef CONFIG_PARAVIRT_XXL
916 #define GET_CR2_INTO_AX \
917 PARA_SITE(PARA_PATCH(PV_MMU_read_cr2), \
918 ANNOTATE_RETPOLINE_SAFE; \
919 call PARA_INDIRECT(pv_ops+PV_MMU_read_cr2); \
922 #endif /* CONFIG_PARAVIRT_XXL */
925 #endif /* __ASSEMBLY__ */
926 #else /* CONFIG_PARAVIRT */
927 # define default_banner x86_init_noop
928 #endif /* !CONFIG_PARAVIRT */
930 #ifndef __ASSEMBLY__
931 #ifndef CONFIG_PARAVIRT_XXL
932 static inline void paravirt_arch_dup_mmap(struct mm_struct *oldmm,
933 struct mm_struct *mm)
936 #endif
938 #ifndef CONFIG_PARAVIRT
939 static inline void paravirt_arch_exit_mmap(struct mm_struct *mm)
942 #endif
943 #endif /* __ASSEMBLY__ */
944 #endif /* _ASM_X86_PARAVIRT_H */