Home
last modified time | relevance | path

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

/Linux-v4.19/arch/x86/xen/
Dxen-pvh.S86 orl $X86_CR4_PAE, %eax
155 and $~X86_CR4_PAE, %eax
/Linux-v4.19/arch/x86/include/uapi/asm/
Dprocessor-flags.h102 #define X86_CR4_PAE _BITUL(X86_CR4_PAE_BIT) macro
/Linux-v4.19/arch/x86/boot/compressed/
Dhead_64.S129 orl $X86_CR4_PAE, %eax
604 movl $X86_CR4_PAE, %eax
/Linux-v4.19/arch/x86/kernel/
Drelocate_kernel_64.S134 movl $X86_CR4_PAE, %eax
Dhead_64.S127 movl $(X86_CR4_PAE | X86_CR4_PGE), %ecx
Dhead_32.S256 testb $X86_CR4_PAE, %al # check if PAE is enabled
Dsetup.c201 __visible unsigned long mmu_cr4_features __ro_after_init = X86_CR4_PAE;
/Linux-v4.19/arch/x86/kvm/
Dx86.h129 return kvm_read_cr4_bits(vcpu, X86_CR4_PAE); in is_pae()
Dvmx.c144 #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
145 #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
5399 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
5401 } else if (!(cr4 & X86_CR4_PAE)) { in vmx_set_cr4()
5402 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
9917 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) in dump_vmcs()
11238 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE)); in nested_vmx_cr_fixed1_bits_update()
Demulate.c2601 if (cr4 & X86_CR4_PAE) in em_rsm()
2602 ctxt->ops->set_cr(ctxt, 4, cr4 & ~X86_CR4_PAE); in em_rsm()
4172 !(cr4 & X86_CR4_PAE)) in check_cr_write()
4205 if ((efer & EFER_LMA) && !(new_val & X86_CR4_PAE)) in check_cr_write()
Dx86.c790 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | in kvm_set_cr4()
818 if (!(cr4 & X86_CR4_PAE)) in kvm_set_cr4()
820 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) in kvm_set_cr4()
8161 if (!(sregs->cr4 & X86_CR4_PAE) in kvm_valid_sregs()
Dsvm.c1582 save->cr4 = X86_CR4_PAE; in init_vmcb()
2541 cr4 |= X86_CR4_PAE; in svm_set_cr4()
/Linux-v4.19/tools/testing/selftests/kvm/include/
Dx86.h23 #define X86_CR4_PAE (1ul << 5) macro
/Linux-v4.19/tools/testing/selftests/kvm/lib/
Dx86.c629 sregs.cr4 |= X86_CR4_PAE; in vcpu_setup()
/Linux-v4.19/arch/x86/include/asm/
Dkvm_host.h89 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \