Home
last modified time | relevance | path

Searched refs:X86_CR0_CD (Results 1 – 12 of 12) sorted by relevance

/Linux-v5.10/arch/x86/kernel/cpu/mtrr/
Dcyrix.c151 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
172 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
Dgeneric.c744 cr0 = read_cr0() | X86_CR0_CD; in prepare_set()
787 write_cr0(read_cr0() & ~X86_CR0_CD); in post_set()
/Linux-v5.10/drivers/edac/
Damd64_edac.h512 write_cr0(read_cr0() | X86_CR0_CD); in disable_caches()
518 write_cr0(read_cr0() & ~X86_CR0_CD); in enable_caches()
/Linux-v5.10/arch/x86/include/uapi/asm/
Dprocessor-flags.h70 #define X86_CR0_CD _BITUL(X86_CR0_CD_BIT) macro
/Linux-v5.10/drivers/cpufreq/
Dpowernow-k6.c115 write_cr0(cr0 | X86_CR0_CD); in powernow_k6_set_cpu_multiplier()
/Linux-v5.10/tools/testing/selftests/kvm/include/x86_64/
Dprocessor.h389 #define X86_CR0_CD (1UL<<30) /* Cache Disable */ macro
/Linux-v5.10/arch/x86/kvm/svm/
Dnested.c235 if (((vmcb12->save.cr0 & X86_CR0_CD) == 0) && (vmcb12->save.cr0 & X86_CR0_NW)) in nested_vmcb_checks()
1179 if (((cr0 & X86_CR0_CD) == 0) && (cr0 & X86_CR0_NW)) in svm_set_nested_state()
Dsvm.c1200 svm_set_cr0(&svm->vcpu, X86_CR0_NW | X86_CR0_CD | X86_CR0_ET); in init_vmcb()
1681 cr0 &= ~(X86_CR0_CD | X86_CR0_NW); in svm_set_cr0()
/Linux-v5.10/arch/x86/include/asm/
Dkvm_host.h95 | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
/Linux-v5.10/arch/x86/kvm/vmx/
Dvmx.c134 #define KVM_VM_CR0_ALWAYS_OFF (X86_CR0_NW | X86_CR0_CD)
4467 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; in vmx_vcpu_reset()
7057 if (kvm_read_cr0(vcpu) & X86_CR0_CD) { in vmx_get_mt_mask()
/Linux-v5.10/arch/x86/kvm/
Dx86.c810 unsigned long pdptr_bits = X86_CR0_CD | X86_CR0_NW | X86_CR0_PG; in kvm_set_cr0()
822 if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) in kvm_set_cr0()
858 if (((cr0 ^ old_cr0) & X86_CR0_CD) && in kvm_set_cr0()
Demulate.c4253 ((new_val & X86_CR0_NW) && !(new_val & X86_CR0_CD))) in check_cr_write()