Home
last modified time | relevance | path

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

/Linux-v4.19/arch/x86/realmode/rm/
Dwakeup_asm.S53 orb $X86_CR0_PE, %al
63 andb $~X86_CR0_PE, %al
/Linux-v4.19/arch/x86/xen/
Dxen-pvh.S99 mov $(X86_CR0_PG | X86_CR0_PE), %eax
140 or $(X86_CR0_PG | X86_CR0_PE), %eax
/Linux-v4.19/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-v4.19/arch/x86/boot/
Dpmjump.S40 orb $X86_CR0_PE, %dl # Protected mode
/Linux-v4.19/arch/x86/boot/compressed/
Dhead_64.S220 movl $(X86_CR0_PG | X86_CR0_PE), %eax /* Enable Paging and Protected mode */
619 movl $(X86_CR0_PG | X86_CR0_PE), %eax
/Linux-v4.19/arch/x86/kernel/
Drelocate_kernel_64.S126 orl $(X86_CR0_PG | X86_CR0_PE), %eax
Drelocate_kernel_32.S116 orl $(X86_CR0_PE), %eax
/Linux-v4.19/arch/x86/kvm/
Dx86.h81 return kvm_read_cr0_bits(vcpu, X86_CR0_PE); in is_protmode()
Dvmx.c138 X86_CR0_WP | X86_CR0_PG | X86_CR0_PE)
3693 #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) in nested_vmx_setup_ctls_msrs()
5207 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG); in nested_guest_cr0_valid()
5273 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) in vmx_set_cr0()
5276 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) in vmx_set_cr0()
12473 bool prot_mode = !urg || vmcs12->guest_cr0 & X86_CR0_PE; in check_vmentry_prereqs()
Dsvm.c3365 svm_set_cr0(&svm->vcpu, hsave->save.cr0 | X86_CR0_PE); in nested_svm_vmexit()
6027 if (cr0 & X86_CR0_PE) in svm_check_intercept()
6028 val |= X86_CR0_PE; in svm_check_intercept()
Demulate.c2597 if (cr0 & X86_CR0_PE) in em_rsm()
2598 ctxt->ops->set_cr(ctxt, 0, cr0 & ~(X86_CR0_PG | X86_CR0_PE)); in em_rsm()
4164 if (((new_val & X86_CR0_PG) && !(new_val & X86_CR0_PE)) || in check_cr_write()
Dx86.c668 if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) in kvm_set_cr0()
7249 cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); in enter_smm()
/Linux-v4.19/tools/testing/selftests/kvm/include/
Dx86.h313 #define X86_CR0_PE (1UL<<0) /* Protection Enable */ macro
/Linux-v4.19/tools/testing/selftests/kvm/lib/
Dx86.c628 sregs.cr0 = X86_CR0_PE | X86_CR0_NE | X86_CR0_PG; in vcpu_setup()
/Linux-v4.19/arch/x86/include/asm/
Dkvm_host.h83 (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \