Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/kvm/x86/
H A Dsync_regs_test.c140 __u64 pae_disabled = *cr4 & ~X86_CR4_PAE; in race_sregs_cr4()
178 TEST_ASSERT((run->s.regs.sregs.cr4 & X86_CR4_PAE) && in race_sync_regs()
181 !!(run->s.regs.sregs.cr4 & X86_CR4_PAE), in race_sync_regs()
H A Dset_sregs_test.c45 X86_CR4_DE | X86_CR4_PSE | X86_CR4_PAE | \
/linux/arch/x86/platform/pvh/
H A Dhead.S96 orl $X86_CR4_PAE, %eax
219 and $~X86_CR4_PAE, %eax
/linux/arch/x86/kvm/
H A Dkvm_cache_regs.h13 #define X86_CR4_TLBFLUSH_BITS (X86_CR4_PGE | X86_CR4_PCIDE | X86_CR4_PAE | X86_CR4_SMEP)
14 #define X86_CR4_PDPTR_BITS (X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_SMEP)
H A Dmmu.h40 #define KVM_MMU_CR4_ROLE_BITS (X86_CR4_PSE | X86_CR4_PAE | X86_CR4_LA57 | \
H A Dx86.h266 return kvm_is_cr4_bit_set(vcpu, X86_CR4_PAE); in is_pae()
H A Dx86.c1339 else if (((cr4 ^ old_cr4) & X86_CR4_PAE) || in kvm_post_set_cr4()
1354 if (!(cr4 & X86_CR4_PAE)) in kvm_set_cr4()
1358 } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) in kvm_set_cr4()
11859 if (!(sregs->cr4 & X86_CR4_PAE) || !(sregs->efer & EFER_LMA)) in kvm_is_valid_sregs()
11975 bool pae = (sregs2->cr0 & X86_CR0_PG) && (sregs2->cr4 & X86_CR4_PAE) && in __set_sregs2()
/linux/arch/x86/boot/compressed/
H A Dhead_64.S169 orl $X86_CR4_PAE, %eax
395 andl $(X86_CR4_PAE | X86_CR4_MCE | X86_CR4_LA57), %eax
/linux/arch/x86/include/uapi/asm/
H A Dprocessor-flags.h106 #define X86_CR4_PAE _BITUL(X86_CR4_PAE_BIT) macro
/linux/arch/x86/kernel/
H A Dhead_64.S211 movl $(X86_CR4_PAE | X86_CR4_LA57), %edx
H A Drelocate_kernel_64.S195 andl $(X86_CR4_PAE | X86_CR4_LA57), %r13d
H A Dsetup.c139 __visible unsigned long mmu_cr4_features __ro_after_init = X86_CR4_PAE;
/linux/arch/x86/kvm/vmx/
H A Dvmx.c160 #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
161 #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
3462 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
3464 } else if (!(cr4 & X86_CR4_PAE)) { in vmx_set_cr4()
3465 hw_cr4 &= ~X86_CR4_PAE; in vmx_set_cr4()
7627 cr4_fixed1_update(X86_CR4_PAE, edx, feature_bit(PAE)); in nested_vmx_cr_fixed1_bits_update()
H A Dnested.c3065 if (CC(!(vmcs12->host_cr4 & X86_CR4_PAE))) in nested_vmx_check_host_state()
3187 if (CC(ia32e && !(vmcs12->guest_cr4 & X86_CR4_PAE)) || in nested_vmx_check_guest_state()
/linux/tools/testing/selftests/kvm/include/x86/
H A Dprocessor.h44 #define X86_CR4_PAE (1ul << 5) macro
/linux/tools/testing/selftests/kvm/lib/x86/
H A Dprocessor.c506 sregs.cr4 |= X86_CR4_PAE | X86_CR4_OSFXSR; in vcpu_init_sregs()
/linux/arch/x86/include/asm/
H A Dkvm_host.h140 | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE \
/linux/arch/x86/kvm/svm/
H A Dnested.c374 if (CC(!(save->cr4 & X86_CR4_PAE)) || in __nested_vmcb_check_save()
H A Dsvm.c1813 cr4 |= X86_CR4_PAE; in svm_set_cr4()
/linux/arch/x86/kvm/mmu/
H A Dmmu.c209 BUILD_MMU_ROLE_REGS_ACCESSOR(cr4, pae, X86_CR4_PAE);