1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Paravirtualization interfaces
3 Copyright (C) 2006 Rusty Russell IBM Corporation
6 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc
9 #include <linux/errno.h>
10 #include <linux/init.h>
11 #include <linux/export.h>
12 #include <linux/efi.h>
13 #include <linux/bcd.h>
14 #include <linux/highmem.h>
15 #include <linux/kprobes.h>
16 #include <linux/pgtable.h>
17 #include <linux/static_call.h>
20 #include <asm/paravirt.h>
21 #include <asm/debugreg.h>
23 #include <asm/setup.h>
25 #include <asm/pgalloc.h>
27 #include <asm/delay.h>
28 #include <asm/fixmap.h>
30 #include <asm/tlbflush.h>
31 #include <asm/timer.h>
32 #include <asm/special_insns.h>
34 #include <asm/io_bitmap.h>
35 #include <asm/gsseg.h>
38 /* stub always returning 0. */
39 DEFINE_ASM_FUNC(paravirt_ret0, "xor %eax,%eax", .entry.text);
41 void __init default_banner(void)
43 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
47 #ifdef CONFIG_PARAVIRT_XXL
48 DEFINE_ASM_FUNC(_paravirt_ident_64, "mov %rdi, %rax", .text);
49 DEFINE_ASM_FUNC(pv_native_save_fl, "pushf; pop %rax", .noinstr.text);
50 DEFINE_ASM_FUNC(pv_native_irq_disable, "cli", .noinstr.text);
51 DEFINE_ASM_FUNC(pv_native_irq_enable, "sti", .noinstr.text);
52 DEFINE_ASM_FUNC(pv_native_read_cr2, "mov %cr2, %rax", .noinstr.text);
55 DEFINE_STATIC_KEY_FALSE(virt_spin_lock_key);
57 void __init native_pv_lock_init(void)
59 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
60 static_branch_enable(&virt_spin_lock_key);
63 struct static_key paravirt_steal_enabled;
64 struct static_key paravirt_steal_rq_enabled;
66 static u64 native_steal_clock(int cpu)
71 DEFINE_STATIC_CALL(pv_steal_clock, native_steal_clock);
72 DEFINE_STATIC_CALL(pv_sched_clock, native_sched_clock);
74 void paravirt_set_sched_clock(u64 (*func)(void))
76 static_call_update(pv_sched_clock, func);
79 static noinstr void pv_native_safe_halt(void)
84 #ifdef CONFIG_PARAVIRT_XXL
85 static noinstr void pv_native_write_cr2(unsigned long val)
87 native_write_cr2(val);
90 static noinstr unsigned long pv_native_read_cr3(void)
92 return __native_read_cr3();
95 static noinstr void pv_native_write_cr3(unsigned long cr3)
97 native_write_cr3(cr3);
100 static noinstr unsigned long pv_native_get_debugreg(int regno)
102 return native_get_debugreg(regno);
105 static noinstr void pv_native_set_debugreg(int regno, unsigned long val)
107 native_set_debugreg(regno, val);
111 struct pv_info pv_info = {
112 .name = "bare hardware",
113 #ifdef CONFIG_PARAVIRT_XXL
114 .extra_user_64bit_cs = __USER_CS,
118 /* 64-bit pagetable entries */
119 #define PTE_IDENT __PV_IS_CALLEE_SAVE(_paravirt_ident_64)
121 struct paravirt_patch_template pv_ops = {
123 .cpu.io_delay = native_io_delay,
125 #ifdef CONFIG_PARAVIRT_XXL
126 .cpu.cpuid = native_cpuid,
127 .cpu.get_debugreg = pv_native_get_debugreg,
128 .cpu.set_debugreg = pv_native_set_debugreg,
129 .cpu.read_cr0 = native_read_cr0,
130 .cpu.write_cr0 = native_write_cr0,
131 .cpu.write_cr4 = native_write_cr4,
132 .cpu.read_msr = native_read_msr,
133 .cpu.write_msr = native_write_msr,
134 .cpu.read_msr_safe = native_read_msr_safe,
135 .cpu.write_msr_safe = native_write_msr_safe,
136 .cpu.read_pmc = native_read_pmc,
137 .cpu.load_tr_desc = native_load_tr_desc,
138 .cpu.set_ldt = native_set_ldt,
139 .cpu.load_gdt = native_load_gdt,
140 .cpu.load_idt = native_load_idt,
141 .cpu.store_tr = native_store_tr,
142 .cpu.load_tls = native_load_tls,
143 .cpu.load_gs_index = native_load_gs_index,
144 .cpu.write_ldt_entry = native_write_ldt_entry,
145 .cpu.write_gdt_entry = native_write_gdt_entry,
146 .cpu.write_idt_entry = native_write_idt_entry,
148 .cpu.alloc_ldt = paravirt_nop,
149 .cpu.free_ldt = paravirt_nop,
151 .cpu.load_sp0 = native_load_sp0,
153 #ifdef CONFIG_X86_IOPL_IOPERM
154 .cpu.invalidate_io_bitmap = native_tss_invalidate_io_bitmap,
155 .cpu.update_io_bitmap = native_tss_update_io_bitmap,
158 .cpu.start_context_switch = paravirt_nop,
159 .cpu.end_context_switch = paravirt_nop,
162 .irq.save_fl = __PV_IS_CALLEE_SAVE(pv_native_save_fl),
163 .irq.irq_disable = __PV_IS_CALLEE_SAVE(pv_native_irq_disable),
164 .irq.irq_enable = __PV_IS_CALLEE_SAVE(pv_native_irq_enable),
165 #endif /* CONFIG_PARAVIRT_XXL */
168 .irq.safe_halt = pv_native_safe_halt,
169 .irq.halt = native_halt,
172 .mmu.flush_tlb_user = native_flush_tlb_local,
173 .mmu.flush_tlb_kernel = native_flush_tlb_global,
174 .mmu.flush_tlb_one_user = native_flush_tlb_one_user,
175 .mmu.flush_tlb_multi = native_flush_tlb_multi,
177 .mmu.exit_mmap = paravirt_nop,
178 .mmu.notify_page_enc_status_changed = paravirt_nop,
180 #ifdef CONFIG_PARAVIRT_XXL
181 .mmu.read_cr2 = __PV_IS_CALLEE_SAVE(pv_native_read_cr2),
182 .mmu.write_cr2 = pv_native_write_cr2,
183 .mmu.read_cr3 = pv_native_read_cr3,
184 .mmu.write_cr3 = pv_native_write_cr3,
186 .mmu.pgd_alloc = __paravirt_pgd_alloc,
187 .mmu.pgd_free = paravirt_nop,
189 .mmu.alloc_pte = paravirt_nop,
190 .mmu.alloc_pmd = paravirt_nop,
191 .mmu.alloc_pud = paravirt_nop,
192 .mmu.alloc_p4d = paravirt_nop,
193 .mmu.release_pte = paravirt_nop,
194 .mmu.release_pmd = paravirt_nop,
195 .mmu.release_pud = paravirt_nop,
196 .mmu.release_p4d = paravirt_nop,
198 .mmu.set_pte = native_set_pte,
199 .mmu.set_pmd = native_set_pmd,
201 .mmu.ptep_modify_prot_start = __ptep_modify_prot_start,
202 .mmu.ptep_modify_prot_commit = __ptep_modify_prot_commit,
204 .mmu.set_pud = native_set_pud,
206 .mmu.pmd_val = PTE_IDENT,
207 .mmu.make_pmd = PTE_IDENT,
209 .mmu.pud_val = PTE_IDENT,
210 .mmu.make_pud = PTE_IDENT,
212 .mmu.set_p4d = native_set_p4d,
214 .mmu.p4d_val = PTE_IDENT,
215 .mmu.make_p4d = PTE_IDENT,
217 .mmu.set_pgd = native_set_pgd,
219 .mmu.pte_val = PTE_IDENT,
220 .mmu.pgd_val = PTE_IDENT,
222 .mmu.make_pte = PTE_IDENT,
223 .mmu.make_pgd = PTE_IDENT,
225 .mmu.enter_mmap = paravirt_nop,
228 .enter = paravirt_nop,
229 .leave = paravirt_nop,
230 .flush = paravirt_nop,
233 .mmu.set_fixmap = native_set_fixmap,
234 #endif /* CONFIG_PARAVIRT_XXL */
236 #if defined(CONFIG_PARAVIRT_SPINLOCKS)
239 .lock.queued_spin_lock_slowpath = native_queued_spin_lock_slowpath,
240 .lock.queued_spin_unlock =
241 PV_CALLEE_SAVE(__native_queued_spin_unlock),
242 .lock.wait = paravirt_nop,
243 .lock.kick = paravirt_nop,
244 .lock.vcpu_is_preempted =
245 PV_CALLEE_SAVE(__native_vcpu_is_preempted),
250 #ifdef CONFIG_PARAVIRT_XXL
251 NOKPROBE_SYMBOL(native_load_idt);
254 EXPORT_SYMBOL(pv_ops);
255 EXPORT_SYMBOL_GPL(pv_info);