Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #if !defined(KVM_X86_OP) || !defined(KVM_X86_OP_NULL) |
| 3 | BUILD_BUG_ON(1) |
| 4 | #endif |
| 5 | |
| 6 | /* |
| 7 | * KVM_X86_OP() and KVM_X86_OP_NULL() are used to help generate |
| 8 | * "static_call()"s. They are also intended for use when defining |
| 9 | * the vmx/svm kvm_x86_ops. KVM_X86_OP() can be used for those |
| 10 | * functions that follow the [svm|vmx]_func_name convention. |
| 11 | * KVM_X86_OP_NULL() can leave a NULL definition for the |
| 12 | * case where there is no definition or a function name that |
| 13 | * doesn't match the typical naming convention is supplied. |
| 14 | */ |
| 15 | KVM_X86_OP_NULL(hardware_enable) |
| 16 | KVM_X86_OP_NULL(hardware_disable) |
| 17 | KVM_X86_OP_NULL(hardware_unsetup) |
| 18 | KVM_X86_OP_NULL(cpu_has_accelerated_tpr) |
| 19 | KVM_X86_OP(has_emulated_msr) |
| 20 | KVM_X86_OP(vcpu_after_set_cpuid) |
| 21 | KVM_X86_OP(vm_init) |
| 22 | KVM_X86_OP_NULL(vm_destroy) |
| 23 | KVM_X86_OP(vcpu_create) |
| 24 | KVM_X86_OP(vcpu_free) |
| 25 | KVM_X86_OP(vcpu_reset) |
| 26 | KVM_X86_OP(prepare_guest_switch) |
| 27 | KVM_X86_OP(vcpu_load) |
| 28 | KVM_X86_OP(vcpu_put) |
| 29 | KVM_X86_OP(update_exception_bitmap) |
| 30 | KVM_X86_OP(get_msr) |
| 31 | KVM_X86_OP(set_msr) |
| 32 | KVM_X86_OP(get_segment_base) |
| 33 | KVM_X86_OP(get_segment) |
| 34 | KVM_X86_OP(get_cpl) |
| 35 | KVM_X86_OP(set_segment) |
| 36 | KVM_X86_OP_NULL(get_cs_db_l_bits) |
| 37 | KVM_X86_OP(set_cr0) |
Michael Roth | 405329f | 2021-12-16 11:13:54 -0600 | [diff] [blame] | 38 | KVM_X86_OP_NULL(post_set_cr3) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 39 | KVM_X86_OP(is_valid_cr4) |
| 40 | KVM_X86_OP(set_cr4) |
| 41 | KVM_X86_OP(set_efer) |
| 42 | KVM_X86_OP(get_idt) |
| 43 | KVM_X86_OP(set_idt) |
| 44 | KVM_X86_OP(get_gdt) |
| 45 | KVM_X86_OP(set_gdt) |
| 46 | KVM_X86_OP(sync_dirty_debug_regs) |
| 47 | KVM_X86_OP(set_dr7) |
| 48 | KVM_X86_OP(cache_reg) |
| 49 | KVM_X86_OP(get_rflags) |
| 50 | KVM_X86_OP(set_rflags) |
Marc Orr | c506355 | 2021-12-09 07:52:57 -0800 | [diff] [blame] | 51 | KVM_X86_OP(get_if_flag) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 52 | KVM_X86_OP(tlb_flush_all) |
| 53 | KVM_X86_OP(tlb_flush_current) |
| 54 | KVM_X86_OP_NULL(tlb_remote_flush) |
| 55 | KVM_X86_OP_NULL(tlb_remote_flush_with_range) |
| 56 | KVM_X86_OP(tlb_flush_gva) |
| 57 | KVM_X86_OP(tlb_flush_guest) |
Sean Christopherson | fc4fad7 | 2021-12-28 23:24:36 +0000 | [diff] [blame] | 58 | KVM_X86_OP(vcpu_pre_run) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 59 | KVM_X86_OP(run) |
| 60 | KVM_X86_OP_NULL(handle_exit) |
| 61 | KVM_X86_OP_NULL(skip_emulated_instruction) |
| 62 | KVM_X86_OP_NULL(update_emulated_instruction) |
| 63 | KVM_X86_OP(set_interrupt_shadow) |
| 64 | KVM_X86_OP(get_interrupt_shadow) |
| 65 | KVM_X86_OP(patch_hypercall) |
| 66 | KVM_X86_OP(set_irq) |
| 67 | KVM_X86_OP(set_nmi) |
| 68 | KVM_X86_OP(queue_exception) |
| 69 | KVM_X86_OP(cancel_injection) |
| 70 | KVM_X86_OP(interrupt_allowed) |
| 71 | KVM_X86_OP(nmi_allowed) |
| 72 | KVM_X86_OP(get_nmi_mask) |
| 73 | KVM_X86_OP(set_nmi_mask) |
| 74 | KVM_X86_OP(enable_nmi_window) |
| 75 | KVM_X86_OP(enable_irq_window) |
| 76 | KVM_X86_OP(update_cr8_intercept) |
| 77 | KVM_X86_OP(check_apicv_inhibit_reasons) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 78 | KVM_X86_OP(refresh_apicv_exec_ctrl) |
| 79 | KVM_X86_OP(hwapic_irr_update) |
| 80 | KVM_X86_OP(hwapic_isr_update) |
| 81 | KVM_X86_OP_NULL(guest_apic_has_interrupt) |
| 82 | KVM_X86_OP(load_eoi_exitmap) |
| 83 | KVM_X86_OP(set_virtual_apic_mode) |
| 84 | KVM_X86_OP_NULL(set_apic_access_page_addr) |
| 85 | KVM_X86_OP(deliver_posted_interrupt) |
| 86 | KVM_X86_OP_NULL(sync_pir_to_irr) |
| 87 | KVM_X86_OP(set_tss_addr) |
| 88 | KVM_X86_OP(set_identity_map_addr) |
| 89 | KVM_X86_OP(get_mt_mask) |
| 90 | KVM_X86_OP(load_mmu_pgd) |
| 91 | KVM_X86_OP_NULL(has_wbinvd_exit) |
Ilias Stamatis | 307a94c | 2021-05-26 19:44:13 +0100 | [diff] [blame] | 92 | KVM_X86_OP(get_l2_tsc_offset) |
| 93 | KVM_X86_OP(get_l2_tsc_multiplier) |
Ilias Stamatis | edcfe54 | 2021-05-26 19:44:15 +0100 | [diff] [blame] | 94 | KVM_X86_OP(write_tsc_offset) |
Ilias Stamatis | 1ab9287 | 2021-06-07 11:54:38 +0100 | [diff] [blame] | 95 | KVM_X86_OP(write_tsc_multiplier) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 96 | KVM_X86_OP(get_exit_info) |
| 97 | KVM_X86_OP(check_intercept) |
| 98 | KVM_X86_OP(handle_exit_irqoff) |
| 99 | KVM_X86_OP_NULL(request_immediate_exit) |
| 100 | KVM_X86_OP(sched_in) |
Makarand Sonare | a85863c | 2021-02-12 16:50:12 -0800 | [diff] [blame] | 101 | KVM_X86_OP_NULL(update_cpu_dirty_logging) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 102 | KVM_X86_OP_NULL(vcpu_blocking) |
| 103 | KVM_X86_OP_NULL(vcpu_unblocking) |
| 104 | KVM_X86_OP_NULL(update_pi_irte) |
Marcelo Tosatti | 57ab879 | 2021-05-25 10:41:16 -0300 | [diff] [blame] | 105 | KVM_X86_OP_NULL(start_assignment) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 106 | KVM_X86_OP_NULL(apicv_post_state_restore) |
| 107 | KVM_X86_OP_NULL(dy_apicv_has_pending_interrupt) |
| 108 | KVM_X86_OP_NULL(set_hv_timer) |
| 109 | KVM_X86_OP_NULL(cancel_hv_timer) |
| 110 | KVM_X86_OP(setup_mce) |
| 111 | KVM_X86_OP(smi_allowed) |
Sean Christopherson | ecc513e | 2021-06-09 11:56:19 -0700 | [diff] [blame] | 112 | KVM_X86_OP(enter_smm) |
| 113 | KVM_X86_OP(leave_smm) |
Jason Baron | 9af5471 | 2021-01-14 22:27:55 -0500 | [diff] [blame] | 114 | KVM_X86_OP(enable_smi_window) |
| 115 | KVM_X86_OP_NULL(mem_enc_op) |
| 116 | KVM_X86_OP_NULL(mem_enc_reg_region) |
| 117 | KVM_X86_OP_NULL(mem_enc_unreg_region) |
| 118 | KVM_X86_OP(get_msr_feature) |
| 119 | KVM_X86_OP(can_emulate_instruction) |
| 120 | KVM_X86_OP(apic_init_signal_blocked) |
| 121 | KVM_X86_OP_NULL(enable_direct_tlbflush) |
| 122 | KVM_X86_OP_NULL(migrate_timers) |
| 123 | KVM_X86_OP(msr_filter_changed) |
| 124 | KVM_X86_OP_NULL(complete_emulated_msr) |
| 125 | |
| 126 | #undef KVM_X86_OP |
| 127 | #undef KVM_X86_OP_NULL |