Home
last modified time | relevance | path

Searched refs:X86_CR0_PE (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.4/arch/x86/realmode/rm/
Dwakeup_asm.S53 orb $X86_CR0_PE, %al
63 andb $~X86_CR0_PE, %al
Dtrampoline_64.S72 movl $X86_CR0_PE, %eax # protected mode (PE) bit
130 movl $(X86_CR0_PG | X86_CR0_WP | X86_CR0_PE), %eax
/Linux-v5.4/arch/x86/platform/pvh/
Dhead.S88 mov $(X86_CR0_PG | X86_CR0_PE), %eax
129 or $(X86_CR0_PG | X86_CR0_PE), %eax
/Linux-v5.4/arch/x86/include/uapi/asm/
Dprocessor-flags.h52 #define X86_CR0_PE _BITUL(X86_CR0_PE_BIT) macro
162 #define CR0_STATE (X86_CR0_PE | X86_CR0_MP | X86_CR0_ET | \
/Linux-v5.4/arch/x86/boot/
Dpmjump.S38 orb $X86_CR0_PE, %dl # Protected mode
/Linux-v5.4/arch/x86/boot/compressed/
Dhead_64.S220 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
632 movl $(X86_CR0_PG | X86_CR0_PE), %eax
/Linux-v5.4/arch/x86/kernel/
Drelocate_kernel_64.S124 orl $(X86_CR0_PG | X86_CR0_PE), %eax
Drelocate_kernel_32.S114 orl $(X86_CR0_PE), %eax
/Linux-v5.4/arch/x86/kvm/vmx/
Dnested.h268 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG); in nested_guest_cr0_valid()
Dvmx.c133 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
2947 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) in vmx_set_cr0()
2950 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) in vmx_set_cr0()
Dnested.c2590 bool prot_mode = !urg || vmcs12->guest_cr0 & X86_CR0_PE; in nested_check_vm_entry_controls()
6004 #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) in nested_vmx_setup_ctls_msrs()
/Linux-v5.4/arch/x86/kvm/
Dx86.h81 return kvm_read_cr0_bits(vcpu, X86_CR0_PE); in is_protmode()
Demulate.c2626 if (cr0 & X86_CR0_PE) in em_rsm()
2627 ctxt->ops->set_cr(ctxt, 0, cr0 & ~(X86_CR0_PG | X86_CR0_PE)); in em_rsm()
4216 if (((new_val & X86_CR0_PG) && !(new_val & X86_CR0_PE)) || in check_cr_write()
Dsvm.c3413 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE); in nested_svm_vmexit()
6098 if (cr0 & X86_CR0_PE) in svm_check_intercept()
6099 val |= X86_CR0_PE; in svm_check_intercept()
Dx86.c767 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) in kvm_set_cr0()
7817 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); in enter_smm()
/Linux-v5.4/tools/testing/selftests/kvm/include/x86_64/
Dprocessor.h334 #define X86_CR0_PE (1UL<<0) /* Protection Enable */ macro
/Linux-v5.4/tools/testing/selftests/kvm/lib/x86_64/
Dprocessor.c625 sregs.cr0 = X86_CR0_PE | X86_CR0_NE | X86_CR0_PG; in vcpu_setup()
/Linux-v5.4/arch/x86/include/asm/
Dkvm_host.h83 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \