Commit | Line | Data |
---|---|---|
fd534e9b | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
d3561b7f RR |
2 | /* Paravirtualization interfaces |
3 | Copyright (C) 2006 Rusty Russell IBM Corporation | |
4 | ||
b1df07bd GOC |
5 | |
6 | 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc | |
d3561b7f | 7 | */ |
b1df07bd | 8 | |
d3561b7f | 9 | #include <linux/errno.h> |
186f4360 PG |
10 | #include <linux/init.h> |
11 | #include <linux/export.h> | |
d3561b7f RR |
12 | #include <linux/efi.h> |
13 | #include <linux/bcd.h> | |
ce6234b5 | 14 | #include <linux/highmem.h> |
376e2424 | 15 | #include <linux/kprobes.h> |
65fddcfc | 16 | #include <linux/pgtable.h> |
a0e2bf7c | 17 | #include <linux/static_call.h> |
d3561b7f RR |
18 | |
19 | #include <asm/bug.h> | |
20 | #include <asm/paravirt.h> | |
50af5ead | 21 | #include <asm/debugreg.h> |
d3561b7f RR |
22 | #include <asm/desc.h> |
23 | #include <asm/setup.h> | |
d3561b7f | 24 | #include <asm/time.h> |
eba0045f | 25 | #include <asm/pgalloc.h> |
d3561b7f RR |
26 | #include <asm/irq.h> |
27 | #include <asm/delay.h> | |
13623d79 RR |
28 | #include <asm/fixmap.h> |
29 | #include <asm/apic.h> | |
da181a8b | 30 | #include <asm/tlbflush.h> |
6cb9a835 | 31 | #include <asm/timer.h> |
f05e798a | 32 | #include <asm/special_insns.h> |
48a8b97c | 33 | #include <asm/tlb.h> |
99bcd4a6 | 34 | #include <asm/io_bitmap.h> |
ae53fa18 | 35 | #include <asm/gsseg.h> |
efef7f18 | 36 | #include <asm/msr.h> |
d3561b7f | 37 | |
e453f872 | 38 | /* stub always returning 0. */ |
9824b00c | 39 | DEFINE_ASM_FUNC(paravirt_ret0, "xor %eax,%eax", .entry.text); |
e453f872 | 40 | |
6f30c1ac | 41 | void __init default_banner(void) |
d3561b7f RR |
42 | { |
43 | printk(KERN_INFO "Booting paravirtualized kernel on %s\n", | |
93b1eab3 | 44 | pv_info.name); |
d3561b7f RR |
45 | } |
46 | ||
9bad5658 | 47 | #ifdef CONFIG_PARAVIRT_XXL |
9824b00c JG |
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); | |
9bad5658 | 53 | #endif |
63f70270 | 54 | |
e639222a | 55 | DEFINE_STATIC_KEY_FALSE(virt_spin_lock_key); |
9043442b JG |
56 | |
57 | void __init native_pv_lock_init(void) | |
58 | { | |
e639222a CY |
59 | if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) |
60 | static_branch_enable(&virt_spin_lock_key); | |
9043442b JG |
61 | } |
62 | ||
c5905afb IM |
63 | struct static_key paravirt_steal_enabled; |
64 | struct static_key paravirt_steal_rq_enabled; | |
3c404b57 GC |
65 | |
66 | static u64 native_steal_clock(int cpu) | |
67 | { | |
68 | return 0; | |
69 | } | |
70 | ||
a0e2bf7c JG |
71 | DEFINE_STATIC_CALL(pv_steal_clock, native_steal_clock); |
72 | DEFINE_STATIC_CALL(pv_sched_clock, native_sched_clock); | |
73 | ||
74 | void paravirt_set_sched_clock(u64 (*func)(void)) | |
75 | { | |
76 | static_call_update(pv_sched_clock, func); | |
77 | } | |
78 | ||
22cc5ca5 KS |
79 | static noinstr void pv_native_safe_halt(void) |
80 | { | |
81 | native_safe_halt(); | |
82 | } | |
83 | ||
9bad5658 | 84 | #ifdef CONFIG_PARAVIRT_XXL |
209cfd0c PZ |
85 | static noinstr void pv_native_write_cr2(unsigned long val) |
86 | { | |
87 | native_write_cr2(val); | |
88 | } | |
f4afb713 | 89 | |
582077c9 PZ |
90 | static noinstr unsigned long pv_native_read_cr3(void) |
91 | { | |
92 | return __native_read_cr3(); | |
93 | } | |
94 | ||
95 | static noinstr void pv_native_write_cr3(unsigned long cr3) | |
96 | { | |
97 | native_write_cr3(cr3); | |
98 | } | |
99 | ||
f4afb713 PZ |
100 | static noinstr unsigned long pv_native_get_debugreg(int regno) |
101 | { | |
102 | return native_get_debugreg(regno); | |
103 | } | |
7361fac0 PZ |
104 | |
105 | static noinstr void pv_native_set_debugreg(int regno, unsigned long val) | |
106 | { | |
107 | native_set_debugreg(regno, val); | |
108 | } | |
9bad5658 | 109 | #endif |
8965c1c0 | 110 | |
93b1eab3 | 111 | struct pv_info pv_info = { |
d3561b7f | 112 | .name = "bare hardware", |
40181646 | 113 | #ifdef CONFIG_PARAVIRT_XXL |
318f5a2a AL |
114 | .extra_user_64bit_cs = __USER_CS, |
115 | #endif | |
93b1eab3 | 116 | }; |
d3561b7f | 117 | |
41edafdb | 118 | /* 64-bit pagetable entries */ |
da5de7c2 | 119 | #define PTE_IDENT __PV_IS_CALLEE_SAVE(_paravirt_ident_64) |
41edafdb | 120 | |
5c83511b | 121 | struct paravirt_patch_template pv_ops = { |
5c83511b | 122 | /* Cpu ops. */ |
9bad5658 | 123 | .cpu.io_delay = native_io_delay, |
da181a8b | 124 | |
9bad5658 | 125 | #ifdef CONFIG_PARAVIRT_XXL |
5c83511b | 126 | .cpu.cpuid = native_cpuid, |
f4afb713 | 127 | .cpu.get_debugreg = pv_native_get_debugreg, |
7361fac0 | 128 | .cpu.set_debugreg = pv_native_set_debugreg, |
5c83511b JG |
129 | .cpu.read_cr0 = native_read_cr0, |
130 | .cpu.write_cr0 = native_write_cr0, | |
131 | .cpu.write_cr4 = native_write_cr4, | |
5c83511b JG |
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, | |
5c83511b | 143 | .cpu.load_gs_index = native_load_gs_index, |
5c83511b JG |
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, | |
eba0045f | 147 | |
5c83511b JG |
148 | .cpu.alloc_ldt = paravirt_nop, |
149 | .cpu.free_ldt = paravirt_nop, | |
c119ecce | 150 | |
5c83511b | 151 | .cpu.load_sp0 = native_load_sp0, |
3dc494e8 | 152 | |
99bcd4a6 | 153 | #ifdef CONFIG_X86_IOPL_IOPERM |
cadfad87 AL |
154 | .cpu.invalidate_io_bitmap = native_tss_invalidate_io_bitmap, |
155 | .cpu.update_io_bitmap = native_tss_update_io_bitmap, | |
99bcd4a6 JG |
156 | #endif |
157 | ||
5c83511b JG |
158 | .cpu.start_context_switch = paravirt_nop, |
159 | .cpu.end_context_switch = paravirt_nop, | |
160 | ||
161 | /* Irq ops. */ | |
11af36cb | 162 | .irq.save_fl = __PV_IS_CALLEE_SAVE(pv_native_save_fl), |
09c41307 | 163 | .irq.irq_disable = __PV_IS_CALLEE_SAVE(pv_native_irq_disable), |
d7bfc7d5 | 164 | .irq.irq_enable = __PV_IS_CALLEE_SAVE(pv_native_irq_enable), |
22cc5ca5 KS |
165 | #endif /* CONFIG_PARAVIRT_XXL */ |
166 | ||
167 | /* Irq HLT ops. */ | |
10a09940 | 168 | .irq.safe_halt = pv_native_safe_halt, |
5c83511b JG |
169 | .irq.halt = native_halt, |
170 | ||
171 | /* Mmu ops. */ | |
2faf153b | 172 | .mmu.flush_tlb_user = native_flush_tlb_local, |
5c83511b JG |
173 | .mmu.flush_tlb_kernel = native_flush_tlb_global, |
174 | .mmu.flush_tlb_one_user = native_flush_tlb_one_user, | |
4ce94eab | 175 | .mmu.flush_tlb_multi = native_flush_tlb_multi, |
5c83511b | 176 | |
fdc0269e | 177 | .mmu.exit_mmap = paravirt_nop, |
064ce6c5 | 178 | .mmu.notify_page_enc_status_changed = paravirt_nop, |
fdc0269e JG |
179 | |
180 | #ifdef CONFIG_PARAVIRT_XXL | |
0a53c9ac | 181 | .mmu.read_cr2 = __PV_IS_CALLEE_SAVE(pv_native_read_cr2), |
209cfd0c | 182 | .mmu.write_cr2 = pv_native_write_cr2, |
582077c9 PZ |
183 | .mmu.read_cr3 = pv_native_read_cr3, |
184 | .mmu.write_cr3 = pv_native_write_cr3, | |
fdc0269e | 185 | |
5c83511b JG |
186 | .mmu.pgd_alloc = __paravirt_pgd_alloc, |
187 | .mmu.pgd_free = paravirt_nop, | |
188 | ||
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, | |
197 | ||
198 | .mmu.set_pte = native_set_pte, | |
5c83511b JG |
199 | .mmu.set_pmd = native_set_pmd, |
200 | ||
201 | .mmu.ptep_modify_prot_start = __ptep_modify_prot_start, | |
202 | .mmu.ptep_modify_prot_commit = __ptep_modify_prot_commit, | |
08b882c6 | 203 | |
5c83511b | 204 | .mmu.set_pud = native_set_pud, |
da5de7c2 | 205 | |
5c83511b JG |
206 | .mmu.pmd_val = PTE_IDENT, |
207 | .mmu.make_pmd = PTE_IDENT, | |
f95f2f7b | 208 | |
5c83511b JG |
209 | .mmu.pud_val = PTE_IDENT, |
210 | .mmu.make_pud = PTE_IDENT, | |
da5de7c2 | 211 | |
5c83511b | 212 | .mmu.set_p4d = native_set_p4d, |
f2a6a705 | 213 | |
5c83511b JG |
214 | .mmu.p4d_val = PTE_IDENT, |
215 | .mmu.make_p4d = PTE_IDENT, | |
335437fb | 216 | |
5c83511b | 217 | .mmu.set_pgd = native_set_pgd, |
da181a8b | 218 | |
5c83511b JG |
219 | .mmu.pte_val = PTE_IDENT, |
220 | .mmu.pgd_val = PTE_IDENT, | |
3dc494e8 | 221 | |
5c83511b JG |
222 | .mmu.make_pte = PTE_IDENT, |
223 | .mmu.make_pgd = PTE_IDENT, | |
3dc494e8 | 224 | |
c9ae1b10 | 225 | .mmu.enter_mmap = paravirt_nop, |
8965c1c0 | 226 | |
5c83511b JG |
227 | .mmu.lazy_mode = { |
228 | .enter = paravirt_nop, | |
229 | .leave = paravirt_nop, | |
230 | .flush = paravirt_nop, | |
8965c1c0 | 231 | }, |
aeaaa59c | 232 | |
5c83511b | 233 | .mmu.set_fixmap = native_set_fixmap, |
fdc0269e | 234 | #endif /* CONFIG_PARAVIRT_XXL */ |
5c83511b JG |
235 | |
236 | #if defined(CONFIG_PARAVIRT_SPINLOCKS) | |
237 | /* Lock ops. */ | |
238 | #ifdef CONFIG_SMP | |
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), | |
246 | #endif /* SMP */ | |
247 | #endif | |
d3561b7f | 248 | }; |
0dbe5a11 | 249 | |
9bad5658 | 250 | #ifdef CONFIG_PARAVIRT_XXL |
5c83511b | 251 | NOKPROBE_SYMBOL(native_load_idt); |
9bad5658 | 252 | #endif |
5c83511b | 253 | |
8af19095 | 254 | EXPORT_SYMBOL(pv_ops); |
93b1eab3 | 255 | EXPORT_SYMBOL_GPL(pv_info); |