Home
last modified time | relevance | path

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

/Linux-v5.4/arch/x86/platform/pvh/
Dhead.S75 orl $X86_CR4_PAE, %eax
144 and $~X86_CR4_PAE, %eax
/Linux-v5.4/arch/x86/include/uapi/asm/
Dprocessor-flags.h102 #define X86_CR4_PAE _BITUL(X86_CR4_PAE_BIT) macro
/Linux-v5.4/arch/x86/boot/compressed/
Dhead_64.S129 orl $X86_CR4_PAE, %eax
617 movl $X86_CR4_PAE, %eax
/Linux-v5.4/arch/x86/kernel/
Drelocate_kernel_64.S132 movl $X86_CR4_PAE, %eax
Dhead_64.S125 movl $(X86_CR4_PAE | X86_CR4_PGE), %ecx
Dhead_32.S256 testb $X86_CR4_PAE, %al # check if PAE is enabled
Dsetup.c203 __visible unsigned long mmu_cr4_features __ro_after_init = X86_CR4_PAE;
/Linux-v5.4/arch/x86/kvm/
Dx86.h129 return kvm_read_cr4_bits(vcpu, X86_CR4_PAE); in is_pae()
Demulate.c2632 if (cr4 & X86_CR4_PAE) in em_rsm()
2633 ctxt->ops->set_cr(ctxt, 4, cr4 & ~X86_CR4_PAE); in em_rsm()
4224 !(cr4 & X86_CR4_PAE)) in check_cr_write()
4257 if ((efer & EFER_LMA) && !(new_val & X86_CR4_PAE)) in check_cr_write()
Dx86.c920 unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | in kvm_set_cr4()
927 if (!(cr4 & X86_CR4_PAE)) in kvm_set_cr4()
929 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) in kvm_set_cr4()
8756 if (!(sregs->cr4 & X86_CR4_PAE) in kvm_valid_sregs()
Dsvm.c1596 save->cr4 = X86_CR4_PAE; in init_vmcb()
2600 cr4 |= X86_CR4_PAE; in svm_set_cr4()
/Linux-v5.4/tools/testing/selftests/kvm/include/x86_64/
Dprocessor.h21 #define X86_CR4_PAE (1ul << 5) macro
/Linux-v5.4/arch/x86/kvm/vmx/
Dvmx.c139 #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
140 #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
3073 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
3075 } else if (!(cr4 & X86_CR4_PAE)) { in vmx_set_cr4()
3076 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
5723 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) in dump_vmcs()
6983 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE)); in nested_vmx_cr_fixed1_bits_update()
Dnested.c2675 CC(!(vmcs12->host_cr4 & X86_CR4_PAE))) in nested_vmx_check_host_state()
/Linux-v5.4/tools/testing/selftests/kvm/lib/x86_64/
Dprocessor.c626 sregs.cr4 |= X86_CR4_PAE | X86_CR4_OSFXSR; in vcpu_setup()
/Linux-v5.4/arch/x86/include/asm/
Dkvm_host.h89 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \